diff --git a/doc/avatarSysMLV2/AvatarSysMLV2notes.tex b/doc/avatarSysMLV2/AvatarSysMLV2notes.tex
new file mode 100644
index 0000000000000000000000000000000000000000..f1fa92388e0cb0f5f9ac42e88418c9c2f57bad52
--- /dev/null
+++ b/doc/avatarSysMLV2/AvatarSysMLV2notes.tex
@@ -0,0 +1,1085 @@
+\documentclass[a4paper,11pt]{article}% use option titlepage to get the title on a page of its own.
+
+% LAYOUT  %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\textwidth 16.5cm
+\textheight 26cm
+\voffset -2.5cm
+\hoffset -2cm
+\parskip 1mm
+\parindent 0mm
+\newcommand{\tspace}{\hspace*{4mm}}
+
+\usepackage{adjustbox}
+\usepackage{ragged2e}
+\usepackage{tabularx}
+\usepackage{hhline}
+\usepackage{float}
+\usepackage{multirow}
+\usepackage{makecell}
+\usepackage{hyperref}
+% FONTS and SYMBOLS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\usepackage[utf8]{inputenc}  
+\usepackage[T1]{fontenc} 
+\usepackage{amssymb}
+
+
+% USUAL GRAPHICAL TOOLS %%%%%%%%%%%%%%%%%%%%%%%%%%%
+\usepackage{boxedminipage}
+%\usepackage{graphics}
+\usepackage{graphicx}
+\usepackage[dvipsnames]{xcolor}
+
+\usepackage[most]{tcolorbox}
+\newtcolorbox{genfunction}{width=16.5cm, colframe=blue!10!white, colback=blue!2!gray!2!white, left=1.5mm, right=1.5mm, top=1mm, bottom=0.5mm, breakable}
+\newtcolorbox{sysmlbox}{width=16.5cm, colframe=yellow!30!white, colback=yellow!15!gray!2!white, left=1.5mm, right=1.5mm, top=1mm, bottom=0.5mm, breakable}
+\newcommand{\smalltitle}[1]{\par\vspace{1mm}\noindent{\bfseries \textit{#1.}}\par\vspace{0.5mm}\noindent}
+
+% COLORS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\definecolor{darkred}{RGB}{190,0,0}
+
+
+
+\usepackage{fancyhdr}
+\pagestyle{fancy}
+\fancyhead{}
+\fancyhead[R]{Avatar SysMLV2 elements}
+\fancyhead[L]{Avatar Documentation}
+\renewcommand{\headrulewidth}{0pt}
+
+\fancypagestyle{plain}{%
+    \fancyhf{}
+    \fancyhead[C]{Notes about Avatar SysMLV2 elements}
+    \fancyfoot[C]{\thepage}
+}
+
+
+%\author{Sophie Coudert\\{\small Télécom Paris}}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\begin{document}
+%\thispagestyle{plain}
+
+\begin{center}
+	
+	\includegraphics[width=0.2\textwidth]{figures/tp.pdf}
+	\vspace{10 pt}\\
+	\Huge TTool \\
+	\vspace{10 pt}
+	{\Large \url{https://ttool.telecom-paris.fr}}
+	\vspace{20 pt}\\
+	\underline{\Large Notes about Avatar SysMLV2 Representation}
+	\vspace{30 pt}
+\end{center}
+
+\begin{table}[H]
+	\large
+	\centering
+	\begin{adjustbox}{width=\textwidth}
+		\begin{tabular}{ |p{1.6cm}|p{6.0cm}|p{4.2cm}|p{4.2cm}| }
+			\hhline{----}
+			& \textbf{Document Manager} & \textbf{Contributors}  & \textbf{Checked by}  \\ 
+			\hhline{----}
+			\textbf{Name}   & Sophie COUDERT & \multirow{2}{*}{Sophie COUDERT} &
+			\multirow{2}{*}{Sophie COUDERT} \\
+			\hhline{--~~}
+			\textbf{Contact} & sophie.coudert@telecom-paris.fr &  &  \\ 
+			\hhline{--~~}
+			\textbf{Date} & \today &  &  \\ 
+			\hline
+		\end{tabular}
+	\end{adjustbox}
+\end{table}
+
+\newpage
+\tableofcontents
+
+% \newpage
+% \listoffigures
+
+\newpage
+%$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
+\section{SysML V2 Generation from an Avatar Model in TTool}
+\includegraphics[width=12cm]{figures/avatarClick.pdf}
+\begin{enumerate}
+	\item An Avatar model that is compliant with the generator's limitations must be loaded in TTool.
+	\item Right-Click in the design panel, and select "to SysML V2" as shown on the figure above.
+	\item This opens a popup window (see figure below) containing the SysML V2 model associated to the current Avatar design, in textual form, respecting the SysML V2 standard. This model is a package named "AvatarInstance", thus you should copy-paste the text to save it in a file named "AvatarInstance.sysml". You can rename the package. You can choose another filename but you must use the ".sysml" suffix if you want the file to be recognized by the pilot implementation.
+	\item This model relies on an Avatar-dedicated SysML V2 library whose files can be found in {\ttfamily TTool/src/main/java/avatartranslator/tosysmlv2/static}.\\
+	Then, by putting the generated file together with the libraryfiles in a directory, you obtain a complete SysML V2 model that is compliant with the pilote implementation.
+	\item {\em note about compliance\/}: currently simple models are supported, with data types and timers. Not supported: Library blocks, Pragma/Annotations, Hierarchical States, Graphical information. These aspects are TODOs\ldots
+\end{enumerate}
+
+\includegraphics[width=8cm]{figures/avatarPopup.pdf}
+
+{\em Technical note 1\/}: The SysML-to-Avatar parser detects as much as possible the potential errors or inconsistancies in the analysed textual model, but is not sufficient for this. Thus Avatar syntax checking must be applied on the model obtained from the parser.
+
+{\em Technical note 2\/}: The used SysML V2 syntax is a strongly constrained subset of the complete SysML syntax. In particular we make an intensive use of the constructor syntax. Respecting these constraints is  mandatory in order to write Avatar SysML specification that can be parsed by our tool. Equivalent specification with other syntax won't be recognized.
+
+Sections \ref{sec:Instance} presents the generated part of an Avatar SysML Model. This way, it introduces and presents the different features of the Avatar-dedicated SysML V2 Library. Section 5 presents algorithmic aspect of the final concrete generation software. 
+
+%$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
+\section{The instance part of Avatar SysMLV2 Models\label{sec:Instance}}
+The instance is a package that includes the Avatar-dedicated SysML V2 Library.
+\begin{sysmlbox}{\small
+		\begin{verbatim}
+	package AvatarInstance {
+	    private import AvatarGeneral::*;
+	    private import AvatarBlockTypes::*;
+	    private import AvatarCommunication::*;
+	    private import AvatarTransitionServer::*;
+	    ...
+	}\end{verbatim}
+}\end{sysmlbox}
+
+
+The name of the package is not significant. It contains the features corresponding to the different elements of the described Avatar model. This section will present them  and illustrate them on a little example, with the following bloc diagram (the example is designed to illustrate features, and not to have any particular meaning).
+
+\includegraphics[width = 14cm]{figures/Tuto_BD.pdf}
+
+%=================================================
+\subsection{Types and Datatypes Declarations}
+\begin{sysmlbox} Avatar types {\ttfamily int} and {\ttfamily bool} are directly interpreted by the corresponding SysML V2 data types {\ttfamily Integer} and {\ttfamily Boolean}.
+\end{sysmlbox}
+Timers are handled in a specific way, detailed in section \ref{sec:timers}. Other types are Avatar data types. For each Avatar data type, an attribute definition is to be provided. This definition specializes the library attribute definition {\ttfamily '\#AvatarDataType'}. The declaration for an Avatar datatype looks like:
+
+\begin{sysmlbox}{\small
+    \begin{verbatim}
+// Avatar datatype "datatypename: (type1 x1,..., typen xn)"
+attribute def 'datatypename' :> '#AvatarDataType'; { 
+    attribute x1: type1; 
+    ...
+    attribute xn: typen; 
+}
+// where typei is Integer, Boolean or a datatypename (no recursion allowed)
+    \end{verbatim}
+}\end{sysmlbox}
+{\em Note\/}: currently, only Integer and Boolean fields are supported.
+
+The declaration of the datatype Point of our example is the following one:
+
+\begin{genfunction}
+    \begin{verbatim}
+	attribute def 'Point' :> '#AvatarDataType' { 
+	    attribute x : Integer default := 0;
+	    attribute y : Integer default := 0;
+	}\end{verbatim}	
+\end{genfunction}
+Note that the {\ttfamily default} keyword is omitted if initial values are provided. Here, fields get the Avatar default value for integers, i.e., zero.
+
+%=================================================
+\subsection{Expressions and Identifiers}
+
+SysML integer and boolean expressions are very similar to Avatar ones, except that it uses SysML operators instead of Avatar ones. They only differ on boolean operators:
+
+\hspace{5mm}
+\begin{tabular}{|l|l|}
+	Avatar operator & SysML operator \\ \hline
+	\verb|+|                & \verb|+| \\ \hline
+	\verb|-|                & \verb|-| \\ \hline
+	\verb|*|                & \verb|*| \\ \hline
+	\verb|/|                & \verb|/| \\ \hline
+	\verb|%|                & \verb|%| \\ \hline
+	\verb|&&| or \verb|and| & \verb|and| \\ \hline
+	\verb|||| or \verb|or|  & \verb|or| \\ \hline
+	\verb|!|  or \verb|not| & \verb|not| \\ \hline
+	\verb|==|               & \verb|==| \\ \hline
+	\verb|!=|               & \verb|!=| \\ \hline
+	\verb|<|                & \verb|<| \\ \hline
+	\verb|>|                & \verb|>| \\ \hline
+	\verb|<=|               & \verb|<=| \\ \hline
+	\verb|>=|               & \verb|>=| \\ \hline
+\end{tabular}
+\hspace{5mm}
+\begin{minipage}{9cm}
+	Note that we only consider the "\verb|and|" and "\verb|or|" SysML boolean operators (and not "\verb|&|" and "\verb+|+") as Avatar relies on lazy evaluation: the second operand is only evaluated if the first one is not sufficient to determinate the result.
+\end{minipage}
+
+In the sequel, guards of transitions are SysML boolean expressions and we denote by {\tt toSysML(avatar\_expr)} the SysML expression corresponding to the Avatar expression {\tt avatar\_expr}.
+
+{\em Note about identifiers: } Generation had to avoid name clashes between the produced identifiers and SysML reserved keyword ()or field names of the used SysML Libraries). Thus all names in the Avatar SysML library and in the generated file respect some special syntax ("{\ttfamily \#...}", "{\ttfamily @...}", "{\ttfamily \$...}"), and the original Avatar mames can be recovered from this special syntax. For example a state named "{\ttfamily '@st:standard.state2'}" in the generated file has original name "{\ttfamily state2}" in the Avatar model.
+
+For hand writen sysml V2 Avatar models, the user can use ordinary Avatar identifiers insteed of using this special syntax. Then the user has the responsibility to avoid name clashes and have in mind that while parsing, "{\ttfamily '@st:standard.state2'}" and "{\ttfamily state2}" refer to a same Avatar identifier.
+
+Finally note that the chained notation of data-type field identifiers is preserved: {\ttfamily data.fld1.fld2} is allowed both in Avatar and SysML expressions. However, due to SysML constraints, if such an identifier is used as left-hand-side of a SysML assignment, the "{\ttfamily .}" becomes a "{\ttfamily ::}" in SysML, i.e we will write "{\ttfamily assign data::fld1::fld2 := toSysML(avatar\_expr);}".
+
+%=================================================
+\subsection{Block Basic Features Declarations}
+The content of this section is illustrated with block B0 of the example.
+
+Each Avatar Block has a corresponding SysML part usage. Block hierarchy is represented as follows: if B1 is a sub-block of B0, then the declaration of B1 is a part usage in the declaration of B0. Moreover a shortcut is defined for each block, that allows to denote the block at any level without having to write the complete block chain ({\ttfamily block.subblock1.subblock2} can simply be written {\ttfamily subblock2}). This is consistent as all Avatar blocks have different names. Once again blocks and their components are typed by declarations in the Avatar-dedicated SysML V2 library. The SysML representation of a block respects the following template:
+
+\begin{sysmlbox}{\small
+		\begin{verbatim}// part usage for an avatar block named blockname
+			
+			part blockname : '#AvatarBlock' {
+			    // for each attribute a with name a and type t
+			    item a : t;
+				
+			    // for each method t methodname(t1 x1,...,tn xn)
+			    calc methodname: '#CalcMethod' {
+			        in x1 : t1;
+			        ...
+			        in xn : tn;
+			        return : t;
+			    }
+				
+			    // for each method void methodname(t1 x1,...,tn xn)
+			    action methodname: '#VoidMethod' {
+			        in x1 : t1;
+			        ...
+			        in xn : tn;
+			    }
+				
+			    // for each in or out signal
+			    part insignalname : '#Channel';
+			    part outsignal : '#Channel';
+
+			    // for each timer
+			    part timername: '#AvatarTimer' = '#AvatarTimer'('@block' = self);
+
+			    // statemachine description (detailed later) ...
+				
+			    // For each subblock Bi of blockname, part usage of Bi
+			}
+			
+			// For each subblock Bi of blockname, named subblck (and recursively Bij), a shortcut
+			part Bi : '#AvatarBlock' :> blockname.Bi = blockname.Bi;
+			part Bij : '#AvatarBlock' :> blockname.Bi.Bij = blockname.Bi.Bij;
+		\end{verbatim}
+}\end{sysmlbox}
+{\em Note that} signals are not directed by being typed by {\ttfamily '\#Channel'}. It is the responsibility of the user to use them the right way inside the block. Moreover, if the "count-content" operator is used on a signal in the state machine of the block, then the signal must be a fifo channel. Thus it requires a more precise typing: it is typed by {\ttfamily '\#Fifo'} instead of {\ttfamily '\#Channel'}.
+\begin{sysmlbox}{\small
+		\begin{verbatim}    part fifosignal : '#Fifo';\end{verbatim}
+}\end{sysmlbox}
+
+For the block BO of the example, we obtain:
+\begin{genfunction}
+    \begin{verbatim}// part usage of block B0 of the example
+part B0 : '#AvatarBlock' {
+    
+    attribute x : Integer default := 0;
+    attribute b : Boolean default := false;
+    attribute p : 'Point';
+    attribute y : Integer default := 0;
+    
+    calc make: '#AvatarCalcMethod' {
+        attribute x : Integer;
+        attribute y : Integer;
+        return : 'Point';
+    }
+    calc getx: '#AvatarCalcMethod' {
+        attribute p : 'Point';
+        return : Integer;
+    }
+    action foo: '#AvatarVoidMethod' {
+        attribute b : Boolean;
+        attribute p : 'Point';
+        attribute x : Integer;
+    }
+    
+    part in0 : '#Channel';
+    part out0 : '#Channel';
+    
+    ... // statemachine (no timers, no sub-block)
+}\end{verbatim}
+\end{genfunction}
+Concerning timer declaration, we must specify that the timer is associated with the current block (self). Thus, in block B1\_0 we can find:
+\begin{genfunction}
+	\begin{verbatim}part B1_0 : '#AvatarBlock' { ...
+		    part t: '#AvatarTimer' = '#AvatarTimer'('@block'=self)); ... }\end{verbatim}
+\end{genfunction}
+Concerning block hierarchy in our example we have:
+\begin{genfunction}
+	\begin{verbatim}part B1 : '#AvatarBlock' { ... part B1_0 : '#AvatarBlock' { ... } ... }
+	part B1_0 : '#AvatarBlock' :> B1.B1_0 = B1.B1_0;\end{verbatim}
+\end{genfunction}
+{\em Remark\/}: if you observe the attribute declaration of block B1\_0,
+\begin{genfunction}
+	\begin{verbatim}part B1_0 : '#AvatarBlock' {
+		    attribute x : Integer := 0;
+		    attribute b : Boolean := false;
+		    attribute p : 'Point'; ...
+		}\end{verbatim}
+\end{genfunction}
+you can notice that there is no "{\ttfamily default}" keyword before attribute initialisation. This reflect the fact that these attributes are initialized in the Avatar model.
+
+%=================================================
+\subsection{Relations and Channels Declarations}
+For each relation between two avatar blocks (which provides channels with characteristics) and for each channel in this relation, a part usage is declared (as Avatar relations and channels don't have names, names must be created). Mandatory parameters for relations are the two blocks they rely. The single mandatory parameter for creating a channel is the relation it is associated to. The type of this relation must correspond to the type of the channel.
+
+\begin{sysmlbox}{\small
+    \begin{verbatim}
+// foreach relation, depending of relation type...
+// * synchroneous relation
+part syncrelname: '#Sync_Rel' = '#Sync_Rel'('@block1'=b1,'@block2'=b2,'@private'=true);
+// * blocking fifo relation
+part bfiforelname: '#Bfifo_Rel' = '#Bfifo_Rel'('@block1'=b1,'@block2'=b2,'@max_size'=5);
+//*  non blocking fifo relation
+part nbfiforelname: '#NBfifo_Rel' = '#NBfifo_Rel'('@block1'=b1,'@block2'=b2,
+                                                   '@lossy'=true,'@max_size'=3);
+
+// foreach channel in a relation, depending of relation type...
+// * synchroneous channel
+part syncch: '#Sync' ='#Sync'('@relation' = syncrelname);
+// * blocking fifo channel
+part bfifoch: '#Bfifo' = '#Bfifo'('@relation' = bfiforelname);
+// * non blocking fifo channel
+part nbfifoch: '#NBfifo' = '#NBfifo'('@relation' = nbfiforelname);
+    \end{verbatim}
+}\end{sysmlbox}
+
+
+There is no other parameter for channels as their characteristics are specified in their associated relation. Relations have optional parameters. All relations accept the parameter {\ttfamily private} (default value is false). Moreover, fifo-relations accept the parameters {\ttfamily max\_size} (default 1) and {\ttfamily lossy} (default false).
+
+Once the channels have been declared, they must be connected with in and out block signals.
+\begin{sysmlbox}{\small
+		\begin{verbatim}
+			// foreach declared channel chn
+			binding : '#InSignalBinding' bind tgtblockname.insigname = chn;
+			binding : '#OutSignalBinding' bind srcblockname.outsigname = chn;
+		\end{verbatim}
+}\end{sysmlbox}
+In our example, we have one single private synchronous relation which contains two channels relying signals of block B0 and B1\_0.
+\begin{genfunction}
+\begin{verbatim}// Relation Sync_Relation =============
+part Sync_Relation: '#Sync_Rel' = 
+    '#Sync_Rel'('@block1' = B0,'@block2' = B1_0,'@private'=true);
+
+// Channel sync_in0_out1-------------
+part sync_in0_out1 : '#Sync' = '#Sync'('@relation' = Sync_Relation);
+binding : '#InSignalBinding' bind B0.in0 = sync_in0_out1;
+binding : '#OutSignalBinding' bind B1_0.out1 = sync_in0_out1;
+
+// Channel sync_out0_in1-------------
+part sync_out0_in1 : '#Sync' = '#Sync'('@relation' = Sync_Relation);
+binding : '#OutSignalBinding' bind B0.out0 = sync_out0_in1;
+binding : '#InSignalBinding' bind B1_0.in1 = sync_out0_in1;\end{verbatim}
+\end{genfunction}
+
+ We then provide channel profiles (i.e. signals parameters). In the SysML V2 representation of Avatar, they are the types of messages conveyed by channels (names must be created for these types of message). As the signal payload may be named differently at both end of the communication, we define a linked couple of message profile:
+
+\begin{sysmlbox}{\small
+    \begin{verbatim}
+// For each channel chn with in-message profile (t1 i1,...,tn in)
+// and with out-message profile (t1 o1,...,tn on)
+
+part def msg_in0 :> '#InMessage' {
+    part '@channel' redefines '@channel' = chn;
+    attribute i1 : t1;
+    ...
+    attribute in : tn;
+}
+part def msg_out1 :> '#OutMessage', msg_in0 {
+    attribute o1 redefines i1;
+    ...
+    attribute on redefines in;
+}\end{verbatim}
+}\end{sysmlbox}
+These declarations make the outgoing message extend the ingoing one and thus ensure compatibility. If a message parameter has the same name at both sides, its renaming line in the out-message declaration can be omitted. In our example, for the signal that relies B0.in0 to B1\_0.out1, we have:
+
+\begin{genfunction}
+	\begin{verbatim}// Messages of signal syn_in0_out1............
+part def msg_in0 :> '#InMessage' {
+    part '@channel' redefines '@channel' = syn_in0_out1;
+    attribute x : Integer;
+    attribute p : 'Point';
+    attribute b : Boolean;
+}
+part def msg_out1 :> '#OutMessage', msg_in0 {
+    attribute x redefines x;
+    attribute p redefines p;
+    attribute b redefines b;
+}\end{verbatim}
+\end{genfunction}
+As the parameter names are the same at both sides, the three renaming lines could be omitted.
+
+
+
+\subsection{State Machines Descriptions\label{sec:statemachines}}
+An avatar state machine is represented by a SysML state machine as illustrated below. the order of state and transition declarations is not relevant (except for readability).
+\begin{sysmlbox}{\small
+	\begin{verbatim}
+		exhibit state '@statemachine' : '#AvatarStateMachine' {
+		    // state deprivate partclaration 1
+		    // ...
+		    // state declaration n
+		    // transition declaration 1
+		    // ...
+		    // transition declaration m	
+		}
+	\end{verbatim}
+}\end{sysmlbox}
+In the SysML representation of an Avatar model, all boxes of an Avatar state machine diagram are interpreted by SysML states and all arrows are interpreted by SysML transitions, with an exception. Indeed, an arrow to a communication state (send or receive box, and timer related boxes) that have at least an associated action is decomposed in two steps as illustrated by the following figures.
+
+\label{lbl:transdecomp}
+\includegraphics[width=15cm]{figures/Tuto_before_transfo.pdf}
+
+\vspace{1mm}\hspace{0cm}{\Large\bfseries is seen as:}
+
+\vspace{1.5mm}\includegraphics[width=15cm]{figures/Tuto_after_transfo.pdf}
+
+The starting state of the decomposed transition may be any kind of Avatar state machine diagram box (except stop state), and if the arrow has a guard, this guard is kept on the first arrow of the decomposition. Timer operation are also handled this way as they are interpreted by communications with a timer block. This lead to introduce two new special kind of states (that are not state machine diagram boxes) for pre-send and pre-receive states.
+
+Each kind of diagram box and special state has a dedicated state specialization in the library. Here are they:
+
+\begin{itemize}
+	\item \includegraphics[width=1.5cm]{figures/Tuto_state_box.pdf}: \verb|'#AvatarStandardState'|
+	\item \includegraphics[width=0.4cm]{figures/Tuto_stopstate_box.pdf}: \verb|'#AvatarStopState'|
+	\item \includegraphics[width=0.4cm]{figures/Tuto_startstate_box.pdf}: \verb|'#AvatarStartState'|
+
+	\item \includegraphics[width=1.1cm]{figures/Tuto_sendstate_box.pdf}: \verb|'#AvatarSendState'|
+	\item \includegraphics[width=1.4cm]{figures/Tuto_receivestate_box.pdf}: \verb|'#AvatarReceiveState'|
+	\item \includegraphics[width=2.8cm]{figures/Tuto_randomstate_box.pdf}: \verb|'#AvatarRandomState'|
+	\item \includegraphics[width=1.5cm]{figures/Tuto_countstate_box.pdf}: \verb|'#AvatarCountState'|
+	\item \includegraphics[width=2.7cm]{figures/Tuto_tsetstate_box.pdf}: \verb|'#AvatarSetTimerState'|
+	\item \includegraphics[width=2.0cm]{figures/Tuto_tresetstate_box.pdf}: \verb|'#AvatarResetTimerState'|
+	\item \includegraphics[width=2.1cm]{figures/Tuto_texpirestate_box.pdf}: \verb|'#AvatarExpireTimerState'|
+	\item pre-send state: \verb|'#AvatarPreSendState'|
+\item pre-receive state: \verb|'#AvatarPreReceiveState'|
+\end{itemize}
+
+Due to Avatar semantics, the way an outgoing transition from a state is selected relies on a server. Except for stop-states (which have no outgoing edges), the general process is the following one:
+\begin{itemize}
+	\item The n outgoing edges from a state are numbered from 1 to n.
+	\item the state sends a pool (a list) of requests to the server, which contains exactly one request per outgoing edge, respecting the edge order. 
+	\item As an answer, the server provides the selected edge number. This may block if requests in the pool are blocking communication requests, in which case the state is blocked (no outgoing transition occur) as it waits for a server response that does not arrive.
+	\item the SysML outgoing transitions of the state are guarded by this received number
+\end{itemize}
+
+
+All requests are build using constructors which depend on the type of the target state of the associated outgoing edge, except the special ones \verb|'#NOKrequest'(i)| (for the i-th outgoing edge) which are unsatisfiable (they will never be selected). Such unsatisfiable requests are used for outgoing edges with false guard.
+
+\subsubsection{State Declarations}
+Each state has a function (a SysML  V2 calculation) for computing its pool of requests. If it is not the default one, this function must be provided as a feature specialization while declaring the state. For  \verb|'#AvatarStandardState'|, this feature is called {\ttfamily '@pool'} (as there may be severall outgoing edges), and for other box types, this feature is called {\ttfamily '@request'} (as there may be at most one outgoing edge). The pool may be empty or null, which is automatically the case for \verb|'#AvatarStopState'| (which thus support no {\ttfamily '@pool'} or {\ttfamily '@request'} specialization).
+
+Let \verb|REQ_i| denote a request build for outgoing edge i using a constructor depending of the type of the target of this edge (detailed in section \ref{sec:requests}), and \verb|guard_i| denote the guard associated with this edge. The specification of states providing pool function as feature specialization is done as following.
+
+\begin{sysmlbox}{\small
+	\begin{verbatim}// for each standard state with n outgoing transitions
+state statename :'#AvatarStandardState' {
+    calc '@pool' redefines '@pool' = {(
+       if guard_1 ? REQ_1 else '#NOKrequest'(i),
+       REQ_2, // empty guard example
+        ...
+       if guard_n ? REQ_n else '#NOKrequest'(n)
+    )};
+}
+
+// for the single start state
+entry action startstatename : '#AvatarStartState' {
+    calc '@request' redefines '@request' = { if guard_1 ? REQ_1 else '#NOKrequest'(i) };
+}
+
+// for the single stop state
+exit action stopstatename : '#AvatarStopState';
+
+// for each state with AvatarStateType in  '#AvatarPreReceiveState',
+// '#AvatarPreSendState', '#AvatarReceiveState', '#AvatarSendState'
+// '#AvatarSetTimerState', '#AvatarResetTimerState', '#AvatarExpireTimerState'
+state statename : AvatarStateType {
+    calc '@request' redefines '@request' = { if guard_1 ? REQ_1 else '#NOKrequest'(1) };
+}\end{verbatim}
+}\end{sysmlbox}
+Note how the SysML {\ttfamily if-else} construct is used to implement the guards of the outgoing edges. Except for stop-states, the default pool (when no pool parameter is provided) is the most used one: it contains one single request, with no guard, for an outgoing transition whose target state is not a communication state (send or receive box, and timer related boxes).
+
+\vspace{1mm}
+As they modify the values of block attributes, \verb|'#AvatarRandomState'| and \verb|'#AvatarCountState'| have an additional feature specialization: the action that implements this modifying. This is specified respecting the following template.
+\begin{sysmlbox}{\small
+		\begin{verbatim}
+// for each random state with assignment x:=random(low,high)
+state 'statename' : '#AvatarRandomState' {
+    calc '@request' redefines '@request' = {...};
+    action '@state_action' redefines '@state_action' {
+        first start;
+        then assign x := '#bound_random'(low,high);
+        then done;
+    }
+}
+
+// for each count state with target x and fifo channel fifo
+state 'statename' : '#AvatarCountState' {
+    calc '@request' redefines '@request' = {...};
+    action '@state_action' redefines '@state_action' {
+        first start;
+        then assign x := fifo.amount();
+        then done;
+    }
+}
+\end{verbatim}
+}\end{sysmlbox}
+\subsubsection{Building Requests Using Constructors}\label{sec:requests}
+Requests \verb|REQ_i| are exclusively defined using constructors which depends on the target of the associated outgoing edge. Parameter have to be specified only if they don't have default values or are different from these values. The request constructors are the following ones.
+\begin{itemize}
+	\item \verb|'#NOKrequest'| for requests that cannot be selected (edge with false guard)
+	\item \verb|'#SendRequest'| when edge target type is \verb|'#AvatarSendState'|
+	\item \verb|'#ReceiveRequest'| when edge target type is \verb|'#AvatarReceiveState'|
+	\item \verb|'#AvatarSetTimerRequest'| when edge target type is \verb|'#AvatarSetTimerState'|
+	\item \verb|'#AvatarResetTimerRequest'| when edge target type is \verb|'#AvatarResetTimerState'|
+	\item \verb|'#AvatarExpireTimerRequest'| when edge target type is \verb|'#AvatarExpireTimerState'|
+	\item \verb|'#TrivialRequest'| in other cases\\ (target type among \verb|'#AvatarStandardState'|, \verb|'#AvatarStopState'|, \verb|'#AvatarCountState'|, \verb|'#AvatarRandomState'|, \verb|'#AvatarPreSendState'| and \verb|'#AvatarPreReceiveState'|)
+\end{itemize}
+Moreover
+\begin{itemize}
+	\item The single requests from an \verb|'#AvatarPreSendState'| is a \verb|'#SendRequest'|
+	\item The single requests from an \verb|'#AvatarPreReceiveState'| is a \verb|'#ReceiveRequest'|
+\end{itemize}
+
+All requests have an {\ttfamily '@index'} parameter (the outgoing edge index) and a {\ttfamily '@delay'} parameter, which are optional: the default index of a request is 1 and the default delay is 0. The default request pool is \verb|#immediate_request| which is defined by \verb|'#TrivialRequest'()| and thus has these default index and delay values. The use of request constructors respects the following template. Communication requests require a channel parameter, and send requests require a payload. Timer-set and timer-reset requests are special kinds of send request, and timer-expire is a special kind of receive request.
+
+\begin{sysmlbox}{\small
+	\begin{verbatim}// for unsatisfiable request i
+#NOKrequest(i)
+// or
+#NOKrequest('@index' = i)
+		
+// for send request i on channel c with delay(l,h) and
+// out-signal profile (t1 x1,...,tn xn) defined in message type MSG_c, 
+// called on (a1,...,an), REQ_i is 
+'#SendRequest'(
+    '@index' = i,
+    '@channel' = c,
+    '@delay' = '#bound_random'(l, h),
+    '@payload' = MSG_c (
+        x1= a1,
+        ...
+        xn= an )
+)
+
+// for receive request i on channel c without delay, REQ_i is
+'#ReceiveRequest'(
+    '@index' = i,
+    '@channel' = c
+)
+
+// for ^trivial requests with delay(l,h),  REQ_i is
+'#TrivialRequest'(
+   '@index' = i,
+   '@delay' = '#bound_random'(l, h)
+)
+// #immediate_request may be used for i=1 and delay=0
+
+// for operation requests on timer t, REQ_i is
+'#AvatarSetTimerRequest'(
+    '@index' =  i,
+    '@channel'= t.'@set',
+    '@payload' = '#TimerSetMsg'(10)
+)
+'#AvatarResetTimerRequest'(
+    '@index' =  i,
+    '@channel'= t.'@reset'
+)	
+'#AvatarExpireTimerRequest'(
+    '@index' =  i,
+    '@channel'= t.'@expire'
+)
+\end{verbatim}
+}\end{sysmlbox}
+\subsubsection{Transition Declarations}
+As outgoing transitions are selected by a server providing a transition number, they are guarded using only their numbers so that only the transition associated to the selected request is enabled w.r.t. SysML semantics.  Actions on Avatar transitions are interpreted by actions on SysML transitions. Due to the decomposition presented at the beginning of section \ref{sec:statemachines}, page \pageref{lbl:transdecomp}, transitions to send or receive states have no associated avatar actions. However a receiving transition has specific SysML actions that implement the updating of attribute with the received payload in server response. The transition index and the potential receive payload contained in the server response to the source state of a transition are available in this transition through its features {\ttfamily '@index'} and {\ttfamily '@payload'}.
+
+\begin{sysmlbox}{\small
+	\begin{verbatim}// transition i from a state s to a #ReceiveState r on channel c
+// with in-signal profile (t1 x1,...,tn xn) defined in message type MSG_c,
+// called on (a1,...an)
+transition : '#AvatarTransition' first s if '@index' == i
+    do action : '#ReceiveAction'  {
+        item '@msg' : MSG_c = '@payload' as MSG_c; // kind of cast
+        first start;
+        then assign a1 := '@msg'.x1;
+        ...
+        then assign a1 := '@msg'.xn;
+        then done;
+    } then r;
+
+// other transition i from src to tgtstate with actions a1,...,an
+transition : '#AvatarTransition' first src if '@index' == i
+    do action : '#TransitionAction' {
+        first start;
+        // then, for each action, respecting order
+        // * if action ai is assignment a:= avatar_expr
+        then assign a := toSysML(avatar_expr);
+        // if action is void method call m(a1,...,an), profile (t1 x1,...,tn xn)
+        then action = m(a1, ... , an);
+        then done;
+    } then tgtstate;
+	\end{verbatim}
+}\end{sysmlbox}
+Note that if there is a single outgoing transition from a state, then the transition index does not need to be tested on the corresponding SysML transition. Thus in this case, in the illustration above, the {\tt if '@index' == 1} part can be removed. In the same way, if there is no action on the transition, the {\tt do action \{ ...\}} part can be removed. Finally, probability and probability laws can be associated to the transitions in the following way, where the laws and their parameters are the ones allowed in Avatar.
+\begin{sysmlbox}{\small
+		\begin{verbatim}
+			transition : '#AvatarTransition' first srcstate ... then tgtstate {
+			    attribute '@delayDistributionLaw' : String = "Log normal";
+			    attribute 'standard deviation' : String = "8";
+			    attribute 'mean' : String = "5";
+			    attribute '@weight' : Real = 2.0;
+			}
+		\end{verbatim}
+}\end{sysmlbox}
+\subsubsection{Illustration}
+Here we illustrate state machine declarations on two examples that comprise most of the available features.
+The first state machine example is this one:
+
+\includegraphics[width=10cm]{figures/Tuto_statemachine1a.pdf}
+
+declarations corresponding to the excerpt in box 1), where the state name created for the random box is {\ttfamily random\_0}:
+\begin{genfunction}
+	\begin{verbatim}entry action startstate :'#AvatarStartState' {
+    calc '@request' redefines '@request' = {
+        '#TrivialRequest'('@delay' = '#bound_random'(1, 5))
+    };
+}
+transition : '#AvatarTransition' first startstate
+    do action : '#TransitionAction' {
+        first start;
+        then assign x:= 1;
+        then assign b:= true;
+        then done;
+    } then random_0;
+state random_0 : '#AvatarRandomState' {
+    action '@state_action' redefines '@state_action' {
+        first start;
+        then assign x := '#bound_random'(0, 10);
+        then done;
+    }
+}
+transition : '#AvatarTransition' first random_0 then st1;\end{verbatim}
+\end{genfunction}
+This shows a start state with a trivial parametrized outgoing transition to a random state. This random state has an outgoing transition to state st1 which relies on the default request pool (one single trivial request with no delay and index 1), thus this pool has not to be provided in the state and the transition number does not need to be checked in the transition declaration.
+
+\vspace{1mm}
+Box 2 is a little bit more complex as state st1 has three outgoing transition thus the pool must be provided. Moreover, the left-most transition (nb 3) leads to a sending communication and has an associated action, thus a presend state is introduced, named {\ttfamily presnd\_out0\_0}. In the same way, the right-most transition (nb 1) leads to a receiving communication and has an associated action, thus a prereceive state is introduced, named {\ttfamily prercv\_in0\_0}. The middle transition (nb 2) leads to a count state with created name {\ttfamily count\_in0\_0}:
+\begin{genfunction}
+	\begin{verbatim}
+		state st1 : '#AvatarStandardState' {
+		    calc '@pool' redefines '@pool' = {(
+		        '#immediate_request',
+		        '#TrivialRequest'('@index' =  2, '@delay' = 3),
+		        if x > 4 ?
+		            '#TrivialRequest'('@index' =  3)
+		        else '#NOKrequest'(3)
+		    )};
+		}
+
+		transition : '#AvatarTransition' first st1 if '@index' == 1
+		    do action : '#TransitionAction' {
+		        first start;
+		        then action = m0v(x, b);
+		        then done;
+		    } then prercv_in0_0;
+		
+		transition : '#AvatarTransition' first st1 if '@index' == 2
+		then count_in0_0;
+		
+		transition : '#AvatarTransition' first st1 if '@index' == 3
+		    do action : '#TransitionAction' {
+		        first start;
+		        then assign x:= m0i(x, b);
+		        then done;
+		    } then presnd_out0_0;\end{verbatim}
+\end{genfunction}
+The prereceive state has a single outgoing receiving transition to a receive state named {\ttfamily receive\_in0\_0}, and the presend state has a single outgoing sending transition to a send state named {\ttfamily send\_out0\_0}. {\ttfamily msg\_in0} is the message type characterizing the receiving profile and {\ttfamily msg\_out0} is the message type characterizing the sending profile. {\ttfamily in0} and {\ttfamily out0} are respectively the receiving and the sending channels. both have two parameters {\ttfamily x} and {\ttfamily b}. In the exemple, they are respectively used to update and send the two block attributes with the same names, {\ttfamily x} and {\ttfamily b}.
+\begin{genfunction}
+	\begin{verbatim}state prercv_in0_0 : '#AvatarPreReceiveState' {
+		   calc '@request' redefines  '@request' = {
+		        '#ReceiveRequest'(
+		        '@channel'= in0
+		        )
+		    };
+		}
+		transition : '#AvatarTransition' first prercv_in0_0
+		    do action : '#ReceiveAction' {
+		        item '@msg' : msg_in0 = '@payload' as msg_in0;
+		        first start;
+		        then assign x := '@msg'.x;
+		        then assign b := '@msg'.b;
+		        then done;
+		    } then receive_in0_0;
+		
+		state presnd_out0_0 : '#AvatarPreSendState' {
+		    calc '@request' redefines  '@request' = {
+		        '#SendRequest'(
+		            '@channel' = out0,
+		            '@payload' = msg_out0(x,b)
+		        )
+		    };
+		}
+		transition : '#AvatarTransition' first presnd_out0_0 then send_out0_0;
+	\end{verbatim}
+\end{genfunction}
+Box 3) is quite simple as the three states {\ttfamily receive\_in0\_0}, {\ttfamily send\_out0\_0} and {\ttfamily count\_in0\_0} use the default pool and the stop state is unique in SysML:
+\begin{genfunction}
+	\begin{verbatim}exit action stopstate :'#AvatarStopState';
+		
+		state receive_in0_0 : '#AvatarReceiveState';
+		transition : '#AvatarTransition' first receive_in0_0 then stopstate;
+		
+		state count_in0_0 : '#AvatarCountState' {
+		    action '@state_action' redefines '@state_action' {
+		        first start;
+		        then assign x := in0.'@amount'();
+		        then done;
+		    }
+		}
+		transition : '#AvatarTransition' first count_in0_0 then stopstate;
+		
+		state send_out0_0 : '#AvatarSendState';
+		transition : '#AvatarTransition' first send_out0_0 then stopstate;\end{verbatim}
+\end{genfunction}
+Note that the order in which transitions and states are defined does not matter.
+
+\vspace{2mm}
+The second example essentially illustrates timer operators. Notice that timer operators are communication states. Thus, although this is not the case on this simple example, if there is some action on a transition leading to a timer operator, a precommunication state must be inserted as in the previous example. Set and Reset are sending communications (although Reset has no payload). Expire is a receiving communication. The example is the following one.
+
+\includegraphics[width=8cm]{figures/Tuto_statemachine2a.pdf}
+
+The timer is named {\ttfamily t}, and the created names for the set-timer, reset-timer and expire-timer operations are respectively {\ttfamily set\_t\_0}, {\ttfamily reset\_t\_0} and {\ttfamily expire\_t\_0}.
+
+Box 1) is represented this way:
+\begin{genfunction}
+	\begin{verbatim}entry action startstate :'#AvatarStartState';
+		transition : '#AvatarTransition' first startstate then state1;
+		
+		state state1 : '#AvatarStandardState' {
+		    '@pool' redefines '@pool' = {(
+		        '#AvatarSetTimerRequest'(
+		            '@channel' = t.'@set',
+		            '@payload' = '#TimerSetMsg'(10)
+		        ) 
+		    )};
+		}
+		transition : '#AvatarTransition' first state1 then set_t_0;\end{verbatim}
+\end{genfunction}
+
+Box 2) is represented this way:
+\begin{genfunction}
+	\begin{verbatim}state set_t_0 : '#AvatarSetTimerState';
+		transition : '#AvatarTransition' first set_t_0 then state2;
+		
+		state state2 : '#AvatarStandardState' {
+		    '@pool' redefines '@pool' = {(
+		        '#AvatarExpireTimerRequest'(
+		            '@channel' = t.'@expire'
+		        ),
+		        '#AvatarResetTimerRequest'(
+		            '@index' =  2,
+		            '@channel '= t.'@reset'
+		        )
+		    )};
+		}
+		transition : '#AvatarTransition' first state2 if '@index' == 1 then expire_t_0;
+		transition : '#AvatarTransition' first state2 if '@index' == 2 then reset_t_0;
+
+		state expire_t_0 : '#AvatarExpireTimerState';
+		transition : '#AvatarTransition' first expire_t_0 then state1;
+
+		state reset_t_0 : '#AvatarResetTimerState';
+		transition : '#AvatarTransition' first reset_t_0 then state2;
+		\end{verbatim}
+\end{genfunction}
+%$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
+\section{The SysMLV2 Library for Avatar Models}
+This library is made of fixed files that are provided and commented. Here is just a quick presentation of its content. From a methodological point of view, provided materials can be classified into two categories although they are often mixed inside the model, as SysML V2 does not offer a way to clearly separate a component interface from its implementation:
+\begin{itemize}
+	\item The common base on which Avatar instances rely. This comprises all Avatar types for blocks, states, methods,\ldots This also comprises the interfaces of some provided components which associate semantics to the models. An intuitive understanding of this base is sufficient to have an insight of the semantics of avatar instance models.
+	\item The detailed implementation/specification of all the provided features. Indeed, our modeling not only defines a SysML view of avatar models but also provide them with fully specified (as much as possible) semantics, relying on SysML V2 semantics as described in the official documentation. Although official semantics is not fully formal, it is very precise and we tried to only rely SysML constructs that have a very clear and precise meaning. Despite this precision, the provided descriptions are to be considered as specification and not as implementation, as implementation may be different and differently structured but have the same observable behaviour. In particular, we precisely
+	respect (as much as possible) the behaviour of the current Java implementation of Avatar, providing it with quasi-formal semantics. To enforce this semantical coincidence, we must add a semantical information which is not part of SysML semantics: in our model, all action occur as soon as they are enabled and they are always instantaneous when they have no explicit associated duration in the SysML V2 model. Basic actions such as assignments or (instantaneous) expression evaluations are considered as atomic (as specification is logic and not implementation).
+\end{itemize}
+In the library, all feature or type name that may occur in the generated instance look lyke {\ttfamily '\#...'} or {\ttfamily '@...'} to avoid conflict with element names of Avatar models. For other names, this is not generally required although it is sometime the case.
+
+The following sections quickly describe the different files of this library. For details, see comments inside the files.
+
+%=================================================
+\subsection{General Primitives in {\ttfamily AvatarGeneral.sysml}}
+This part contains some general features that are not provided by SysML V2. For an intuitive overview, the reader may skip this section as 1) concepts are well-known and 2) they are only used in the detailed specification of semantics, and not directly in the Avatar instance part (except random and assignment).
+
+\smalltitle{A system level discrete clock}
+Avatar relies on a global discrete time.
+\begin{sysmlbox}{\small
+		\verb|item '#systemClock' : Clock { currentTime : Integer redefines currentTime; }|
+}\end{sysmlbox}
+
+\smalltitle{A random primitive}
+We define a random function which returns a randomly chosen integer between two bounds.
+\begin{sysmlbox}{\small
+		\verb|calc '#bound_random' { in low : Positive; in high : Positive; ...}|
+}\end{sysmlbox}
+
+\smalltitle{Multiset utilities}
+We provide tools to handle multisets represented by sequences. A general tool for iterating on multisets is defined and then used to define some usual functions. For this, some trivial functions are defined to instantiate the general iteration tool parameters.
+\begin{sysmlbox}{\small
+		\begin{verbatim}
+			action '#nop'; // the action which does nothing
+			calc def '#Unary_predicate' {...} // predicate with one single parameter
+			action def '#Unary_action' {...} // action with one single parameter
+			action '#unary_nop' : '#Unary_action' {...} // action that does nothing
+			calc '#unary_true' : '#Unary_predicate' {...} // predicate returning true
+			calc '#identity' {...} // returns a predicate that tests equality to tgt
+			
+			action '#multiset_iter' { // iterate tests and actions on a multiset
+			    in multiset : Anything[0..*] ordered nonunique;       // the multiset
+			    in pred : '#Unary_predicate'  default '#unary_true';  // to select elements
+			    in pre_act : '#Unary_action'  default '#unary_nop';   // applied before if_act
+			    in if_act : '#Unary_action'   default '#unary_nop';   // applied on selected elems
+			    in post_act : '#Unary_action'  default '#unary_nop';  // applied after if_act
+			    out selected : Anything[0..*];                        // all x satisfying pred
+			    out discarded : Anything[0..*];                       // all x not satisfying pred
+			    ... 
+			}
+			calc '#multiset_random' {...} // randomly returns an element
+			action '#multiset_remove' {...} // removes elements satisfying a predicate
+			calc '#multiset_exists' {...} // tests if some elements satisfy a predicate
+		\end{verbatim}
+}\end{sysmlbox}
+
+\smalltitle{A simple semaphore}
+We define a size-1 semaphore to be used to protect critical sections.
+\begin{sysmlbox}{\small
+		\begin{verbatim}part def '#Lock' {
+			    action lock {...} // waits untill protected ressource is available, then lock it
+			    action unlock {...}// releases the protected ressource
+			}
+		\end{verbatim}
+}\end{sysmlbox}
+
+%=================================================
+\subsection{Avatar Communications in {\ttfamily AvatarCommunication.sysml}}
+This section describes a part of Avatar base that is directly used by Avatar instances. In Avatar, channels are connections between one output signals and one input signals. These connection are associated to Avatar relations which provide them with transmission modes (fifo, synchroneous). Relations may also make channel private. All channels of a relation are relying the same two end blocks which are attributes in the SysML representation of the relation. Fifo relations have additional attributes as fifos have a size and may be lossy. They also may block or not when trying to send on a full fifo, which is modelled by specialization.
+
+\begin{sysmlbox}{\small
+		\begin{verbatim}abstract part def '#Relation'; // Avatar relations
+			part def '#Sync_Rel' :> '#Relation'; // Avatar synchroneous relations
+			abstract part def '#Fifo_Rel' :> '#Relation' {..}  // Avatar fifo relations
+			part def '#Bfifo_Rel' :> '#Fifo_Rel'; // fifo relations with blocking send */
+			part def '#NBfifo_Rel' :> '#Fifo_Rel'; // fifo relations with non-blocking send */
+		\end{verbatim}
+}\end{sysmlbox}
+
+Channels convey messages (to be specialized in instances). A special acknowledgment message is used to signal successful synchronisation that do not convey payload (to acknowledge a send request, for example). However, in the current version of the Avatar-SysML software, this message cannot be used for sending requests with empty payload: an message type with no field must be declared.
+\begin{sysmlbox}{\small
+		\begin{verbatim}abstract item def '#Message'; // conveyed by channels, or acknowledgment
+			individual item def '#AckMessage' :> '#Message'; // Type of the acknowledgment message
+			individual item '#ack_message' : '#AckMessage'; // The acknowledgment message
+			part def '#DataMessage' :> '#Message'; // Type of other messages conveyed by channels
+			part def '#InMessage' :> '#DataMessage'; // for input signal profiles
+			part def '#OutMessage' :> '#InMessage'; // for output signal profiles
+			\end{verbatim}
+	}\end{sysmlbox}
+	
+	Channels are partitioned with respect to the transmission modes of their associated relation.
+	\begin{sysmlbox}{\small
+			\begin{verbatim}
+				abstract part def '#Channel' { readonly part relation : '#Relation'; }
+				part def '#Sync' :> '#Channel' {
+				    public readonly item '@relation' : '#Sync_Rel' redefines '@relation';
+				}
+				abstract part def '#Fifo' :> '#Channel' {
+				    public readonly item '@relation' : '#Fifo_Rel' redefines '@relation';
+				    calc amount {...} // returns size of content
+				    calc get {...} // removes and returns head
+				    action put {...} // put at end
+				    ...  
+				}
+				part def '#Bfifo' :> '#Fifo' {...}
+				part def '#NBfifo' :> '#Fifo' {...}
+			\end{verbatim}
+	}\end{sysmlbox}
+	Only channel types and fifo \verb|amount| operations are directly used in Avatar instances, which contain a declaration of their channels and may use \verb|amount| in "Count" state actions.. Actions such as fifo's {\ttfamily put} or {\ttfamily get} are only used in the detailed specification of the server behaviour. Fifo behaviour is described in detail. Fifo methods are not robust against parallelism which is not a problem as no parallel call occur in our Avatar SysMLV2 models.
+	
+	%=================================================
+	\subsection{The Avatar Transition Server, in {\ttfamily AvatarTransitionServer.sysml}}
+	Avatar state-machines seem to be close to SysMLV2 state-machines but a subtle difference about enabled transitions compromises quasi-direct transcription. In SysMLV2, a transition is enabled as soon as its guard is satisfied and its potential trigger (which can be a delay) occurs. In Avatar, if the target of the transition is some communication (a send or a receive), this communication must be feasible (not blocked) to enable the transition. This forward looking is not directly representable by SysMLV2 constructs. Thus we describe the selection of an enabled transition by way of a centralized server as this is done in the Java implementation of Avatar. The behaviour of this server is fully described in the model but not detailed in this document. Here we only describe its interface, i.e. its interactions with other components. These interactions precisely respect the behaviour of the Java server, i.e the same transitions are enabled and possibly selected, at the same dates. However, although they can be memorized in the SysML model, the probability laws associated to the transitions are not taken into account in the description of semantics.
+	
+	The server is used to select a transition to fire among the enabled outgoing transitions of a state of an Avatar state-machine. For this, states will submit pools of requests to the server, where each request is associated to one of its outgoing transitions. Then, as soon as some requests in the pool are feasible, the server chose one of them and send a response to the requestor (the state) associated to the submitted pool. This response identifies the selected request and provides the associated payload (transmitted message for receive requests, and acknowledgment in other cases).
+	
+	Requests are classified using SysMLV2 specialization. As a pool of request exactly contain one request per outgoing transition, some of them are directly definitively disabled: the ones that have a false guard. They are "NOK requests". The other ones are "OK requests". Among them, some are directly enabled (leaving aside their delai): the ones that are do not lead to communications (depending on the other communication end), as their feasibility does not depend on anything. Such requests are called trivial. Remaining requests are communication request. Each request has a transition index, i.e. the index of its associated transition w.r.t. the fixed order of outgoing transitions of the concerned source state. OK requests have a delay (which may be 0).
+	
+	\begin{sysmlbox}{\small
+			\begin{verbatim}
+				abstract part def '#Request' { attribute '@index' : Positive default 1; }
+				
+				part def '#NOKrequest' :> '#Request'; // requests with false guard
+				
+				abstract part def '#OKrequest' :> '#Request' {... // requests with true guard
+				    attribute delay : Positive default 0; }
+				
+				part def '#TrivialRequest' :> '#OKrequest'; // trivially feasible requests after delai
+				
+				item '#immediate_request' : '#TrivialRequest';
+				
+				abstract part def '#CommunicationRequest' :> '#OKrequest' {... // communication
+				    item '@channel' : '#Channel'; }
+				
+				part def '#SendRequest' :> '#CommunicationRequest' {... // outgoing communication
+				    item '@payload' : '#DataMessage'; }
+				
+				part def '#ReceiveRequest' :> '#CommunicationRequest' {...} // incomming communication
+				
+				part def '#RequestPool' {
+				    item requestor : Occurrence;
+				    item pool : '#Request'[1..*] ordered; }
+				
+				item def '#Response' {
+				    attribute '@index' : Positive;
+				    item '@payload' : '#Message'; }
+				
+				part '#transitionRequestServer' {... // the server
+				    action submit { in request_pool : '#RequestPool'; ...}
+				}
+			\end{verbatim}
+	}\end{sysmlbox}
+The following figure summarizes the different kinds of requests with their attributes and the specialization relations that rely them, as well as responses and request pools.
+
+\includegraphics[width=10.5cm]{figures/Tuto_requests.pdf}
+
+	Note that default values are specified, representing the most common/simple case: default delay is 0, default transition index is 1, and \verb|#immediate_request| is a trivial request respecting these defaults. These defaults in particular describe a simple outgoing arrow from a state, without delay or action (guards are handled another way).
+	
+	Specialized requests for implementing timer operations are presented in the next section.
+	%=================================================
+	\subsection{Avatar Bloc Components, in {\ttfamily AvatarBlockTypes.sysml}}
+	This part defines the types associated to Avatar blocs and their components. They are widely used to type the components in the generated instance part of a model. Not that not only usual Avatar states are interpreted by SysML States but also all other Avatar state-machine elements that are not transitions. Moreover, technically, some transitions to communication are decomposed into two successives transitions and thus we introduce a specific state type (PreCommunicationState) for the added intermediate state between two such transitions.
+	For using the request server, outgoing transitions from a state have a fixed order (set while generating) and are numbered from 1 to n respecting this order.
+	
+	Then, the general behaviour of an Avatar SysML state consist in:
+	\begin{itemize}
+		\item perform an action (specialized w.r.t. state type).
+		\item build a request pool containing one request per outgoing transition (ordered).
+		\item submit the pool to the request server
+		\item wait for a response from the server, saying that some transition has been selected.\\
+		Receiving this response updates the selected transition and the payload attribute in the state and consequently, in all outgoing transitions.
+	\end{itemize}
+	This is done by the entry action of states.
+	
+	Note that the {\ttfamily '@pool'} or {\ttfamily '@request'} feature of a state is not directly a pool but a function that computes a pool, so that this function can be called at the right moment in the state behaviour.
+	
+	
+	\begin{sysmlbox}{\small
+			\begin{verbatim}
+				abstract attribute def '#AvatarDataType';
+				part def '#AvatarBlock';
+				abstract action def '#AvatarMethod';
+				action def '#AvatarVoidMethod' :> '#AvatarMethod';
+				calc def '#AvatarCalcMethod' :> '#AvatarMethod';
+				state def '#AvatarStateMachine';
+				
+				// pool generating function
+				calc def '#PoolGen' { return result[0..*] : '#Request'; }
+				// single request pool generating function
+				calc def '#RequestGen' :> '#PoolGen' { return result[0..1] : '#Request'; }
+				
+				abstract state def '#AvatarState' {
+				    // the request pool function to be specialized by instances
+				    protected calc '@pool' : '#PoolGen' default { '#immediate_request' };
+				    // the instance specific action, to be specialized
+				    protected action '@state_action' default '#nop';
+				    // to receive server response
+				    item response : '#Response' := '#default_response';
+				    ...
+				    entry action {...}
+				}
+		state def '#AvatarStandardState' :> '#AvatarState'{
+		    private action '@state_action' redefines '@state_action' = '#nop';
+		}
+		state def '#AvatarStopState' :> '#AvatarState'{
+		    private action '@state_action' redefines '@state_action' = '#nop';
+		    private calc '@pool'[0] redefines '@pool' = { null };
+		}
+		state def '#AvatarStartState' :> '#AvatarState'{
+		    private action '@state_action' redefines '@state_action' = '#nop';
+		    protected calc '@request': '#RequestGen' redefines '@pool' 
+		        default { '#immediate_request' };	
+		}
+		abstract state def '#AvatarCommunicationState' :> '#AvatarState'{...}
+		state def '#AvatarSendState' :> '#AvatarCommunicationState';
+		state def '#AvatarReceiveState' :> '#AvatarCommunicationState';
+		state def '#AvatarRandomState' :> '#AvatarState' {...}
+		state def '#AvatarCountState' :> '#AvatarState' {...}
+		abstract state def '#AvatarPreCommunicationState' :> '#AvatarState' {...}
+		state def '#AvatarPreSendState' :> '#AvatarPreCommunicationState';
+		state def '#AvatarPreReceiveState' :> '#AvatarPreCommunicationState';
+
+		action def '#AvatarTransition' :> StateTransitionAction {
+		    attribute '@index' : Positive = 
+		        (transitionLinkSource as '#AvatarState').response.'@index';
+		    item '@payload' : '#Message' = 
+		        (transitionLinkSource as '#AvatarState').response.'@payload';
+		}
+			\end{verbatim}
+	}\end{sysmlbox}
+	Note that the two features to be specialize in instances (\verb|'@state_action'| and \verb|'@pool'|) have default values set to \verb|{ #nop }| for \verb|'@state_action'| and  for \verb|pool|, to a simple outgoing transition without delay and with non-communicating state as target. Moreover, these parameters are already partially specialized in specialized states. The excerpt above illustrate some cases: both in \verb|#AvatarStopState| and \verb|#AvatarStandardState|, the \verb|'@state_action'| is fixed to \verb|'#nop'| and thus is not to be specialized any more. The \verb|'@pool'| parameter of \verb|#AvatarStopState| is fixed to \verb|{ null }|. The one of \verb|#AvatarStartState| is restricted to a single request and thus renamed \verb|'@request'|, which is done for all specialized states with a single outgoing request. This request may be specialized in instance if it is not the default one. Finally, Avatar transitions have two additional \verb|'@index'| and \verb|'@payload'| items (w.r.t. SysMLV2 transitions), which are linked to the corresponding fields of the transition source state's response item.
+	
+	\vspace{2mm}
+	{\ttfamily AvatarBlockTypes.sysml} also contains declarations relative to timers. Avatar timer operation states and transitions are particular communication states, and thus, associated transition requests are communication requests, with a dedicated message type for set-timer requests, which have a duration as payload (a \verb|'@value'| attribute). Reset-timer requests are send requests which have no payload information and thus {\ttfamily'\#ack\_message'} is used as payload.
+
+	\begin{sysmlbox}{\small
+		\begin{verbatim}
+	part def '#TimerSetMsg' :> '#DataMessage' { attribute '@value' : Integer; }
+
+	state def '#AvatarSetTimerState' :> '#AvatarSendState';
+	state def '#AvatarResetTimerState' :> '#AvatarSendState';
+	state def '#AvatarExpireTimerState' :> '#AvatarReceiveState';
+
+	part def '#AvatarSetTimerRequest' :> '#SendRequest' {
+	    '@payload' redefines '@payload' : '#TimerSetMsg'; 
+	}
+	part def '#AvatarResetTimerRequest' :> '#SendRequest' {
+	    '@payload' redefines '@payload' = '#ack_message'; 
+	}
+	part def '#AvatarExpireTimerRequest' :> '#ReceiveRequest';
+		\end{verbatim}
+	}
+\end{sysmlbox}
+A timer is translated as a particular kind of Avatar block, with an additional {\ttfamily '@block'} attribute which is the block to which the timer belongs. Thus a timer declaration must provide this block information as parameter. As such declarations occur inside the concerned block, this associated block is simply identified by {\ttfamily self} in declarations which look like {\ttfamily part timername : '\#AvatarTimer' = '\#AvatarTimer' ('@block'=self);}.
+\begin{sysmlbox}{\small
+		\begin{verbatim}
+	part def '#AvatarTimer' :> '#AvatarBlock' {
+	    part '@block' : '#AvatarBlock';
+	    part '@set' : '#Sync' ...;
+	    part '@reset' : '#Sync' ...;
+	    part '@expire' : '#Sync' ...;
+	
+    exhibit state '@statemachine' : '#AvatarStateMachine' {...}
+}
+		\end{verbatim}
+}\end{sysmlbox}
+ As timer operations are communications, a timer block comprises one dedicated (synchronous) channel per operation: the one on which timer the timer operation requests communicate. The timer block state machine describes usual timer behaviour, with no concurrent access aspect as a timer can only be used in the state machine of a single block which does not support any parallelism.
+
+%$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
+
+
+\section{Supported Identifiers}
+A concrete implementation must avoid name clashes. Name clashes may occur between Avatar identifier and SysML keywords,  between Avatar identifier and SysML field names of the SysML libraries used in the modeling and between two Avatar identifiers for different types of components (for example a block name and a attribute name).
+
+In hand written SysMLV2 Avatar models, any Avatar identifier is allowed for any Avatar component, provided that it doesn't cause name clash, which is the responsibility of the user who writes the model.
+
+While generating, to avoid clash names, we generate secure identifiers that are build from avatar identifiers but are not Avatar identifiers. While parsing, these special identifiers are recognized and the original Avatar identifiers are extracted from them. As a consequence, in the parsed model, an avatar identifier {\ttfamily avident} and its generated version {\ttfamily makeSecureIdent(avident)} are one single identifier. The generated identifiers comprise information about the kind of elements that are denoted, but while parsing, this is not taken into account. Thus, for example, {\ttfamily '@blk:blockname'} is intended to be a block name (identified as {\ttfamily blockname} by parsing), but can be used as a signal name, for example, in handwritten specification (do not do this!). In the resulting parsed Avatar model, it is the same ident as {\ttfamily '@sig:blockname'}, which is intended to be a signal name. Thus, you can use these special identifiers, but carefully. In the following list of generated identifier, when {\ttfamily avname} {\ttfamily signalavname} or {\ttfamily timeravname} occurs, it is the original identifier in the original Avatar model or the final identifier in the avatar model obtained by parsing. When {\ttfamily createdname} occurs, it is some generated name for SysML elements that have no corresponding names in the Avatar model. These created name provide information about what they denote. For more precision about this, look at generated models. To avoid confusion, created state names have a suffix number "\verb|.N|" because, for example, there may be several "send-on-signal-sig" states in a state machine.
+\begin{genfunction}
+	SysML generated identifiers:
+	\begin{itemize}
+	\item datatypes: \verb|'@dt:avname'|
+	\item block name: \verb|'@blk:avname'|
+	\item attribute or method name: \verb|'$avname'|
+	\item datatype field names are kept as they are: \verb|'avname'|
+	\item relations between block1 and block2, depending of type: \verb|'@SYN:createdname'|, \verb|'@BF:createdname'| or \verb|'@NBF:createdname'|, where \verb|createdname| is \verb|block1name-block2name|.
+	\item channel between signal sig1 of block1 and signal sig2 of block2, depending of type: \verb|'@syn:createdname'|, \verb|'@bf:createdname'| or \verb|'@nbf:createdname'|, where \verb|createdname| is \verb|block1.sig1?block2.sig2|, with \verb|?| being \verb|>| if sig1 is an output signal and sig2 is an input signal and \verb|?| being \verb|<| otherwise.
+	\item signal profile message type name: \verb|'@MSG:createdname'|, where \verb|createdname| is  \verb|blockname.signalname|.
+	    public static String startStateSysMLname(){ return "'@st:start'"; }
+    \item start state: \verb|'@st:start'|
+	\item stop state: \verb|'@st:stop'|
+	\item standard state: \verb|'@st:standard.avavname'|
+	\item random state: \verb|'@st:random.N'|
+	\item query-on-signal state: \verb|'@st:count.signalavname.N'|
+	\item send state: \verb|'@st:send.signalavname.N'|
+	\item receive state: \verb|'@st:receive.signalavname.N'|
+	\item pre-send state: \verb|'@st:presend.signalavname.N'|
+	\item pre-receive state: \verb|'@st:prereceive.signalavname.N'|
+	\item set-timer state: \verb|'@st:set.timeravname.N'|
+	\item reset-timer state: \verb|'@st:reset.timeravname.N'|
+	\item expire-timer state: \verb|'@st:expire.timeravname.N'|
+	\item pre-set-timer state: \verb|'@st:preset.timeravname.N'|
+	\item pre-reset-timer state: \verb|'@st:prereset.timeravname.N'|
+	\item pre-expire-timer state: \verb|'@st:preexpire.timeravname.N'|
+	\item timer (block) name: \verb|'@tmr:timeravname'|	
+\end{itemize}
+\end{genfunction}
+\end{document} 
+
diff --git a/doc/avatarSysMLV2/example_models/avSysML_timerRealNames.xml b/doc/avatarSysMLV2/example_models/avSysML_timerRealNames.xml
new file mode 100644
index 0000000000000000000000000000000000000000..593a3d0e7208a1a88a85584c7c78120048b45bfb
--- /dev/null
+++ b/doc/avatarSysMLV2/example_models/avSysML_timerRealNames.xml
@@ -0,0 +1,1181 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<TURTLEGMODELING version="3.0 beta" ANIMATE_INTERACTIVE_SIMULATION="true" ACTIVATE_PENALTIES="true" UPDATE_INFORMATION_DIPLO_SIM="false" ANIMATE_WITH_INFO_DIPLO_SIM="true" OPEN_DIAG_DIPLO_SIM="false" LAST_SELECTED_MAIN_TAB="0" LAST_SELECTED_SUB_TAB="1">
+
+<Modeling type="AVATAR Design" nameTab="Design" tabs="Block Diagram$B0$B1$B1_0" >
+<AVATARBlockDiagramPanel name="Block Diagram" minX="10" maxX="2500" minY="10" maxY="1500" zoom="1.0" >
+<MainCode value="void __user_init() {"/>
+<MainCode value="}"/>
+<Optimized value="true" />
+<considerTimingOperators value="true" />
+<Validated value="B1;B1_0;B0;" />
+<Ignored value="" />
+
+<CONNECTOR type="5002" id="2" index="0" uid="e2d900d2-9cd1-419a-a79e-03081de16bf0" >
+<cdparam x="338" y="230" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="" />
+<TGConnectingPoint num="0" id="1" />
+<P1  x="315" y="285" id="98" />
+<P2  x="384" y="277" id="13" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+<extraparam>
+<iso value="in in0(int x, Point p, bool b)" />
+<osd value="out out1(int x, Point p, bool b)" />
+<isd value="in in1(int x, Point p, bool b)" />
+<oso value="out out0(int x, Point p, bool b)" />
+<FIFOType asynchronous="false" synchronousCH="true" size="1" blocking="false" private="true" broadcast="false" lossy="false" ams="false" />
+</extraparam>
+</CONNECTOR>
+<COMPONENT type="5000" id="84" index="1" uid="94fc245f-ba93-486c-a741-c888fb20658d" >
+<cdparam x="356" y="175" />
+<sizeparam width="229" height="228" minWidth="5" minHeight="2" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="Block" value="B1" />
+<new d="false" />
+<TGConnectingPoint num="0" id="44" />
+<TGConnectingPoint num="1" id="45" />
+<TGConnectingPoint num="2" id="46" />
+<TGConnectingPoint num="3" id="47" />
+<TGConnectingPoint num="4" id="48" />
+<TGConnectingPoint num="5" id="49" />
+<TGConnectingPoint num="6" id="50" />
+<TGConnectingPoint num="7" id="51" />
+<TGConnectingPoint num="8" id="52" />
+<TGConnectingPoint num="9" id="53" />
+<TGConnectingPoint num="10" id="54" />
+<TGConnectingPoint num="11" id="55" />
+<TGConnectingPoint num="12" id="56" />
+<TGConnectingPoint num="13" id="57" />
+<TGConnectingPoint num="14" id="58" />
+<TGConnectingPoint num="15" id="59" />
+<TGConnectingPoint num="16" id="60" />
+<TGConnectingPoint num="17" id="61" />
+<TGConnectingPoint num="18" id="62" />
+<TGConnectingPoint num="19" id="63" />
+<TGConnectingPoint num="20" id="64" />
+<TGConnectingPoint num="21" id="65" />
+<TGConnectingPoint num="22" id="66" />
+<TGConnectingPoint num="23" id="67" />
+<TGConnectingPoint num="24" id="68" />
+<TGConnectingPoint num="25" id="69" />
+<TGConnectingPoint num="26" id="70" />
+<TGConnectingPoint num="27" id="71" />
+<TGConnectingPoint num="28" id="72" />
+<TGConnectingPoint num="29" id="73" />
+<TGConnectingPoint num="30" id="74" />
+<TGConnectingPoint num="31" id="75" />
+<TGConnectingPoint num="32" id="76" />
+<TGConnectingPoint num="33" id="77" />
+<TGConnectingPoint num="34" id="78" />
+<TGConnectingPoint num="35" id="79" />
+<TGConnectingPoint num="36" id="80" />
+<TGConnectingPoint num="37" id="81" />
+<TGConnectingPoint num="38" id="82" />
+<TGConnectingPoint num="39" id="83" />
+<extraparam>
+<blockType data="block" color="-4072719" />
+<CryptoBlock value="false" />
+</extraparam>
+</COMPONENT>
+<SUBCOMPONENT type="5000" id="43" index="4" uid="2b8839f5-8a46-4ef8-b202-68d15fae0cbb" >
+<father id="84" num="0" />
+<cdparam x="384" y="239" />
+<sizeparam width="183" height="154" minWidth="5" minHeight="2" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<cdrectangleparam minX="0" maxX="46" minY="0" maxY="74" />
+<infoparam name="Block0" value="B1_0" />
+<new d="false" />
+<TGConnectingPoint num="0" id="3" />
+<TGConnectingPoint num="1" id="4" />
+<TGConnectingPoint num="2" id="5" />
+<TGConnectingPoint num="3" id="6" />
+<TGConnectingPoint num="4" id="7" />
+<TGConnectingPoint num="5" id="8" />
+<TGConnectingPoint num="6" id="9" />
+<TGConnectingPoint num="7" id="10" />
+<TGConnectingPoint num="8" id="11" />
+<TGConnectingPoint num="9" id="12" />
+<TGConnectingPoint num="10" id="13" />
+<TGConnectingPoint num="11" id="14" />
+<TGConnectingPoint num="12" id="15" />
+<TGConnectingPoint num="13" id="16" />
+<TGConnectingPoint num="14" id="17" />
+<TGConnectingPoint num="15" id="18" />
+<TGConnectingPoint num="16" id="19" />
+<TGConnectingPoint num="17" id="20" />
+<TGConnectingPoint num="18" id="21" />
+<TGConnectingPoint num="19" id="22" />
+<TGConnectingPoint num="20" id="23" />
+<TGConnectingPoint num="21" id="24" />
+<TGConnectingPoint num="22" id="25" />
+<TGConnectingPoint num="23" id="26" />
+<TGConnectingPoint num="24" id="27" />
+<TGConnectingPoint num="25" id="28" />
+<TGConnectingPoint num="26" id="29" />
+<TGConnectingPoint num="27" id="30" />
+<TGConnectingPoint num="28" id="31" />
+<TGConnectingPoint num="29" id="32" />
+<TGConnectingPoint num="30" id="33" />
+<TGConnectingPoint num="31" id="34" />
+<TGConnectingPoint num="32" id="35" />
+<TGConnectingPoint num="33" id="36" />
+<TGConnectingPoint num="34" id="37" />
+<TGConnectingPoint num="35" id="38" />
+<TGConnectingPoint num="36" id="39" />
+<TGConnectingPoint num="37" id="40" />
+<TGConnectingPoint num="38" id="41" />
+<TGConnectingPoint num="39" id="42" />
+<extraparam>
+<blockType data="block" color="-4072719" />
+<CryptoBlock value="false" />
+<Attribute access="0" var="0" id="x" value="0" type="8" typeOther="" />
+<Attribute access="0" var="0" id="b" value="false" type="4" typeOther="" />
+<Attribute access="0" var="0" id="p" value="" type="5" typeOther="Point" />
+<Attribute access="0" var="0" id="t" value="" type="9" typeOther="" />
+<Signal value="in in1(int x, Point p, bool b)" attached="true" />
+<Signal value="out out1(int x, Point p, bool b)" attached="true" />
+</extraparam>
+</SUBCOMPONENT>
+
+<COMPONENT type="5003" id="93" index="2" uid="8aa452d0-d94c-4687-872a-d8da736a353a" >
+<cdparam x="235" y="77" />
+<sizeparam width="93" height="88" minWidth="5" minHeight="2" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="DataType" value="Point" />
+<new d="false" />
+<TGConnectingPoint num="0" id="85" />
+<TGConnectingPoint num="1" id="86" />
+<TGConnectingPoint num="2" id="87" />
+<TGConnectingPoint num="3" id="88" />
+<TGConnectingPoint num="4" id="89" />
+<TGConnectingPoint num="5" id="90" />
+<TGConnectingPoint num="6" id="91" />
+<TGConnectingPoint num="7" id="92" />
+<extraparam>
+<Attribute access="0" var="0" id="x" value="0" type="8" typeOther="" />
+<Attribute access="0" var="0" id="y" value="0" type="8" typeOther="" />
+</extraparam>
+</COMPONENT>
+
+<COMPONENT type="5000" id="134" index="3" uid="06d9b9cf-d5f5-46a8-ba3d-befc1c5aff9f" >
+<cdparam x="97" y="180" />
+<sizeparam width="218" height="210" minWidth="5" minHeight="2" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="Block" value="B0" />
+<new d="false" />
+<TGConnectingPoint num="0" id="94" />
+<TGConnectingPoint num="1" id="95" />
+<TGConnectingPoint num="2" id="96" />
+<TGConnectingPoint num="3" id="97" />
+<TGConnectingPoint num="4" id="98" />
+<TGConnectingPoint num="5" id="99" />
+<TGConnectingPoint num="6" id="100" />
+<TGConnectingPoint num="7" id="101" />
+<TGConnectingPoint num="8" id="102" />
+<TGConnectingPoint num="9" id="103" />
+<TGConnectingPoint num="10" id="104" />
+<TGConnectingPoint num="11" id="105" />
+<TGConnectingPoint num="12" id="106" />
+<TGConnectingPoint num="13" id="107" />
+<TGConnectingPoint num="14" id="108" />
+<TGConnectingPoint num="15" id="109" />
+<TGConnectingPoint num="16" id="110" />
+<TGConnectingPoint num="17" id="111" />
+<TGConnectingPoint num="18" id="112" />
+<TGConnectingPoint num="19" id="113" />
+<TGConnectingPoint num="20" id="114" />
+<TGConnectingPoint num="21" id="115" />
+<TGConnectingPoint num="22" id="116" />
+<TGConnectingPoint num="23" id="117" />
+<TGConnectingPoint num="24" id="118" />
+<TGConnectingPoint num="25" id="119" />
+<TGConnectingPoint num="26" id="120" />
+<TGConnectingPoint num="27" id="121" />
+<TGConnectingPoint num="28" id="122" />
+<TGConnectingPoint num="29" id="123" />
+<TGConnectingPoint num="30" id="124" />
+<TGConnectingPoint num="31" id="125" />
+<TGConnectingPoint num="32" id="126" />
+<TGConnectingPoint num="33" id="127" />
+<TGConnectingPoint num="34" id="128" />
+<TGConnectingPoint num="35" id="129" />
+<TGConnectingPoint num="36" id="130" />
+<TGConnectingPoint num="37" id="131" />
+<TGConnectingPoint num="38" id="132" />
+<TGConnectingPoint num="39" id="133" />
+<extraparam>
+<blockType data="block" color="-4072719" />
+<CryptoBlock value="false" />
+<Attribute access="0" var="0" id="x" value="" type="8" typeOther="" />
+<Attribute access="0" var="0" id="b" value="" type="4" typeOther="" />
+<Attribute access="0" var="0" id="p" value="" type="5" typeOther="Point" />
+<Attribute access="0" var="0" id="y" value="" type="8" typeOther="" />
+<Method value="Point make(int x, int y)" />
+<Method value="int getx(Point p)" />
+<Method value="foo(bool b, Point p, int x)" />
+<Signal value="in in0(int x, Point p, bool b)" attached="true" />
+<Signal value="out out0(int x, Point p, bool b)" attached="true" />
+</extraparam>
+</COMPONENT>
+
+
+</AVATARBlockDiagramPanel>
+
+<AVATARStateMachineDiagramPanel name="B0" minX="16" maxX="3906" minY="16" maxY="2344" zoom="1.5625" >
+<CONNECTOR type="5102" id="141" index="0" uid="1146a1cf-2f3c-4f6a-9b58-131f269eed11" >
+<cdparam x="359" y="240" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="140" />
+<P1  x="359" y="240" id="175" />
+<P2  x="359" y="309" id="187" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="139" index="9" uid="c3a05878-d247-4b3b-b344-d32b2ad13ad7" >
+<father id="141" num="0" />
+<cdparam x="379" y="240" />
+<sizeparam width="119" height="48" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="16" maxX="3906" minY="16" maxY="2344" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="135" />
+<TGConnectingPoint num="1" id="136" />
+<TGConnectingPoint num="2" id="137" />
+<TGConnectingPoint num="3" id="138" />
+<extraparam>
+<guard value="[ ]" enabled="true"/>
+<afterMin value="" enabled="true"/>
+<afterMax value="" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+<actions value="p = make(x,y)" enabled="true"/>
+<actions value="x = getx(p)" enabled="true"/>
+</extraparam>
+</SUBCOMPONENT>
+
+<CONNECTOR type="5102" id="148" index="1" uid="1f01956e-7a84-47df-9fd9-f7a45d1e5f4c" >
+<cdparam x="172" y="610" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="3125" maxHeight="3125" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="147" />
+<P1  x="359" y="446" id="164" />
+<P2  x="359" y="493" id="185" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="146" index="10" uid="de96ca94-86cb-4bf3-b63e-421a93ccfc67" >
+<father id="148" num="0" />
+<cdparam x="172" y="668" />
+<sizeparam width="50" height="25" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="3906" minY="10" maxY="2343" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="142" />
+<TGConnectingPoint num="1" id="143" />
+<TGConnectingPoint num="2" id="144" />
+<TGConnectingPoint num="3" id="145" />
+<extraparam>
+<guard value="[ ]" enabled="true"/>
+<afterMin value="" enabled="true"/>
+<afterMax value="" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+</extraparam>
+</SUBCOMPONENT>
+
+<CONNECTOR type="5102" id="155" index="2" uid="1a1f75f0-3055-4d7a-aa5a-4a70634e3484" >
+<cdparam x="278" y="537" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="3125" maxHeight="3125" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="154" />
+<P1  x="359" y="354" id="188" />
+<P2  x="359" y="401" id="163" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="153" index="11" uid="14ed42f2-4c94-4e0a-9a05-d5bc511d1aa5" >
+<father id="155" num="0" />
+<cdparam x="378" y="350" />
+<sizeparam width="107" height="48" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="3906" minY="10" maxY="2343" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="149" />
+<TGConnectingPoint num="1" id="150" />
+<TGConnectingPoint num="2" id="151" />
+<TGConnectingPoint num="3" id="152" />
+<extraparam>
+<guard value="[p.x&gt;4 ]" enabled="true"/>
+<afterMin value="" enabled="true"/>
+<afterMax value="" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+<actions value="foo(b,p,x)" enabled="true"/>
+</extraparam>
+</SUBCOMPONENT>
+
+<CONNECTOR type="5102" id="162" index="3" uid="833ce51f-ce8d-402a-819a-526a0071f83a" >
+<cdparam x="356" y="181" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="3125" maxHeight="3125" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="161" />
+<P1  x="359" y="74" id="190" />
+<P2  x="359" y="195" id="174" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="160" index="12" uid="dd687934-2033-4ae7-a9a0-36d732978073" >
+<father id="162" num="0" />
+<cdparam x="380" y="75" />
+<sizeparam width="112" height="94" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="3906" minY="10" maxY="2343" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="156" />
+<TGConnectingPoint num="1" id="157" />
+<TGConnectingPoint num="2" id="158" />
+<TGConnectingPoint num="3" id="159" />
+<extraparam>
+<guard value="[ ]" enabled="true"/>
+<afterMin value="1" enabled="true"/>
+<afterMax value="p.x" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+<actions value="x = 1" enabled="true"/>
+<actions value="b = true" enabled="true"/>
+<actions value="p.x = x" enabled="true"/>
+</extraparam>
+</SUBCOMPONENT>
+
+<COMPONENT type="5104" id="173" index="4" uid="507ab36b-12af-40a9-b4d3-d1687f4ee635" >
+<cdparam x="303" y="408" />
+<sizeparam width="113" height="31" minWidth="30" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2499" minY="10" maxY="1500" />
+<infoparam name="Receive signal" value="in0(x, p, b)" />
+<new d="false" />
+<TGConnectingPoint num="0" id="163" />
+<TGConnectingPoint num="1" id="164" />
+<TGConnectingPoint num="2" id="165" />
+<TGConnectingPoint num="3" id="166" />
+<TGConnectingPoint num="4" id="167" />
+<TGConnectingPoint num="5" id="168" />
+<TGConnectingPoint num="6" id="169" />
+<TGConnectingPoint num="7" id="170" />
+<TGConnectingPoint num="8" id="171" />
+<TGConnectingPoint num="9" id="172" />
+</COMPONENT>
+
+<COMPONENT type="5103" id="184" index="5" uid="83bfdfcd-2185-424c-ad19-260ec86acd32" >
+<cdparam x="301" y="202" />
+<sizeparam width="116" height="31" minWidth="30" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2499" minY="10" maxY="1500" />
+<infoparam name="Send signal" value="out0(x, p, b)" />
+<new d="false" />
+<TGConnectingPoint num="0" id="174" />
+<TGConnectingPoint num="1" id="175" />
+<TGConnectingPoint num="2" id="176" />
+<TGConnectingPoint num="3" id="177" />
+<TGConnectingPoint num="4" id="178" />
+<TGConnectingPoint num="5" id="179" />
+<TGConnectingPoint num="6" id="180" />
+<TGConnectingPoint num="7" id="181" />
+<TGConnectingPoint num="8" id="182" />
+<TGConnectingPoint num="9" id="183" />
+</COMPONENT>
+
+<COMPONENT type="5101" id="186" index="6" uid="4c83d303-bd2a-4705-9638-d3da5a6d30ba" >
+<cdparam x="344" y="500" />
+<sizeparam width="31" height="31" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<cdrectangleparam minX="16" maxX="3906" minY="16" maxY="2344" />
+<infoparam name="stop state" value="null" />
+<new d="false" />
+<TGConnectingPoint num="0" id="185" />
+</COMPONENT>
+
+<COMPONENT type="5108" id="189" index="7" uid="c8fc7cc9-d99c-4e2d-b466-4e440c0ba0d7" >
+<cdparam x="261" y="316" />
+<sizeparam width="196" height="31" minWidth="46" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2499" minY="10" maxY="1500" />
+<infoparam name="TGComponent" value="null" />
+<new d="false" />
+<TGConnectingPoint num="0" id="187" />
+<TGConnectingPoint num="1" id="188" />
+<extraparam>
+<Data variable="x" minValue="0" maxValue="p.y" functionId="0" extraAttribute1="" extraAttribute2="" />
+</extraparam>
+</COMPONENT>
+
+<COMPONENT type="5100" id="191" index="8" uid="02d7e1f1-28a4-4403-9e64-d6a4786cea7d" >
+<cdparam x="348" y="44" />
+<sizeparam width="23" height="23" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<cdrectangleparam minX="10" maxX="2499" minY="10" maxY="1500" />
+<infoparam name="start state" value="null" />
+<new d="false" />
+<TGConnectingPoint num="0" id="190" />
+</COMPONENT>
+
+
+</AVATARStateMachineDiagramPanel>
+
+<AVATARStateMachineDiagramPanel name="B1" minX="10" maxX="2500" minY="10" maxY="1500" zoom="1.0" >
+<COMPONENT type="5100" id="193" index="0" uid="5ee8db59-2cb6-4210-9cac-0363ba606b88" >
+<cdparam x="400" y="50" />
+<sizeparam width="15" height="15" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="start state" value="null" />
+<new d="false" />
+<TGConnectingPoint num="0" id="192" />
+</COMPONENT>
+
+
+</AVATARStateMachineDiagramPanel>
+
+<AVATARStateMachineDiagramPanel name="B1_0" minX="10" maxX="2500" minY="10" maxY="1500" zoom="1.0" >
+<CONNECTOR type="5102" id="206" index="0" uid="74d4d087-22e6-4735-a473-2b777a473eee" >
+<cdparam x="519" y="439" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="1280" maxHeight="1280" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="202" />
+<TGConnectingPoint num="1" id="203" />
+<TGConnectingPoint num="2" id="204" />
+<TGConnectingPoint num="3" id="205" />
+<P1  x="484" y="427" id="277" />
+<P2  x="404" y="223" id="386" />
+<Point x="484" y="439" />
+<Point x="535" y="439" />
+<Point x="535" y="223" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="194" index="19" uid="36a4768a-9652-43bb-845d-209be2c965da" >
+<father id="206" num="0" />
+<cdparam x="484" y="439" />
+<sizeparam width="8" height="8" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<cdrectangleparam minX="16" maxX="2499" minY="16" maxY="1500" />
+<infoparam name="point " value="null" />
+<new d="false" />
+</SUBCOMPONENT>
+<SUBCOMPONENT type="-1" id="195" index="20" uid="39ef4810-055d-4eaf-a409-784ef6b1a786" >
+<father id="206" num="1" />
+<cdparam x="535" y="439" />
+<sizeparam width="8" height="8" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<cdrectangleparam minX="16" maxX="2499" minY="16" maxY="1500" />
+<infoparam name="point " value="null" />
+<new d="false" />
+</SUBCOMPONENT>
+<SUBCOMPONENT type="-1" id="196" index="21" uid="026cf268-175f-4163-a255-750c9c778d1d" >
+<father id="206" num="2" />
+<cdparam x="535" y="223" />
+<sizeparam width="8" height="8" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<cdrectangleparam minX="16" maxX="2499" minY="16" maxY="1500" />
+<infoparam name="point " value="null" />
+<new d="false" />
+</SUBCOMPONENT>
+<SUBCOMPONENT type="-1" id="201" index="22" uid="7270605d-c970-425f-8bf8-b5065cf75ec2" >
+<father id="206" num="3" />
+<cdparam x="438" y="311" />
+<sizeparam width="50" height="25" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="16" maxX="2499" minY="16" maxY="1500" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="197" />
+<TGConnectingPoint num="1" id="198" />
+<TGConnectingPoint num="2" id="199" />
+<TGConnectingPoint num="3" id="200" />
+<extraparam>
+<guard value="[ ]" enabled="true"/>
+<afterMin value="" enabled="true"/>
+<afterMax value="" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+</extraparam>
+</SUBCOMPONENT>
+
+<CONNECTOR type="5102" id="213" index="1" uid="928bb940-f1ee-436c-9f17-4857b6f782aa" >
+<cdparam x="484" y="373" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="1280" maxHeight="1280" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="212" />
+<P1  x="485" y="373" id="329" />
+<P2  x="484" y="397" id="276" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="211" index="23" uid="0213b0ca-9329-414a-80ad-7921a4d9583b" >
+<father id="213" num="0" />
+<cdparam x="501" y="391" />
+<sizeparam width="50" height="25" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="16" maxX="2499" minY="16" maxY="1500" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="207" />
+<TGConnectingPoint num="1" id="208" />
+<TGConnectingPoint num="2" id="209" />
+<TGConnectingPoint num="3" id="210" />
+<extraparam>
+<guard value="[ ]" enabled="true"/>
+<afterMin value="" enabled="true"/>
+<afterMax value="" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+</extraparam>
+</SUBCOMPONENT>
+
+<CONNECTOR type="5102" id="226" index="2" uid="bc2e2186-ed41-4917-b20c-6144ac1bf4d7" >
+<cdparam x="429" y="424" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="222" />
+<TGConnectingPoint num="1" id="223" />
+<TGConnectingPoint num="2" id="224" />
+<TGConnectingPoint num="3" id="225" />
+<P1  x="410" y="428" id="288" />
+<P2  x="398" y="348" id="301" />
+<Point x="409" y="441" />
+<Point x="366" y="441" />
+<Point x="366" y="348" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="214" index="24" uid="0de4328e-37e4-435d-81e5-d1d840c7b967" >
+<father id="226" num="0" />
+<cdparam x="409" y="441" />
+<sizeparam width="8" height="8" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<cdrectangleparam minX="10" maxX="2499" minY="10" maxY="1499" />
+<infoparam name="point " value="null" />
+<new d="false" />
+</SUBCOMPONENT>
+<SUBCOMPONENT type="-1" id="215" index="25" uid="4cdf03f5-ab6b-4197-961f-5725ef18f4c2" >
+<father id="226" num="1" />
+<cdparam x="366" y="441" />
+<sizeparam width="8" height="8" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<cdrectangleparam minX="10" maxX="2499" minY="10" maxY="1499" />
+<infoparam name="point " value="null" />
+<new d="false" />
+</SUBCOMPONENT>
+<SUBCOMPONENT type="-1" id="216" index="26" uid="c81192a6-0500-4f55-b09a-6458263194a2" >
+<father id="226" num="2" />
+<cdparam x="366" y="348" />
+<sizeparam width="8" height="8" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<cdrectangleparam minX="10" maxX="2499" minY="10" maxY="1499" />
+<infoparam name="point " value="null" />
+<new d="false" />
+</SUBCOMPONENT>
+<SUBCOMPONENT type="-1" id="221" index="27" uid="fe9df050-f3a4-40b9-be8f-2206708a7e69" >
+<father id="226" num="3" />
+<cdparam x="413" y="386" />
+<sizeparam width="50" height="25" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2499" minY="10" maxY="1499" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="217" />
+<TGConnectingPoint num="1" id="218" />
+<TGConnectingPoint num="2" id="219" />
+<TGConnectingPoint num="3" id="220" />
+<extraparam>
+<guard value="[ ]" enabled="true"/>
+<afterMin value="" enabled="true"/>
+<afterMax value="" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+</extraparam>
+</SUBCOMPONENT>
+
+<CONNECTOR type="5102" id="233" index="3" uid="fbada9ae-ff5e-4412-920c-379b7fa44bea" >
+<cdparam x="422" y="373" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="232" />
+<P1  x="410" y="373" id="326" />
+<P2  x="410" y="398" id="287" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="231" index="28" uid="7a339b9b-cfe9-41af-9206-3daa79b45745" >
+<father id="233" num="0" />
+<cdparam x="425" y="384" />
+<sizeparam width="50" height="25" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2499" minY="10" maxY="1499" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="227" />
+<TGConnectingPoint num="1" id="228" />
+<TGConnectingPoint num="2" id="229" />
+<TGConnectingPoint num="3" id="230" />
+<extraparam>
+<guard value="[ ]" enabled="true"/>
+<afterMin value="" enabled="true"/>
+<afterMax value="" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+</extraparam>
+</SUBCOMPONENT>
+
+<CONNECTOR type="5102" id="240" index="4" uid="90c7cded-4725-4883-8841-04e2104531d6" >
+<cdparam x="397" y="278" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="239" />
+<P1  x="409" y="301" id="372" />
+<P2  x="410" y="323" id="314" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="238" index="29" uid="2b987670-9d6b-4c27-96f4-d6b309ccfb2e" >
+<father id="240" num="0" />
+<cdparam x="396" y="295" />
+<sizeparam width="50" height="25" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2499" minY="10" maxY="1499" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="234" />
+<TGConnectingPoint num="1" id="235" />
+<TGConnectingPoint num="2" id="236" />
+<TGConnectingPoint num="3" id="237" />
+<extraparam>
+<guard value="[ ]" enabled="true"/>
+<afterMin value="" enabled="true"/>
+<afterMax value="" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+</extraparam>
+</SUBCOMPONENT>
+
+<CONNECTOR type="5102" id="247" index="5" uid="6fa3f361-9845-4556-8ba4-a3a14d3111d5" >
+<cdparam x="358" y="209" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="246" />
+<P1  x="391" y="248" id="413" />
+<P2  x="409" y="271" id="371" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="245" index="30" uid="3df7dee5-1456-4a30-9e72-50704be7af2b" >
+<father id="247" num="0" />
+<cdparam x="377" y="228" />
+<sizeparam width="50" height="25" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2499" minY="10" maxY="1499" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="241" />
+<TGConnectingPoint num="1" id="242" />
+<TGConnectingPoint num="2" id="243" />
+<TGConnectingPoint num="3" id="244" />
+<extraparam>
+<guard value="[ ]" enabled="true"/>
+<afterMin value="" enabled="true"/>
+<afterMax value="" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+</extraparam>
+</SUBCOMPONENT>
+
+<CONNECTOR type="5102" id="254" index="6" uid="08f30cae-8315-4af1-ba7e-c7b1d755e30f" >
+<cdparam x="295" y="209" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="253" />
+<P1  x="316" y="248" id="410" />
+<P2  x="298" y="271" id="468" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="252" index="31" uid="50d6509f-dd5f-4b32-9fa5-cf9bf9197a97" >
+<father id="254" num="0" />
+<cdparam x="216" y="227" />
+<sizeparam width="50" height="25" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2499" minY="10" maxY="1499" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="248" />
+<TGConnectingPoint num="1" id="249" />
+<TGConnectingPoint num="2" id="250" />
+<TGConnectingPoint num="3" id="251" />
+<extraparam>
+<guard value="[ ]" enabled="true"/>
+<afterMin value="" enabled="true"/>
+<afterMax value="" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+</extraparam>
+</SUBCOMPONENT>
+
+<CONNECTOR type="5102" id="261" index="7" uid="5c51932f-46f4-459a-9797-88581a319459" >
+<cdparam x="292" y="226" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="260" />
+<P1  x="298" y="299" id="469" />
+<P2  x="298" y="345" id="455" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="259" index="32" uid="ea67405d-8c98-415c-9bf0-24fdf4cb37c4" >
+<father id="261" num="0" />
+<cdparam x="292" y="242" />
+<sizeparam width="50" height="25" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2499" minY="10" maxY="1499" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="255" />
+<TGConnectingPoint num="1" id="256" />
+<TGConnectingPoint num="2" id="257" />
+<TGConnectingPoint num="3" id="258" />
+<extraparam>
+<guard value="[ ]" enabled="true"/>
+<afterMin value="" enabled="true"/>
+<afterMax value="" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+</extraparam>
+</SUBCOMPONENT>
+
+<CONNECTOR type="5102" id="268" index="8" uid="9fbaf0a3-016c-40cc-952d-2d93b5149e83" >
+<cdparam x="292" y="163" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="1280" maxHeight="1280" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="267" />
+<P1  x="353" y="178" id="479" />
+<P2  x="354" y="198" id="383" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="266" index="33" uid="ad8b960b-ba33-44a2-9bb8-9ea351468048" >
+<father id="268" num="0" />
+<cdparam x="288" y="112" />
+<sizeparam width="50" height="25" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="16" maxX="2497" minY="16" maxY="1499" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="262" />
+<TGConnectingPoint num="1" id="263" />
+<TGConnectingPoint num="2" id="264" />
+<TGConnectingPoint num="3" id="265" />
+<extraparam>
+<guard value="[ ]" enabled="true"/>
+<afterMin value="" enabled="true"/>
+<afterMax value="" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+</extraparam>
+</SUBCOMPONENT>
+
+<CONNECTOR type="5102" id="275" index="9" uid="fd4f056d-39b0-4db4-b956-fe6fd3013328" >
+<cdparam x="298" y="285" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="1280" maxHeight="1280" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="274" />
+<P1  x="298" y="373" id="456" />
+<P2  x="298" y="423" id="466" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="273" index="34" uid="80004114-d230-4100-8abd-0089257c3b74" >
+<father id="275" num="0" />
+<cdparam x="297" y="305" />
+<sizeparam width="50" height="25" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="16" maxX="2497" minY="16" maxY="1499" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="269" />
+<TGConnectingPoint num="1" id="270" />
+<TGConnectingPoint num="2" id="271" />
+<TGConnectingPoint num="3" id="272" />
+<extraparam>
+<guard value="[ ]" enabled="true"/>
+<afterMin value="" enabled="true"/>
+<afterMax value="" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+</extraparam>
+</SUBCOMPONENT>
+
+<COMPONENT type="5111" id="286" index="10" uid="62c92403-5ee8-445e-bf96-3e600f59a4b9" >
+<cdparam x="451" y="402" />
+<sizeparam width="66" height="20" minWidth="30" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="Reset timer" value="expire(t)" />
+<new d="false" />
+<TGConnectingPoint num="0" id="276" />
+<TGConnectingPoint num="1" id="277" />
+<TGConnectingPoint num="2" id="278" />
+<TGConnectingPoint num="3" id="279" />
+<TGConnectingPoint num="4" id="280" />
+<TGConnectingPoint num="5" id="281" />
+<TGConnectingPoint num="6" id="282" />
+<TGConnectingPoint num="7" id="283" />
+<TGConnectingPoint num="8" id="284" />
+<TGConnectingPoint num="9" id="285" />
+</COMPONENT>
+
+<COMPONENT type="5110" id="297" index="11" uid="491c316f-9dd9-4849-979f-c56b1fd77a3c" >
+<cdparam x="385" y="403" />
+<sizeparam width="51" height="20" minWidth="40" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="Reset timer" value="reset(t)" />
+<new d="false" />
+<TGConnectingPoint num="0" id="287" />
+<TGConnectingPoint num="1" id="288" />
+<TGConnectingPoint num="2" id="289" />
+<TGConnectingPoint num="3" id="290" />
+<TGConnectingPoint num="4" id="291" />
+<TGConnectingPoint num="5" id="292" />
+<TGConnectingPoint num="6" id="293" />
+<TGConnectingPoint num="7" id="294" />
+<TGConnectingPoint num="8" id="295" />
+<TGConnectingPoint num="9" id="296" />
+</COMPONENT>
+
+<COMPONENT type="5106" id="370" index="12" uid="153cbc7a-51c9-4403-b1fa-af4ed8ae661e" >
+<cdparam x="398" y="323" />
+<sizeparam width="100" height="50" minWidth="54" minHeight="40" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="state" value="state2" />
+<new d="false" />
+<TGConnectingPoint num="0" id="298" />
+<TGConnectingPoint num="1" id="299" />
+<TGConnectingPoint num="2" id="300" />
+<TGConnectingPoint num="3" id="301" />
+<TGConnectingPoint num="4" id="302" />
+<TGConnectingPoint num="5" id="303" />
+<TGConnectingPoint num="6" id="304" />
+<TGConnectingPoint num="7" id="305" />
+<TGConnectingPoint num="8" id="306" />
+<TGConnectingPoint num="9" id="307" />
+<TGConnectingPoint num="10" id="308" />
+<TGConnectingPoint num="11" id="309" />
+<TGConnectingPoint num="12" id="310" />
+<TGConnectingPoint num="13" id="311" />
+<TGConnectingPoint num="14" id="312" />
+<TGConnectingPoint num="15" id="313" />
+<TGConnectingPoint num="16" id="314" />
+<TGConnectingPoint num="17" id="315" />
+<TGConnectingPoint num="18" id="316" />
+<TGConnectingPoint num="19" id="317" />
+<TGConnectingPoint num="20" id="318" />
+<TGConnectingPoint num="21" id="319" />
+<TGConnectingPoint num="22" id="320" />
+<TGConnectingPoint num="23" id="321" />
+<TGConnectingPoint num="24" id="322" />
+<TGConnectingPoint num="25" id="323" />
+<TGConnectingPoint num="26" id="324" />
+<TGConnectingPoint num="27" id="325" />
+<TGConnectingPoint num="28" id="326" />
+<TGConnectingPoint num="29" id="327" />
+<TGConnectingPoint num="30" id="328" />
+<TGConnectingPoint num="31" id="329" />
+<TGConnectingPoint num="32" id="330" />
+<TGConnectingPoint num="33" id="331" />
+<TGConnectingPoint num="34" id="332" />
+<TGConnectingPoint num="35" id="333" />
+<TGConnectingPoint num="36" id="334" />
+<TGConnectingPoint num="37" id="335" />
+<TGConnectingPoint num="38" id="336" />
+<TGConnectingPoint num="39" id="337" />
+<TGConnectingPoint num="40" id="338" />
+<TGConnectingPoint num="41" id="339" />
+<TGConnectingPoint num="42" id="340" />
+<TGConnectingPoint num="43" id="341" />
+<TGConnectingPoint num="44" id="342" />
+<TGConnectingPoint num="45" id="343" />
+<TGConnectingPoint num="46" id="344" />
+<TGConnectingPoint num="47" id="345" />
+<TGConnectingPoint num="48" id="346" />
+<TGConnectingPoint num="49" id="347" />
+<TGConnectingPoint num="50" id="348" />
+<TGConnectingPoint num="51" id="349" />
+<TGConnectingPoint num="52" id="350" />
+<TGConnectingPoint num="53" id="351" />
+<TGConnectingPoint num="54" id="352" />
+<TGConnectingPoint num="55" id="353" />
+<TGConnectingPoint num="56" id="354" />
+<TGConnectingPoint num="57" id="355" />
+<TGConnectingPoint num="58" id="356" />
+<TGConnectingPoint num="59" id="357" />
+<TGConnectingPoint num="60" id="358" />
+<TGConnectingPoint num="61" id="359" />
+<TGConnectingPoint num="62" id="360" />
+<TGConnectingPoint num="63" id="361" />
+<TGConnectingPoint num="64" id="362" />
+<TGConnectingPoint num="65" id="363" />
+<TGConnectingPoint num="66" id="364" />
+<TGConnectingPoint num="67" id="365" />
+<TGConnectingPoint num="68" id="366" />
+<TGConnectingPoint num="69" id="367" />
+<TGConnectingPoint num="70" id="368" />
+<TGConnectingPoint num="71" id="369" />
+<extraparam>
+</extraparam>
+</COMPONENT>
+
+<COMPONENT type="5109" id="381" index="13" uid="83cdd050-a535-466f-a3bc-8910fe1b1c16" >
+<cdparam x="364" y="276" />
+<sizeparam width="91" height="20" minWidth="40" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="Set timer" value="setTimer(t,10)" />
+<new d="false" />
+<TGConnectingPoint num="0" id="371" />
+<TGConnectingPoint num="1" id="372" />
+<TGConnectingPoint num="2" id="373" />
+<TGConnectingPoint num="3" id="374" />
+<TGConnectingPoint num="4" id="375" />
+<TGConnectingPoint num="5" id="376" />
+<TGConnectingPoint num="6" id="377" />
+<TGConnectingPoint num="7" id="378" />
+<TGConnectingPoint num="8" id="379" />
+<TGConnectingPoint num="9" id="380" />
+</COMPONENT>
+
+<COMPONENT type="5106" id="454" index="14" uid="2d76bc2d-5cb6-43ee-8143-f800f7bc2c0f" >
+<cdparam x="304" y="198" />
+<sizeparam width="100" height="50" minWidth="54" minHeight="40" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="state" value="state1" />
+<new d="false" />
+<TGConnectingPoint num="0" id="382" />
+<TGConnectingPoint num="1" id="383" />
+<TGConnectingPoint num="2" id="384" />
+<TGConnectingPoint num="3" id="385" />
+<TGConnectingPoint num="4" id="386" />
+<TGConnectingPoint num="5" id="387" />
+<TGConnectingPoint num="6" id="388" />
+<TGConnectingPoint num="7" id="389" />
+<TGConnectingPoint num="8" id="390" />
+<TGConnectingPoint num="9" id="391" />
+<TGConnectingPoint num="10" id="392" />
+<TGConnectingPoint num="11" id="393" />
+<TGConnectingPoint num="12" id="394" />
+<TGConnectingPoint num="13" id="395" />
+<TGConnectingPoint num="14" id="396" />
+<TGConnectingPoint num="15" id="397" />
+<TGConnectingPoint num="16" id="398" />
+<TGConnectingPoint num="17" id="399" />
+<TGConnectingPoint num="18" id="400" />
+<TGConnectingPoint num="19" id="401" />
+<TGConnectingPoint num="20" id="402" />
+<TGConnectingPoint num="21" id="403" />
+<TGConnectingPoint num="22" id="404" />
+<TGConnectingPoint num="23" id="405" />
+<TGConnectingPoint num="24" id="406" />
+<TGConnectingPoint num="25" id="407" />
+<TGConnectingPoint num="26" id="408" />
+<TGConnectingPoint num="27" id="409" />
+<TGConnectingPoint num="28" id="410" />
+<TGConnectingPoint num="29" id="411" />
+<TGConnectingPoint num="30" id="412" />
+<TGConnectingPoint num="31" id="413" />
+<TGConnectingPoint num="32" id="414" />
+<TGConnectingPoint num="33" id="415" />
+<TGConnectingPoint num="34" id="416" />
+<TGConnectingPoint num="35" id="417" />
+<TGConnectingPoint num="36" id="418" />
+<TGConnectingPoint num="37" id="419" />
+<TGConnectingPoint num="38" id="420" />
+<TGConnectingPoint num="39" id="421" />
+<TGConnectingPoint num="40" id="422" />
+<TGConnectingPoint num="41" id="423" />
+<TGConnectingPoint num="42" id="424" />
+<TGConnectingPoint num="43" id="425" />
+<TGConnectingPoint num="44" id="426" />
+<TGConnectingPoint num="45" id="427" />
+<TGConnectingPoint num="46" id="428" />
+<TGConnectingPoint num="47" id="429" />
+<TGConnectingPoint num="48" id="430" />
+<TGConnectingPoint num="49" id="431" />
+<TGConnectingPoint num="50" id="432" />
+<TGConnectingPoint num="51" id="433" />
+<TGConnectingPoint num="52" id="434" />
+<TGConnectingPoint num="53" id="435" />
+<TGConnectingPoint num="54" id="436" />
+<TGConnectingPoint num="55" id="437" />
+<TGConnectingPoint num="56" id="438" />
+<TGConnectingPoint num="57" id="439" />
+<TGConnectingPoint num="58" id="440" />
+<TGConnectingPoint num="59" id="441" />
+<TGConnectingPoint num="60" id="442" />
+<TGConnectingPoint num="61" id="443" />
+<TGConnectingPoint num="62" id="444" />
+<TGConnectingPoint num="63" id="445" />
+<TGConnectingPoint num="64" id="446" />
+<TGConnectingPoint num="65" id="447" />
+<TGConnectingPoint num="66" id="448" />
+<TGConnectingPoint num="67" id="449" />
+<TGConnectingPoint num="68" id="450" />
+<TGConnectingPoint num="69" id="451" />
+<TGConnectingPoint num="70" id="452" />
+<TGConnectingPoint num="71" id="453" />
+<extraparam>
+</extraparam>
+</COMPONENT>
+
+<COMPONENT type="5103" id="465" index="15" uid="2defadde-3ad2-4986-8807-b8bca2d42df1" >
+<cdparam x="260" y="350" />
+<sizeparam width="76" height="18" minWidth="29" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="Send signal" value="out1(x, p, b)" />
+<new d="false" />
+<TGConnectingPoint num="0" id="455" />
+<TGConnectingPoint num="1" id="456" />
+<TGConnectingPoint num="2" id="457" />
+<TGConnectingPoint num="3" id="458" />
+<TGConnectingPoint num="4" id="459" />
+<TGConnectingPoint num="5" id="460" />
+<TGConnectingPoint num="6" id="461" />
+<TGConnectingPoint num="7" id="462" />
+<TGConnectingPoint num="8" id="463" />
+<TGConnectingPoint num="9" id="464" />
+</COMPONENT>
+
+<COMPONENT type="5101" id="467" index="16" uid="3320dfa8-dc96-4387-a94f-25c3a07759ae" >
+<cdparam x="289" y="428" />
+<sizeparam width="18" height="18" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="stop state" value="null" />
+<new d="false" />
+<TGConnectingPoint num="0" id="466" />
+</COMPONENT>
+
+<COMPONENT type="5104" id="478" index="17" uid="6223a7dd-5783-455b-b937-fbe533f02445" >
+<cdparam x="261" y="276" />
+<sizeparam width="74" height="18" minWidth="39" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="Receive signal" value="in1(x, p, b)" />
+<new d="false" />
+<TGConnectingPoint num="0" id="468" />
+<TGConnectingPoint num="1" id="469" />
+<TGConnectingPoint num="2" id="470" />
+<TGConnectingPoint num="3" id="471" />
+<TGConnectingPoint num="4" id="472" />
+<TGConnectingPoint num="5" id="473" />
+<TGConnectingPoint num="6" id="474" />
+<TGConnectingPoint num="7" id="475" />
+<TGConnectingPoint num="8" id="476" />
+<TGConnectingPoint num="9" id="477" />
+</COMPONENT>
+
+<COMPONENT type="5100" id="480" index="18" uid="29fdf48a-fe0e-45e1-b3e2-a04dbeaf94de" >
+<cdparam x="347" y="160" />
+<sizeparam width="13" height="13" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="start state" value="null" />
+<new d="false" />
+<TGConnectingPoint num="0" id="479" />
+</COMPONENT>
+
+
+</AVATARStateMachineDiagramPanel>
+
+</Modeling>
+
+
+
+
+</TURTLEGMODELING>
\ No newline at end of file
diff --git a/doc/avatarSysMLV2/example_models/before_after_transfo.xml b/doc/avatarSysMLV2/example_models/before_after_transfo.xml
new file mode 100644
index 0000000000000000000000000000000000000000..df00f5e60aaf05cdc49323f0ece4610f456a6a3e
--- /dev/null
+++ b/doc/avatarSysMLV2/example_models/before_after_transfo.xml
@@ -0,0 +1,2119 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<TURTLEGMODELING version="3.0 beta" ANIMATE_INTERACTIVE_SIMULATION="true" ACTIVATE_PENALTIES="true" UPDATE_INFORMATION_DIPLO_SIM="false" ANIMATE_WITH_INFO_DIPLO_SIM="true" OPEN_DIAG_DIPLO_SIM="false" LAST_SELECTED_MAIN_TAB="0" LAST_SELECTED_SUB_TAB="1" TAGS="deactivated root" SHOW_TAGS="true">
+
+<Modeling type="AVATAR Design" nameTab="Design" tabs="Design$Block" >
+<AVATARBlockDiagramPanel name="Block Diagram" minX="10" maxX="2500" minY="10" maxY="1500" zoom="1.0" >
+<MainCode value="void __user_init() {"/>
+<MainCode value="}"/>
+<Optimized value="true" />
+<considerTimingOperators value="true" />
+<Validated value="" />
+<Ignored value="" />
+
+<COMPONENT type="5000" id="41" index="0" uid="6b6281ce-3885-4278-9932-4a303a28b933" >
+<cdparam x="194" y="135" />
+<sizeparam width="250" height="200" minWidth="5" minHeight="2" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="Block" value="Block" />
+<new d="false" />
+<TGConnectingPoint num="0" id="1" />
+<TGConnectingPoint num="1" id="2" />
+<TGConnectingPoint num="2" id="3" />
+<TGConnectingPoint num="3" id="4" />
+<TGConnectingPoint num="4" id="5" />
+<TGConnectingPoint num="5" id="6" />
+<TGConnectingPoint num="6" id="7" />
+<TGConnectingPoint num="7" id="8" />
+<TGConnectingPoint num="8" id="9" />
+<TGConnectingPoint num="9" id="10" />
+<TGConnectingPoint num="10" id="11" />
+<TGConnectingPoint num="11" id="12" />
+<TGConnectingPoint num="12" id="13" />
+<TGConnectingPoint num="13" id="14" />
+<TGConnectingPoint num="14" id="15" />
+<TGConnectingPoint num="15" id="16" />
+<TGConnectingPoint num="16" id="17" />
+<TGConnectingPoint num="17" id="18" />
+<TGConnectingPoint num="18" id="19" />
+<TGConnectingPoint num="19" id="20" />
+<TGConnectingPoint num="20" id="21" />
+<TGConnectingPoint num="21" id="22" />
+<TGConnectingPoint num="22" id="23" />
+<TGConnectingPoint num="23" id="24" />
+<TGConnectingPoint num="24" id="25" />
+<TGConnectingPoint num="25" id="26" />
+<TGConnectingPoint num="26" id="27" />
+<TGConnectingPoint num="27" id="28" />
+<TGConnectingPoint num="28" id="29" />
+<TGConnectingPoint num="29" id="30" />
+<TGConnectingPoint num="30" id="31" />
+<TGConnectingPoint num="31" id="32" />
+<TGConnectingPoint num="32" id="33" />
+<TGConnectingPoint num="33" id="34" />
+<TGConnectingPoint num="34" id="35" />
+<TGConnectingPoint num="35" id="36" />
+<TGConnectingPoint num="36" id="37" />
+<TGConnectingPoint num="37" id="38" />
+<TGConnectingPoint num="38" id="39" />
+<TGConnectingPoint num="39" id="40" />
+<tags value="" />
+<extraparam>
+<blockType data="block" color="-4072719" />
+<CryptoBlock value="false" />
+</extraparam>
+</COMPONENT>
+
+
+</AVATARBlockDiagramPanel>
+
+<AVATARStateMachineDiagramPanel name="Block" minX="20" maxX="4883" minY="20" maxY="2930" zoom="1.953125" >
+<CONNECTOR type="5102" id="1346" index="0" uid="73fb8e0c-89e1-4b6a-ac41-29d4adb4230a" >
+<cdparam x="1267" y="781" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="1347" />
+<P1  x="1259" y="744" id="191" />
+<P2  x="1259" y="800" id="269" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="1348" index="40" uid="5d6250d7-b29d-4f67-92ad-4ae62f0bbbb0" >
+<father id="1346" num="0" />
+<cdparam x="1262" y="813" />
+<sizeparam width="105" height="25" minWidth="0" minHeight="0" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="4882" minY="10" maxY="2928" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="1349" />
+<TGConnectingPoint num="1" id="1350" />
+<TGConnectingPoint num="2" id="1351" />
+<TGConnectingPoint num="3" id="1352" />
+<tags value="" />
+<extraparam>
+<guard value="[ ]" enabled="true"/>
+<afterMin value="" enabled="true"/>
+<afterMax value="" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+<userResized />
+</extraparam>
+</SUBCOMPONENT>
+
+<CONNECTOR type="5102" id="1339" index="1" uid="4b1039c9-9589-4b4d-95f0-71520ef616f0" >
+<cdparam x="1031" y="781" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="1340" />
+<P1  x="1031" y="746" id="1104" />
+<P2  x="1031" y="802" id="291" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="1341" index="41" uid="a8e5e9d8-4aff-4cbb-aede-97a57ff565b0" >
+<father id="1339" num="0" />
+<cdparam x="1031" y="843" />
+<sizeparam width="50" height="25" minWidth="0" minHeight="0" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="4882" minY="10" maxY="2928" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="1342" />
+<TGConnectingPoint num="1" id="1343" />
+<TGConnectingPoint num="2" id="1344" />
+<TGConnectingPoint num="3" id="1345" />
+<tags value="" />
+<extraparam>
+<guard value="[ ]" enabled="true"/>
+<afterMin value="" enabled="true"/>
+<afterMax value="" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+<userResized />
+</extraparam>
+</SUBCOMPONENT>
+
+<CONNECTOR type="5102" id="1332" index="2" uid="10829090-fe2c-4065-9768-82e439cc4740" >
+<cdparam x="789" y="781" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="1333" />
+<P1  x="787" y="746" id="1250" />
+<P2  x="787" y="800" id="313" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="1334" index="42" uid="ee86341d-c1e3-4e58-9d3a-638edf6c9eea" >
+<father id="1332" num="0" />
+<cdparam x="787" y="843" />
+<sizeparam width="50" height="25" minWidth="0" minHeight="0" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="4882" minY="10" maxY="2928" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="1335" />
+<TGConnectingPoint num="1" id="1336" />
+<TGConnectingPoint num="2" id="1337" />
+<TGConnectingPoint num="3" id="1338" />
+<tags value="" />
+<extraparam>
+<guard value="[ ]" enabled="true"/>
+<afterMin value="" enabled="true"/>
+<afterMax value="" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+</extraparam>
+</SUBCOMPONENT>
+
+<CONNECTOR type="5102" id="1325" index="3" uid="6c506b76-9233-4f7f-96f5-1cea0cf1c4ef" >
+<cdparam x="552" y="779" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="1326" />
+<P1  x="550" y="747" id="118" />
+<P2  x="550" y="799" id="335" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="1327" index="43" uid="84002eec-0aca-4ad6-8e4a-71e2f46c21f4" >
+<father id="1325" num="0" />
+<cdparam x="550" y="841" />
+<sizeparam width="50" height="25" minWidth="0" minHeight="0" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="4882" minY="10" maxY="2928" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="1328" />
+<TGConnectingPoint num="1" id="1329" />
+<TGConnectingPoint num="2" id="1330" />
+<TGConnectingPoint num="3" id="1331" />
+<tags value="" />
+<extraparam>
+<guard value="[ ]" enabled="true"/>
+<afterMin value="" enabled="true"/>
+<afterMax value="" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+<userResized />
+</extraparam>
+</SUBCOMPONENT>
+
+<CONNECTOR type="5102" id="1318" index="4" uid="023f23ce-c023-4539-be36-1f4148d35c11" >
+<cdparam x="308" y="773" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="1319" />
+<P1  x="308" y="746" id="1177" />
+<P2  x="308" y="793" id="649" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="1320" index="44" uid="180afc48-c731-4c05-9e8c-c89438d17a78" >
+<father id="1318" num="0" />
+<cdparam x="310" y="839" />
+<sizeparam width="50" height="25" minWidth="0" minHeight="0" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="4882" minY="10" maxY="2928" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="1321" />
+<TGConnectingPoint num="1" id="1322" />
+<TGConnectingPoint num="2" id="1323" />
+<TGConnectingPoint num="3" id="1324" />
+<tags value="" />
+<extraparam>
+<guard value="[ ]" enabled="true"/>
+<afterMin value="" enabled="true"/>
+<afterMax value="" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+<userResized />
+</extraparam>
+</SUBCOMPONENT>
+
+<CONNECTOR type="5102" id="111" index="5" uid="850446ae-ff73-4eda-b832-a579f679611f" >
+<cdparam x="1275" y="583" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="110" />
+<P1  x="1259" y="583" id="425" />
+<P2  x="1259" y="647" id="186" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="109" index="45" uid="b11a72dc-7991-4d72-a865-4b94d3627003" >
+<father id="111" num="0" />
+<cdparam x="1273" y="595" />
+<sizeparam width="103" height="30" minWidth="1" minHeight="1" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="4882" minY="10" maxY="2928" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="105" />
+<TGConnectingPoint num="1" id="106" />
+<TGConnectingPoint num="2" id="107" />
+<TGConnectingPoint num="3" id="108" />
+<tags value="" />
+<extraparam>
+<guard value="[ ]" enabled="true"/>
+<afterMin value="" enabled="true"/>
+<afterMax value="" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+<actions value="action_a" enabled="true"/>
+</extraparam>
+</SUBCOMPONENT>
+
+<CONNECTOR type="5102" id="104" index="6" uid="89fd4b50-be9b-4443-b207-37e0a6414ae5" >
+<cdparam x="1269" y="212" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="103" />
+<P1  x="1253" y="212" id="352" />
+<P2  x="1253" y="276" id="258" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="102" index="46" uid="097a5dd8-811c-4a8e-b31f-70de6e4788f5" >
+<father id="104" num="0" />
+<cdparam x="1267" y="224" />
+<sizeparam width="103" height="30" minWidth="1" minHeight="1" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="4882" minY="10" maxY="2928" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="98" />
+<TGConnectingPoint num="1" id="99" />
+<TGConnectingPoint num="2" id="100" />
+<TGConnectingPoint num="3" id="101" />
+<tags value="" />
+<extraparam>
+<guard value="[ ]" enabled="true"/>
+<afterMin value="" enabled="true"/>
+<afterMax value="" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+<actions value="action_a" enabled="true"/>
+</extraparam>
+</SUBCOMPONENT>
+
+<CONNECTOR type="5102" id="97" index="7" uid="cbe9c048-abe6-496b-83b3-43b468108e1f" >
+<cdparam x="1046" y="583" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="96" />
+<P1  x="1031" y="583" id="571" />
+<P2  x="1031" y="649" id="1099" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="95" index="47" uid="ea69ee7b-ca89-4d78-aec6-74b95f859f15" >
+<father id="97" num="0" />
+<cdparam x="1044" y="595" />
+<sizeparam width="103" height="30" minWidth="1" minHeight="1" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="4882" minY="10" maxY="2928" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="91" />
+<TGConnectingPoint num="1" id="92" />
+<TGConnectingPoint num="2" id="93" />
+<TGConnectingPoint num="3" id="94" />
+<tags value="" />
+<extraparam>
+<guard value="[ ]" enabled="true"/>
+<afterMin value="" enabled="true"/>
+<afterMax value="" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+<actions value="action_a" enabled="true"/>
+</extraparam>
+</SUBCOMPONENT>
+
+<CONNECTOR type="5102" id="90" index="8" uid="70f8a284-128a-43cb-8a0a-b0eea416e542" >
+<cdparam x="1041" y="212" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="89" />
+<P1  x="1025" y="212" id="498" />
+<P2  x="1025" y="276" id="280" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="88" index="48" uid="4e3559f3-e413-43db-bde4-c6c25c6589ae" >
+<father id="90" num="0" />
+<cdparam x="1039" y="224" />
+<sizeparam width="103" height="30" minWidth="1" minHeight="1" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="4882" minY="10" maxY="2928" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="84" />
+<TGConnectingPoint num="1" id="85" />
+<TGConnectingPoint num="2" id="86" />
+<TGConnectingPoint num="3" id="87" />
+<tags value="" />
+<extraparam>
+<guard value="[ ]" enabled="true"/>
+<afterMin value="" enabled="true"/>
+<afterMax value="" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+<actions value="action_a" enabled="true"/>
+</extraparam>
+</SUBCOMPONENT>
+
+<CONNECTOR type="5102" id="83" index="9" uid="440250d3-d083-412e-a29a-84e736fb9a67" >
+<cdparam x="802" y="582" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="82" />
+<P1  x="787" y="581" id="739" />
+<P2  x="787" y="649" id="1245" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="81" index="49" uid="f9b311ce-5e54-4433-98eb-1da6eaaf6226" >
+<father id="83" num="0" />
+<cdparam x="800" y="593" />
+<sizeparam width="103" height="30" minWidth="1" minHeight="1" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="4882" minY="10" maxY="2928" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="77" />
+<TGConnectingPoint num="1" id="78" />
+<TGConnectingPoint num="2" id="79" />
+<TGConnectingPoint num="3" id="80" />
+<tags value="" />
+<extraparam>
+<guard value="[ ]" enabled="true"/>
+<afterMin value="" enabled="true"/>
+<afterMax value="" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+<actions value="action_a" enabled="true"/>
+</extraparam>
+</SUBCOMPONENT>
+
+<CONNECTOR type="5102" id="76" index="10" uid="73fcf60c-3aa5-4e04-90af-b0b1e6161606" >
+<cdparam x="796" y="210" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="75" />
+<P1  x="781" y="210" id="666" />
+<P2  x="781" y="278" id="302" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="74" index="50" uid="9530a164-d8e6-4e06-99bf-a230e4aec3d6" >
+<father id="76" num="0" />
+<cdparam x="794" y="222" />
+<sizeparam width="103" height="30" minWidth="1" minHeight="1" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="4882" minY="10" maxY="2928" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="70" />
+<TGConnectingPoint num="1" id="71" />
+<TGConnectingPoint num="2" id="72" />
+<TGConnectingPoint num="3" id="73" />
+<tags value="" />
+<extraparam>
+<guard value="[ ]" enabled="true"/>
+<afterMin value="" enabled="true"/>
+<afterMax value="" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+<actions value="action_a" enabled="true"/>
+</extraparam>
+</SUBCOMPONENT>
+
+<CONNECTOR type="5102" id="69" index="11" uid="a9648a76-375a-47aa-91e6-13d2ca5d11ef" >
+<cdparam x="566" y="580" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="68" />
+<P1  x="550" y="579" id="1031" />
+<P2  x="550" y="650" id="113" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="67" index="51" uid="63aeaaf1-7187-4f35-8eec-abfa6b60eeaf" >
+<father id="69" num="0" />
+<cdparam x="564" y="591" />
+<sizeparam width="103" height="30" minWidth="1" minHeight="1" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="4882" minY="10" maxY="2928" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="63" />
+<TGConnectingPoint num="1" id="64" />
+<TGConnectingPoint num="2" id="65" />
+<TGConnectingPoint num="3" id="66" />
+<tags value="" />
+<extraparam>
+<guard value="[ ]" enabled="true"/>
+<afterMin value="" enabled="true"/>
+<afterMax value="" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+<actions value="action_a" enabled="true"/>
+</extraparam>
+</SUBCOMPONENT>
+
+<CONNECTOR type="5102" id="62" index="12" uid="81983ee6-8230-486d-ba44-080146973ff2" >
+<cdparam x="560" y="208" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="61" />
+<P1  x="544" y="208" id="958" />
+<P2  x="544" y="277" id="324" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="60" index="52" uid="54496473-1177-417e-bfd9-42a385dc6402" >
+<father id="62" num="0" />
+<cdparam x="558" y="220" />
+<sizeparam width="103" height="30" minWidth="1" minHeight="1" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="4882" minY="10" maxY="2928" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="56" />
+<TGConnectingPoint num="1" id="57" />
+<TGConnectingPoint num="2" id="58" />
+<TGConnectingPoint num="3" id="59" />
+<tags value="" />
+<extraparam>
+<guard value="[ ]" enabled="true"/>
+<afterMin value="" enabled="true"/>
+<afterMax value="" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+<actions value="action_a" enabled="true"/>
+</extraparam>
+</SUBCOMPONENT>
+
+<CONNECTOR type="5102" id="55" index="13" uid="36cc7b6a-f3be-4f76-9c4b-a4f7ea074168" >
+<cdparam x="324" y="582" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="54" />
+<P1  x="308" y="581" id="885" />
+<P2  x="308" y="649" id="1172" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="53" index="53" uid="b3a7ac55-de80-499d-b6c4-06fca39128b0" >
+<father id="55" num="0" />
+<cdparam x="322" y="593" />
+<sizeparam width="103" height="30" minWidth="1" minHeight="1" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="4882" minY="10" maxY="2928" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="49" />
+<TGConnectingPoint num="1" id="50" />
+<TGConnectingPoint num="2" id="51" />
+<TGConnectingPoint num="3" id="52" />
+<tags value="" />
+<extraparam>
+<guard value="[ ]" enabled="true"/>
+<afterMin value="" enabled="true"/>
+<afterMax value="" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+<actions value="action_a" enabled="true"/>
+</extraparam>
+</SUBCOMPONENT>
+
+<CONNECTOR type="5102" id="48" index="14" uid="b7172bfc-a895-4a88-af6e-83624e2eb41d" >
+<cdparam x="318" y="210" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="47" />
+<P1  x="302" y="210" id="812" />
+<P2  x="302" y="274" id="638" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="46" index="54" uid="94b89568-387d-4ee1-9f07-9c1783d13371" >
+<father id="48" num="0" />
+<cdparam x="316" y="222" />
+<sizeparam width="103" height="30" minWidth="0" minHeight="0" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="4882" minY="10" maxY="2928" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="42" />
+<TGConnectingPoint num="1" id="43" />
+<TGConnectingPoint num="2" id="44" />
+<TGConnectingPoint num="3" id="45" />
+<tags value="" />
+<extraparam>
+<guard value="[ ]" enabled="true"/>
+<afterMin value="" enabled="true"/>
+<afterMax value="" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+<actions value="action_a" enabled="true"/>
+</extraparam>
+</SUBCOMPONENT>
+
+<COMPONENT type="5106" id="257" index="15" uid="95efbf26-486e-433a-b430-335796e00751" >
+<cdparam x="1152" y="647" />
+<sizeparam width="214" height="97" minWidth="78" minHeight="58" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="state" value="preReceive" />
+<new d="false" />
+<TGConnectingPoint num="0" id="185" />
+<TGConnectingPoint num="1" id="186" />
+<TGConnectingPoint num="2" id="187" />
+<TGConnectingPoint num="3" id="188" />
+<TGConnectingPoint num="4" id="189" />
+<TGConnectingPoint num="5" id="190" />
+<TGConnectingPoint num="6" id="191" />
+<TGConnectingPoint num="7" id="192" />
+<TGConnectingPoint num="8" id="193" />
+<TGConnectingPoint num="9" id="194" />
+<TGConnectingPoint num="10" id="195" />
+<TGConnectingPoint num="11" id="196" />
+<TGConnectingPoint num="12" id="197" />
+<TGConnectingPoint num="13" id="198" />
+<TGConnectingPoint num="14" id="199" />
+<TGConnectingPoint num="15" id="200" />
+<TGConnectingPoint num="16" id="201" />
+<TGConnectingPoint num="17" id="202" />
+<TGConnectingPoint num="18" id="203" />
+<TGConnectingPoint num="19" id="204" />
+<TGConnectingPoint num="20" id="205" />
+<TGConnectingPoint num="21" id="206" />
+<TGConnectingPoint num="22" id="207" />
+<TGConnectingPoint num="23" id="208" />
+<TGConnectingPoint num="24" id="209" />
+<TGConnectingPoint num="25" id="210" />
+<TGConnectingPoint num="26" id="211" />
+<TGConnectingPoint num="27" id="212" />
+<TGConnectingPoint num="28" id="213" />
+<TGConnectingPoint num="29" id="214" />
+<TGConnectingPoint num="30" id="215" />
+<TGConnectingPoint num="31" id="216" />
+<TGConnectingPoint num="32" id="217" />
+<TGConnectingPoint num="33" id="218" />
+<TGConnectingPoint num="34" id="219" />
+<TGConnectingPoint num="35" id="220" />
+<TGConnectingPoint num="36" id="221" />
+<TGConnectingPoint num="37" id="222" />
+<TGConnectingPoint num="38" id="223" />
+<TGConnectingPoint num="39" id="224" />
+<TGConnectingPoint num="40" id="225" />
+<TGConnectingPoint num="41" id="226" />
+<TGConnectingPoint num="42" id="227" />
+<TGConnectingPoint num="43" id="228" />
+<TGConnectingPoint num="44" id="229" />
+<TGConnectingPoint num="45" id="230" />
+<TGConnectingPoint num="46" id="231" />
+<TGConnectingPoint num="47" id="232" />
+<TGConnectingPoint num="48" id="233" />
+<TGConnectingPoint num="49" id="234" />
+<TGConnectingPoint num="50" id="235" />
+<TGConnectingPoint num="51" id="236" />
+<TGConnectingPoint num="52" id="237" />
+<TGConnectingPoint num="53" id="238" />
+<TGConnectingPoint num="54" id="239" />
+<TGConnectingPoint num="55" id="240" />
+<TGConnectingPoint num="56" id="241" />
+<TGConnectingPoint num="57" id="242" />
+<TGConnectingPoint num="58" id="243" />
+<TGConnectingPoint num="59" id="244" />
+<TGConnectingPoint num="60" id="245" />
+<TGConnectingPoint num="61" id="246" />
+<TGConnectingPoint num="62" id="247" />
+<TGConnectingPoint num="63" id="248" />
+<TGConnectingPoint num="64" id="249" />
+<TGConnectingPoint num="65" id="250" />
+<TGConnectingPoint num="66" id="251" />
+<TGConnectingPoint num="67" id="252" />
+<TGConnectingPoint num="68" id="253" />
+<TGConnectingPoint num="69" id="254" />
+<TGConnectingPoint num="70" id="255" />
+<TGConnectingPoint num="71" id="256" />
+<tags value="" />
+<extraparam>
+</extraparam>
+</COMPONENT>
+
+<COMPONENT type="5111" id="268" index="16" uid="1c5c8993-cbdd-4a42-aacc-2148dc4fb0a8" >
+<cdparam x="1180" y="285" />
+<sizeparam width="146" height="39" minWidth="58" minHeight="0" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="Reset timer" value="expire(tmr)" />
+<new d="false" />
+<TGConnectingPoint num="0" id="258" />
+<TGConnectingPoint num="1" id="259" />
+<TGConnectingPoint num="2" id="260" />
+<TGConnectingPoint num="3" id="261" />
+<TGConnectingPoint num="4" id="262" />
+<TGConnectingPoint num="5" id="263" />
+<TGConnectingPoint num="6" id="264" />
+<TGConnectingPoint num="7" id="265" />
+<TGConnectingPoint num="8" id="266" />
+<TGConnectingPoint num="9" id="267" />
+<tags value="" />
+</COMPONENT>
+
+<COMPONENT type="5111" id="279" index="17" uid="dfe48135-b9c0-4677-a58e-e2c45c566350" >
+<cdparam x="1186" y="809" />
+<sizeparam width="146" height="39" minWidth="58" minHeight="1" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="Reset timer" value="expire(tmr)" />
+<new d="false" />
+<TGConnectingPoint num="0" id="269" />
+<TGConnectingPoint num="1" id="270" />
+<TGConnectingPoint num="2" id="271" />
+<TGConnectingPoint num="3" id="272" />
+<TGConnectingPoint num="4" id="273" />
+<TGConnectingPoint num="5" id="274" />
+<TGConnectingPoint num="6" id="275" />
+<TGConnectingPoint num="7" id="276" />
+<TGConnectingPoint num="8" id="277" />
+<TGConnectingPoint num="9" id="278" />
+<tags value="" />
+</COMPONENT>
+
+<COMPONENT type="5110" id="290" index="18" uid="68db0d5d-4a94-4582-86fc-d9342860ca8c" >
+<cdparam x="962" y="285" />
+<sizeparam width="127" height="39" minWidth="58" minHeight="0" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="Reset timer" value="reset(tmr)" />
+<new d="false" />
+<TGConnectingPoint num="0" id="280" />
+<TGConnectingPoint num="1" id="281" />
+<TGConnectingPoint num="2" id="282" />
+<TGConnectingPoint num="3" id="283" />
+<TGConnectingPoint num="4" id="284" />
+<TGConnectingPoint num="5" id="285" />
+<TGConnectingPoint num="6" id="286" />
+<TGConnectingPoint num="7" id="287" />
+<TGConnectingPoint num="8" id="288" />
+<TGConnectingPoint num="9" id="289" />
+<tags value="" />
+</COMPONENT>
+
+<COMPONENT type="5110" id="301" index="19" uid="d9dfb818-c0d7-452c-9362-0f65d5a974a9" >
+<cdparam x="968" y="811" />
+<sizeparam width="127" height="39" minWidth="58" minHeight="1" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="Reset timer" value="reset(tmr)" />
+<new d="false" />
+<TGConnectingPoint num="0" id="291" />
+<TGConnectingPoint num="1" id="292" />
+<TGConnectingPoint num="2" id="293" />
+<TGConnectingPoint num="3" id="294" />
+<TGConnectingPoint num="4" id="295" />
+<TGConnectingPoint num="5" id="296" />
+<TGConnectingPoint num="6" id="297" />
+<TGConnectingPoint num="7" id="298" />
+<TGConnectingPoint num="8" id="299" />
+<TGConnectingPoint num="9" id="300" />
+<tags value="" />
+</COMPONENT>
+
+<COMPONENT type="5109" id="312" index="20" uid="2b08f292-0318-4461-a4b7-a6f30e938e64" >
+<cdparam x="681" y="287" />
+<sizeparam width="200" height="39" minWidth="58" minHeight="0" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="Set timer" value="setTimer(tmr,10)" />
+<new d="false" />
+<TGConnectingPoint num="0" id="302" />
+<TGConnectingPoint num="1" id="303" />
+<TGConnectingPoint num="2" id="304" />
+<TGConnectingPoint num="3" id="305" />
+<TGConnectingPoint num="4" id="306" />
+<TGConnectingPoint num="5" id="307" />
+<TGConnectingPoint num="6" id="308" />
+<TGConnectingPoint num="7" id="309" />
+<TGConnectingPoint num="8" id="310" />
+<TGConnectingPoint num="9" id="311" />
+<tags value="" />
+</COMPONENT>
+
+<COMPONENT type="5109" id="323" index="21" uid="ab3d3907-c64a-42a9-ae60-d1762f05c694" >
+<cdparam x="687" y="809" />
+<sizeparam width="200" height="39" minWidth="58" minHeight="1" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="Set timer" value="setTimer(tmr,10)" />
+<new d="false" />
+<TGConnectingPoint num="0" id="313" />
+<TGConnectingPoint num="1" id="314" />
+<TGConnectingPoint num="2" id="315" />
+<TGConnectingPoint num="3" id="316" />
+<TGConnectingPoint num="4" id="317" />
+<TGConnectingPoint num="5" id="318" />
+<TGConnectingPoint num="6" id="319" />
+<TGConnectingPoint num="7" id="320" />
+<TGConnectingPoint num="8" id="321" />
+<TGConnectingPoint num="9" id="322" />
+<tags value="" />
+</COMPONENT>
+
+<COMPONENT type="5104" id="334" index="22" uid="332eb7d7-aa5c-4796-beb3-f1d2619d44bf" >
+<cdparam x="495" y="286" />
+<sizeparam width="99" height="39" minWidth="58" minHeight="0" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="Receive signal" value="inSig()" />
+<new d="false" />
+<TGConnectingPoint num="0" id="324" />
+<TGConnectingPoint num="1" id="325" />
+<TGConnectingPoint num="2" id="326" />
+<TGConnectingPoint num="3" id="327" />
+<TGConnectingPoint num="4" id="328" />
+<TGConnectingPoint num="5" id="329" />
+<TGConnectingPoint num="6" id="330" />
+<TGConnectingPoint num="7" id="331" />
+<TGConnectingPoint num="8" id="332" />
+<TGConnectingPoint num="9" id="333" />
+<tags value="" />
+</COMPONENT>
+
+<COMPONENT type="5104" id="345" index="23" uid="88ea61be-8433-43c9-b84e-2a9111344d3a" >
+<cdparam x="501" y="808" />
+<sizeparam width="99" height="39" minWidth="58" minHeight="1" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="Receive signal" value="inSig()" />
+<new d="false" />
+<TGConnectingPoint num="0" id="335" />
+<TGConnectingPoint num="1" id="336" />
+<TGConnectingPoint num="2" id="337" />
+<TGConnectingPoint num="3" id="338" />
+<TGConnectingPoint num="4" id="339" />
+<TGConnectingPoint num="5" id="340" />
+<TGConnectingPoint num="6" id="341" />
+<TGConnectingPoint num="7" id="342" />
+<TGConnectingPoint num="8" id="343" />
+<TGConnectingPoint num="9" id="344" />
+<tags value="" />
+</COMPONENT>
+
+<COMPONENT type="5106" id="418" index="24" uid="a5dd8258-9c35-40fc-be19-f1342ab340bd" >
+<cdparam x="1171" y="115" />
+<sizeparam width="164" height="97" minWidth="78" minHeight="58" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="state" value="anyBox" />
+<new d="false" />
+<TGConnectingPoint num="0" id="346" />
+<TGConnectingPoint num="1" id="347" />
+<TGConnectingPoint num="2" id="348" />
+<TGConnectingPoint num="3" id="349" />
+<TGConnectingPoint num="4" id="350" />
+<TGConnectingPoint num="5" id="351" />
+<TGConnectingPoint num="6" id="352" />
+<TGConnectingPoint num="7" id="353" />
+<TGConnectingPoint num="8" id="354" />
+<TGConnectingPoint num="9" id="355" />
+<TGConnectingPoint num="10" id="356" />
+<TGConnectingPoint num="11" id="357" />
+<TGConnectingPoint num="12" id="358" />
+<TGConnectingPoint num="13" id="359" />
+<TGConnectingPoint num="14" id="360" />
+<TGConnectingPoint num="15" id="361" />
+<TGConnectingPoint num="16" id="362" />
+<TGConnectingPoint num="17" id="363" />
+<TGConnectingPoint num="18" id="364" />
+<TGConnectingPoint num="19" id="365" />
+<TGConnectingPoint num="20" id="366" />
+<TGConnectingPoint num="21" id="367" />
+<TGConnectingPoint num="22" id="368" />
+<TGConnectingPoint num="23" id="369" />
+<TGConnectingPoint num="24" id="370" />
+<TGConnectingPoint num="25" id="371" />
+<TGConnectingPoint num="26" id="372" />
+<TGConnectingPoint num="27" id="373" />
+<TGConnectingPoint num="28" id="374" />
+<TGConnectingPoint num="29" id="375" />
+<TGConnectingPoint num="30" id="376" />
+<TGConnectingPoint num="31" id="377" />
+<TGConnectingPoint num="32" id="378" />
+<TGConnectingPoint num="33" id="379" />
+<TGConnectingPoint num="34" id="380" />
+<TGConnectingPoint num="35" id="381" />
+<TGConnectingPoint num="36" id="382" />
+<TGConnectingPoint num="37" id="383" />
+<TGConnectingPoint num="38" id="384" />
+<TGConnectingPoint num="39" id="385" />
+<TGConnectingPoint num="40" id="386" />
+<TGConnectingPoint num="41" id="387" />
+<TGConnectingPoint num="42" id="388" />
+<TGConnectingPoint num="43" id="389" />
+<TGConnectingPoint num="44" id="390" />
+<TGConnectingPoint num="45" id="391" />
+<TGConnectingPoint num="46" id="392" />
+<TGConnectingPoint num="47" id="393" />
+<TGConnectingPoint num="48" id="394" />
+<TGConnectingPoint num="49" id="395" />
+<TGConnectingPoint num="50" id="396" />
+<TGConnectingPoint num="51" id="397" />
+<TGConnectingPoint num="52" id="398" />
+<TGConnectingPoint num="53" id="399" />
+<TGConnectingPoint num="54" id="400" />
+<TGConnectingPoint num="55" id="401" />
+<TGConnectingPoint num="56" id="402" />
+<TGConnectingPoint num="57" id="403" />
+<TGConnectingPoint num="58" id="404" />
+<TGConnectingPoint num="59" id="405" />
+<TGConnectingPoint num="60" id="406" />
+<TGConnectingPoint num="61" id="407" />
+<TGConnectingPoint num="62" id="408" />
+<TGConnectingPoint num="63" id="409" />
+<TGConnectingPoint num="64" id="410" />
+<TGConnectingPoint num="65" id="411" />
+<TGConnectingPoint num="66" id="412" />
+<TGConnectingPoint num="67" id="413" />
+<TGConnectingPoint num="68" id="414" />
+<TGConnectingPoint num="69" id="415" />
+<TGConnectingPoint num="70" id="416" />
+<TGConnectingPoint num="71" id="417" />
+<tags value="" />
+<extraparam>
+</extraparam>
+</COMPONENT>
+
+<COMPONENT type="5106" id="491" index="25" uid="573c23c0-8662-40e1-992c-e661ac51eb6f" >
+<cdparam x="1177" y="486" />
+<sizeparam width="164" height="97" minWidth="78" minHeight="58" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="state" value="anyBox" />
+<new d="false" />
+<TGConnectingPoint num="0" id="419" />
+<TGConnectingPoint num="1" id="420" />
+<TGConnectingPoint num="2" id="421" />
+<TGConnectingPoint num="3" id="422" />
+<TGConnectingPoint num="4" id="423" />
+<TGConnectingPoint num="5" id="424" />
+<TGConnectingPoint num="6" id="425" />
+<TGConnectingPoint num="7" id="426" />
+<TGConnectingPoint num="8" id="427" />
+<TGConnectingPoint num="9" id="428" />
+<TGConnectingPoint num="10" id="429" />
+<TGConnectingPoint num="11" id="430" />
+<TGConnectingPoint num="12" id="431" />
+<TGConnectingPoint num="13" id="432" />
+<TGConnectingPoint num="14" id="433" />
+<TGConnectingPoint num="15" id="434" />
+<TGConnectingPoint num="16" id="435" />
+<TGConnectingPoint num="17" id="436" />
+<TGConnectingPoint num="18" id="437" />
+<TGConnectingPoint num="19" id="438" />
+<TGConnectingPoint num="20" id="439" />
+<TGConnectingPoint num="21" id="440" />
+<TGConnectingPoint num="22" id="441" />
+<TGConnectingPoint num="23" id="442" />
+<TGConnectingPoint num="24" id="443" />
+<TGConnectingPoint num="25" id="444" />
+<TGConnectingPoint num="26" id="445" />
+<TGConnectingPoint num="27" id="446" />
+<TGConnectingPoint num="28" id="447" />
+<TGConnectingPoint num="29" id="448" />
+<TGConnectingPoint num="30" id="449" />
+<TGConnectingPoint num="31" id="450" />
+<TGConnectingPoint num="32" id="451" />
+<TGConnectingPoint num="33" id="452" />
+<TGConnectingPoint num="34" id="453" />
+<TGConnectingPoint num="35" id="454" />
+<TGConnectingPoint num="36" id="455" />
+<TGConnectingPoint num="37" id="456" />
+<TGConnectingPoint num="38" id="457" />
+<TGConnectingPoint num="39" id="458" />
+<TGConnectingPoint num="40" id="459" />
+<TGConnectingPoint num="41" id="460" />
+<TGConnectingPoint num="42" id="461" />
+<TGConnectingPoint num="43" id="462" />
+<TGConnectingPoint num="44" id="463" />
+<TGConnectingPoint num="45" id="464" />
+<TGConnectingPoint num="46" id="465" />
+<TGConnectingPoint num="47" id="466" />
+<TGConnectingPoint num="48" id="467" />
+<TGConnectingPoint num="49" id="468" />
+<TGConnectingPoint num="50" id="469" />
+<TGConnectingPoint num="51" id="470" />
+<TGConnectingPoint num="52" id="471" />
+<TGConnectingPoint num="53" id="472" />
+<TGConnectingPoint num="54" id="473" />
+<TGConnectingPoint num="55" id="474" />
+<TGConnectingPoint num="56" id="475" />
+<TGConnectingPoint num="57" id="476" />
+<TGConnectingPoint num="58" id="477" />
+<TGConnectingPoint num="59" id="478" />
+<TGConnectingPoint num="60" id="479" />
+<TGConnectingPoint num="61" id="480" />
+<TGConnectingPoint num="62" id="481" />
+<TGConnectingPoint num="63" id="482" />
+<TGConnectingPoint num="64" id="483" />
+<TGConnectingPoint num="65" id="484" />
+<TGConnectingPoint num="66" id="485" />
+<TGConnectingPoint num="67" id="486" />
+<TGConnectingPoint num="68" id="487" />
+<TGConnectingPoint num="69" id="488" />
+<TGConnectingPoint num="70" id="489" />
+<TGConnectingPoint num="71" id="490" />
+<tags value="" />
+<extraparam>
+</extraparam>
+</COMPONENT>
+
+<COMPONENT type="5106" id="564" index="26" uid="c850ae89-bd97-447f-a341-4eeb35975288" >
+<cdparam x="943" y="115" />
+<sizeparam width="164" height="97" minWidth="78" minHeight="58" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="state" value="anyBox" />
+<new d="false" />
+<TGConnectingPoint num="0" id="492" />
+<TGConnectingPoint num="1" id="493" />
+<TGConnectingPoint num="2" id="494" />
+<TGConnectingPoint num="3" id="495" />
+<TGConnectingPoint num="4" id="496" />
+<TGConnectingPoint num="5" id="497" />
+<TGConnectingPoint num="6" id="498" />
+<TGConnectingPoint num="7" id="499" />
+<TGConnectingPoint num="8" id="500" />
+<TGConnectingPoint num="9" id="501" />
+<TGConnectingPoint num="10" id="502" />
+<TGConnectingPoint num="11" id="503" />
+<TGConnectingPoint num="12" id="504" />
+<TGConnectingPoint num="13" id="505" />
+<TGConnectingPoint num="14" id="506" />
+<TGConnectingPoint num="15" id="507" />
+<TGConnectingPoint num="16" id="508" />
+<TGConnectingPoint num="17" id="509" />
+<TGConnectingPoint num="18" id="510" />
+<TGConnectingPoint num="19" id="511" />
+<TGConnectingPoint num="20" id="512" />
+<TGConnectingPoint num="21" id="513" />
+<TGConnectingPoint num="22" id="514" />
+<TGConnectingPoint num="23" id="515" />
+<TGConnectingPoint num="24" id="516" />
+<TGConnectingPoint num="25" id="517" />
+<TGConnectingPoint num="26" id="518" />
+<TGConnectingPoint num="27" id="519" />
+<TGConnectingPoint num="28" id="520" />
+<TGConnectingPoint num="29" id="521" />
+<TGConnectingPoint num="30" id="522" />
+<TGConnectingPoint num="31" id="523" />
+<TGConnectingPoint num="32" id="524" />
+<TGConnectingPoint num="33" id="525" />
+<TGConnectingPoint num="34" id="526" />
+<TGConnectingPoint num="35" id="527" />
+<TGConnectingPoint num="36" id="528" />
+<TGConnectingPoint num="37" id="529" />
+<TGConnectingPoint num="38" id="530" />
+<TGConnectingPoint num="39" id="531" />
+<TGConnectingPoint num="40" id="532" />
+<TGConnectingPoint num="41" id="533" />
+<TGConnectingPoint num="42" id="534" />
+<TGConnectingPoint num="43" id="535" />
+<TGConnectingPoint num="44" id="536" />
+<TGConnectingPoint num="45" id="537" />
+<TGConnectingPoint num="46" id="538" />
+<TGConnectingPoint num="47" id="539" />
+<TGConnectingPoint num="48" id="540" />
+<TGConnectingPoint num="49" id="541" />
+<TGConnectingPoint num="50" id="542" />
+<TGConnectingPoint num="51" id="543" />
+<TGConnectingPoint num="52" id="544" />
+<TGConnectingPoint num="53" id="545" />
+<TGConnectingPoint num="54" id="546" />
+<TGConnectingPoint num="55" id="547" />
+<TGConnectingPoint num="56" id="548" />
+<TGConnectingPoint num="57" id="549" />
+<TGConnectingPoint num="58" id="550" />
+<TGConnectingPoint num="59" id="551" />
+<TGConnectingPoint num="60" id="552" />
+<TGConnectingPoint num="61" id="553" />
+<TGConnectingPoint num="62" id="554" />
+<TGConnectingPoint num="63" id="555" />
+<TGConnectingPoint num="64" id="556" />
+<TGConnectingPoint num="65" id="557" />
+<TGConnectingPoint num="66" id="558" />
+<TGConnectingPoint num="67" id="559" />
+<TGConnectingPoint num="68" id="560" />
+<TGConnectingPoint num="69" id="561" />
+<TGConnectingPoint num="70" id="562" />
+<TGConnectingPoint num="71" id="563" />
+<tags value="" />
+<extraparam>
+</extraparam>
+</COMPONENT>
+
+<COMPONENT type="5106" id="637" index="27" uid="6b90da4f-4256-46da-befc-b57c8b762a6f" >
+<cdparam x="949" y="486" />
+<sizeparam width="164" height="97" minWidth="78" minHeight="58" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="state" value="anyBox" />
+<new d="false" />
+<TGConnectingPoint num="0" id="565" />
+<TGConnectingPoint num="1" id="566" />
+<TGConnectingPoint num="2" id="567" />
+<TGConnectingPoint num="3" id="568" />
+<TGConnectingPoint num="4" id="569" />
+<TGConnectingPoint num="5" id="570" />
+<TGConnectingPoint num="6" id="571" />
+<TGConnectingPoint num="7" id="572" />
+<TGConnectingPoint num="8" id="573" />
+<TGConnectingPoint num="9" id="574" />
+<TGConnectingPoint num="10" id="575" />
+<TGConnectingPoint num="11" id="576" />
+<TGConnectingPoint num="12" id="577" />
+<TGConnectingPoint num="13" id="578" />
+<TGConnectingPoint num="14" id="579" />
+<TGConnectingPoint num="15" id="580" />
+<TGConnectingPoint num="16" id="581" />
+<TGConnectingPoint num="17" id="582" />
+<TGConnectingPoint num="18" id="583" />
+<TGConnectingPoint num="19" id="584" />
+<TGConnectingPoint num="20" id="585" />
+<TGConnectingPoint num="21" id="586" />
+<TGConnectingPoint num="22" id="587" />
+<TGConnectingPoint num="23" id="588" />
+<TGConnectingPoint num="24" id="589" />
+<TGConnectingPoint num="25" id="590" />
+<TGConnectingPoint num="26" id="591" />
+<TGConnectingPoint num="27" id="592" />
+<TGConnectingPoint num="28" id="593" />
+<TGConnectingPoint num="29" id="594" />
+<TGConnectingPoint num="30" id="595" />
+<TGConnectingPoint num="31" id="596" />
+<TGConnectingPoint num="32" id="597" />
+<TGConnectingPoint num="33" id="598" />
+<TGConnectingPoint num="34" id="599" />
+<TGConnectingPoint num="35" id="600" />
+<TGConnectingPoint num="36" id="601" />
+<TGConnectingPoint num="37" id="602" />
+<TGConnectingPoint num="38" id="603" />
+<TGConnectingPoint num="39" id="604" />
+<TGConnectingPoint num="40" id="605" />
+<TGConnectingPoint num="41" id="606" />
+<TGConnectingPoint num="42" id="607" />
+<TGConnectingPoint num="43" id="608" />
+<TGConnectingPoint num="44" id="609" />
+<TGConnectingPoint num="45" id="610" />
+<TGConnectingPoint num="46" id="611" />
+<TGConnectingPoint num="47" id="612" />
+<TGConnectingPoint num="48" id="613" />
+<TGConnectingPoint num="49" id="614" />
+<TGConnectingPoint num="50" id="615" />
+<TGConnectingPoint num="51" id="616" />
+<TGConnectingPoint num="52" id="617" />
+<TGConnectingPoint num="53" id="618" />
+<TGConnectingPoint num="54" id="619" />
+<TGConnectingPoint num="55" id="620" />
+<TGConnectingPoint num="56" id="621" />
+<TGConnectingPoint num="57" id="622" />
+<TGConnectingPoint num="58" id="623" />
+<TGConnectingPoint num="59" id="624" />
+<TGConnectingPoint num="60" id="625" />
+<TGConnectingPoint num="61" id="626" />
+<TGConnectingPoint num="62" id="627" />
+<TGConnectingPoint num="63" id="628" />
+<TGConnectingPoint num="64" id="629" />
+<TGConnectingPoint num="65" id="630" />
+<TGConnectingPoint num="66" id="631" />
+<TGConnectingPoint num="67" id="632" />
+<TGConnectingPoint num="68" id="633" />
+<TGConnectingPoint num="69" id="634" />
+<TGConnectingPoint num="70" id="635" />
+<TGConnectingPoint num="71" id="636" />
+<tags value="" />
+<extraparam>
+</extraparam>
+</COMPONENT>
+
+<COMPONENT type="5103" id="648" index="28" uid="1b95cfe8-7264-40ea-a665-df092c57676b" >
+<cdparam x="251" y="283" />
+<sizeparam width="102" height="39" minWidth="58" minHeight="0" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="Send signal" value="outSig()" />
+<new d="false" />
+<TGConnectingPoint num="0" id="638" />
+<TGConnectingPoint num="1" id="639" />
+<TGConnectingPoint num="2" id="640" />
+<TGConnectingPoint num="3" id="641" />
+<TGConnectingPoint num="4" id="642" />
+<TGConnectingPoint num="5" id="643" />
+<TGConnectingPoint num="6" id="644" />
+<TGConnectingPoint num="7" id="645" />
+<TGConnectingPoint num="8" id="646" />
+<TGConnectingPoint num="9" id="647" />
+<tags value="" />
+</COMPONENT>
+
+<COMPONENT type="5103" id="659" index="29" uid="39ef92b9-66eb-497e-9055-dbdd2e1cdbee" >
+<cdparam x="257" y="802" />
+<sizeparam width="102" height="39" minWidth="58" minHeight="1" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="Send signal" value="outSig()" />
+<new d="false" />
+<TGConnectingPoint num="0" id="649" />
+<TGConnectingPoint num="1" id="650" />
+<TGConnectingPoint num="2" id="651" />
+<TGConnectingPoint num="3" id="652" />
+<TGConnectingPoint num="4" id="653" />
+<TGConnectingPoint num="5" id="654" />
+<TGConnectingPoint num="6" id="655" />
+<TGConnectingPoint num="7" id="656" />
+<TGConnectingPoint num="8" id="657" />
+<TGConnectingPoint num="9" id="658" />
+<tags value="" />
+</COMPONENT>
+
+<COMPONENT type="5106" id="732" index="30" uid="41b50d54-30ae-4bf2-9099-e562d691ff41" >
+<cdparam x="699" y="113" />
+<sizeparam width="164" height="97" minWidth="78" minHeight="58" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="state" value="anyBox" />
+<new d="false" />
+<TGConnectingPoint num="0" id="660" />
+<TGConnectingPoint num="1" id="661" />
+<TGConnectingPoint num="2" id="662" />
+<TGConnectingPoint num="3" id="663" />
+<TGConnectingPoint num="4" id="664" />
+<TGConnectingPoint num="5" id="665" />
+<TGConnectingPoint num="6" id="666" />
+<TGConnectingPoint num="7" id="667" />
+<TGConnectingPoint num="8" id="668" />
+<TGConnectingPoint num="9" id="669" />
+<TGConnectingPoint num="10" id="670" />
+<TGConnectingPoint num="11" id="671" />
+<TGConnectingPoint num="12" id="672" />
+<TGConnectingPoint num="13" id="673" />
+<TGConnectingPoint num="14" id="674" />
+<TGConnectingPoint num="15" id="675" />
+<TGConnectingPoint num="16" id="676" />
+<TGConnectingPoint num="17" id="677" />
+<TGConnectingPoint num="18" id="678" />
+<TGConnectingPoint num="19" id="679" />
+<TGConnectingPoint num="20" id="680" />
+<TGConnectingPoint num="21" id="681" />
+<TGConnectingPoint num="22" id="682" />
+<TGConnectingPoint num="23" id="683" />
+<TGConnectingPoint num="24" id="684" />
+<TGConnectingPoint num="25" id="685" />
+<TGConnectingPoint num="26" id="686" />
+<TGConnectingPoint num="27" id="687" />
+<TGConnectingPoint num="28" id="688" />
+<TGConnectingPoint num="29" id="689" />
+<TGConnectingPoint num="30" id="690" />
+<TGConnectingPoint num="31" id="691" />
+<TGConnectingPoint num="32" id="692" />
+<TGConnectingPoint num="33" id="693" />
+<TGConnectingPoint num="34" id="694" />
+<TGConnectingPoint num="35" id="695" />
+<TGConnectingPoint num="36" id="696" />
+<TGConnectingPoint num="37" id="697" />
+<TGConnectingPoint num="38" id="698" />
+<TGConnectingPoint num="39" id="699" />
+<TGConnectingPoint num="40" id="700" />
+<TGConnectingPoint num="41" id="701" />
+<TGConnectingPoint num="42" id="702" />
+<TGConnectingPoint num="43" id="703" />
+<TGConnectingPoint num="44" id="704" />
+<TGConnectingPoint num="45" id="705" />
+<TGConnectingPoint num="46" id="706" />
+<TGConnectingPoint num="47" id="707" />
+<TGConnectingPoint num="48" id="708" />
+<TGConnectingPoint num="49" id="709" />
+<TGConnectingPoint num="50" id="710" />
+<TGConnectingPoint num="51" id="711" />
+<TGConnectingPoint num="52" id="712" />
+<TGConnectingPoint num="53" id="713" />
+<TGConnectingPoint num="54" id="714" />
+<TGConnectingPoint num="55" id="715" />
+<TGConnectingPoint num="56" id="716" />
+<TGConnectingPoint num="57" id="717" />
+<TGConnectingPoint num="58" id="718" />
+<TGConnectingPoint num="59" id="719" />
+<TGConnectingPoint num="60" id="720" />
+<TGConnectingPoint num="61" id="721" />
+<TGConnectingPoint num="62" id="722" />
+<TGConnectingPoint num="63" id="723" />
+<TGConnectingPoint num="64" id="724" />
+<TGConnectingPoint num="65" id="725" />
+<TGConnectingPoint num="66" id="726" />
+<TGConnectingPoint num="67" id="727" />
+<TGConnectingPoint num="68" id="728" />
+<TGConnectingPoint num="69" id="729" />
+<TGConnectingPoint num="70" id="730" />
+<TGConnectingPoint num="71" id="731" />
+<tags value="" />
+<extraparam>
+</extraparam>
+</COMPONENT>
+
+<COMPONENT type="5106" id="805" index="31" uid="f92c9e44-eced-4616-90f0-e7ccd1bed64a" >
+<cdparam x="705" y="484" />
+<sizeparam width="164" height="97" minWidth="78" minHeight="58" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="state" value="anyBox" />
+<new d="false" />
+<TGConnectingPoint num="0" id="733" />
+<TGConnectingPoint num="1" id="734" />
+<TGConnectingPoint num="2" id="735" />
+<TGConnectingPoint num="3" id="736" />
+<TGConnectingPoint num="4" id="737" />
+<TGConnectingPoint num="5" id="738" />
+<TGConnectingPoint num="6" id="739" />
+<TGConnectingPoint num="7" id="740" />
+<TGConnectingPoint num="8" id="741" />
+<TGConnectingPoint num="9" id="742" />
+<TGConnectingPoint num="10" id="743" />
+<TGConnectingPoint num="11" id="744" />
+<TGConnectingPoint num="12" id="745" />
+<TGConnectingPoint num="13" id="746" />
+<TGConnectingPoint num="14" id="747" />
+<TGConnectingPoint num="15" id="748" />
+<TGConnectingPoint num="16" id="749" />
+<TGConnectingPoint num="17" id="750" />
+<TGConnectingPoint num="18" id="751" />
+<TGConnectingPoint num="19" id="752" />
+<TGConnectingPoint num="20" id="753" />
+<TGConnectingPoint num="21" id="754" />
+<TGConnectingPoint num="22" id="755" />
+<TGConnectingPoint num="23" id="756" />
+<TGConnectingPoint num="24" id="757" />
+<TGConnectingPoint num="25" id="758" />
+<TGConnectingPoint num="26" id="759" />
+<TGConnectingPoint num="27" id="760" />
+<TGConnectingPoint num="28" id="761" />
+<TGConnectingPoint num="29" id="762" />
+<TGConnectingPoint num="30" id="763" />
+<TGConnectingPoint num="31" id="764" />
+<TGConnectingPoint num="32" id="765" />
+<TGConnectingPoint num="33" id="766" />
+<TGConnectingPoint num="34" id="767" />
+<TGConnectingPoint num="35" id="768" />
+<TGConnectingPoint num="36" id="769" />
+<TGConnectingPoint num="37" id="770" />
+<TGConnectingPoint num="38" id="771" />
+<TGConnectingPoint num="39" id="772" />
+<TGConnectingPoint num="40" id="773" />
+<TGConnectingPoint num="41" id="774" />
+<TGConnectingPoint num="42" id="775" />
+<TGConnectingPoint num="43" id="776" />
+<TGConnectingPoint num="44" id="777" />
+<TGConnectingPoint num="45" id="778" />
+<TGConnectingPoint num="46" id="779" />
+<TGConnectingPoint num="47" id="780" />
+<TGConnectingPoint num="48" id="781" />
+<TGConnectingPoint num="49" id="782" />
+<TGConnectingPoint num="50" id="783" />
+<TGConnectingPoint num="51" id="784" />
+<TGConnectingPoint num="52" id="785" />
+<TGConnectingPoint num="53" id="786" />
+<TGConnectingPoint num="54" id="787" />
+<TGConnectingPoint num="55" id="788" />
+<TGConnectingPoint num="56" id="789" />
+<TGConnectingPoint num="57" id="790" />
+<TGConnectingPoint num="58" id="791" />
+<TGConnectingPoint num="59" id="792" />
+<TGConnectingPoint num="60" id="793" />
+<TGConnectingPoint num="61" id="794" />
+<TGConnectingPoint num="62" id="795" />
+<TGConnectingPoint num="63" id="796" />
+<TGConnectingPoint num="64" id="797" />
+<TGConnectingPoint num="65" id="798" />
+<TGConnectingPoint num="66" id="799" />
+<TGConnectingPoint num="67" id="800" />
+<TGConnectingPoint num="68" id="801" />
+<TGConnectingPoint num="69" id="802" />
+<TGConnectingPoint num="70" id="803" />
+<TGConnectingPoint num="71" id="804" />
+<tags value="" />
+<extraparam>
+</extraparam>
+</COMPONENT>
+
+<COMPONENT type="5106" id="878" index="32" uid="afe7531b-f4db-4ffa-b71a-5285841b147f" >
+<cdparam x="220" y="113" />
+<sizeparam width="164" height="97" minWidth="78" minHeight="58" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="state" value="anyBox" />
+<new d="false" />
+<TGConnectingPoint num="0" id="806" />
+<TGConnectingPoint num="1" id="807" />
+<TGConnectingPoint num="2" id="808" />
+<TGConnectingPoint num="3" id="809" />
+<TGConnectingPoint num="4" id="810" />
+<TGConnectingPoint num="5" id="811" />
+<TGConnectingPoint num="6" id="812" />
+<TGConnectingPoint num="7" id="813" />
+<TGConnectingPoint num="8" id="814" />
+<TGConnectingPoint num="9" id="815" />
+<TGConnectingPoint num="10" id="816" />
+<TGConnectingPoint num="11" id="817" />
+<TGConnectingPoint num="12" id="818" />
+<TGConnectingPoint num="13" id="819" />
+<TGConnectingPoint num="14" id="820" />
+<TGConnectingPoint num="15" id="821" />
+<TGConnectingPoint num="16" id="822" />
+<TGConnectingPoint num="17" id="823" />
+<TGConnectingPoint num="18" id="824" />
+<TGConnectingPoint num="19" id="825" />
+<TGConnectingPoint num="20" id="826" />
+<TGConnectingPoint num="21" id="827" />
+<TGConnectingPoint num="22" id="828" />
+<TGConnectingPoint num="23" id="829" />
+<TGConnectingPoint num="24" id="830" />
+<TGConnectingPoint num="25" id="831" />
+<TGConnectingPoint num="26" id="832" />
+<TGConnectingPoint num="27" id="833" />
+<TGConnectingPoint num="28" id="834" />
+<TGConnectingPoint num="29" id="835" />
+<TGConnectingPoint num="30" id="836" />
+<TGConnectingPoint num="31" id="837" />
+<TGConnectingPoint num="32" id="838" />
+<TGConnectingPoint num="33" id="839" />
+<TGConnectingPoint num="34" id="840" />
+<TGConnectingPoint num="35" id="841" />
+<TGConnectingPoint num="36" id="842" />
+<TGConnectingPoint num="37" id="843" />
+<TGConnectingPoint num="38" id="844" />
+<TGConnectingPoint num="39" id="845" />
+<TGConnectingPoint num="40" id="846" />
+<TGConnectingPoint num="41" id="847" />
+<TGConnectingPoint num="42" id="848" />
+<TGConnectingPoint num="43" id="849" />
+<TGConnectingPoint num="44" id="850" />
+<TGConnectingPoint num="45" id="851" />
+<TGConnectingPoint num="46" id="852" />
+<TGConnectingPoint num="47" id="853" />
+<TGConnectingPoint num="48" id="854" />
+<TGConnectingPoint num="49" id="855" />
+<TGConnectingPoint num="50" id="856" />
+<TGConnectingPoint num="51" id="857" />
+<TGConnectingPoint num="52" id="858" />
+<TGConnectingPoint num="53" id="859" />
+<TGConnectingPoint num="54" id="860" />
+<TGConnectingPoint num="55" id="861" />
+<TGConnectingPoint num="56" id="862" />
+<TGConnectingPoint num="57" id="863" />
+<TGConnectingPoint num="58" id="864" />
+<TGConnectingPoint num="59" id="865" />
+<TGConnectingPoint num="60" id="866" />
+<TGConnectingPoint num="61" id="867" />
+<TGConnectingPoint num="62" id="868" />
+<TGConnectingPoint num="63" id="869" />
+<TGConnectingPoint num="64" id="870" />
+<TGConnectingPoint num="65" id="871" />
+<TGConnectingPoint num="66" id="872" />
+<TGConnectingPoint num="67" id="873" />
+<TGConnectingPoint num="68" id="874" />
+<TGConnectingPoint num="69" id="875" />
+<TGConnectingPoint num="70" id="876" />
+<TGConnectingPoint num="71" id="877" />
+<tags value="" />
+<extraparam>
+</extraparam>
+</COMPONENT>
+
+<COMPONENT type="5106" id="951" index="33" uid="0c5e5e51-3952-4bf0-bbb6-4ea90725d7da" >
+<cdparam x="226" y="484" />
+<sizeparam width="164" height="97" minWidth="78" minHeight="58" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="state" value="anyBox" />
+<new d="false" />
+<TGConnectingPoint num="0" id="879" />
+<TGConnectingPoint num="1" id="880" />
+<TGConnectingPoint num="2" id="881" />
+<TGConnectingPoint num="3" id="882" />
+<TGConnectingPoint num="4" id="883" />
+<TGConnectingPoint num="5" id="884" />
+<TGConnectingPoint num="6" id="885" />
+<TGConnectingPoint num="7" id="886" />
+<TGConnectingPoint num="8" id="887" />
+<TGConnectingPoint num="9" id="888" />
+<TGConnectingPoint num="10" id="889" />
+<TGConnectingPoint num="11" id="890" />
+<TGConnectingPoint num="12" id="891" />
+<TGConnectingPoint num="13" id="892" />
+<TGConnectingPoint num="14" id="893" />
+<TGConnectingPoint num="15" id="894" />
+<TGConnectingPoint num="16" id="895" />
+<TGConnectingPoint num="17" id="896" />
+<TGConnectingPoint num="18" id="897" />
+<TGConnectingPoint num="19" id="898" />
+<TGConnectingPoint num="20" id="899" />
+<TGConnectingPoint num="21" id="900" />
+<TGConnectingPoint num="22" id="901" />
+<TGConnectingPoint num="23" id="902" />
+<TGConnectingPoint num="24" id="903" />
+<TGConnectingPoint num="25" id="904" />
+<TGConnectingPoint num="26" id="905" />
+<TGConnectingPoint num="27" id="906" />
+<TGConnectingPoint num="28" id="907" />
+<TGConnectingPoint num="29" id="908" />
+<TGConnectingPoint num="30" id="909" />
+<TGConnectingPoint num="31" id="910" />
+<TGConnectingPoint num="32" id="911" />
+<TGConnectingPoint num="33" id="912" />
+<TGConnectingPoint num="34" id="913" />
+<TGConnectingPoint num="35" id="914" />
+<TGConnectingPoint num="36" id="915" />
+<TGConnectingPoint num="37" id="916" />
+<TGConnectingPoint num="38" id="917" />
+<TGConnectingPoint num="39" id="918" />
+<TGConnectingPoint num="40" id="919" />
+<TGConnectingPoint num="41" id="920" />
+<TGConnectingPoint num="42" id="921" />
+<TGConnectingPoint num="43" id="922" />
+<TGConnectingPoint num="44" id="923" />
+<TGConnectingPoint num="45" id="924" />
+<TGConnectingPoint num="46" id="925" />
+<TGConnectingPoint num="47" id="926" />
+<TGConnectingPoint num="48" id="927" />
+<TGConnectingPoint num="49" id="928" />
+<TGConnectingPoint num="50" id="929" />
+<TGConnectingPoint num="51" id="930" />
+<TGConnectingPoint num="52" id="931" />
+<TGConnectingPoint num="53" id="932" />
+<TGConnectingPoint num="54" id="933" />
+<TGConnectingPoint num="55" id="934" />
+<TGConnectingPoint num="56" id="935" />
+<TGConnectingPoint num="57" id="936" />
+<TGConnectingPoint num="58" id="937" />
+<TGConnectingPoint num="59" id="938" />
+<TGConnectingPoint num="60" id="939" />
+<TGConnectingPoint num="61" id="940" />
+<TGConnectingPoint num="62" id="941" />
+<TGConnectingPoint num="63" id="942" />
+<TGConnectingPoint num="64" id="943" />
+<TGConnectingPoint num="65" id="944" />
+<TGConnectingPoint num="66" id="945" />
+<TGConnectingPoint num="67" id="946" />
+<TGConnectingPoint num="68" id="947" />
+<TGConnectingPoint num="69" id="948" />
+<TGConnectingPoint num="70" id="949" />
+<TGConnectingPoint num="71" id="950" />
+<tags value="" />
+<extraparam>
+</extraparam>
+</COMPONENT>
+
+<COMPONENT type="5106" id="1024" index="34" uid="72910fcb-c7b4-49e2-8c8d-5fd5c2ef9f0a" >
+<cdparam x="462" y="111" />
+<sizeparam width="164" height="97" minWidth="78" minHeight="58" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="state" value="anyBox" />
+<new d="false" />
+<TGConnectingPoint num="0" id="952" />
+<TGConnectingPoint num="1" id="953" />
+<TGConnectingPoint num="2" id="954" />
+<TGConnectingPoint num="3" id="955" />
+<TGConnectingPoint num="4" id="956" />
+<TGConnectingPoint num="5" id="957" />
+<TGConnectingPoint num="6" id="958" />
+<TGConnectingPoint num="7" id="959" />
+<TGConnectingPoint num="8" id="960" />
+<TGConnectingPoint num="9" id="961" />
+<TGConnectingPoint num="10" id="962" />
+<TGConnectingPoint num="11" id="963" />
+<TGConnectingPoint num="12" id="964" />
+<TGConnectingPoint num="13" id="965" />
+<TGConnectingPoint num="14" id="966" />
+<TGConnectingPoint num="15" id="967" />
+<TGConnectingPoint num="16" id="968" />
+<TGConnectingPoint num="17" id="969" />
+<TGConnectingPoint num="18" id="970" />
+<TGConnectingPoint num="19" id="971" />
+<TGConnectingPoint num="20" id="972" />
+<TGConnectingPoint num="21" id="973" />
+<TGConnectingPoint num="22" id="974" />
+<TGConnectingPoint num="23" id="975" />
+<TGConnectingPoint num="24" id="976" />
+<TGConnectingPoint num="25" id="977" />
+<TGConnectingPoint num="26" id="978" />
+<TGConnectingPoint num="27" id="979" />
+<TGConnectingPoint num="28" id="980" />
+<TGConnectingPoint num="29" id="981" />
+<TGConnectingPoint num="30" id="982" />
+<TGConnectingPoint num="31" id="983" />
+<TGConnectingPoint num="32" id="984" />
+<TGConnectingPoint num="33" id="985" />
+<TGConnectingPoint num="34" id="986" />
+<TGConnectingPoint num="35" id="987" />
+<TGConnectingPoint num="36" id="988" />
+<TGConnectingPoint num="37" id="989" />
+<TGConnectingPoint num="38" id="990" />
+<TGConnectingPoint num="39" id="991" />
+<TGConnectingPoint num="40" id="992" />
+<TGConnectingPoint num="41" id="993" />
+<TGConnectingPoint num="42" id="994" />
+<TGConnectingPoint num="43" id="995" />
+<TGConnectingPoint num="44" id="996" />
+<TGConnectingPoint num="45" id="997" />
+<TGConnectingPoint num="46" id="998" />
+<TGConnectingPoint num="47" id="999" />
+<TGConnectingPoint num="48" id="1000" />
+<TGConnectingPoint num="49" id="1001" />
+<TGConnectingPoint num="50" id="1002" />
+<TGConnectingPoint num="51" id="1003" />
+<TGConnectingPoint num="52" id="1004" />
+<TGConnectingPoint num="53" id="1005" />
+<TGConnectingPoint num="54" id="1006" />
+<TGConnectingPoint num="55" id="1007" />
+<TGConnectingPoint num="56" id="1008" />
+<TGConnectingPoint num="57" id="1009" />
+<TGConnectingPoint num="58" id="1010" />
+<TGConnectingPoint num="59" id="1011" />
+<TGConnectingPoint num="60" id="1012" />
+<TGConnectingPoint num="61" id="1013" />
+<TGConnectingPoint num="62" id="1014" />
+<TGConnectingPoint num="63" id="1015" />
+<TGConnectingPoint num="64" id="1016" />
+<TGConnectingPoint num="65" id="1017" />
+<TGConnectingPoint num="66" id="1018" />
+<TGConnectingPoint num="67" id="1019" />
+<TGConnectingPoint num="68" id="1020" />
+<TGConnectingPoint num="69" id="1021" />
+<TGConnectingPoint num="70" id="1022" />
+<TGConnectingPoint num="71" id="1023" />
+<tags value="" />
+<extraparam>
+</extraparam>
+</COMPONENT>
+
+<COMPONENT type="5106" id="1097" index="35" uid="0c24f671-06e1-42db-b680-eafb22fcb7c6" >
+<cdparam x="468" y="482" />
+<sizeparam width="164" height="97" minWidth="78" minHeight="58" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="state" value="anyBox" />
+<new d="false" />
+<TGConnectingPoint num="0" id="1025" />
+<TGConnectingPoint num="1" id="1026" />
+<TGConnectingPoint num="2" id="1027" />
+<TGConnectingPoint num="3" id="1028" />
+<TGConnectingPoint num="4" id="1029" />
+<TGConnectingPoint num="5" id="1030" />
+<TGConnectingPoint num="6" id="1031" />
+<TGConnectingPoint num="7" id="1032" />
+<TGConnectingPoint num="8" id="1033" />
+<TGConnectingPoint num="9" id="1034" />
+<TGConnectingPoint num="10" id="1035" />
+<TGConnectingPoint num="11" id="1036" />
+<TGConnectingPoint num="12" id="1037" />
+<TGConnectingPoint num="13" id="1038" />
+<TGConnectingPoint num="14" id="1039" />
+<TGConnectingPoint num="15" id="1040" />
+<TGConnectingPoint num="16" id="1041" />
+<TGConnectingPoint num="17" id="1042" />
+<TGConnectingPoint num="18" id="1043" />
+<TGConnectingPoint num="19" id="1044" />
+<TGConnectingPoint num="20" id="1045" />
+<TGConnectingPoint num="21" id="1046" />
+<TGConnectingPoint num="22" id="1047" />
+<TGConnectingPoint num="23" id="1048" />
+<TGConnectingPoint num="24" id="1049" />
+<TGConnectingPoint num="25" id="1050" />
+<TGConnectingPoint num="26" id="1051" />
+<TGConnectingPoint num="27" id="1052" />
+<TGConnectingPoint num="28" id="1053" />
+<TGConnectingPoint num="29" id="1054" />
+<TGConnectingPoint num="30" id="1055" />
+<TGConnectingPoint num="31" id="1056" />
+<TGConnectingPoint num="32" id="1057" />
+<TGConnectingPoint num="33" id="1058" />
+<TGConnectingPoint num="34" id="1059" />
+<TGConnectingPoint num="35" id="1060" />
+<TGConnectingPoint num="36" id="1061" />
+<TGConnectingPoint num="37" id="1062" />
+<TGConnectingPoint num="38" id="1063" />
+<TGConnectingPoint num="39" id="1064" />
+<TGConnectingPoint num="40" id="1065" />
+<TGConnectingPoint num="41" id="1066" />
+<TGConnectingPoint num="42" id="1067" />
+<TGConnectingPoint num="43" id="1068" />
+<TGConnectingPoint num="44" id="1069" />
+<TGConnectingPoint num="45" id="1070" />
+<TGConnectingPoint num="46" id="1071" />
+<TGConnectingPoint num="47" id="1072" />
+<TGConnectingPoint num="48" id="1073" />
+<TGConnectingPoint num="49" id="1074" />
+<TGConnectingPoint num="50" id="1075" />
+<TGConnectingPoint num="51" id="1076" />
+<TGConnectingPoint num="52" id="1077" />
+<TGConnectingPoint num="53" id="1078" />
+<TGConnectingPoint num="54" id="1079" />
+<TGConnectingPoint num="55" id="1080" />
+<TGConnectingPoint num="56" id="1081" />
+<TGConnectingPoint num="57" id="1082" />
+<TGConnectingPoint num="58" id="1083" />
+<TGConnectingPoint num="59" id="1084" />
+<TGConnectingPoint num="60" id="1085" />
+<TGConnectingPoint num="61" id="1086" />
+<TGConnectingPoint num="62" id="1087" />
+<TGConnectingPoint num="63" id="1088" />
+<TGConnectingPoint num="64" id="1089" />
+<TGConnectingPoint num="65" id="1090" />
+<TGConnectingPoint num="66" id="1091" />
+<TGConnectingPoint num="67" id="1092" />
+<TGConnectingPoint num="68" id="1093" />
+<TGConnectingPoint num="69" id="1094" />
+<TGConnectingPoint num="70" id="1095" />
+<TGConnectingPoint num="71" id="1096" />
+<tags value="" />
+<extraparam>
+</extraparam>
+</COMPONENT>
+
+<COMPONENT type="5106" id="1170" index="36" uid="afaaf927-936c-4307-ba31-ecbd1c1e3f5a" >
+<cdparam x="934" y="649" />
+<sizeparam width="195" height="97" minWidth="78" minHeight="58" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="state" value="preSend" />
+<new d="false" />
+<TGConnectingPoint num="0" id="1098" />
+<TGConnectingPoint num="1" id="1099" />
+<TGConnectingPoint num="2" id="1100" />
+<TGConnectingPoint num="3" id="1101" />
+<TGConnectingPoint num="4" id="1102" />
+<TGConnectingPoint num="5" id="1103" />
+<TGConnectingPoint num="6" id="1104" />
+<TGConnectingPoint num="7" id="1105" />
+<TGConnectingPoint num="8" id="1106" />
+<TGConnectingPoint num="9" id="1107" />
+<TGConnectingPoint num="10" id="1108" />
+<TGConnectingPoint num="11" id="1109" />
+<TGConnectingPoint num="12" id="1110" />
+<TGConnectingPoint num="13" id="1111" />
+<TGConnectingPoint num="14" id="1112" />
+<TGConnectingPoint num="15" id="1113" />
+<TGConnectingPoint num="16" id="1114" />
+<TGConnectingPoint num="17" id="1115" />
+<TGConnectingPoint num="18" id="1116" />
+<TGConnectingPoint num="19" id="1117" />
+<TGConnectingPoint num="20" id="1118" />
+<TGConnectingPoint num="21" id="1119" />
+<TGConnectingPoint num="22" id="1120" />
+<TGConnectingPoint num="23" id="1121" />
+<TGConnectingPoint num="24" id="1122" />
+<TGConnectingPoint num="25" id="1123" />
+<TGConnectingPoint num="26" id="1124" />
+<TGConnectingPoint num="27" id="1125" />
+<TGConnectingPoint num="28" id="1126" />
+<TGConnectingPoint num="29" id="1127" />
+<TGConnectingPoint num="30" id="1128" />
+<TGConnectingPoint num="31" id="1129" />
+<TGConnectingPoint num="32" id="1130" />
+<TGConnectingPoint num="33" id="1131" />
+<TGConnectingPoint num="34" id="1132" />
+<TGConnectingPoint num="35" id="1133" />
+<TGConnectingPoint num="36" id="1134" />
+<TGConnectingPoint num="37" id="1135" />
+<TGConnectingPoint num="38" id="1136" />
+<TGConnectingPoint num="39" id="1137" />
+<TGConnectingPoint num="40" id="1138" />
+<TGConnectingPoint num="41" id="1139" />
+<TGConnectingPoint num="42" id="1140" />
+<TGConnectingPoint num="43" id="1141" />
+<TGConnectingPoint num="44" id="1142" />
+<TGConnectingPoint num="45" id="1143" />
+<TGConnectingPoint num="46" id="1144" />
+<TGConnectingPoint num="47" id="1145" />
+<TGConnectingPoint num="48" id="1146" />
+<TGConnectingPoint num="49" id="1147" />
+<TGConnectingPoint num="50" id="1148" />
+<TGConnectingPoint num="51" id="1149" />
+<TGConnectingPoint num="52" id="1150" />
+<TGConnectingPoint num="53" id="1151" />
+<TGConnectingPoint num="54" id="1152" />
+<TGConnectingPoint num="55" id="1153" />
+<TGConnectingPoint num="56" id="1154" />
+<TGConnectingPoint num="57" id="1155" />
+<TGConnectingPoint num="58" id="1156" />
+<TGConnectingPoint num="59" id="1157" />
+<TGConnectingPoint num="60" id="1158" />
+<TGConnectingPoint num="61" id="1159" />
+<TGConnectingPoint num="62" id="1160" />
+<TGConnectingPoint num="63" id="1161" />
+<TGConnectingPoint num="64" id="1162" />
+<TGConnectingPoint num="65" id="1163" />
+<TGConnectingPoint num="66" id="1164" />
+<TGConnectingPoint num="67" id="1165" />
+<TGConnectingPoint num="68" id="1166" />
+<TGConnectingPoint num="69" id="1167" />
+<TGConnectingPoint num="70" id="1168" />
+<TGConnectingPoint num="71" id="1169" />
+<tags value="" />
+<extraparam>
+</extraparam>
+</COMPONENT>
+
+<COMPONENT type="5106" id="1243" index="37" uid="a3a79e57-42cc-4ffb-8fb0-ea597a2142fc" >
+<cdparam x="211" y="649" />
+<sizeparam width="195" height="97" minWidth="78" minHeight="58" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="state" value="preSend" />
+<new d="false" />
+<TGConnectingPoint num="0" id="1171" />
+<TGConnectingPoint num="1" id="1172" />
+<TGConnectingPoint num="2" id="1173" />
+<TGConnectingPoint num="3" id="1174" />
+<TGConnectingPoint num="4" id="1175" />
+<TGConnectingPoint num="5" id="1176" />
+<TGConnectingPoint num="6" id="1177" />
+<TGConnectingPoint num="7" id="1178" />
+<TGConnectingPoint num="8" id="1179" />
+<TGConnectingPoint num="9" id="1180" />
+<TGConnectingPoint num="10" id="1181" />
+<TGConnectingPoint num="11" id="1182" />
+<TGConnectingPoint num="12" id="1183" />
+<TGConnectingPoint num="13" id="1184" />
+<TGConnectingPoint num="14" id="1185" />
+<TGConnectingPoint num="15" id="1186" />
+<TGConnectingPoint num="16" id="1187" />
+<TGConnectingPoint num="17" id="1188" />
+<TGConnectingPoint num="18" id="1189" />
+<TGConnectingPoint num="19" id="1190" />
+<TGConnectingPoint num="20" id="1191" />
+<TGConnectingPoint num="21" id="1192" />
+<TGConnectingPoint num="22" id="1193" />
+<TGConnectingPoint num="23" id="1194" />
+<TGConnectingPoint num="24" id="1195" />
+<TGConnectingPoint num="25" id="1196" />
+<TGConnectingPoint num="26" id="1197" />
+<TGConnectingPoint num="27" id="1198" />
+<TGConnectingPoint num="28" id="1199" />
+<TGConnectingPoint num="29" id="1200" />
+<TGConnectingPoint num="30" id="1201" />
+<TGConnectingPoint num="31" id="1202" />
+<TGConnectingPoint num="32" id="1203" />
+<TGConnectingPoint num="33" id="1204" />
+<TGConnectingPoint num="34" id="1205" />
+<TGConnectingPoint num="35" id="1206" />
+<TGConnectingPoint num="36" id="1207" />
+<TGConnectingPoint num="37" id="1208" />
+<TGConnectingPoint num="38" id="1209" />
+<TGConnectingPoint num="39" id="1210" />
+<TGConnectingPoint num="40" id="1211" />
+<TGConnectingPoint num="41" id="1212" />
+<TGConnectingPoint num="42" id="1213" />
+<TGConnectingPoint num="43" id="1214" />
+<TGConnectingPoint num="44" id="1215" />
+<TGConnectingPoint num="45" id="1216" />
+<TGConnectingPoint num="46" id="1217" />
+<TGConnectingPoint num="47" id="1218" />
+<TGConnectingPoint num="48" id="1219" />
+<TGConnectingPoint num="49" id="1220" />
+<TGConnectingPoint num="50" id="1221" />
+<TGConnectingPoint num="51" id="1222" />
+<TGConnectingPoint num="52" id="1223" />
+<TGConnectingPoint num="53" id="1224" />
+<TGConnectingPoint num="54" id="1225" />
+<TGConnectingPoint num="55" id="1226" />
+<TGConnectingPoint num="56" id="1227" />
+<TGConnectingPoint num="57" id="1228" />
+<TGConnectingPoint num="58" id="1229" />
+<TGConnectingPoint num="59" id="1230" />
+<TGConnectingPoint num="60" id="1231" />
+<TGConnectingPoint num="61" id="1232" />
+<TGConnectingPoint num="62" id="1233" />
+<TGConnectingPoint num="63" id="1234" />
+<TGConnectingPoint num="64" id="1235" />
+<TGConnectingPoint num="65" id="1236" />
+<TGConnectingPoint num="66" id="1237" />
+<TGConnectingPoint num="67" id="1238" />
+<TGConnectingPoint num="68" id="1239" />
+<TGConnectingPoint num="69" id="1240" />
+<TGConnectingPoint num="70" id="1241" />
+<TGConnectingPoint num="71" id="1242" />
+<tags value="" />
+<extraparam>
+</extraparam>
+</COMPONENT>
+
+<COMPONENT type="5106" id="1316" index="38" uid="d1b15404-501b-4153-814d-3d3b7dded431" >
+<cdparam x="690" y="649" />
+<sizeparam width="195" height="97" minWidth="78" minHeight="58" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="state" value="preSend" />
+<new d="false" />
+<TGConnectingPoint num="0" id="1244" />
+<TGConnectingPoint num="1" id="1245" />
+<TGConnectingPoint num="2" id="1246" />
+<TGConnectingPoint num="3" id="1247" />
+<TGConnectingPoint num="4" id="1248" />
+<TGConnectingPoint num="5" id="1249" />
+<TGConnectingPoint num="6" id="1250" />
+<TGConnectingPoint num="7" id="1251" />
+<TGConnectingPoint num="8" id="1252" />
+<TGConnectingPoint num="9" id="1253" />
+<TGConnectingPoint num="10" id="1254" />
+<TGConnectingPoint num="11" id="1255" />
+<TGConnectingPoint num="12" id="1256" />
+<TGConnectingPoint num="13" id="1257" />
+<TGConnectingPoint num="14" id="1258" />
+<TGConnectingPoint num="15" id="1259" />
+<TGConnectingPoint num="16" id="1260" />
+<TGConnectingPoint num="17" id="1261" />
+<TGConnectingPoint num="18" id="1262" />
+<TGConnectingPoint num="19" id="1263" />
+<TGConnectingPoint num="20" id="1264" />
+<TGConnectingPoint num="21" id="1265" />
+<TGConnectingPoint num="22" id="1266" />
+<TGConnectingPoint num="23" id="1267" />
+<TGConnectingPoint num="24" id="1268" />
+<TGConnectingPoint num="25" id="1269" />
+<TGConnectingPoint num="26" id="1270" />
+<TGConnectingPoint num="27" id="1271" />
+<TGConnectingPoint num="28" id="1272" />
+<TGConnectingPoint num="29" id="1273" />
+<TGConnectingPoint num="30" id="1274" />
+<TGConnectingPoint num="31" id="1275" />
+<TGConnectingPoint num="32" id="1276" />
+<TGConnectingPoint num="33" id="1277" />
+<TGConnectingPoint num="34" id="1278" />
+<TGConnectingPoint num="35" id="1279" />
+<TGConnectingPoint num="36" id="1280" />
+<TGConnectingPoint num="37" id="1281" />
+<TGConnectingPoint num="38" id="1282" />
+<TGConnectingPoint num="39" id="1283" />
+<TGConnectingPoint num="40" id="1284" />
+<TGConnectingPoint num="41" id="1285" />
+<TGConnectingPoint num="42" id="1286" />
+<TGConnectingPoint num="43" id="1287" />
+<TGConnectingPoint num="44" id="1288" />
+<TGConnectingPoint num="45" id="1289" />
+<TGConnectingPoint num="46" id="1290" />
+<TGConnectingPoint num="47" id="1291" />
+<TGConnectingPoint num="48" id="1292" />
+<TGConnectingPoint num="49" id="1293" />
+<TGConnectingPoint num="50" id="1294" />
+<TGConnectingPoint num="51" id="1295" />
+<TGConnectingPoint num="52" id="1296" />
+<TGConnectingPoint num="53" id="1297" />
+<TGConnectingPoint num="54" id="1298" />
+<TGConnectingPoint num="55" id="1299" />
+<TGConnectingPoint num="56" id="1300" />
+<TGConnectingPoint num="57" id="1301" />
+<TGConnectingPoint num="58" id="1302" />
+<TGConnectingPoint num="59" id="1303" />
+<TGConnectingPoint num="60" id="1304" />
+<TGConnectingPoint num="61" id="1305" />
+<TGConnectingPoint num="62" id="1306" />
+<TGConnectingPoint num="63" id="1307" />
+<TGConnectingPoint num="64" id="1308" />
+<TGConnectingPoint num="65" id="1309" />
+<TGConnectingPoint num="66" id="1310" />
+<TGConnectingPoint num="67" id="1311" />
+<TGConnectingPoint num="68" id="1312" />
+<TGConnectingPoint num="69" id="1313" />
+<TGConnectingPoint num="70" id="1314" />
+<TGConnectingPoint num="71" id="1315" />
+<tags value="" />
+<extraparam>
+</extraparam>
+</COMPONENT>
+
+<COMPONENT type="5106" id="184" index="39" uid="2e483a88-d6f8-4df6-a208-261f3f18c923" >
+<cdparam x="443" y="650" />
+<sizeparam width="214" height="97" minWidth="78" minHeight="58" maxWidth="3906" maxHeight="3906" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="state" value="preReceive" />
+<new d="false" />
+<TGConnectingPoint num="0" id="112" />
+<TGConnectingPoint num="1" id="113" />
+<TGConnectingPoint num="2" id="114" />
+<TGConnectingPoint num="3" id="115" />
+<TGConnectingPoint num="4" id="116" />
+<TGConnectingPoint num="5" id="117" />
+<TGConnectingPoint num="6" id="118" />
+<TGConnectingPoint num="7" id="119" />
+<TGConnectingPoint num="8" id="120" />
+<TGConnectingPoint num="9" id="121" />
+<TGConnectingPoint num="10" id="122" />
+<TGConnectingPoint num="11" id="123" />
+<TGConnectingPoint num="12" id="124" />
+<TGConnectingPoint num="13" id="125" />
+<TGConnectingPoint num="14" id="126" />
+<TGConnectingPoint num="15" id="127" />
+<TGConnectingPoint num="16" id="128" />
+<TGConnectingPoint num="17" id="129" />
+<TGConnectingPoint num="18" id="130" />
+<TGConnectingPoint num="19" id="131" />
+<TGConnectingPoint num="20" id="132" />
+<TGConnectingPoint num="21" id="133" />
+<TGConnectingPoint num="22" id="134" />
+<TGConnectingPoint num="23" id="135" />
+<TGConnectingPoint num="24" id="136" />
+<TGConnectingPoint num="25" id="137" />
+<TGConnectingPoint num="26" id="138" />
+<TGConnectingPoint num="27" id="139" />
+<TGConnectingPoint num="28" id="140" />
+<TGConnectingPoint num="29" id="141" />
+<TGConnectingPoint num="30" id="142" />
+<TGConnectingPoint num="31" id="143" />
+<TGConnectingPoint num="32" id="144" />
+<TGConnectingPoint num="33" id="145" />
+<TGConnectingPoint num="34" id="146" />
+<TGConnectingPoint num="35" id="147" />
+<TGConnectingPoint num="36" id="148" />
+<TGConnectingPoint num="37" id="149" />
+<TGConnectingPoint num="38" id="150" />
+<TGConnectingPoint num="39" id="151" />
+<TGConnectingPoint num="40" id="152" />
+<TGConnectingPoint num="41" id="153" />
+<TGConnectingPoint num="42" id="154" />
+<TGConnectingPoint num="43" id="155" />
+<TGConnectingPoint num="44" id="156" />
+<TGConnectingPoint num="45" id="157" />
+<TGConnectingPoint num="46" id="158" />
+<TGConnectingPoint num="47" id="159" />
+<TGConnectingPoint num="48" id="160" />
+<TGConnectingPoint num="49" id="161" />
+<TGConnectingPoint num="50" id="162" />
+<TGConnectingPoint num="51" id="163" />
+<TGConnectingPoint num="52" id="164" />
+<TGConnectingPoint num="53" id="165" />
+<TGConnectingPoint num="54" id="166" />
+<TGConnectingPoint num="55" id="167" />
+<TGConnectingPoint num="56" id="168" />
+<TGConnectingPoint num="57" id="169" />
+<TGConnectingPoint num="58" id="170" />
+<TGConnectingPoint num="59" id="171" />
+<TGConnectingPoint num="60" id="172" />
+<TGConnectingPoint num="61" id="173" />
+<TGConnectingPoint num="62" id="174" />
+<TGConnectingPoint num="63" id="175" />
+<TGConnectingPoint num="64" id="176" />
+<TGConnectingPoint num="65" id="177" />
+<TGConnectingPoint num="66" id="178" />
+<TGConnectingPoint num="67" id="179" />
+<TGConnectingPoint num="68" id="180" />
+<TGConnectingPoint num="69" id="181" />
+<TGConnectingPoint num="70" id="182" />
+<TGConnectingPoint num="71" id="183" />
+<tags value="" />
+<extraparam>
+</extraparam>
+</COMPONENT>
+
+
+</AVATARStateMachineDiagramPanel>
+
+</Modeling>
+
+
+
+
+</TURTLEGMODELING>
\ No newline at end of file
diff --git a/doc/avatarSysMLV2/example_models/tt_tosysml_with_timer.xml b/doc/avatarSysMLV2/example_models/tt_tosysml_with_timer.xml
new file mode 100644
index 0000000000000000000000000000000000000000..593a3d0e7208a1a88a85584c7c78120048b45bfb
--- /dev/null
+++ b/doc/avatarSysMLV2/example_models/tt_tosysml_with_timer.xml
@@ -0,0 +1,1181 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<TURTLEGMODELING version="3.0 beta" ANIMATE_INTERACTIVE_SIMULATION="true" ACTIVATE_PENALTIES="true" UPDATE_INFORMATION_DIPLO_SIM="false" ANIMATE_WITH_INFO_DIPLO_SIM="true" OPEN_DIAG_DIPLO_SIM="false" LAST_SELECTED_MAIN_TAB="0" LAST_SELECTED_SUB_TAB="1">
+
+<Modeling type="AVATAR Design" nameTab="Design" tabs="Block Diagram$B0$B1$B1_0" >
+<AVATARBlockDiagramPanel name="Block Diagram" minX="10" maxX="2500" minY="10" maxY="1500" zoom="1.0" >
+<MainCode value="void __user_init() {"/>
+<MainCode value="}"/>
+<Optimized value="true" />
+<considerTimingOperators value="true" />
+<Validated value="B1;B1_0;B0;" />
+<Ignored value="" />
+
+<CONNECTOR type="5002" id="2" index="0" uid="e2d900d2-9cd1-419a-a79e-03081de16bf0" >
+<cdparam x="338" y="230" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="" />
+<TGConnectingPoint num="0" id="1" />
+<P1  x="315" y="285" id="98" />
+<P2  x="384" y="277" id="13" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+<extraparam>
+<iso value="in in0(int x, Point p, bool b)" />
+<osd value="out out1(int x, Point p, bool b)" />
+<isd value="in in1(int x, Point p, bool b)" />
+<oso value="out out0(int x, Point p, bool b)" />
+<FIFOType asynchronous="false" synchronousCH="true" size="1" blocking="false" private="true" broadcast="false" lossy="false" ams="false" />
+</extraparam>
+</CONNECTOR>
+<COMPONENT type="5000" id="84" index="1" uid="94fc245f-ba93-486c-a741-c888fb20658d" >
+<cdparam x="356" y="175" />
+<sizeparam width="229" height="228" minWidth="5" minHeight="2" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="Block" value="B1" />
+<new d="false" />
+<TGConnectingPoint num="0" id="44" />
+<TGConnectingPoint num="1" id="45" />
+<TGConnectingPoint num="2" id="46" />
+<TGConnectingPoint num="3" id="47" />
+<TGConnectingPoint num="4" id="48" />
+<TGConnectingPoint num="5" id="49" />
+<TGConnectingPoint num="6" id="50" />
+<TGConnectingPoint num="7" id="51" />
+<TGConnectingPoint num="8" id="52" />
+<TGConnectingPoint num="9" id="53" />
+<TGConnectingPoint num="10" id="54" />
+<TGConnectingPoint num="11" id="55" />
+<TGConnectingPoint num="12" id="56" />
+<TGConnectingPoint num="13" id="57" />
+<TGConnectingPoint num="14" id="58" />
+<TGConnectingPoint num="15" id="59" />
+<TGConnectingPoint num="16" id="60" />
+<TGConnectingPoint num="17" id="61" />
+<TGConnectingPoint num="18" id="62" />
+<TGConnectingPoint num="19" id="63" />
+<TGConnectingPoint num="20" id="64" />
+<TGConnectingPoint num="21" id="65" />
+<TGConnectingPoint num="22" id="66" />
+<TGConnectingPoint num="23" id="67" />
+<TGConnectingPoint num="24" id="68" />
+<TGConnectingPoint num="25" id="69" />
+<TGConnectingPoint num="26" id="70" />
+<TGConnectingPoint num="27" id="71" />
+<TGConnectingPoint num="28" id="72" />
+<TGConnectingPoint num="29" id="73" />
+<TGConnectingPoint num="30" id="74" />
+<TGConnectingPoint num="31" id="75" />
+<TGConnectingPoint num="32" id="76" />
+<TGConnectingPoint num="33" id="77" />
+<TGConnectingPoint num="34" id="78" />
+<TGConnectingPoint num="35" id="79" />
+<TGConnectingPoint num="36" id="80" />
+<TGConnectingPoint num="37" id="81" />
+<TGConnectingPoint num="38" id="82" />
+<TGConnectingPoint num="39" id="83" />
+<extraparam>
+<blockType data="block" color="-4072719" />
+<CryptoBlock value="false" />
+</extraparam>
+</COMPONENT>
+<SUBCOMPONENT type="5000" id="43" index="4" uid="2b8839f5-8a46-4ef8-b202-68d15fae0cbb" >
+<father id="84" num="0" />
+<cdparam x="384" y="239" />
+<sizeparam width="183" height="154" minWidth="5" minHeight="2" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<cdrectangleparam minX="0" maxX="46" minY="0" maxY="74" />
+<infoparam name="Block0" value="B1_0" />
+<new d="false" />
+<TGConnectingPoint num="0" id="3" />
+<TGConnectingPoint num="1" id="4" />
+<TGConnectingPoint num="2" id="5" />
+<TGConnectingPoint num="3" id="6" />
+<TGConnectingPoint num="4" id="7" />
+<TGConnectingPoint num="5" id="8" />
+<TGConnectingPoint num="6" id="9" />
+<TGConnectingPoint num="7" id="10" />
+<TGConnectingPoint num="8" id="11" />
+<TGConnectingPoint num="9" id="12" />
+<TGConnectingPoint num="10" id="13" />
+<TGConnectingPoint num="11" id="14" />
+<TGConnectingPoint num="12" id="15" />
+<TGConnectingPoint num="13" id="16" />
+<TGConnectingPoint num="14" id="17" />
+<TGConnectingPoint num="15" id="18" />
+<TGConnectingPoint num="16" id="19" />
+<TGConnectingPoint num="17" id="20" />
+<TGConnectingPoint num="18" id="21" />
+<TGConnectingPoint num="19" id="22" />
+<TGConnectingPoint num="20" id="23" />
+<TGConnectingPoint num="21" id="24" />
+<TGConnectingPoint num="22" id="25" />
+<TGConnectingPoint num="23" id="26" />
+<TGConnectingPoint num="24" id="27" />
+<TGConnectingPoint num="25" id="28" />
+<TGConnectingPoint num="26" id="29" />
+<TGConnectingPoint num="27" id="30" />
+<TGConnectingPoint num="28" id="31" />
+<TGConnectingPoint num="29" id="32" />
+<TGConnectingPoint num="30" id="33" />
+<TGConnectingPoint num="31" id="34" />
+<TGConnectingPoint num="32" id="35" />
+<TGConnectingPoint num="33" id="36" />
+<TGConnectingPoint num="34" id="37" />
+<TGConnectingPoint num="35" id="38" />
+<TGConnectingPoint num="36" id="39" />
+<TGConnectingPoint num="37" id="40" />
+<TGConnectingPoint num="38" id="41" />
+<TGConnectingPoint num="39" id="42" />
+<extraparam>
+<blockType data="block" color="-4072719" />
+<CryptoBlock value="false" />
+<Attribute access="0" var="0" id="x" value="0" type="8" typeOther="" />
+<Attribute access="0" var="0" id="b" value="false" type="4" typeOther="" />
+<Attribute access="0" var="0" id="p" value="" type="5" typeOther="Point" />
+<Attribute access="0" var="0" id="t" value="" type="9" typeOther="" />
+<Signal value="in in1(int x, Point p, bool b)" attached="true" />
+<Signal value="out out1(int x, Point p, bool b)" attached="true" />
+</extraparam>
+</SUBCOMPONENT>
+
+<COMPONENT type="5003" id="93" index="2" uid="8aa452d0-d94c-4687-872a-d8da736a353a" >
+<cdparam x="235" y="77" />
+<sizeparam width="93" height="88" minWidth="5" minHeight="2" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="DataType" value="Point" />
+<new d="false" />
+<TGConnectingPoint num="0" id="85" />
+<TGConnectingPoint num="1" id="86" />
+<TGConnectingPoint num="2" id="87" />
+<TGConnectingPoint num="3" id="88" />
+<TGConnectingPoint num="4" id="89" />
+<TGConnectingPoint num="5" id="90" />
+<TGConnectingPoint num="6" id="91" />
+<TGConnectingPoint num="7" id="92" />
+<extraparam>
+<Attribute access="0" var="0" id="x" value="0" type="8" typeOther="" />
+<Attribute access="0" var="0" id="y" value="0" type="8" typeOther="" />
+</extraparam>
+</COMPONENT>
+
+<COMPONENT type="5000" id="134" index="3" uid="06d9b9cf-d5f5-46a8-ba3d-befc1c5aff9f" >
+<cdparam x="97" y="180" />
+<sizeparam width="218" height="210" minWidth="5" minHeight="2" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="Block" value="B0" />
+<new d="false" />
+<TGConnectingPoint num="0" id="94" />
+<TGConnectingPoint num="1" id="95" />
+<TGConnectingPoint num="2" id="96" />
+<TGConnectingPoint num="3" id="97" />
+<TGConnectingPoint num="4" id="98" />
+<TGConnectingPoint num="5" id="99" />
+<TGConnectingPoint num="6" id="100" />
+<TGConnectingPoint num="7" id="101" />
+<TGConnectingPoint num="8" id="102" />
+<TGConnectingPoint num="9" id="103" />
+<TGConnectingPoint num="10" id="104" />
+<TGConnectingPoint num="11" id="105" />
+<TGConnectingPoint num="12" id="106" />
+<TGConnectingPoint num="13" id="107" />
+<TGConnectingPoint num="14" id="108" />
+<TGConnectingPoint num="15" id="109" />
+<TGConnectingPoint num="16" id="110" />
+<TGConnectingPoint num="17" id="111" />
+<TGConnectingPoint num="18" id="112" />
+<TGConnectingPoint num="19" id="113" />
+<TGConnectingPoint num="20" id="114" />
+<TGConnectingPoint num="21" id="115" />
+<TGConnectingPoint num="22" id="116" />
+<TGConnectingPoint num="23" id="117" />
+<TGConnectingPoint num="24" id="118" />
+<TGConnectingPoint num="25" id="119" />
+<TGConnectingPoint num="26" id="120" />
+<TGConnectingPoint num="27" id="121" />
+<TGConnectingPoint num="28" id="122" />
+<TGConnectingPoint num="29" id="123" />
+<TGConnectingPoint num="30" id="124" />
+<TGConnectingPoint num="31" id="125" />
+<TGConnectingPoint num="32" id="126" />
+<TGConnectingPoint num="33" id="127" />
+<TGConnectingPoint num="34" id="128" />
+<TGConnectingPoint num="35" id="129" />
+<TGConnectingPoint num="36" id="130" />
+<TGConnectingPoint num="37" id="131" />
+<TGConnectingPoint num="38" id="132" />
+<TGConnectingPoint num="39" id="133" />
+<extraparam>
+<blockType data="block" color="-4072719" />
+<CryptoBlock value="false" />
+<Attribute access="0" var="0" id="x" value="" type="8" typeOther="" />
+<Attribute access="0" var="0" id="b" value="" type="4" typeOther="" />
+<Attribute access="0" var="0" id="p" value="" type="5" typeOther="Point" />
+<Attribute access="0" var="0" id="y" value="" type="8" typeOther="" />
+<Method value="Point make(int x, int y)" />
+<Method value="int getx(Point p)" />
+<Method value="foo(bool b, Point p, int x)" />
+<Signal value="in in0(int x, Point p, bool b)" attached="true" />
+<Signal value="out out0(int x, Point p, bool b)" attached="true" />
+</extraparam>
+</COMPONENT>
+
+
+</AVATARBlockDiagramPanel>
+
+<AVATARStateMachineDiagramPanel name="B0" minX="16" maxX="3906" minY="16" maxY="2344" zoom="1.5625" >
+<CONNECTOR type="5102" id="141" index="0" uid="1146a1cf-2f3c-4f6a-9b58-131f269eed11" >
+<cdparam x="359" y="240" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="140" />
+<P1  x="359" y="240" id="175" />
+<P2  x="359" y="309" id="187" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="139" index="9" uid="c3a05878-d247-4b3b-b344-d32b2ad13ad7" >
+<father id="141" num="0" />
+<cdparam x="379" y="240" />
+<sizeparam width="119" height="48" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="16" maxX="3906" minY="16" maxY="2344" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="135" />
+<TGConnectingPoint num="1" id="136" />
+<TGConnectingPoint num="2" id="137" />
+<TGConnectingPoint num="3" id="138" />
+<extraparam>
+<guard value="[ ]" enabled="true"/>
+<afterMin value="" enabled="true"/>
+<afterMax value="" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+<actions value="p = make(x,y)" enabled="true"/>
+<actions value="x = getx(p)" enabled="true"/>
+</extraparam>
+</SUBCOMPONENT>
+
+<CONNECTOR type="5102" id="148" index="1" uid="1f01956e-7a84-47df-9fd9-f7a45d1e5f4c" >
+<cdparam x="172" y="610" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="3125" maxHeight="3125" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="147" />
+<P1  x="359" y="446" id="164" />
+<P2  x="359" y="493" id="185" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="146" index="10" uid="de96ca94-86cb-4bf3-b63e-421a93ccfc67" >
+<father id="148" num="0" />
+<cdparam x="172" y="668" />
+<sizeparam width="50" height="25" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="3906" minY="10" maxY="2343" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="142" />
+<TGConnectingPoint num="1" id="143" />
+<TGConnectingPoint num="2" id="144" />
+<TGConnectingPoint num="3" id="145" />
+<extraparam>
+<guard value="[ ]" enabled="true"/>
+<afterMin value="" enabled="true"/>
+<afterMax value="" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+</extraparam>
+</SUBCOMPONENT>
+
+<CONNECTOR type="5102" id="155" index="2" uid="1a1f75f0-3055-4d7a-aa5a-4a70634e3484" >
+<cdparam x="278" y="537" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="3125" maxHeight="3125" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="154" />
+<P1  x="359" y="354" id="188" />
+<P2  x="359" y="401" id="163" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="153" index="11" uid="14ed42f2-4c94-4e0a-9a05-d5bc511d1aa5" >
+<father id="155" num="0" />
+<cdparam x="378" y="350" />
+<sizeparam width="107" height="48" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="3906" minY="10" maxY="2343" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="149" />
+<TGConnectingPoint num="1" id="150" />
+<TGConnectingPoint num="2" id="151" />
+<TGConnectingPoint num="3" id="152" />
+<extraparam>
+<guard value="[p.x&gt;4 ]" enabled="true"/>
+<afterMin value="" enabled="true"/>
+<afterMax value="" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+<actions value="foo(b,p,x)" enabled="true"/>
+</extraparam>
+</SUBCOMPONENT>
+
+<CONNECTOR type="5102" id="162" index="3" uid="833ce51f-ce8d-402a-819a-526a0071f83a" >
+<cdparam x="356" y="181" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="3125" maxHeight="3125" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="161" />
+<P1  x="359" y="74" id="190" />
+<P2  x="359" y="195" id="174" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="160" index="12" uid="dd687934-2033-4ae7-a9a0-36d732978073" >
+<father id="162" num="0" />
+<cdparam x="380" y="75" />
+<sizeparam width="112" height="94" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="3906" minY="10" maxY="2343" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="156" />
+<TGConnectingPoint num="1" id="157" />
+<TGConnectingPoint num="2" id="158" />
+<TGConnectingPoint num="3" id="159" />
+<extraparam>
+<guard value="[ ]" enabled="true"/>
+<afterMin value="1" enabled="true"/>
+<afterMax value="p.x" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+<actions value="x = 1" enabled="true"/>
+<actions value="b = true" enabled="true"/>
+<actions value="p.x = x" enabled="true"/>
+</extraparam>
+</SUBCOMPONENT>
+
+<COMPONENT type="5104" id="173" index="4" uid="507ab36b-12af-40a9-b4d3-d1687f4ee635" >
+<cdparam x="303" y="408" />
+<sizeparam width="113" height="31" minWidth="30" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2499" minY="10" maxY="1500" />
+<infoparam name="Receive signal" value="in0(x, p, b)" />
+<new d="false" />
+<TGConnectingPoint num="0" id="163" />
+<TGConnectingPoint num="1" id="164" />
+<TGConnectingPoint num="2" id="165" />
+<TGConnectingPoint num="3" id="166" />
+<TGConnectingPoint num="4" id="167" />
+<TGConnectingPoint num="5" id="168" />
+<TGConnectingPoint num="6" id="169" />
+<TGConnectingPoint num="7" id="170" />
+<TGConnectingPoint num="8" id="171" />
+<TGConnectingPoint num="9" id="172" />
+</COMPONENT>
+
+<COMPONENT type="5103" id="184" index="5" uid="83bfdfcd-2185-424c-ad19-260ec86acd32" >
+<cdparam x="301" y="202" />
+<sizeparam width="116" height="31" minWidth="30" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2499" minY="10" maxY="1500" />
+<infoparam name="Send signal" value="out0(x, p, b)" />
+<new d="false" />
+<TGConnectingPoint num="0" id="174" />
+<TGConnectingPoint num="1" id="175" />
+<TGConnectingPoint num="2" id="176" />
+<TGConnectingPoint num="3" id="177" />
+<TGConnectingPoint num="4" id="178" />
+<TGConnectingPoint num="5" id="179" />
+<TGConnectingPoint num="6" id="180" />
+<TGConnectingPoint num="7" id="181" />
+<TGConnectingPoint num="8" id="182" />
+<TGConnectingPoint num="9" id="183" />
+</COMPONENT>
+
+<COMPONENT type="5101" id="186" index="6" uid="4c83d303-bd2a-4705-9638-d3da5a6d30ba" >
+<cdparam x="344" y="500" />
+<sizeparam width="31" height="31" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<cdrectangleparam minX="16" maxX="3906" minY="16" maxY="2344" />
+<infoparam name="stop state" value="null" />
+<new d="false" />
+<TGConnectingPoint num="0" id="185" />
+</COMPONENT>
+
+<COMPONENT type="5108" id="189" index="7" uid="c8fc7cc9-d99c-4e2d-b466-4e440c0ba0d7" >
+<cdparam x="261" y="316" />
+<sizeparam width="196" height="31" minWidth="46" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2499" minY="10" maxY="1500" />
+<infoparam name="TGComponent" value="null" />
+<new d="false" />
+<TGConnectingPoint num="0" id="187" />
+<TGConnectingPoint num="1" id="188" />
+<extraparam>
+<Data variable="x" minValue="0" maxValue="p.y" functionId="0" extraAttribute1="" extraAttribute2="" />
+</extraparam>
+</COMPONENT>
+
+<COMPONENT type="5100" id="191" index="8" uid="02d7e1f1-28a4-4403-9e64-d6a4786cea7d" >
+<cdparam x="348" y="44" />
+<sizeparam width="23" height="23" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<cdrectangleparam minX="10" maxX="2499" minY="10" maxY="1500" />
+<infoparam name="start state" value="null" />
+<new d="false" />
+<TGConnectingPoint num="0" id="190" />
+</COMPONENT>
+
+
+</AVATARStateMachineDiagramPanel>
+
+<AVATARStateMachineDiagramPanel name="B1" minX="10" maxX="2500" minY="10" maxY="1500" zoom="1.0" >
+<COMPONENT type="5100" id="193" index="0" uid="5ee8db59-2cb6-4210-9cac-0363ba606b88" >
+<cdparam x="400" y="50" />
+<sizeparam width="15" height="15" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="start state" value="null" />
+<new d="false" />
+<TGConnectingPoint num="0" id="192" />
+</COMPONENT>
+
+
+</AVATARStateMachineDiagramPanel>
+
+<AVATARStateMachineDiagramPanel name="B1_0" minX="10" maxX="2500" minY="10" maxY="1500" zoom="1.0" >
+<CONNECTOR type="5102" id="206" index="0" uid="74d4d087-22e6-4735-a473-2b777a473eee" >
+<cdparam x="519" y="439" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="1280" maxHeight="1280" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="202" />
+<TGConnectingPoint num="1" id="203" />
+<TGConnectingPoint num="2" id="204" />
+<TGConnectingPoint num="3" id="205" />
+<P1  x="484" y="427" id="277" />
+<P2  x="404" y="223" id="386" />
+<Point x="484" y="439" />
+<Point x="535" y="439" />
+<Point x="535" y="223" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="194" index="19" uid="36a4768a-9652-43bb-845d-209be2c965da" >
+<father id="206" num="0" />
+<cdparam x="484" y="439" />
+<sizeparam width="8" height="8" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<cdrectangleparam minX="16" maxX="2499" minY="16" maxY="1500" />
+<infoparam name="point " value="null" />
+<new d="false" />
+</SUBCOMPONENT>
+<SUBCOMPONENT type="-1" id="195" index="20" uid="39ef4810-055d-4eaf-a409-784ef6b1a786" >
+<father id="206" num="1" />
+<cdparam x="535" y="439" />
+<sizeparam width="8" height="8" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<cdrectangleparam minX="16" maxX="2499" minY="16" maxY="1500" />
+<infoparam name="point " value="null" />
+<new d="false" />
+</SUBCOMPONENT>
+<SUBCOMPONENT type="-1" id="196" index="21" uid="026cf268-175f-4163-a255-750c9c778d1d" >
+<father id="206" num="2" />
+<cdparam x="535" y="223" />
+<sizeparam width="8" height="8" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<cdrectangleparam minX="16" maxX="2499" minY="16" maxY="1500" />
+<infoparam name="point " value="null" />
+<new d="false" />
+</SUBCOMPONENT>
+<SUBCOMPONENT type="-1" id="201" index="22" uid="7270605d-c970-425f-8bf8-b5065cf75ec2" >
+<father id="206" num="3" />
+<cdparam x="438" y="311" />
+<sizeparam width="50" height="25" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="16" maxX="2499" minY="16" maxY="1500" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="197" />
+<TGConnectingPoint num="1" id="198" />
+<TGConnectingPoint num="2" id="199" />
+<TGConnectingPoint num="3" id="200" />
+<extraparam>
+<guard value="[ ]" enabled="true"/>
+<afterMin value="" enabled="true"/>
+<afterMax value="" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+</extraparam>
+</SUBCOMPONENT>
+
+<CONNECTOR type="5102" id="213" index="1" uid="928bb940-f1ee-436c-9f17-4857b6f782aa" >
+<cdparam x="484" y="373" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="1280" maxHeight="1280" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="212" />
+<P1  x="485" y="373" id="329" />
+<P2  x="484" y="397" id="276" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="211" index="23" uid="0213b0ca-9329-414a-80ad-7921a4d9583b" >
+<father id="213" num="0" />
+<cdparam x="501" y="391" />
+<sizeparam width="50" height="25" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="16" maxX="2499" minY="16" maxY="1500" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="207" />
+<TGConnectingPoint num="1" id="208" />
+<TGConnectingPoint num="2" id="209" />
+<TGConnectingPoint num="3" id="210" />
+<extraparam>
+<guard value="[ ]" enabled="true"/>
+<afterMin value="" enabled="true"/>
+<afterMax value="" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+</extraparam>
+</SUBCOMPONENT>
+
+<CONNECTOR type="5102" id="226" index="2" uid="bc2e2186-ed41-4917-b20c-6144ac1bf4d7" >
+<cdparam x="429" y="424" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="222" />
+<TGConnectingPoint num="1" id="223" />
+<TGConnectingPoint num="2" id="224" />
+<TGConnectingPoint num="3" id="225" />
+<P1  x="410" y="428" id="288" />
+<P2  x="398" y="348" id="301" />
+<Point x="409" y="441" />
+<Point x="366" y="441" />
+<Point x="366" y="348" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="214" index="24" uid="0de4328e-37e4-435d-81e5-d1d840c7b967" >
+<father id="226" num="0" />
+<cdparam x="409" y="441" />
+<sizeparam width="8" height="8" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<cdrectangleparam minX="10" maxX="2499" minY="10" maxY="1499" />
+<infoparam name="point " value="null" />
+<new d="false" />
+</SUBCOMPONENT>
+<SUBCOMPONENT type="-1" id="215" index="25" uid="4cdf03f5-ab6b-4197-961f-5725ef18f4c2" >
+<father id="226" num="1" />
+<cdparam x="366" y="441" />
+<sizeparam width="8" height="8" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<cdrectangleparam minX="10" maxX="2499" minY="10" maxY="1499" />
+<infoparam name="point " value="null" />
+<new d="false" />
+</SUBCOMPONENT>
+<SUBCOMPONENT type="-1" id="216" index="26" uid="c81192a6-0500-4f55-b09a-6458263194a2" >
+<father id="226" num="2" />
+<cdparam x="366" y="348" />
+<sizeparam width="8" height="8" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<cdrectangleparam minX="10" maxX="2499" minY="10" maxY="1499" />
+<infoparam name="point " value="null" />
+<new d="false" />
+</SUBCOMPONENT>
+<SUBCOMPONENT type="-1" id="221" index="27" uid="fe9df050-f3a4-40b9-be8f-2206708a7e69" >
+<father id="226" num="3" />
+<cdparam x="413" y="386" />
+<sizeparam width="50" height="25" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2499" minY="10" maxY="1499" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="217" />
+<TGConnectingPoint num="1" id="218" />
+<TGConnectingPoint num="2" id="219" />
+<TGConnectingPoint num="3" id="220" />
+<extraparam>
+<guard value="[ ]" enabled="true"/>
+<afterMin value="" enabled="true"/>
+<afterMax value="" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+</extraparam>
+</SUBCOMPONENT>
+
+<CONNECTOR type="5102" id="233" index="3" uid="fbada9ae-ff5e-4412-920c-379b7fa44bea" >
+<cdparam x="422" y="373" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="232" />
+<P1  x="410" y="373" id="326" />
+<P2  x="410" y="398" id="287" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="231" index="28" uid="7a339b9b-cfe9-41af-9206-3daa79b45745" >
+<father id="233" num="0" />
+<cdparam x="425" y="384" />
+<sizeparam width="50" height="25" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2499" minY="10" maxY="1499" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="227" />
+<TGConnectingPoint num="1" id="228" />
+<TGConnectingPoint num="2" id="229" />
+<TGConnectingPoint num="3" id="230" />
+<extraparam>
+<guard value="[ ]" enabled="true"/>
+<afterMin value="" enabled="true"/>
+<afterMax value="" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+</extraparam>
+</SUBCOMPONENT>
+
+<CONNECTOR type="5102" id="240" index="4" uid="90c7cded-4725-4883-8841-04e2104531d6" >
+<cdparam x="397" y="278" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="239" />
+<P1  x="409" y="301" id="372" />
+<P2  x="410" y="323" id="314" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="238" index="29" uid="2b987670-9d6b-4c27-96f4-d6b309ccfb2e" >
+<father id="240" num="0" />
+<cdparam x="396" y="295" />
+<sizeparam width="50" height="25" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2499" minY="10" maxY="1499" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="234" />
+<TGConnectingPoint num="1" id="235" />
+<TGConnectingPoint num="2" id="236" />
+<TGConnectingPoint num="3" id="237" />
+<extraparam>
+<guard value="[ ]" enabled="true"/>
+<afterMin value="" enabled="true"/>
+<afterMax value="" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+</extraparam>
+</SUBCOMPONENT>
+
+<CONNECTOR type="5102" id="247" index="5" uid="6fa3f361-9845-4556-8ba4-a3a14d3111d5" >
+<cdparam x="358" y="209" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="246" />
+<P1  x="391" y="248" id="413" />
+<P2  x="409" y="271" id="371" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="245" index="30" uid="3df7dee5-1456-4a30-9e72-50704be7af2b" >
+<father id="247" num="0" />
+<cdparam x="377" y="228" />
+<sizeparam width="50" height="25" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2499" minY="10" maxY="1499" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="241" />
+<TGConnectingPoint num="1" id="242" />
+<TGConnectingPoint num="2" id="243" />
+<TGConnectingPoint num="3" id="244" />
+<extraparam>
+<guard value="[ ]" enabled="true"/>
+<afterMin value="" enabled="true"/>
+<afterMax value="" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+</extraparam>
+</SUBCOMPONENT>
+
+<CONNECTOR type="5102" id="254" index="6" uid="08f30cae-8315-4af1-ba7e-c7b1d755e30f" >
+<cdparam x="295" y="209" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="253" />
+<P1  x="316" y="248" id="410" />
+<P2  x="298" y="271" id="468" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="252" index="31" uid="50d6509f-dd5f-4b32-9fa5-cf9bf9197a97" >
+<father id="254" num="0" />
+<cdparam x="216" y="227" />
+<sizeparam width="50" height="25" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2499" minY="10" maxY="1499" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="248" />
+<TGConnectingPoint num="1" id="249" />
+<TGConnectingPoint num="2" id="250" />
+<TGConnectingPoint num="3" id="251" />
+<extraparam>
+<guard value="[ ]" enabled="true"/>
+<afterMin value="" enabled="true"/>
+<afterMax value="" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+</extraparam>
+</SUBCOMPONENT>
+
+<CONNECTOR type="5102" id="261" index="7" uid="5c51932f-46f4-459a-9797-88581a319459" >
+<cdparam x="292" y="226" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="260" />
+<P1  x="298" y="299" id="469" />
+<P2  x="298" y="345" id="455" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="259" index="32" uid="ea67405d-8c98-415c-9bf0-24fdf4cb37c4" >
+<father id="261" num="0" />
+<cdparam x="292" y="242" />
+<sizeparam width="50" height="25" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2499" minY="10" maxY="1499" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="255" />
+<TGConnectingPoint num="1" id="256" />
+<TGConnectingPoint num="2" id="257" />
+<TGConnectingPoint num="3" id="258" />
+<extraparam>
+<guard value="[ ]" enabled="true"/>
+<afterMin value="" enabled="true"/>
+<afterMax value="" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+</extraparam>
+</SUBCOMPONENT>
+
+<CONNECTOR type="5102" id="268" index="8" uid="9fbaf0a3-016c-40cc-952d-2d93b5149e83" >
+<cdparam x="292" y="163" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="1280" maxHeight="1280" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="267" />
+<P1  x="353" y="178" id="479" />
+<P2  x="354" y="198" id="383" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="266" index="33" uid="ad8b960b-ba33-44a2-9bb8-9ea351468048" >
+<father id="268" num="0" />
+<cdparam x="288" y="112" />
+<sizeparam width="50" height="25" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="16" maxX="2497" minY="16" maxY="1499" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="262" />
+<TGConnectingPoint num="1" id="263" />
+<TGConnectingPoint num="2" id="264" />
+<TGConnectingPoint num="3" id="265" />
+<extraparam>
+<guard value="[ ]" enabled="true"/>
+<afterMin value="" enabled="true"/>
+<afterMax value="" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+</extraparam>
+</SUBCOMPONENT>
+
+<CONNECTOR type="5102" id="275" index="9" uid="fd4f056d-39b0-4db4-b956-fe6fd3013328" >
+<cdparam x="298" y="285" />
+<sizeparam width="0" height="0" minWidth="0" minHeight="0" maxWidth="1280" maxHeight="1280" minDesiredWidth="0" minDesiredHeight="0" />
+<infoparam name="connector" value="null" />
+<TGConnectingPoint num="0" id="274" />
+<P1  x="298" y="373" id="456" />
+<P2  x="298" y="423" id="466" />
+<AutomaticDrawing  data="true" />
+<new d="false" />
+</CONNECTOR><SUBCOMPONENT type="-1" id="273" index="34" uid="80004114-d230-4100-8abd-0089257c3b74" >
+<father id="275" num="0" />
+<cdparam x="297" y="305" />
+<sizeparam width="50" height="25" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="16" maxX="2497" minY="16" maxY="1499" />
+<infoparam name="List of all parameters of an Avatar SMD transition" value="" />
+<new d="false" />
+<TGConnectingPoint num="0" id="269" />
+<TGConnectingPoint num="1" id="270" />
+<TGConnectingPoint num="2" id="271" />
+<TGConnectingPoint num="3" id="272" />
+<extraparam>
+<guard value="[ ]" enabled="true"/>
+<afterMin value="" enabled="true"/>
+<afterMax value="" enabled="true"/>
+<extraDelay1 value="" enabled="true"/>
+<extraDelay2 value="" enabled="true"/>
+<delayDistributionLaw value="0" enabled="true"/>
+<computeMin value="" enabled="true"/>
+<computeMax value="" enabled="true"/>
+<probability value="" enabled="true"/>
+</extraparam>
+</SUBCOMPONENT>
+
+<COMPONENT type="5111" id="286" index="10" uid="62c92403-5ee8-445e-bf96-3e600f59a4b9" >
+<cdparam x="451" y="402" />
+<sizeparam width="66" height="20" minWidth="30" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="Reset timer" value="expire(t)" />
+<new d="false" />
+<TGConnectingPoint num="0" id="276" />
+<TGConnectingPoint num="1" id="277" />
+<TGConnectingPoint num="2" id="278" />
+<TGConnectingPoint num="3" id="279" />
+<TGConnectingPoint num="4" id="280" />
+<TGConnectingPoint num="5" id="281" />
+<TGConnectingPoint num="6" id="282" />
+<TGConnectingPoint num="7" id="283" />
+<TGConnectingPoint num="8" id="284" />
+<TGConnectingPoint num="9" id="285" />
+</COMPONENT>
+
+<COMPONENT type="5110" id="297" index="11" uid="491c316f-9dd9-4849-979f-c56b1fd77a3c" >
+<cdparam x="385" y="403" />
+<sizeparam width="51" height="20" minWidth="40" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="Reset timer" value="reset(t)" />
+<new d="false" />
+<TGConnectingPoint num="0" id="287" />
+<TGConnectingPoint num="1" id="288" />
+<TGConnectingPoint num="2" id="289" />
+<TGConnectingPoint num="3" id="290" />
+<TGConnectingPoint num="4" id="291" />
+<TGConnectingPoint num="5" id="292" />
+<TGConnectingPoint num="6" id="293" />
+<TGConnectingPoint num="7" id="294" />
+<TGConnectingPoint num="8" id="295" />
+<TGConnectingPoint num="9" id="296" />
+</COMPONENT>
+
+<COMPONENT type="5106" id="370" index="12" uid="153cbc7a-51c9-4403-b1fa-af4ed8ae661e" >
+<cdparam x="398" y="323" />
+<sizeparam width="100" height="50" minWidth="54" minHeight="40" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="state" value="state2" />
+<new d="false" />
+<TGConnectingPoint num="0" id="298" />
+<TGConnectingPoint num="1" id="299" />
+<TGConnectingPoint num="2" id="300" />
+<TGConnectingPoint num="3" id="301" />
+<TGConnectingPoint num="4" id="302" />
+<TGConnectingPoint num="5" id="303" />
+<TGConnectingPoint num="6" id="304" />
+<TGConnectingPoint num="7" id="305" />
+<TGConnectingPoint num="8" id="306" />
+<TGConnectingPoint num="9" id="307" />
+<TGConnectingPoint num="10" id="308" />
+<TGConnectingPoint num="11" id="309" />
+<TGConnectingPoint num="12" id="310" />
+<TGConnectingPoint num="13" id="311" />
+<TGConnectingPoint num="14" id="312" />
+<TGConnectingPoint num="15" id="313" />
+<TGConnectingPoint num="16" id="314" />
+<TGConnectingPoint num="17" id="315" />
+<TGConnectingPoint num="18" id="316" />
+<TGConnectingPoint num="19" id="317" />
+<TGConnectingPoint num="20" id="318" />
+<TGConnectingPoint num="21" id="319" />
+<TGConnectingPoint num="22" id="320" />
+<TGConnectingPoint num="23" id="321" />
+<TGConnectingPoint num="24" id="322" />
+<TGConnectingPoint num="25" id="323" />
+<TGConnectingPoint num="26" id="324" />
+<TGConnectingPoint num="27" id="325" />
+<TGConnectingPoint num="28" id="326" />
+<TGConnectingPoint num="29" id="327" />
+<TGConnectingPoint num="30" id="328" />
+<TGConnectingPoint num="31" id="329" />
+<TGConnectingPoint num="32" id="330" />
+<TGConnectingPoint num="33" id="331" />
+<TGConnectingPoint num="34" id="332" />
+<TGConnectingPoint num="35" id="333" />
+<TGConnectingPoint num="36" id="334" />
+<TGConnectingPoint num="37" id="335" />
+<TGConnectingPoint num="38" id="336" />
+<TGConnectingPoint num="39" id="337" />
+<TGConnectingPoint num="40" id="338" />
+<TGConnectingPoint num="41" id="339" />
+<TGConnectingPoint num="42" id="340" />
+<TGConnectingPoint num="43" id="341" />
+<TGConnectingPoint num="44" id="342" />
+<TGConnectingPoint num="45" id="343" />
+<TGConnectingPoint num="46" id="344" />
+<TGConnectingPoint num="47" id="345" />
+<TGConnectingPoint num="48" id="346" />
+<TGConnectingPoint num="49" id="347" />
+<TGConnectingPoint num="50" id="348" />
+<TGConnectingPoint num="51" id="349" />
+<TGConnectingPoint num="52" id="350" />
+<TGConnectingPoint num="53" id="351" />
+<TGConnectingPoint num="54" id="352" />
+<TGConnectingPoint num="55" id="353" />
+<TGConnectingPoint num="56" id="354" />
+<TGConnectingPoint num="57" id="355" />
+<TGConnectingPoint num="58" id="356" />
+<TGConnectingPoint num="59" id="357" />
+<TGConnectingPoint num="60" id="358" />
+<TGConnectingPoint num="61" id="359" />
+<TGConnectingPoint num="62" id="360" />
+<TGConnectingPoint num="63" id="361" />
+<TGConnectingPoint num="64" id="362" />
+<TGConnectingPoint num="65" id="363" />
+<TGConnectingPoint num="66" id="364" />
+<TGConnectingPoint num="67" id="365" />
+<TGConnectingPoint num="68" id="366" />
+<TGConnectingPoint num="69" id="367" />
+<TGConnectingPoint num="70" id="368" />
+<TGConnectingPoint num="71" id="369" />
+<extraparam>
+</extraparam>
+</COMPONENT>
+
+<COMPONENT type="5109" id="381" index="13" uid="83cdd050-a535-466f-a3bc-8910fe1b1c16" >
+<cdparam x="364" y="276" />
+<sizeparam width="91" height="20" minWidth="40" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="Set timer" value="setTimer(t,10)" />
+<new d="false" />
+<TGConnectingPoint num="0" id="371" />
+<TGConnectingPoint num="1" id="372" />
+<TGConnectingPoint num="2" id="373" />
+<TGConnectingPoint num="3" id="374" />
+<TGConnectingPoint num="4" id="375" />
+<TGConnectingPoint num="5" id="376" />
+<TGConnectingPoint num="6" id="377" />
+<TGConnectingPoint num="7" id="378" />
+<TGConnectingPoint num="8" id="379" />
+<TGConnectingPoint num="9" id="380" />
+</COMPONENT>
+
+<COMPONENT type="5106" id="454" index="14" uid="2d76bc2d-5cb6-43ee-8143-f800f7bc2c0f" >
+<cdparam x="304" y="198" />
+<sizeparam width="100" height="50" minWidth="54" minHeight="40" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="state" value="state1" />
+<new d="false" />
+<TGConnectingPoint num="0" id="382" />
+<TGConnectingPoint num="1" id="383" />
+<TGConnectingPoint num="2" id="384" />
+<TGConnectingPoint num="3" id="385" />
+<TGConnectingPoint num="4" id="386" />
+<TGConnectingPoint num="5" id="387" />
+<TGConnectingPoint num="6" id="388" />
+<TGConnectingPoint num="7" id="389" />
+<TGConnectingPoint num="8" id="390" />
+<TGConnectingPoint num="9" id="391" />
+<TGConnectingPoint num="10" id="392" />
+<TGConnectingPoint num="11" id="393" />
+<TGConnectingPoint num="12" id="394" />
+<TGConnectingPoint num="13" id="395" />
+<TGConnectingPoint num="14" id="396" />
+<TGConnectingPoint num="15" id="397" />
+<TGConnectingPoint num="16" id="398" />
+<TGConnectingPoint num="17" id="399" />
+<TGConnectingPoint num="18" id="400" />
+<TGConnectingPoint num="19" id="401" />
+<TGConnectingPoint num="20" id="402" />
+<TGConnectingPoint num="21" id="403" />
+<TGConnectingPoint num="22" id="404" />
+<TGConnectingPoint num="23" id="405" />
+<TGConnectingPoint num="24" id="406" />
+<TGConnectingPoint num="25" id="407" />
+<TGConnectingPoint num="26" id="408" />
+<TGConnectingPoint num="27" id="409" />
+<TGConnectingPoint num="28" id="410" />
+<TGConnectingPoint num="29" id="411" />
+<TGConnectingPoint num="30" id="412" />
+<TGConnectingPoint num="31" id="413" />
+<TGConnectingPoint num="32" id="414" />
+<TGConnectingPoint num="33" id="415" />
+<TGConnectingPoint num="34" id="416" />
+<TGConnectingPoint num="35" id="417" />
+<TGConnectingPoint num="36" id="418" />
+<TGConnectingPoint num="37" id="419" />
+<TGConnectingPoint num="38" id="420" />
+<TGConnectingPoint num="39" id="421" />
+<TGConnectingPoint num="40" id="422" />
+<TGConnectingPoint num="41" id="423" />
+<TGConnectingPoint num="42" id="424" />
+<TGConnectingPoint num="43" id="425" />
+<TGConnectingPoint num="44" id="426" />
+<TGConnectingPoint num="45" id="427" />
+<TGConnectingPoint num="46" id="428" />
+<TGConnectingPoint num="47" id="429" />
+<TGConnectingPoint num="48" id="430" />
+<TGConnectingPoint num="49" id="431" />
+<TGConnectingPoint num="50" id="432" />
+<TGConnectingPoint num="51" id="433" />
+<TGConnectingPoint num="52" id="434" />
+<TGConnectingPoint num="53" id="435" />
+<TGConnectingPoint num="54" id="436" />
+<TGConnectingPoint num="55" id="437" />
+<TGConnectingPoint num="56" id="438" />
+<TGConnectingPoint num="57" id="439" />
+<TGConnectingPoint num="58" id="440" />
+<TGConnectingPoint num="59" id="441" />
+<TGConnectingPoint num="60" id="442" />
+<TGConnectingPoint num="61" id="443" />
+<TGConnectingPoint num="62" id="444" />
+<TGConnectingPoint num="63" id="445" />
+<TGConnectingPoint num="64" id="446" />
+<TGConnectingPoint num="65" id="447" />
+<TGConnectingPoint num="66" id="448" />
+<TGConnectingPoint num="67" id="449" />
+<TGConnectingPoint num="68" id="450" />
+<TGConnectingPoint num="69" id="451" />
+<TGConnectingPoint num="70" id="452" />
+<TGConnectingPoint num="71" id="453" />
+<extraparam>
+</extraparam>
+</COMPONENT>
+
+<COMPONENT type="5103" id="465" index="15" uid="2defadde-3ad2-4986-8807-b8bca2d42df1" >
+<cdparam x="260" y="350" />
+<sizeparam width="76" height="18" minWidth="29" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="Send signal" value="out1(x, p, b)" />
+<new d="false" />
+<TGConnectingPoint num="0" id="455" />
+<TGConnectingPoint num="1" id="456" />
+<TGConnectingPoint num="2" id="457" />
+<TGConnectingPoint num="3" id="458" />
+<TGConnectingPoint num="4" id="459" />
+<TGConnectingPoint num="5" id="460" />
+<TGConnectingPoint num="6" id="461" />
+<TGConnectingPoint num="7" id="462" />
+<TGConnectingPoint num="8" id="463" />
+<TGConnectingPoint num="9" id="464" />
+</COMPONENT>
+
+<COMPONENT type="5101" id="467" index="16" uid="3320dfa8-dc96-4387-a94f-25c3a07759ae" >
+<cdparam x="289" y="428" />
+<sizeparam width="18" height="18" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="stop state" value="null" />
+<new d="false" />
+<TGConnectingPoint num="0" id="466" />
+</COMPONENT>
+
+<COMPONENT type="5104" id="478" index="17" uid="6223a7dd-5783-455b-b937-fbe533f02445" >
+<cdparam x="261" y="276" />
+<sizeparam width="74" height="18" minWidth="39" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<enabled value="true" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="Receive signal" value="in1(x, p, b)" />
+<new d="false" />
+<TGConnectingPoint num="0" id="468" />
+<TGConnectingPoint num="1" id="469" />
+<TGConnectingPoint num="2" id="470" />
+<TGConnectingPoint num="3" id="471" />
+<TGConnectingPoint num="4" id="472" />
+<TGConnectingPoint num="5" id="473" />
+<TGConnectingPoint num="6" id="474" />
+<TGConnectingPoint num="7" id="475" />
+<TGConnectingPoint num="8" id="476" />
+<TGConnectingPoint num="9" id="477" />
+</COMPONENT>
+
+<COMPONENT type="5100" id="480" index="18" uid="29fdf48a-fe0e-45e1-b3e2-a04dbeaf94de" >
+<cdparam x="347" y="160" />
+<sizeparam width="13" height="13" minWidth="1" minHeight="1" maxWidth="2000" maxHeight="2000" minDesiredWidth="0" minDesiredHeight="0" />
+<hidden value="false" />
+<cdrectangleparam minX="10" maxX="2500" minY="10" maxY="1500" />
+<infoparam name="start state" value="null" />
+<new d="false" />
+<TGConnectingPoint num="0" id="479" />
+</COMPONENT>
+
+
+</AVATARStateMachineDiagramPanel>
+
+</Modeling>
+
+
+
+
+</TURTLEGMODELING>
\ No newline at end of file
diff --git a/doc/avatarSysMLV2/figures/Tuto_BD.pdf b/doc/avatarSysMLV2/figures/Tuto_BD.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..8d1836b1ea9d08e8b7e22e2d1712cf9791fd2d66
Binary files /dev/null and b/doc/avatarSysMLV2/figures/Tuto_BD.pdf differ
diff --git a/doc/avatarSysMLV2/figures/Tuto_after_transfo.pdf b/doc/avatarSysMLV2/figures/Tuto_after_transfo.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..91de7fe256ede26fdf4177826c6ff77a96dc118e
Binary files /dev/null and b/doc/avatarSysMLV2/figures/Tuto_after_transfo.pdf differ
diff --git a/doc/avatarSysMLV2/figures/Tuto_before_transfo.pdf b/doc/avatarSysMLV2/figures/Tuto_before_transfo.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..113daf5b65e8ed6ba32bbc8f0a0dce64c5414b8b
Binary files /dev/null and b/doc/avatarSysMLV2/figures/Tuto_before_transfo.pdf differ
diff --git a/doc/avatarSysMLV2/figures/Tuto_countstate_box.pdf b/doc/avatarSysMLV2/figures/Tuto_countstate_box.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..38bd36c76e4b54c06a68e63298afbf582d0464d4
Binary files /dev/null and b/doc/avatarSysMLV2/figures/Tuto_countstate_box.pdf differ
diff --git a/doc/avatarSysMLV2/figures/Tuto_randomstate_box.pdf b/doc/avatarSysMLV2/figures/Tuto_randomstate_box.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..b5f12233c448b4ae8e836b11c4213267f85d30fc
Binary files /dev/null and b/doc/avatarSysMLV2/figures/Tuto_randomstate_box.pdf differ
diff --git a/doc/avatarSysMLV2/figures/Tuto_receivestate_box.pdf b/doc/avatarSysMLV2/figures/Tuto_receivestate_box.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..f1a639b4cae237db9b6634142e8a946f6606c0a2
Binary files /dev/null and b/doc/avatarSysMLV2/figures/Tuto_receivestate_box.pdf differ
diff --git a/doc/avatarSysMLV2/figures/Tuto_requests.fig b/doc/avatarSysMLV2/figures/Tuto_requests.fig
new file mode 100644
index 0000000000000000000000000000000000000000..df4316d9bff356d459763b0df3e2cfc095851fa4
--- /dev/null
+++ b/doc/avatarSysMLV2/figures/Tuto_requests.fig
@@ -0,0 +1,83 @@
+#FIG 3.2  Produced by xfig version 3.2.8a
+Landscape
+Center
+Metric
+A4
+100.00
+Single
+-2
+1200 2
+0 32 #c4c4c4
+6 5760 1890 7470 2160
+2 2 0 1 0 17 55 -1 30 0.000 0 0 7 0 0 5
+	 6840 1935 7425 1935 7425 2160 6840 2160 6840 1935
+4 0 0 50 -1 16 12 0.0000 4 195 930 5805 2115 OKrequest\001
+4 0 0 50 -1 16 12 0.0000 4 195 465 6885 2115 delay\001
+-6
+6 4275 1170 5715 1395
+6 5130 1170 5715 1395
+2 2 0 1 0 17 55 -1 30 0.000 0 0 7 0 0 5
+	 5130 1170 5715 1170 5715 1395 5130 1395 5130 1170
+4 0 0 50 -1 16 12 0.0000 4 150 465 5175 1350 index\001
+-6
+4 0 0 50 -1 16 12 0.0000 4 195 720 4275 1350 Request\001
+-6
+6 3195 2745 6255 2970
+6 5445 2745 6255 2970
+2 2 0 1 0 17 55 -1 30 0.000 0 0 7 0 0 5
+	 5445 2745 6255 2745 6255 2970 5445 2970 5445 2745
+4 0 0 50 -1 16 12 0.0000 4 150 675 5490 2925 channel\001
+-6
+4 0 0 50 -1 16 12 0.0000 4 195 2070 3195 2925 CommunicationRequest\001
+-6
+6 2340 3465 4500 3735
+6 3690 3465 4500 3690
+2 2 0 1 0 17 55 -1 30 0.000 0 0 7 0 0 5
+	 3690 3465 4500 3465 4500 3690 3690 3690 3690 3465
+4 0 0 50 -1 16 12 0.0000 4 195 675 3735 3645 payload\001
+-6
+4 0 0 50 -1 16 12 0.0000 4 195 1170 2340 3645 SendRequest\001
+-6
+6 4995 3420 6525 3690
+4 0 0 50 -1 16 12 0.0000 4 195 1425 5040 3645 ReceiveRequest\001
+-6
+6 2340 4050 5760 4275
+6 3645 4050 5760 4275
+2 2 0 1 0 17 55 -1 30 0.000 0 0 7 0 0 5
+	 3645 4050 5760 4050 5760 4275 3645 4275 3645 4050
+4 0 0 50 -1 16 12 0.0000 4 195 1890 3690 4230 requestor; request list\001
+-6
+4 0 0 50 -1 16 12 0.0000 4 195 1140 2340 4230 Request pool\001
+-6
+6 6165 4005 8595 4275
+6 7155 4005 8595 4275
+2 2 0 1 0 17 55 -1 30 0.000 0 0 7 0 0 5
+	 7200 4050 8595 4050 8595 4275 7200 4275 7200 4050
+4 0 0 50 -1 16 12 0.0000 4 195 1260 7245 4230 index; payload\001
+-6
+4 0 0 50 -1 16 12 0.0000 4 195 870 6165 4230 Response\001
+-6
+2 1 0 2 15 7 55 -1 20 0.000 0 0 -1 1 0 2
+	2 1 2.00 60.00 120.00
+	 4815 2700 6165 2160
+2 1 0 2 15 7 55 -1 20 0.000 0 0 7 1 0 2
+	2 1 2.00 60.00 120.00
+	 7830 2700 6390 2160
+2 1 0 2 15 7 55 -1 20 0.000 0 0 7 1 0 2
+	2 1 2.00 60.00 120.00
+	 5985 1935 4815 1440
+2 1 0 2 15 7 55 -1 20 0.000 0 0 7 1 0 2
+	2 1 2.00 60.00 120.00
+	 3870 1935 4635 1440
+2 1 0 2 15 7 55 -1 20 0.000 0 0 7 1 0 2
+	2 1 2.00 60.00 120.00
+	 3330 3465 4320 2970
+2 1 0 2 15 7 55 -1 20 0.000 0 0 7 1 0 2
+	2 1 2.00 60.00 120.00
+	 5535 3465 4455 2970
+2 1 1 2 32 7 55 -1 20 6.000 0 0 -1 0 0 2
+	 2385 3960 8595 3960
+4 0 0 50 -1 16 12 0.0000 4 195 1065 2880 2115 NOKrequest\001
+4 0 0 55 -1 17 10 0.0000 4 150 750 5580 1710 true guard\001
+4 0 0 50 -1 16 12 0.0000 4 195 1245 7245 2925 TrivialRequest\001
+4 0 0 55 -1 17 10 0.0000 4 150 810 3420 1665 false guard\001
diff --git a/doc/avatarSysMLV2/figures/Tuto_requests.pdf b/doc/avatarSysMLV2/figures/Tuto_requests.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..873704b0bee5be879d54849781e823f7462199e7
Binary files /dev/null and b/doc/avatarSysMLV2/figures/Tuto_requests.pdf differ
diff --git a/doc/avatarSysMLV2/figures/Tuto_sendstate_box.pdf b/doc/avatarSysMLV2/figures/Tuto_sendstate_box.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..804425ad81d310bc27986bea33c07b3b1b2ce6cf
Binary files /dev/null and b/doc/avatarSysMLV2/figures/Tuto_sendstate_box.pdf differ
diff --git a/doc/avatarSysMLV2/figures/Tuto_startstate_box.pdf b/doc/avatarSysMLV2/figures/Tuto_startstate_box.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..181cc76cbf1c3e123500b972b796060d231025e2
Binary files /dev/null and b/doc/avatarSysMLV2/figures/Tuto_startstate_box.pdf differ
diff --git a/doc/avatarSysMLV2/figures/Tuto_state_box.pdf b/doc/avatarSysMLV2/figures/Tuto_state_box.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..9c808234ba4e229b2c0dfe7f3335af945e5df0cb
Binary files /dev/null and b/doc/avatarSysMLV2/figures/Tuto_state_box.pdf differ
diff --git a/doc/avatarSysMLV2/figures/Tuto_statemachine1.pdf b/doc/avatarSysMLV2/figures/Tuto_statemachine1.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..b7e2812f344c01b58abedb6160fa72d6dbb6cb4d
Binary files /dev/null and b/doc/avatarSysMLV2/figures/Tuto_statemachine1.pdf differ
diff --git a/doc/avatarSysMLV2/figures/Tuto_statemachine1a.fig b/doc/avatarSysMLV2/figures/Tuto_statemachine1a.fig
new file mode 100644
index 0000000000000000000000000000000000000000..7c90f0405be02b196edfed4c5bedbbccd0926435
--- /dev/null
+++ b/doc/avatarSysMLV2/figures/Tuto_statemachine1a.fig
@@ -0,0 +1,30 @@
+#FIG 3.2  Produced by xfig version 3.2.8a
+Landscape
+Center
+Metric
+A4
+100.00
+Single
+-2
+1200 2
+6 3589 2824 4005 3240
+1 3 0 3 17 7 45 -1 -1 0.000 1 0.0000 3797 3032 186 186 3797 3032 3977 2987
+4 0 17 45 -1 0 20 0.0000 4 225 165 3707 3122 1\001
+-6
+6 1969 6154 2385 6570
+1 3 0 3 17 7 45 -1 -1 0.000 1 0.0000 2177 6362 186 186 2177 6362 2357 6317
+4 0 17 45 -1 0 20 0.0000 4 225 165 2087 6452 2\001
+-6
+6 1727 9664 2143 10080
+1 3 0 3 17 7 45 -1 -1 0.000 1 0.0000 1935 9872 186 186 1935 9872 2115 9827
+4 0 17 45 -1 0 20 0.0000 4 225 165 1845 9962 3\001
+-6
+2 5 0 1 0 -1 50 -1 -1 0.000 0 0 -1 0 0 5
+	0 Tuto_statemachine1.pdf
+	 2025 2745 9677 2745 9677 10810 2025 10810 2025 2745
+2 4 1 3 17 7 45 -1 -1 4.000 0 0 7 0 0 5
+	 8325 6480 3420 6480 3420 2655 8325 2655 8325 6480
+2 4 1 3 17 7 45 -1 -1 4.000 0 0 7 0 0 5
+	 9945 9000 1845 9000 1845 6030 9945 6030 9945 9000
+2 4 1 3 17 7 45 -1 -1 4.000 0 0 7 0 0 5
+	 10215 10980 10215 8685 1620 8685 1620 10980 10215 10980
diff --git a/doc/avatarSysMLV2/figures/Tuto_statemachine1a.pdf b/doc/avatarSysMLV2/figures/Tuto_statemachine1a.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..c6f76d4e1e252c81cff7e5f7eaaac09f5d6fdaf4
Binary files /dev/null and b/doc/avatarSysMLV2/figures/Tuto_statemachine1a.pdf differ
diff --git a/doc/avatarSysMLV2/figures/Tuto_statemachine2.pdf b/doc/avatarSysMLV2/figures/Tuto_statemachine2.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..1eb93b538fb0c4ed9cdb04a37e0d2fa43619cdc1
Binary files /dev/null and b/doc/avatarSysMLV2/figures/Tuto_statemachine2.pdf differ
diff --git a/doc/avatarSysMLV2/figures/Tuto_statemachine2a.fig b/doc/avatarSysMLV2/figures/Tuto_statemachine2a.fig
new file mode 100644
index 0000000000000000000000000000000000000000..240d773795a5a2a91cf177d9701d45be82c66b4a
--- /dev/null
+++ b/doc/avatarSysMLV2/figures/Tuto_statemachine2a.fig
@@ -0,0 +1,24 @@
+#FIG 3.2  Produced by xfig version 3.2.8a
+Landscape
+Center
+Metric
+A4
+100.00
+Single
+-2
+1200 2
+6 2149 4579 2565 4995
+1 3 0 3 17 7 45 -1 -1 0.000 1 0.0000 2357 4787 186 186 2357 4787 2537 4742
+4 0 17 45 -1 0 20 0.0000 4 225 165 2267 4877 1\001
+-6
+6 2329 7965 2745 8381
+1 3 0 3 17 7 45 -1 -1 0.000 1 0.0000 2537 8173 186 186 2537 8173 2717 8128
+4 0 17 45 -1 0 20 0.0000 4 225 165 2447 8263 2\001
+-6
+2 5 0 1 17 -1 50 -1 -1 0.000 0 0 -1 0 0 5
+	0 Tuto_statemachine2.pdf
+	 2250 4500 6711 4500 6711 10755 2250 10755 2250 4500
+2 4 1 3 17 7 45 -1 -1 4.000 0 0 7 0 0 5
+	 6930 10800 2250 10800 2250 7875 6930 7875 6930 10800
+2 4 1 3 17 7 45 -1 -1 4.000 0 0 7 0 0 5
+	 7110 8460 2025 8460 2025 4455 7110 4455 7110 8460
diff --git a/doc/avatarSysMLV2/figures/Tuto_statemachine2a.pdf b/doc/avatarSysMLV2/figures/Tuto_statemachine2a.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..298d0b3601b0da624a1396f2c944b3ded2e04869
Binary files /dev/null and b/doc/avatarSysMLV2/figures/Tuto_statemachine2a.pdf differ
diff --git a/doc/avatarSysMLV2/figures/Tuto_stopstate_box.pdf b/doc/avatarSysMLV2/figures/Tuto_stopstate_box.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..e3375e9b60d69444cf87ef5bd1ae596b876b6e40
Binary files /dev/null and b/doc/avatarSysMLV2/figures/Tuto_stopstate_box.pdf differ
diff --git a/doc/avatarSysMLV2/figures/Tuto_texpirestate_box.pdf b/doc/avatarSysMLV2/figures/Tuto_texpirestate_box.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..6f8109dcd8e9929f0a33b736a26edf6e9132fc39
Binary files /dev/null and b/doc/avatarSysMLV2/figures/Tuto_texpirestate_box.pdf differ
diff --git a/doc/avatarSysMLV2/figures/Tuto_tresetstate_box.pdf b/doc/avatarSysMLV2/figures/Tuto_tresetstate_box.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..067b925ff5fb5f5ab813232bab494885c61c7dbe
Binary files /dev/null and b/doc/avatarSysMLV2/figures/Tuto_tresetstate_box.pdf differ
diff --git a/doc/avatarSysMLV2/figures/Tuto_tsetstate_box.pdf b/doc/avatarSysMLV2/figures/Tuto_tsetstate_box.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..1471ec4a09f76a1faa52c43a2eeabe9596a883b3
Binary files /dev/null and b/doc/avatarSysMLV2/figures/Tuto_tsetstate_box.pdf differ
diff --git a/doc/avatarSysMLV2/figures/avatarClick.pdf b/doc/avatarSysMLV2/figures/avatarClick.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..13069b2b1da4a773ad82e4f1dbfa11d9b8172a16
Binary files /dev/null and b/doc/avatarSysMLV2/figures/avatarClick.pdf differ
diff --git a/doc/avatarSysMLV2/figures/avatarPopup.pdf b/doc/avatarSysMLV2/figures/avatarPopup.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..79d1989f92a0b34d65d8df7bbe05c6ef72603a5b
Binary files /dev/null and b/doc/avatarSysMLV2/figures/avatarPopup.pdf differ
diff --git a/doc/avatarSysMLV2/figures/tp.pdf b/doc/avatarSysMLV2/figures/tp.pdf
new file mode 100755
index 0000000000000000000000000000000000000000..a597c381ab3f4e1c29eb1f0084709a58101ac70f
Binary files /dev/null and b/doc/avatarSysMLV2/figures/tp.pdf differ
diff --git a/src/main/java/avatartranslator/tosysmlv2/Avatar2SysML.java b/src/main/java/avatartranslator/tosysmlv2/Avatar2SysML.java
index 3a8c91f953d5a545e085f67c9051f5ecd4753d19..a2bf18ae6395d897b943466824cec9802fc5d31b 100644
--- a/src/main/java/avatartranslator/tosysmlv2/Avatar2SysML.java
+++ b/src/main/java/avatartranslator/tosysmlv2/Avatar2SysML.java
@@ -438,10 +438,10 @@ public class Avatar2SysML {
                 if (out2in) {
                     msg1Buf.append(indentation + "part def " + message1SYSMLname + " :> '#OutMessage', " + message2SYSMLname + " {\n");
                     msg2Buf.append(indentation + "part def " + message2SYSMLname + " :> '#InMessage' {\n" +
-                            indentation + indentStep + "private part '@channel' : '#Channel' = " + channelSYSMLname + ";\n");
+                            indentation + indentStep + "part '@channel' redefines '@channel' = " + channelSYSMLname + ";\n");
                 } else {
                     msg1Buf.append(indentation + "part def " + message1SYSMLname + " :> '#InMessage' {\n" +
-                            indentation + indentStep + "private part '@channel' : '#Channel' = " + channelSYSMLname + ";\n");
+                            indentation + indentStep + "part '@channel' redefines '@channel' = " + channelSYSMLname + ";\n");
                     msg2Buf.append(indentation + "part def " + message2SYSMLname + " :> '#OutMessage', " + message1SYSMLname +  " {\n");
                 }
                 indent(1);
@@ -1321,7 +1321,7 @@ public class Avatar2SysML {
             result.append(indentation + "'@index' =  " + index + ",\n");
 
         // signal (equivalent to channel in SysML)
-        result.append(indentation + "'@channel'= " + signalInfo.getName() + ",\n");
+        result.append(indentation + "'@channel' = " + signalInfo.getName() + ",\n");
 
         // delay
         if (max.equals("0")) { // no delay or simple delay
@@ -1374,7 +1374,7 @@ public class Avatar2SysML {
             result.append(indentation + "'@index' =  " + index + ",\n");
 
         // setting a timer is sending a message on a dedicated "@set" channel of the timer block
-        result.append(indentation + "'@channel'= " + timer + ".'@set'" + ",\n");
+        result.append(indentation + "'@channel' = " + timer + ".'@set'" + ",\n");
 
         // delay
         if (max.equals("0")) { // no delay or simple delay
@@ -1412,7 +1412,7 @@ public class Avatar2SysML {
             result.append(indentation + "'@index' =  " + index + ",\n");
 
         // resetting a timer is sending a message on a dedicated "@reset" channel of the timer block
-        result.append(indentation + "'@channel'= " + timer + ".'@reset'");
+        result.append(indentation + "'@channel' = " + timer + ".'@reset'");
 
         // delay
         if (max.equals("0")) { // no delay or simple delay
@@ -1449,7 +1449,7 @@ public class Avatar2SysML {
             result.append(indentation + "'@index' =  " + index + ",\n");
 
         // signal (equivalent to channel in SysML)
-        result.append(indentation + "'@channel'= " + signalName);
+        result.append(indentation + "'@channel' = " + signalName);
 
         // delay
         if (max.equals("0")) // no delay or simple delay
@@ -1477,7 +1477,7 @@ public class Avatar2SysML {
             result.append(indentation + "'@index' =  " + index + ",\n");
 
         // timer expiration is detected by receiving a message on a dedicated "@expire" channel of the timer block
-        result.append(indentation + "'@channel'= " + chname + ".'@expire'");
+        result.append(indentation + "'@channel' = " + chname + ".'@expire'");
 
         // delay
         if (max.equals("0")) // no delay or simple delay
diff --git a/src/main/java/avatartranslator/tosysmlv2/AvatarFromSysMLLexer.java b/src/main/java/avatartranslator/tosysmlv2/AvatarFromSysMLLexer.java
index 072457c47a714a4239330614d4799602d57d75d4..514604f8097e83f7bcdc020411171b5a38c3eabe 100644
--- a/src/main/java/avatartranslator/tosysmlv2/AvatarFromSysMLLexer.java
+++ b/src/main/java/avatartranslator/tosysmlv2/AvatarFromSysMLLexer.java
@@ -1,4 +1,4 @@
-/* The following code was generated by JFlex 1.4.3 on 04/12/2024 12:21 */
+/* The following code was generated by JFlex 1.4.3 on 05/12/2024 12:56 */
 
 /* Copyright or (C) or Copr. GET / ENST, Telecom-Paris, Ludovic Apvrille
  *
@@ -47,7 +47,7 @@ import avatartranslator.tosysmlv2.AvatarFromSysMLSyntax.*;
 /**
  * This class is a scanner generated by 
  * <a href="http://www.jflex.de/">JFlex</a> 1.4.3
- * on 04/12/2024 12:21 from the specification file
+ * on 05/12/2024 12:56 from the specification file
  * <code>__AvatarFromSysMLLexer__.jflex</code>
  */
 public class AvatarFromSysMLLexer implements java_cup.runtime.Scanner {
diff --git a/src/main/java/avatartranslator/tosysmlv2/AvatarFromSysMLParser.java b/src/main/java/avatartranslator/tosysmlv2/AvatarFromSysMLParser.java
index 4432297e8a56b1208a3f208cd026766b4f57b27e..062d2900b6700b58a8f7fe7174ff464aa0f9a721 100644
--- a/src/main/java/avatartranslator/tosysmlv2/AvatarFromSysMLParser.java
+++ b/src/main/java/avatartranslator/tosysmlv2/AvatarFromSysMLParser.java
@@ -38,7 +38,7 @@ public class AvatarFromSysMLParser extends java_cup.runtime.lr_parser {
   /** Production table. */
   protected static final short _production_table[][] = 
     unpackFromStrings(new String[] {
-    "\000\u0142\000\002\006\007\000\002\002\004\000\002\006" +
+    "\000\u0141\000\002\006\007\000\002\002\004\000\002\006" +
     "\006\000\002\007\003\000\002\007\004\000\002\010\004" +
     "\000\002\010\004\000\002\010\003\000\002\010\003\000" +
     "\002\010\003\000\002\010\003\000\002\010\003\000\002" +
@@ -61,83 +61,82 @@ public class AvatarFromSysMLParser extends java_cup.runtime.lr_parser {
     "\044\014\000\002\045\014\000\002\045\014\000\002\046" +
     "\003\000\002\046\003\000\002\047\004\000\002\055\010" +
     "\000\002\051\004\000\002\051\005\000\002\051\005\000" +
-    "\002\052\012\000\002\052\010\000\002\050\004\000\002" +
-    "\050\005\000\002\050\005\000\002\056\011\000\002\056" +
-    "\011\000\002\053\004\000\002\053\004\000\002\054\007" +
-    "\000\002\057\004\000\002\057\004\000\002\060\007\000" +
-    "\002\061\004\000\002\061\004\000\002\062\003\000\002" +
+    "\002\052\011\000\002\050\004\000\002\050\005\000\002" +
+    "\050\005\000\002\056\011\000\002\056\011\000\002\053" +
+    "\004\000\002\053\004\000\002\054\007\000\002\057\004" +
+    "\000\002\057\004\000\002\060\007\000\002\061\004\000" +
+    "\002\061\004\000\002\062\003\000\002\062\003\000\002" +
     "\062\003\000\002\062\003\000\002\062\003\000\002\062" +
-    "\003\000\002\062\003\000\002\062\003\000\002\063\004" +
-    "\000\002\063\006\000\002\063\007\000\002\065\006\000" +
-    "\002\064\004\000\002\064\006\000\002\102\007\000\002" +
-    "\066\003\000\002\066\003\000\002\067\005\000\002\067" +
-    "\004\000\002\067\006\000\002\100\006\000\002\070\005" +
-    "\000\002\070\006\000\002\101\006\000\002\071\003\000" +
-    "\002\071\004\000\002\072\003\000\002\072\006\000\002" +
-    "\073\007\000\002\073\007\000\002\074\016\000\002\075" +
-    "\006\000\002\075\005\000\002\075\004\000\002\173\007" +
-    "\000\002\076\003\000\002\076\004\000\002\077\003\000" +
-    "\002\077\003\000\002\105\003\000\002\105\003\000\002" +
+    "\003\000\002\062\003\000\002\063\004\000\002\063\006" +
+    "\000\002\063\007\000\002\065\006\000\002\064\004\000" +
+    "\002\064\006\000\002\102\007\000\002\066\003\000\002" +
+    "\066\003\000\002\067\005\000\002\067\004\000\002\067" +
+    "\006\000\002\100\006\000\002\070\005\000\002\070\006" +
+    "\000\002\101\006\000\002\071\003\000\002\071\004\000" +
+    "\002\072\003\000\002\072\006\000\002\073\007\000\002" +
+    "\073\007\000\002\074\016\000\002\075\006\000\002\075" +
+    "\005\000\002\075\004\000\002\173\007\000\002\076\003" +
+    "\000\002\076\004\000\002\077\003\000\002\077\003\000" +
+    "\002\105\003\000\002\105\003\000\002\105\003\000\002" +
     "\105\003\000\002\105\003\000\002\105\003\000\002\105" +
     "\003\000\002\105\003\000\002\105\003\000\002\105\003" +
-    "\000\002\105\003\000\002\105\003\000\002\105\003\000" +
-    "\002\106\004\000\002\106\005\000\002\106\006\000\002" +
-    "\157\007\000\002\107\004\000\002\107\005\000\002\107" +
-    "\006\000\002\160\006\000\002\110\004\000\002\110\007" +
-    "\000\002\161\007\000\002\111\004\000\002\111\005\000" +
-    "\002\111\006\000\002\162\006\000\002\112\004\000\002" +
-    "\112\005\000\002\112\006\000\002\163\006\000\002\113" +
-    "\007\000\002\113\007\000\002\113\006\000\002\164\006" +
-    "\000\002\114\006\000\002\114\007\000\002\114\007\000" +
-    "\002\165\006\000\002\115\006\000\002\166\006\000\002" +
-    "\116\006\000\002\167\006\000\002\117\006\000\002\117" +
-    "\005\000\002\117\004\000\002\170\006\000\002\120\006" +
-    "\000\002\120\005\000\002\120\004\000\002\171\006\000" +
-    "\002\121\006\000\002\121\005\000\002\121\004\000\002" +
-    "\172\006\000\002\122\014\000\002\122\013\000\002\122" +
-    "\015\000\002\122\013\000\002\123\013\000\002\123\015" +
-    "\000\002\124\003\000\002\124\005\000\002\125\014\000" +
-    "\002\125\016\000\002\125\004\000\002\225\002\000\002" +
+    "\000\002\105\003\000\002\105\003\000\002\106\004\000" +
+    "\002\106\005\000\002\106\006\000\002\157\007\000\002" +
+    "\107\004\000\002\107\005\000\002\107\006\000\002\160" +
+    "\006\000\002\110\004\000\002\110\007\000\002\161\007" +
+    "\000\002\111\004\000\002\111\005\000\002\111\006\000" +
+    "\002\162\006\000\002\112\004\000\002\112\005\000\002" +
+    "\112\006\000\002\163\006\000\002\113\007\000\002\113" +
+    "\007\000\002\113\006\000\002\164\006\000\002\114\006" +
+    "\000\002\114\007\000\002\114\007\000\002\165\006\000" +
+    "\002\115\006\000\002\166\006\000\002\116\006\000\002" +
+    "\167\006\000\002\117\006\000\002\117\005\000\002\117" +
+    "\004\000\002\170\006\000\002\120\006\000\002\120\005" +
+    "\000\002\120\004\000\002\171\006\000\002\121\006\000" +
+    "\002\121\005\000\002\121\004\000\002\172\006\000\002" +
+    "\122\014\000\002\122\013\000\002\122\015\000\002\122" +
+    "\013\000\002\123\013\000\002\123\015\000\002\124\003" +
+    "\000\002\124\005\000\002\125\014\000\002\125\016\000" +
+    "\002\125\004\000\002\225\002\000\002\126\003\000\002" +
     "\126\003\000\002\126\003\000\002\126\003\000\002\126" +
-    "\003\000\002\126\003\000\002\126\003\000\002\127\003" +
-    "\000\002\127\005\000\002\151\004\000\002\132\005\000" +
-    "\002\152\004\000\002\133\005\000\002\153\004\000\002" +
-    "\134\005\000\002\154\004\000\002\135\005\000\002\155" +
-    "\004\000\002\136\005\000\002\156\004\000\002\130\003" +
-    "\000\002\130\005\000\002\131\003\000\002\131\003\000" +
+    "\003\000\002\126\003\000\002\127\003\000\002\127\005" +
+    "\000\002\151\004\000\002\132\005\000\002\152\004\000" +
+    "\002\133\005\000\002\153\004\000\002\134\005\000\002" +
+    "\154\004\000\002\135\005\000\002\155\004\000\002\136" +
+    "\005\000\002\156\004\000\002\130\003\000\002\130\005" +
+    "\000\002\131\003\000\002\131\003\000\002\131\003\000" +
     "\002\131\003\000\002\131\003\000\002\131\003\000\002" +
-    "\131\003\000\002\131\003\000\002\137\005\000\002\140" +
-    "\005\000\002\224\003\000\002\141\003\000\002\141\003" +
-    "\000\002\143\010\000\002\144\007\000\002\144\006\000" +
-    "\002\144\004\000\002\144\007\000\002\174\004\000\002" +
-    "\145\005\000\002\146\007\000\002\147\007\000\002\150" +
-    "\007\000\002\205\003\000\002\205\005\000\002\005\003" +
-    "\000\002\005\005\000\002\003\004\000\002\004\002\000" +
-    "\002\175\011\000\002\176\023\000\002\177\011\000\002" +
-    "\200\022\000\002\201\006\000\002\201\007\000\002\201" +
-    "\010\000\002\201\011\000\002\206\007\000\002\206\013" +
-    "\000\002\202\005\000\002\202\006\000\002\202\005\000" +
-    "\002\202\006\000\002\212\006\000\002\213\006\000\002" +
-    "\210\010\000\002\210\006\000\002\203\007\000\002\203" +
-    "\005\000\002\204\007\000\002\204\006\000\002\211\004" +
-    "\000\002\211\004\000\002\214\013\000\002\215\010\000" +
-    "\002\215\006\000\002\216\006\000\002\216\004\000\002" +
-    "\217\012\000\002\207\004\000\002\207\005\000\002\220" +
-    "\003\000\002\220\003\000\002\220\003\000\002\221\010" +
-    "\000\002\222\010\000\002\222\010\000\002\223\010\000" +
-    "\002\223\010\000\002\226\003\000\002\226\003\000\002" +
-    "\226\003\000\002\227\003\000\002\231\003\000\002\231" +
-    "\003\000\002\232\005\000\002\232\005\000\002\232\005" +
-    "\000\002\232\005\000\002\232\005\000\002\232\004\000" +
-    "\002\232\005\000\002\232\005\000\002\232\004\000\002" +
-    "\232\005\000\002\232\005\000\002\232\005\000\002\232" +
+    "\131\003\000\002\137\005\000\002\140\005\000\002\224" +
+    "\003\000\002\141\003\000\002\141\003\000\002\143\010" +
+    "\000\002\144\007\000\002\144\006\000\002\144\004\000" +
+    "\002\144\007\000\002\174\004\000\002\145\005\000\002" +
+    "\146\007\000\002\147\007\000\002\150\007\000\002\205" +
+    "\003\000\002\205\005\000\002\005\003\000\002\005\005" +
+    "\000\002\003\004\000\002\004\002\000\002\175\011\000" +
+    "\002\176\023\000\002\177\011\000\002\200\022\000\002" +
+    "\201\006\000\002\201\007\000\002\201\010\000\002\201" +
+    "\011\000\002\206\007\000\002\206\013\000\002\202\005" +
+    "\000\002\202\006\000\002\202\005\000\002\202\006\000" +
+    "\002\212\006\000\002\213\006\000\002\210\010\000\002" +
+    "\210\006\000\002\203\007\000\002\203\005\000\002\204" +
+    "\007\000\002\204\006\000\002\211\004\000\002\211\004" +
+    "\000\002\214\013\000\002\215\010\000\002\215\006\000" +
+    "\002\216\006\000\002\216\004\000\002\217\012\000\002" +
+    "\207\004\000\002\207\005\000\002\220\003\000\002\220" +
+    "\003\000\002\220\003\000\002\221\010\000\002\222\010" +
+    "\000\002\222\010\000\002\223\010\000\002\223\010\000" +
+    "\002\226\003\000\002\226\003\000\002\226\003\000\002" +
+    "\227\003\000\002\231\003\000\002\231\003\000\002\232" +
     "\005\000\002\232\005\000\002\232\005\000\002\232\005" +
-    "\000\002\232\003\000\002\232\003\000\002\233\003\000" +
-    "\002\233\005\000\002\233\005\000\002\230\004\000\002" +
-    "\230\005\000\002\234\004\000\002\241\003\000\002\241" +
-    "\005\000\002\236\003\000\002\235\003\000\002\235\003" +
-    "\000\002\235\003\000\002\237\004\000\002\237\005\000" +
-    "\002\240\004" });
+    "\000\002\232\005\000\002\232\004\000\002\232\005\000" +
+    "\002\232\005\000\002\232\004\000\002\232\005\000\002" +
+    "\232\005\000\002\232\005\000\002\232\005\000\002\232" +
+    "\005\000\002\232\005\000\002\232\005\000\002\232\003" +
+    "\000\002\232\003\000\002\233\003\000\002\233\005\000" +
+    "\002\233\005\000\002\230\004\000\002\230\005\000\002" +
+    "\234\004\000\002\241\003\000\002\241\005\000\002\236" +
+    "\003\000\002\235\003\000\002\235\003\000\002\235\003" +
+    "\000\002\237\004\000\002\237\005\000\002\240\004" });
 
   /** Access to production table. */
   @Override
@@ -146,7 +145,7 @@ public class AvatarFromSysMLParser extends java_cup.runtime.lr_parser {
   /** Parse-action table. */
   protected static final short[][] _action_table = 
     unpackFromStrings(new String[] {
-    "\000\u0322\000\004\261\005\001\002\000\004\002\u0324\001" +
+    "\000\u031e\000\004\261\005\001\002\000\004\002\u0320\001" +
     "\002\000\004\142\006\001\002\000\004\014\007\001\002" +
     "\000\016\015\031\165\020\167\041\263\047\266\014\270" +
     "\025\001\002\000\016\015\ufff4\165\ufff4\167\ufff4\263\ufff4" +
@@ -154,26 +153,26 @@ public class AvatarFromSysMLParser extends java_cup.runtime.lr_parser {
     "\ufff7\263\ufff7\266\ufff7\270\ufff7\001\002\000\016\015\uffdd" +
     "\165\uffdd\167\uffdd\263\uffdd\266\uffdd\270\uffdd\001\002\000" +
     "\016\015\uffde\165\uffde\167\uffde\263\uffde\266\uffde\270\uffde" +
-    "\001\002\000\004\233\u0323\001\002\000\016\015\uffbe\165" +
+    "\001\002\000\004\233\u031f\001\002\000\016\015\uffbe\165" +
     "\uffbe\167\uffbe\263\uffbe\266\uffbe\270\uffbe\001\002\000\014" +
-    "\026\u0305\027\u0308\030\u02ff\033\u0306\034\u02fe\001\002\000" +
+    "\026\u0301\027\u0304\030\u02fb\033\u0302\034\u02fa\001\002\000" +
     "\016\015\uffc4\165\uffc4\167\uffc4\263\uffc4\266\uffc4\270\uffc4" +
-    "\001\002\000\004\202\u031c\001\002\000\016\015\ufffe\165" +
+    "\001\002\000\004\202\u0318\001\002\000\016\015\ufffe\165" +
     "\020\167\041\263\047\266\014\270\025\001\002\000\014" +
-    "\026\u0305\027\u0308\030\u02ff\033\u0306\034\u02fe\001\002\000" +
+    "\026\u0301\027\u0304\030\u02fb\033\u0302\034\u02fa\001\002\000" +
     "\016\015\uffc9\165\uffc9\167\uffc9\263\uffc9\266\uffc9\270\uffc9" +
     "\001\002\000\016\015\ufff9\165\ufff9\167\ufff9\263\ufff9\266" +
-    "\ufff9\270\ufff9\001\002\000\004\233\u0317\001\002\000\016" +
+    "\ufff9\270\ufff9\001\002\000\004\233\u0313\001\002\000\016" +
     "\015\uffca\165\uffca\167\uffca\263\uffca\266\uffca\270\uffca\001" +
     "\002\000\016\015\uffc3\165\uffc3\167\uffc3\263\uffc3\266\uffc3" +
     "\270\uffc3\001\002\000\016\015\uffc8\165\uffc8\167\uffc8\263" +
     "\uffc8\266\uffc8\270\uffc8\001\002\000\004\002\uffff\001\002" +
     "\000\016\015\uffbd\165\uffbd\167\uffbd\263\uffbd\266\uffbd\270" +
-    "\uffbd\001\002\000\014\026\u0305\027\u0308\030\u02ff\033\u0306" +
-    "\034\u02fe\001\002\000\006\014\u02f2\017\u02f1\001\002\000" +
+    "\uffbd\001\002\000\014\026\u0301\027\u0304\030\u02fb\033\u0302" +
+    "\034\u02fa\001\002\000\006\014\u02ee\017\u02ed\001\002\000" +
     "\016\015\ufff6\165\ufff6\167\ufff6\263\ufff6\266\ufff6\270\ufff6" +
     "\001\002\000\016\015\ufffa\165\ufffa\167\ufffa\263\ufffa\266" +
-    "\ufffa\270\ufffa\001\002\000\006\165\310\266\u02e1\001\002" +
+    "\ufffa\270\ufffa\001\002\000\006\165\310\263\u02e1\001\002" +
     "\000\004\014\u02da\001\002\000\004\020\u02bf\001\002\000" +
     "\020\015\164\146\172\165\157\172\163\216\154\263\201" +
     "\271\155\001\002\000\004\015\152\001\002\000\016\015" +
@@ -198,8 +197,8 @@ public class AvatarFromSysMLParser extends java_cup.runtime.lr_parser {
     "\uffc6\270\uffc6\001\002\000\004\053\101\001\002\000\004" +
     "\012\102\001\002\000\014\026\uffd9\027\uffd9\030\uffd9\033" +
     "\uffd9\034\uffd9\001\002\000\004\142\110\001\002\000\020" +
-    "\015\uffab\146\uffab\165\uffab\172\uffab\216\uffab\263\uffab\271" +
-    "\uffab\001\002\000\004\142\uffed\001\002\000\004\142\uffee" +
+    "\015\uffac\146\uffac\165\uffac\172\uffac\216\uffac\263\uffac\271" +
+    "\uffac\001\002\000\004\142\uffed\001\002\000\004\142\uffee" +
     "\001\002\000\004\023\113\001\002\000\010\017\uffeb\021" +
     "\111\023\uffeb\001\002\000\004\142\110\001\002\000\006" +
     "\017\uffea\023\uffea\001\002\000\004\142\110\001\002\000" +
@@ -218,70 +217,70 @@ public class AvatarFromSysMLParser extends java_cup.runtime.lr_parser {
     "\002\000\010\054\142\055\144\142\143\001\002\000\012" +
     "\054\uffef\055\uffef\101\uffef\142\uffef\001\002\000\004\014" +
     "\151\001\002\000\004\016\147\001\002\000\004\016\145" +
-    "\001\002\000\004\142\146\001\002\000\006\014\uffb2\017" +
-    "\uffb2\001\002\000\004\055\150\001\002\000\006\014\uffb1" +
-    "\017\uffb1\001\002\000\006\165\uffbb\266\uffbb\001\002\000" +
-    "\004\002\001\001\002\000\020\015\uff99\146\uff99\165\uff99" +
-    "\172\uff99\216\uff99\263\uff99\271\uff99\001\002\000\004\311" +
-    "\u02bb\001\002\000\004\165\u02b7\001\002\000\020\015\uffa3" +
-    "\146\uffa3\165\uffa3\172\uffa3\216\uffa3\263\uffa3\271\uffa3\001" +
-    "\002\000\004\142\u02b4\001\002\000\020\015\uffa4\146\uffa4" +
-    "\165\uffa4\172\uffa4\216\uffa4\263\uffa4\271\uffa4\001\002\000" +
-    "\010\017\u02ad\024\u02ae\203\u02ac\001\002\000\020\015\uffa7" +
-    "\146\uffa7\165\uffa7\172\uffa7\216\uffa7\263\uffa7\271\uffa7\001" +
-    "\002\000\004\142\u02a9\001\002\000\026\015\uffad\146\uffad" +
-    "\165\uffad\167\uffad\172\uffad\216\uffad\263\uffad\266\uffad\270" +
-    "\uffad\271\uffad\001\002\000\004\014\u029e\001\002\000\020" +
-    "\015\u029c\146\172\165\157\172\163\216\154\263\201\271" +
-    "\155\001\002\000\020\015\uffa6\146\uffa6\165\uffa6\172\uffa6" +
-    "\216\uffa6\263\uffa6\271\uffa6\001\002\000\026\015\uffac\146" +
-    "\uffac\165\uffac\167\uffac\172\uffac\216\uffac\263\uffac\266\uffac" +
-    "\270\uffac\271\uffac\001\002\000\020\015\uff9a\146\uff9a\165" +
-    "\uff9a\172\uff9a\216\uff9a\263\uff9a\271\uff9a\001\002\000\004" +
-    "\142\u0299\001\002\000\020\015\uffa5\146\uffa5\165\uffa5\172" +
-    "\uffa5\216\uffa5\263\uffa5\271\uffa5\001\002\000\006\014\334" +
+    "\001\002\000\004\142\146\001\002\000\006\014\uffb3\017" +
+    "\uffb3\001\002\000\004\055\150\001\002\000\006\014\uffb2" +
+    "\017\uffb2\001\002\000\006\165\uffbb\263\uffbb\001\002\000" +
+    "\004\002\001\001\002\000\020\015\uff9a\146\uff9a\165\uff9a" +
+    "\172\uff9a\216\uff9a\263\uff9a\271\uff9a\001\002\000\004\311" +
+    "\u02bb\001\002\000\004\165\u02b7\001\002\000\020\015\uffa4" +
+    "\146\uffa4\165\uffa4\172\uffa4\216\uffa4\263\uffa4\271\uffa4\001" +
+    "\002\000\004\142\u02b4\001\002\000\020\015\uffa5\146\uffa5" +
+    "\165\uffa5\172\uffa5\216\uffa5\263\uffa5\271\uffa5\001\002\000" +
+    "\010\017\u02ae\024\u02ad\203\u02ac\001\002\000\020\015\uffa8" +
+    "\146\uffa8\165\uffa8\172\uffa8\216\uffa8\263\uffa8\271\uffa8\001" +
+    "\002\000\004\142\u02a9\001\002\000\026\015\uffae\146\uffae" +
+    "\165\uffae\167\uffae\172\uffae\216\uffae\263\uffae\266\uffae\270" +
+    "\uffae\271\uffae\001\002\000\004\014\u029e\001\002\000\020" +
+    "\015\uffa7\146\uffa7\165\uffa7\172\uffa7\216\uffa7\263\uffa7\271" +
+    "\uffa7\001\002\000\020\015\u029c\146\172\165\157\172\163" +
+    "\216\154\263\201\271\155\001\002\000\026\015\uffad\146" +
+    "\uffad\165\uffad\167\uffad\172\uffad\216\uffad\263\uffad\266\uffad" +
+    "\270\uffad\271\uffad\001\002\000\020\015\uff9b\146\uff9b\165" +
+    "\uff9b\172\uff9b\216\uff9b\263\uff9b\271\uff9b\001\002\000\004" +
+    "\142\u0299\001\002\000\020\015\uffa6\146\uffa6\165\uffa6\172" +
+    "\uffa6\216\uffa6\263\uffa6\271\uffa6\001\002\000\006\014\334" +
     "\017\333\001\002\000\006\014\306\017\305\001\002\000" +
-    "\020\015\uffa8\146\uffa8\165\uffa8\172\uffa8\216\uffa8\263\uffa8" +
-    "\271\uffa8\001\002\000\006\017\222\024\223\001\002\000" +
-    "\020\015\uffa2\146\uffa2\165\uffa2\172\uffa2\216\uffa2\263\uffa2" +
-    "\271\uffa2\001\002\000\004\142\202\001\002\000\004\020" +
+    "\020\015\uffa9\146\uffa9\165\uffa9\172\uffa9\216\uffa9\263\uffa9" +
+    "\271\uffa9\001\002\000\006\017\222\024\223\001\002\000" +
+    "\020\015\uffa3\146\uffa3\165\uffa3\172\uffa3\216\uffa3\263\uffa3" +
+    "\271\uffa3\001\002\000\004\142\202\001\002\000\004\020" +
     "\203\001\002\000\012\056\206\057\204\102\205\134\207" +
     "\001\002\000\004\017\221\001\002\000\004\014\104\001" +
     "\002\000\004\017\220\001\002\000\004\023\210\001\002" +
     "\000\004\134\211\001\002\000\004\012\212\001\002\000" +
     "\004\032\213\001\002\000\004\023\214\001\002\000\004" +
     "\305\215\001\002\000\004\013\216\001\002\000\004\017" +
-    "\217\001\002\000\020\015\uff8b\146\uff8b\165\uff8b\172\uff8b" +
-    "\216\uff8b\263\uff8b\271\uff8b\001\002\000\020\015\uff8c\146" +
-    "\uff8c\165\uff8c\172\uff8c\216\uff8c\263\uff8c\271\uff8c\001\002" +
-    "\000\020\015\uff8d\146\uff8d\165\uff8d\172\uff8d\216\uff8d\263" +
-    "\uff8d\271\uff8d\001\002\000\020\015\uff9d\146\uff9d\165\uff9d" +
-    "\172\uff9d\216\uff9d\263\uff9d\271\uff9d\001\002\000\016\004" +
+    "\217\001\002\000\020\015\uff8c\146\uff8c\165\uff8c\172\uff8c" +
+    "\216\uff8c\263\uff8c\271\uff8c\001\002\000\020\015\uff8d\146" +
+    "\uff8d\165\uff8d\172\uff8d\216\uff8d\263\uff8d\271\uff8d\001\002" +
+    "\000\020\015\uff8e\146\uff8e\165\uff8e\172\uff8e\216\uff8e\263" +
+    "\uff8e\271\uff8e\001\002\000\020\015\uff9e\146\uff9e\165\uff9e" +
+    "\172\uff9e\216\uff9e\263\uff9e\271\uff9e\001\002\000\016\004" +
     "\225\005\227\012\231\142\226\252\234\340\224\001\002" +
     "\000\016\004\225\005\227\012\231\142\226\252\234\340" +
-    "\224\001\002\000\044\011\ufed0\013\ufed0\016\ufed0\017\ufed0" +
-    "\025\ufed0\156\ufed0\256\ufed0\337\ufed0\340\ufed0\341\ufed0\342" +
-    "\ufed0\343\ufed0\344\ufed0\345\ufed0\346\ufed0\347\ufed0\350\ufed0" +
-    "\001\002\000\050\011\ufece\013\ufece\016\ufece\017\ufece\021" +
-    "\273\022\274\025\ufece\156\ufece\256\ufece\337\ufece\340\ufece" +
-    "\341\ufece\342\ufece\343\ufece\344\ufece\345\ufece\346\ufece\347" +
-    "\ufece\350\ufece\001\002\000\044\011\ufecf\013\ufecf\016\ufecf" +
-    "\017\ufecf\025\ufecf\156\ufecf\256\ufecf\337\ufecf\340\ufecf\341" +
-    "\ufecf\342\ufecf\343\ufecf\344\ufecf\345\ufecf\346\ufecf\347\ufecf" +
-    "\350\ufecf\001\002\000\044\011\ufee1\013\ufee1\016\ufee1\017" +
-    "\ufee1\025\ufee1\156\ufee1\256\ufee1\337\ufee1\340\ufee1\341\ufee1" +
-    "\342\ufee1\343\ufee1\344\ufee1\345\ufee1\346\ufee1\347\ufee1\350" +
-    "\ufee1\001\002\000\016\004\225\005\227\012\231\142\226" +
-    "\252\234\340\224\001\002\000\036\011\243\017\270\156" +
-    "\236\256\251\337\244\340\237\341\240\342\246\343\241" +
-    "\344\242\345\250\346\245\347\252\350\247\001\002\000" +
-    "\044\011\ufee2\013\ufee2\016\ufee2\017\ufee2\025\ufee2\156\ufee2" +
-    "\256\ufee2\337\ufee2\340\ufee2\341\ufee2\342\ufee2\343\ufee2\344" +
-    "\ufee2\345\ufee2\346\ufee2\347\ufee2\350\ufee2\001\002\000\016" +
+    "\224\001\002\000\044\011\ufed1\013\ufed1\016\ufed1\017\ufed1" +
+    "\025\ufed1\156\ufed1\256\ufed1\337\ufed1\340\ufed1\341\ufed1\342" +
+    "\ufed1\343\ufed1\344\ufed1\345\ufed1\346\ufed1\347\ufed1\350\ufed1" +
+    "\001\002\000\050\011\ufecf\013\ufecf\016\ufecf\017\ufecf\021" +
+    "\273\022\274\025\ufecf\156\ufecf\256\ufecf\337\ufecf\340\ufecf" +
+    "\341\ufecf\342\ufecf\343\ufecf\344\ufecf\345\ufecf\346\ufecf\347" +
+    "\ufecf\350\ufecf\001\002\000\044\011\ufed0\013\ufed0\016\ufed0" +
+    "\017\ufed0\025\ufed0\156\ufed0\256\ufed0\337\ufed0\340\ufed0\341" +
+    "\ufed0\342\ufed0\343\ufed0\344\ufed0\345\ufed0\346\ufed0\347\ufed0" +
+    "\350\ufed0\001\002\000\044\011\ufee2\013\ufee2\016\ufee2\017" +
+    "\ufee2\025\ufee2\156\ufee2\256\ufee2\337\ufee2\340\ufee2\341\ufee2" +
+    "\342\ufee2\343\ufee2\344\ufee2\345\ufee2\346\ufee2\347\ufee2\350" +
+    "\ufee2\001\002\000\016\004\225\005\227\012\231\142\226" +
+    "\252\234\340\224\001\002\000\036\011\244\017\270\156" +
+    "\237\256\251\337\243\340\236\341\240\342\245\343\241" +
+    "\344\242\345\250\346\246\347\252\350\247\001\002\000" +
+    "\044\011\ufee3\013\ufee3\016\ufee3\017\ufee3\025\ufee3\156\ufee3" +
+    "\256\ufee3\337\ufee3\340\ufee3\341\ufee3\342\ufee3\343\ufee3\344" +
+    "\ufee3\345\ufee3\346\ufee3\347\ufee3\350\ufee3\001\002\000\016" +
     "\004\225\005\227\012\231\142\226\252\234\340\224\001" +
-    "\002\000\044\011\243\013\ufed8\016\ufed8\017\ufed8\025\ufed8" +
-    "\156\ufed8\256\ufed8\337\244\340\237\341\240\342\246\343" +
-    "\241\344\242\345\250\346\245\347\252\350\247\001\002" +
+    "\002\000\044\011\244\013\ufed9\016\ufed9\017\ufed9\025\ufed9" +
+    "\156\ufed9\256\ufed9\337\243\340\236\341\240\342\245\343" +
+    "\241\344\242\345\250\346\246\347\252\350\247\001\002" +
     "\000\016\004\225\005\227\012\231\142\226\252\234\340" +
     "\224\001\002\000\016\004\225\005\227\012\231\142\226" +
     "\252\234\340\224\001\002\000\016\004\225\005\227\012" +
@@ -298,444 +297,444 @@ public class AvatarFromSysMLParser extends java_cup.runtime.lr_parser {
     "\226\252\234\340\224\001\002\000\016\004\225\005\227" +
     "\012\231\142\226\252\234\340\224\001\002\000\016\004" +
     "\225\005\227\012\231\142\226\252\234\340\224\001\002" +
-    "\000\034\011\ufed5\013\ufed5\016\ufed5\017\ufed5\025\ufed5\156" +
-    "\ufed5\256\ufed5\337\244\340\237\341\240\342\246\343\241" +
-    "\344\ufed5\001\002\000\044\011\243\013\ufeda\016\ufeda\017" +
-    "\ufeda\025\ufeda\156\236\256\ufeda\337\244\340\237\341\240" +
-    "\342\246\343\241\344\242\345\250\346\245\347\252\350" +
-    "\247\001\002\000\034\011\ufed7\013\ufed7\016\ufed7\017\ufed7" +
-    "\025\ufed7\156\ufed7\256\ufed7\337\244\340\237\341\240\342" +
-    "\246\343\241\344\ufed7\001\002\000\034\011\ufed4\013\ufed4" +
-    "\016\ufed4\017\ufed4\025\ufed4\156\ufed4\256\ufed4\337\244\340" +
-    "\237\341\240\342\246\343\241\344\ufed4\001\002\000\044" +
+    "\000\034\011\ufed6\013\ufed6\016\ufed6\017\ufed6\025\ufed6\156" +
+    "\ufed6\256\ufed6\337\243\340\236\341\240\342\245\343\241" +
+    "\344\ufed6\001\002\000\044\011\244\013\ufedb\016\ufedb\017" +
+    "\ufedb\025\ufedb\156\237\256\ufedb\337\243\340\236\341\240" +
+    "\342\245\343\241\344\242\345\250\346\246\347\252\350" +
+    "\247\001\002\000\034\011\ufed8\013\ufed8\016\ufed8\017\ufed8" +
+    "\025\ufed8\156\ufed8\256\ufed8\337\243\340\236\341\240\342" +
+    "\245\343\241\344\ufed8\001\002\000\034\011\ufed5\013\ufed5" +
+    "\016\ufed5\017\ufed5\025\ufed5\156\ufed5\256\ufed5\337\243\340" +
+    "\236\341\240\342\245\343\241\344\ufed5\001\002\000\034" +
+    "\011\ufed7\013\ufed7\016\ufed7\017\ufed7\025\ufed7\156\ufed7\256" +
+    "\ufed7\337\243\340\236\341\240\342\245\343\241\344\ufed7" +
+    "\001\002\000\044\011\ufede\013\ufede\016\ufede\017\ufede\025" +
+    "\ufede\156\ufede\256\ufede\337\ufede\340\ufede\341\ufede\342\ufede" +
+    "\343\ufede\344\ufede\345\ufede\346\ufede\347\ufede\350\ufede\001" +
+    "\002\000\044\011\ufed4\013\ufed4\016\ufed4\017\ufed4\025\ufed4" +
+    "\156\ufed4\256\ufed4\337\243\340\236\341\240\342\245\343" +
+    "\241\344\ufed4\345\250\346\246\347\252\350\247\001\002" +
+    "\000\044\011\ufee1\013\ufee1\016\ufee1\017\ufee1\025\ufee1\156" +
+    "\ufee1\256\ufee1\337\ufee1\340\ufee1\341\240\342\245\343\241" +
+    "\344\ufee1\345\ufee1\346\ufee1\347\ufee1\350\ufee1\001\002\000" +
+    "\044\011\ufed3\013\ufed3\016\ufed3\017\ufed3\025\ufed3\156\ufed3" +
+    "\256\ufed3\337\243\340\236\341\240\342\245\343\241\344" +
+    "\ufed3\345\250\346\246\347\252\350\247\001\002\000\044" +
     "\011\ufedd\013\ufedd\016\ufedd\017\ufedd\025\ufedd\156\ufedd\256" +
     "\ufedd\337\ufedd\340\ufedd\341\ufedd\342\ufedd\343\ufedd\344\ufedd" +
-    "\345\ufedd\346\ufedd\347\ufedd\350\ufedd\001\002\000\034\011" +
-    "\ufed6\013\ufed6\016\ufed6\017\ufed6\025\ufed6\156\ufed6\256\ufed6" +
-    "\337\244\340\237\341\240\342\246\343\241\344\ufed6\001" +
-    "\002\000\044\011\ufee0\013\ufee0\016\ufee0\017\ufee0\025\ufee0" +
-    "\156\ufee0\256\ufee0\337\ufee0\340\ufee0\341\240\342\246\343" +
-    "\241\344\ufee0\345\ufee0\346\ufee0\347\ufee0\350\ufee0\001\002" +
-    "\000\044\011\ufed3\013\ufed3\016\ufed3\017\ufed3\025\ufed3\156" +
-    "\ufed3\256\ufed3\337\244\340\237\341\240\342\246\343\241" +
-    "\344\ufed3\345\250\346\245\347\252\350\247\001\002\000" +
-    "\044\011\ufed2\013\ufed2\016\ufed2\017\ufed2\025\ufed2\156\ufed2" +
-    "\256\ufed2\337\244\340\237\341\240\342\246\343\241\344" +
-    "\ufed2\345\250\346\245\347\252\350\247\001\002\000\044" +
-    "\011\ufedc\013\ufedc\016\ufedc\017\ufedc\025\ufedc\156\ufedc\256" +
-    "\ufedc\337\ufedc\340\ufedc\341\ufedc\342\ufedc\343\ufedc\344\ufedc" +
-    "\345\ufedc\346\ufedc\347\ufedc\350\ufedc\001\002\000\044\011" +
-    "\ufede\013\ufede\016\ufede\017\ufede\025\ufede\156\ufede\256\ufede" +
-    "\337\ufede\340\ufede\341\ufede\342\ufede\343\ufede\344\ufede\345" +
-    "\ufede\346\ufede\347\ufede\350\ufede\001\002\000\044\011\ufedf" +
-    "\013\ufedf\016\ufedf\017\ufedf\025\ufedf\156\ufedf\256\ufedf\337" +
-    "\ufedf\340\ufedf\341\240\342\246\343\241\344\ufedf\345\ufedf" +
-    "\346\ufedf\347\ufedf\350\ufedf\001\002\000\044\011\243\013" +
-    "\ufed9\016\ufed9\017\ufed9\025\ufed9\156\ufed9\256\ufed9\337\244" +
-    "\340\237\341\240\342\246\343\241\344\242\345\250\346" +
-    "\245\347\252\350\247\001\002\000\020\015\uff9c\146\uff9c" +
-    "\165\uff9c\172\uff9c\216\uff9c\263\uff9c\271\uff9c\001\002\000" +
-    "\036\011\243\013\272\156\236\256\251\337\244\340\237" +
-    "\341\240\342\246\343\241\344\242\345\250\346\245\347" +
-    "\252\350\247\001\002\000\044\011\ufed1\013\ufed1\016\ufed1" +
-    "\017\ufed1\025\ufed1\156\ufed1\256\ufed1\337\ufed1\340\ufed1\341" +
-    "\ufed1\342\ufed1\343\ufed1\344\ufed1\345\ufed1\346\ufed1\347\ufed1" +
-    "\350\ufed1\001\002\000\004\142\uff0f\001\002\000\004\142" +
-    "\226\001\002\000\044\011\ufecd\013\ufecd\016\ufecd\017\ufecd" +
-    "\025\ufecd\156\ufecd\256\ufecd\337\ufecd\340\ufecd\341\ufecd\342" +
-    "\ufecd\343\ufecd\344\ufecd\345\ufecd\346\ufecd\347\ufecd\350\ufecd" +
-    "\001\002\000\044\011\ufecc\013\ufecc\016\ufecc\017\ufecc\025" +
-    "\ufecc\156\ufecc\256\ufecc\337\ufecc\340\ufecc\341\ufecc\342\ufecc" +
-    "\343\ufecc\344\ufecc\345\ufecc\346\ufecc\347\ufecc\350\ufecc\001" +
-    "\002\000\004\142\300\001\002\000\050\011\uff12\013\uff12" +
-    "\016\uff12\017\uff12\022\uff12\024\uff12\025\uff12\156\uff12\256" +
-    "\uff12\337\uff12\340\uff12\341\uff12\342\uff12\343\uff12\344\uff12" +
-    "\345\uff12\346\uff12\347\uff12\350\uff12\001\002\000\050\011" +
-    "\uff10\013\uff10\016\uff10\017\uff10\022\302\024\uff10\025\uff10" +
-    "\156\uff10\256\uff10\337\uff10\340\uff10\341\uff10\342\uff10\343" +
-    "\uff10\344\uff10\345\uff10\346\uff10\347\uff10\350\uff10\001\002" +
-    "\000\004\142\303\001\002\000\050\011\uff11\013\uff11\016" +
-    "\uff11\017\uff11\022\uff11\024\uff11\025\uff11\156\uff11\256\uff11" +
-    "\337\uff11\340\uff11\341\uff11\342\uff11\343\uff11\344\uff11\345" +
-    "\uff11\346\uff11\347\uff11\350\uff11\001\002\000\044\011\ufedb" +
-    "\013\ufedb\016\ufedb\017\ufedb\025\ufedb\156\ufedb\256\ufedb\337" +
-    "\ufedb\340\ufedb\341\ufedb\342\ufedb\343\ufedb\344\ufedb\345\ufedb" +
-    "\346\ufedb\347\ufedb\350\ufedb\001\002\000\020\015\uff97\146" +
-    "\uff97\165\uff97\172\uff97\216\uff97\263\uff97\271\uff97\001\002" +
+    "\345\ufedd\346\ufedd\347\ufedd\350\ufedd\001\002\000\044\011" +
+    "\ufedf\013\ufedf\016\ufedf\017\ufedf\025\ufedf\156\ufedf\256\ufedf" +
+    "\337\ufedf\340\ufedf\341\ufedf\342\ufedf\343\ufedf\344\ufedf\345" +
+    "\ufedf\346\ufedf\347\ufedf\350\ufedf\001\002\000\044\011\244" +
+    "\013\ufeda\016\ufeda\017\ufeda\025\ufeda\156\ufeda\256\ufeda\337" +
+    "\243\340\236\341\240\342\245\343\241\344\242\345\250" +
+    "\346\246\347\252\350\247\001\002\000\044\011\ufee0\013" +
+    "\ufee0\016\ufee0\017\ufee0\025\ufee0\156\ufee0\256\ufee0\337\ufee0" +
+    "\340\ufee0\341\240\342\245\343\241\344\ufee0\345\ufee0\346" +
+    "\ufee0\347\ufee0\350\ufee0\001\002\000\020\015\uff9d\146\uff9d" +
+    "\165\uff9d\172\uff9d\216\uff9d\263\uff9d\271\uff9d\001\002\000" +
+    "\036\011\244\013\272\156\237\256\251\337\243\340\236" +
+    "\341\240\342\245\343\241\344\242\345\250\346\246\347" +
+    "\252\350\247\001\002\000\044\011\ufed2\013\ufed2\016\ufed2" +
+    "\017\ufed2\025\ufed2\156\ufed2\256\ufed2\337\ufed2\340\ufed2\341" +
+    "\ufed2\342\ufed2\343\ufed2\344\ufed2\345\ufed2\346\ufed2\347\ufed2" +
+    "\350\ufed2\001\002\000\004\142\uff10\001\002\000\004\142" +
+    "\226\001\002\000\044\011\ufece\013\ufece\016\ufece\017\ufece" +
+    "\025\ufece\156\ufece\256\ufece\337\ufece\340\ufece\341\ufece\342" +
+    "\ufece\343\ufece\344\ufece\345\ufece\346\ufece\347\ufece\350\ufece" +
+    "\001\002\000\044\011\ufecd\013\ufecd\016\ufecd\017\ufecd\025" +
+    "\ufecd\156\ufecd\256\ufecd\337\ufecd\340\ufecd\341\ufecd\342\ufecd" +
+    "\343\ufecd\344\ufecd\345\ufecd\346\ufecd\347\ufecd\350\ufecd\001" +
+    "\002\000\004\142\300\001\002\000\050\011\uff13\013\uff13" +
+    "\016\uff13\017\uff13\022\uff13\024\uff13\025\uff13\156\uff13\256" +
+    "\uff13\337\uff13\340\uff13\341\uff13\342\uff13\343\uff13\344\uff13" +
+    "\345\uff13\346\uff13\347\uff13\350\uff13\001\002\000\050\011" +
+    "\uff11\013\uff11\016\uff11\017\uff11\022\302\024\uff11\025\uff11" +
+    "\156\uff11\256\uff11\337\uff11\340\uff11\341\uff11\342\uff11\343" +
+    "\uff11\344\uff11\345\uff11\346\uff11\347\uff11\350\uff11\001\002" +
+    "\000\004\142\303\001\002\000\050\011\uff12\013\uff12\016" +
+    "\uff12\017\uff12\022\uff12\024\uff12\025\uff12\156\uff12\256\uff12" +
+    "\337\uff12\340\uff12\341\uff12\342\uff12\343\uff12\344\uff12\345" +
+    "\uff12\346\uff12\347\uff12\350\uff12\001\002\000\044\011\ufedc" +
+    "\013\ufedc\016\ufedc\017\ufedc\025\ufedc\156\ufedc\256\ufedc\337" +
+    "\ufedc\340\ufedc\341\ufedc\342\ufedc\343\ufedc\344\ufedc\345\ufedc" +
+    "\346\ufedc\347\ufedc\350\ufedc\001\002\000\020\015\uff98\146" +
+    "\uff98\165\uff98\172\uff98\216\uff98\263\uff98\271\uff98\001\002" +
     "\000\006\015\311\165\310\001\002\000\004\015\332\001" +
-    "\002\000\004\142\324\001\002\000\020\015\uff98\146\uff98" +
-    "\165\uff98\172\uff98\216\uff98\263\uff98\271\uff98\001\002\000" +
-    "\010\015\uffe6\165\310\266\uffe6\001\002\000\010\017\uffe2" +
+    "\002\000\004\142\324\001\002\000\020\015\uff99\146\uff99" +
+    "\165\uff99\172\uff99\216\uff99\263\uff99\271\uff99\001\002\000" +
+    "\010\015\uffe6\165\310\263\uffe6\001\002\000\010\017\uffe2" +
     "\024\315\203\314\001\002\000\004\024\321\001\002\000" +
     "\016\004\225\005\227\012\231\142\226\252\234\340\224" +
     "\001\002\000\004\017\317\001\002\000\012\015\uffe4\165" +
-    "\uffe4\266\uffe4\302\uffe4\001\002\000\036\011\243\017\uffe1" +
-    "\156\236\256\251\337\244\340\237\341\240\342\246\343" +
-    "\241\344\242\345\250\346\245\347\252\350\247\001\002" +
+    "\uffe4\263\uffe4\302\uffe4\001\002\000\036\011\244\017\uffe1" +
+    "\156\237\256\251\337\243\340\236\341\240\342\245\343" +
+    "\241\344\242\345\250\346\246\347\252\350\247\001\002" +
     "\000\016\004\225\005\227\012\231\142\226\252\234\340" +
-    "\224\001\002\000\036\011\243\017\uffe0\156\236\256\251" +
-    "\337\244\340\237\341\240\342\246\343\241\344\242\345" +
-    "\250\346\245\347\252\350\247\001\002\000\006\015\uffe5" +
-    "\266\uffe5\001\002\000\004\020\325\001\002\000\010\075" +
+    "\224\001\002\000\036\011\244\017\uffe0\156\237\256\251" +
+    "\337\243\340\236\341\240\342\245\343\241\344\242\345" +
+    "\250\346\246\347\252\350\247\001\002\000\006\015\uffe5" +
+    "\263\uffe5\001\002\000\004\020\325\001\002\000\010\075" +
     "\331\076\330\142\327\001\002\000\010\017\uffe3\024\uffe3" +
     "\203\uffe3\001\002\000\010\017\ufff1\024\ufff1\203\ufff1\001" +
     "\002\000\010\017\ufff3\024\ufff3\203\ufff3\001\002\000\010" +
-    "\017\ufff2\024\ufff2\203\ufff2\001\002\000\020\015\uff96\146" +
-    "\uff96\165\uff96\172\uff96\216\uff96\263\uff96\271\uff96\001\002" +
-    "\000\020\015\uff88\146\uff88\165\uff88\172\uff88\216\uff88\263" +
-    "\uff88\271\uff88\001\002\000\014\015\354\213\364\217\335" +
-    "\311\367\320\375\001\002\000\004\146\u0295\001\002\000" +
-    "\004\014\u0276\001\002\000\014\015\uff7d\213\uff7d\217\uff7d" +
-    "\311\uff7d\320\uff7d\001\002\000\014\015\uff78\213\uff78\217" +
-    "\uff78\311\uff78\320\uff78\001\002\000\006\014\u0272\017\u0271" +
-    "\001\002\000\014\015\uff80\213\uff80\217\uff80\311\uff80\320" +
-    "\uff80\001\002\000\004\014\u0251\001\002\000\006\014\u024d" +
-    "\017\u024c\001\002\000\014\015\uff84\213\uff84\217\uff84\311" +
-    "\uff84\320\uff84\001\002\000\006\207\u01de\315\u01e0\001\002" +
-    "\000\014\015\uff79\213\uff79\217\uff79\311\uff79\320\uff79\001" +
-    "\002\000\014\015\uff81\213\uff81\217\uff81\311\uff81\320\uff81" +
-    "\001\002\000\014\015\uff82\213\uff82\217\uff82\311\uff82\320" +
-    "\uff82\001\002\000\014\015\uff7a\213\uff7a\217\uff7a\311\uff7a" +
-    "\320\uff7a\001\002\000\006\014\u01c3\017\u01c2\001\002\000" +
-    "\020\015\uff89\146\uff89\165\uff89\172\uff89\216\uff89\263\uff89" +
-    "\271\uff89\001\002\000\014\015\uff77\213\uff77\217\uff77\311" +
-    "\uff77\320\uff77\001\002\000\006\014\u01be\017\u01bd\001\002" +
+    "\017\ufff2\024\ufff2\203\ufff2\001\002\000\020\015\uff97\146" +
+    "\uff97\165\uff97\172\uff97\216\uff97\263\uff97\271\uff97\001\002" +
+    "\000\020\015\uff89\146\uff89\165\uff89\172\uff89\216\uff89\263" +
+    "\uff89\271\uff89\001\002\000\014\015\355\213\364\217\335" +
+    "\311\367\320\376\001\002\000\004\146\u0295\001\002\000" +
+    "\004\014\u0276\001\002\000\014\015\uff7e\213\uff7e\217\uff7e" +
+    "\311\uff7e\320\uff7e\001\002\000\014\015\uff79\213\uff79\217" +
+    "\uff79\311\uff79\320\uff79\001\002\000\006\014\u0272\017\u0271" +
+    "\001\002\000\014\015\uff81\213\uff81\217\uff81\311\uff81\320" +
+    "\uff81\001\002\000\004\014\u0251\001\002\000\006\014\u024d" +
+    "\017\u024c\001\002\000\014\015\uff85\213\uff85\217\uff85\311" +
+    "\uff85\320\uff85\001\002\000\006\207\u01de\315\u01e0\001\002" +
+    "\000\014\015\uff7a\213\uff7a\217\uff7a\311\uff7a\320\uff7a\001" +
+    "\002\000\014\015\uff82\213\uff82\217\uff82\311\uff82\320\uff82" +
+    "\001\002\000\014\015\uff83\213\uff83\217\uff83\311\uff83\320" +
+    "\uff83\001\002\000\014\015\uff7b\213\uff7b\217\uff7b\311\uff7b" +
+    "\320\uff7b\001\002\000\006\014\u01c3\017\u01c2\001\002\000" +
+    "\006\014\u01be\017\u01bd\001\002\000\020\015\uff8a\146\uff8a" +
+    "\165\uff8a\172\uff8a\216\uff8a\263\uff8a\271\uff8a\001\002\000" +
+    "\014\015\uff78\213\uff78\217\uff78\311\uff78\320\uff78\001\002" +
     "\000\004\015\u01bc\001\002\000\006\014\u01b8\017\u01b7\001" +
-    "\002\000\006\017\u01b2\023\u01b3\001\002\000\004\014\u01af" +
-    "\001\002\000\014\015\uff86\213\364\217\335\311\367\320" +
-    "\375\001\002\000\004\146\u01aa\001\002\000\014\015\uff7b" +
-    "\213\uff7b\217\uff7b\311\uff7b\320\uff7b\001\002\000\014\015" +
-    "\uff7e\213\uff7e\217\uff7e\311\uff7e\320\uff7e\001\002\000\004" +
-    "\142\u019e\001\002\000\014\015\uff83\213\uff83\217\uff83\311" +
-    "\uff83\320\uff83\001\002\000\014\015\uff7f\213\uff7f\217\uff7f" +
-    "\311\uff7f\320\uff7f\001\002\000\006\014\u019a\017\u0199\001" +
+    "\002\000\004\014\u01b4\001\002\000\006\017\u01af\023\u01b0" +
+    "\001\002\000\014\015\uff87\213\364\217\335\311\367\320" +
+    "\376\001\002\000\004\146\u01aa\001\002\000\014\015\uff7c" +
+    "\213\uff7c\217\uff7c\311\uff7c\320\uff7c\001\002\000\014\015" +
+    "\uff7f\213\uff7f\217\uff7f\311\uff7f\320\uff7f\001\002\000\004" +
+    "\142\u019e\001\002\000\014\015\uff84\213\uff84\217\uff84\311" +
+    "\uff84\320\uff84\001\002\000\014\015\uff80\213\uff80\217\uff80" +
+    "\311\uff80\320\uff80\001\002\000\006\014\u019a\017\u0199\001" +
     "\002\000\004\014\u0196\001\002\000\006\014\u0108\017\u0107" +
-    "\001\002\000\004\020\377\001\002\000\014\015\uff7c\213" +
-    "\uff7c\217\uff7c\311\uff7c\320\uff7c\001\002\000\004\116\u0100" +
+    "\001\002\000\014\015\uff7d\213\uff7d\217\uff7d\311\uff7d\320" +
+    "\uff7d\001\002\000\004\020\377\001\002\000\004\116\u0100" +
     "\001\002\000\004\222\u0101\001\002\000\004\142\u0102\001" +
-    "\002\000\010\207\uff06\231\u0103\315\uff06\001\002\000\004" +
+    "\002\000\010\207\uff07\231\u0103\315\uff07\001\002\000\004" +
     "\040\u0104\001\002\000\004\011\u0105\001\002\000\004\004" +
-    "\u0106\001\002\000\006\207\uff05\315\uff05\001\002\000\014" +
-    "\015\uff4d\213\uff4d\217\uff4d\311\uff4d\320\uff4d\001\002\000" +
+    "\u0106\001\002\000\006\207\uff06\315\uff06\001\002\000\014" +
+    "\015\uff4e\213\uff4e\217\uff4e\311\uff4e\320\uff4e\001\002\000" +
     "\006\015\u010a\172\u010b\001\002\000\004\015\u0195\001\002" +
-    "\000\014\015\uff4e\213\uff4e\217\uff4e\311\uff4e\320\uff4e\001" +
+    "\000\014\015\uff4f\213\uff4f\217\uff4f\311\uff4f\320\uff4f\001" +
     "\002\000\004\036\u010c\001\002\000\004\272\u010d\001\002" +
     "\000\004\036\u010e\001\002\000\004\023\u010f\001\002\000" +
-    "\004\014\u0110\001\002\000\024\012\u0111\066\uff40\067\uff40" +
-    "\070\uff40\071\uff40\126\uff40\127\uff40\130\uff40\231\uff40\001" +
-    "\002\000\022\066\uff40\067\uff40\070\uff40\071\uff40\126\uff40" +
-    "\127\uff40\130\uff40\231\uff40\001\002\000\004\015\u018f\001" +
+    "\004\014\u0110\001\002\000\024\012\u0111\066\uff41\067\uff41" +
+    "\070\uff41\071\uff41\126\uff41\127\uff41\130\uff41\231\uff41\001" +
+    "\002\000\022\066\uff41\067\uff41\070\uff41\071\uff41\126\uff41" +
+    "\127\uff41\130\uff41\231\uff41\001\002\000\004\015\u018f\001" +
     "\002\000\022\066\u0125\067\u0119\070\u0118\071\u011c\126\u0124" +
-    "\127\u0120\130\u0116\231\u011a\001\002\000\012\013\uff3d\015" +
-    "\uff3d\016\uff3d\211\uff3d\001\002\000\012\040\u0130\041\u0134" +
+    "\127\u0122\130\u0116\231\u011a\001\002\000\012\013\uff3e\015" +
+    "\uff3e\016\uff3e\211\uff3e\001\002\000\012\040\u0131\041\u0134" +
     "\042\u012b\043\u0132\001\002\000\004\012\u018c\001\002\000" +
-    "\012\040\u0130\041\u0134\042\u012b\043\u0132\001\002\000\004" +
-    "\012\u0189\001\002\000\012\013\uff39\015\uff39\016\uff39\211" +
-    "\uff39\001\002\000\016\004\225\005\227\012\231\142\226" +
-    "\252\234\340\224\001\002\000\012\040\u0130\041\u0134\042" +
+    "\012\040\u0131\041\u0134\042\u012b\043\u0132\001\002\000\004" +
+    "\012\u0189\001\002\000\012\013\uff3a\015\uff3a\016\uff3a\211" +
+    "\uff3a\001\002\000\016\004\225\005\227\012\231\142\226" +
+    "\252\234\340\224\001\002\000\012\040\u0131\041\u0134\042" +
     "\u012b\043\u0132\001\002\000\004\012\u017a\001\002\000\012" +
-    "\013\uff3c\015\uff3c\016\uff3c\211\uff3c\001\002\000\012\040" +
-    "\u0130\041\u0134\042\u012b\043\u0132\001\002\000\012\040\u0130" +
-    "\041\u0134\042\u012b\043\u0132\001\002\000\004\012\u0175\001" +
-    "\002\000\010\013\uff41\015\uff41\016\uff41\001\002\000\012" +
-    "\013\uff3b\015\uff3b\016\uff3b\211\uff3b\001\002\000\012\013" +
-    "\uff3f\015\uff3f\016\uff3f\211\uff3f\001\002\000\004\012\u0174" +
-    "\001\002\000\004\012\u0173\001\002\000\012\013\uff3a\015" +
-    "\uff3a\016\uff3a\211\uff3a\001\002\000\012\013\uff3e\015\uff3e" +
-    "\016\uff3e\211\uff3e\001\002\000\012\040\u0130\041\u0134\042" +
-    "\u012b\043\u0132\001\002\000\006\013\uff29\016\uff29\001\002" +
-    "\000\006\013\uff26\016\uff26\001\002\000\004\023\u0172\001" +
-    "\002\000\006\013\uff2a\016\uff2a\001\002\000\004\013\u0171" +
-    "\001\002\000\006\013\uff2c\016\u016f\001\002\000\006\131" +
-    "\u014a\142\u014b\001\002\000\004\023\u0148\001\002\000\006" +
-    "\013\uff27\016\uff27\001\002\000\004\023\u0142\001\002\000" +
-    "\006\013\uff24\016\uff24\001\002\000\004\023\uff21\001\002" +
-    "\000\006\013\uff25\016\uff25\001\002\000\004\023\u0138\001" +
-    "\002\000\006\013\uff28\016\uff28\001\002\000\020\004\225" +
+    "\013\uff3d\015\uff3d\016\uff3d\211\uff3d\001\002\000\012\040" +
+    "\u0131\041\u0134\042\u012b\043\u0132\001\002\000\012\040\u0131" +
+    "\041\u0134\042\u012b\043\u0132\001\002\000\010\013\uff42\015" +
+    "\uff42\016\uff42\001\002\000\012\013\uff3c\015\uff3c\016\uff3c" +
+    "\211\uff3c\001\002\000\004\012\u0175\001\002\000\012\013" +
+    "\uff40\015\uff40\016\uff40\211\uff40\001\002\000\004\012\u0174" +
+    "\001\002\000\004\012\u0173\001\002\000\012\013\uff3b\015" +
+    "\uff3b\016\uff3b\211\uff3b\001\002\000\012\013\uff3f\015\uff3f" +
+    "\016\uff3f\211\uff3f\001\002\000\012\040\u0131\041\u0134\042" +
+    "\u012b\043\u0132\001\002\000\006\013\uff2a\016\uff2a\001\002" +
+    "\000\006\013\uff27\016\uff27\001\002\000\004\023\u0172\001" +
+    "\002\000\006\013\uff2b\016\uff2b\001\002\000\004\013\u0171" +
+    "\001\002\000\006\013\uff2d\016\u016f\001\002\000\006\131" +
+    "\u014a\142\u014b\001\002\000\006\013\uff28\016\uff28\001\002" +
+    "\000\004\023\u0148\001\002\000\004\023\u0142\001\002\000" +
+    "\006\013\uff25\016\uff25\001\002\000\004\023\uff22\001\002" +
+    "\000\006\013\uff26\016\uff26\001\002\000\004\023\u0138\001" +
+    "\002\000\006\013\uff29\016\uff29\001\002\000\020\004\225" +
     "\005\227\012\231\074\u013a\142\226\252\234\340\224\001" +
-    "\002\000\006\013\uff22\016\uff22\001\002\000\004\012\u013d" +
-    "\001\002\000\006\013\uff1f\016\uff1f\001\002\000\040\011" +
-    "\243\013\uff20\016\uff20\156\236\256\251\337\244\340\237" +
-    "\341\240\342\246\343\241\344\242\345\250\346\245\347" +
+    "\002\000\006\013\uff23\016\uff23\001\002\000\004\012\u013d" +
+    "\001\002\000\006\013\uff20\016\uff20\001\002\000\040\011" +
+    "\244\013\uff21\016\uff21\156\237\256\251\337\243\340\236" +
+    "\341\240\342\245\343\241\344\242\345\250\346\246\347" +
     "\252\350\247\001\002\000\016\004\225\005\227\012\231" +
-    "\142\226\252\234\340\224\001\002\000\036\011\243\016" +
-    "\u013f\156\236\256\251\337\244\340\237\341\240\342\246" +
-    "\343\241\344\242\345\250\346\245\347\252\350\247\001" +
+    "\142\226\252\234\340\224\001\002\000\036\011\244\016" +
+    "\u013f\156\237\256\251\337\243\340\236\341\240\342\245" +
+    "\343\241\344\242\345\250\346\246\347\252\350\247\001" +
     "\002\000\016\004\225\005\227\012\231\142\226\252\234" +
-    "\340\224\001\002\000\036\011\243\013\u0141\156\236\256" +
-    "\251\337\244\340\237\341\240\342\246\343\241\344\242" +
-    "\345\250\346\245\347\252\350\247\001\002\000\006\013" +
-    "\uff1e\016\uff1e\001\002\000\004\142\u0143\001\002\000\010" +
-    "\013\uff18\016\uff18\021\u0144\001\002\000\010\135\u0145\136" +
-    "\u0147\137\u0146\001\002\000\006\013\uff17\016\uff17\001\002" +
-    "\000\006\013\uff15\016\uff15\001\002\000\006\013\uff16\016" +
-    "\uff16\001\002\000\004\004\u0149\001\002\000\006\013\uff23" +
-    "\016\uff23\001\002\000\004\012\u016b\001\002\000\010\012" +
-    "\u014c\013\uff1b\016\uff1b\001\002\000\020\004\225\005\227" +
+    "\340\224\001\002\000\036\011\244\013\u0141\156\237\256" +
+    "\251\337\243\340\236\341\240\342\245\343\241\344\242" +
+    "\345\250\346\246\347\252\350\247\001\002\000\006\013" +
+    "\uff1f\016\uff1f\001\002\000\004\142\u0143\001\002\000\010" +
+    "\013\uff19\016\uff19\021\u0144\001\002\000\010\135\u0145\136" +
+    "\u0147\137\u0146\001\002\000\006\013\uff18\016\uff18\001\002" +
+    "\000\006\013\uff16\016\uff16\001\002\000\006\013\uff17\016" +
+    "\uff17\001\002\000\004\004\u0149\001\002\000\006\013\uff24" +
+    "\016\uff24\001\002\000\004\012\u016b\001\002\000\010\012" +
+    "\u014c\013\uff1c\016\uff1c\001\002\000\020\004\225\005\227" +
     "\012\231\013\u0153\142\u014f\252\234\340\224\001\002\000" +
-    "\006\013\uff14\016\uff14\001\002\000\020\004\225\005\227" +
-    "\012\231\013\u0160\142\u015d\252\234\340\224\001\002\000" +
-    "\050\011\ufece\012\u0159\013\ufece\016\ufece\017\ufece\021\273" +
-    "\022\274\156\ufece\256\ufece\337\ufece\340\ufece\341\ufece\342" +
-    "\ufece\343\ufece\344\ufece\345\ufece\346\ufece\347\ufece\350\ufece" +
-    "\001\002\000\042\011\ufee1\013\ufee4\016\ufee4\017\ufee4\156" +
-    "\ufee1\256\ufee1\337\ufee1\340\ufee1\341\ufee1\342\ufee1\343\ufee1" +
-    "\344\ufee1\345\ufee1\346\ufee1\347\ufee1\350\ufee1\001\002\000" +
-    "\006\013\u0157\016\u0156\001\002\000\034\011\243\156\236" +
-    "\256\251\337\244\340\237\341\240\342\246\343\241\344" +
-    "\242\345\250\346\245\347\252\350\247\001\002\000\006" +
-    "\013\uff1c\016\uff1c\001\002\000\042\011\ufee2\013\ufee5\016" +
-    "\ufee5\017\ufee5\156\ufee2\256\ufee2\337\ufee2\340\ufee2\341\ufee2" +
-    "\342\ufee2\343\ufee2\344\ufee2\345\ufee2\346\ufee2\347\ufee2\350" +
-    "\ufee2\001\002\000\010\013\ufee6\016\ufee6\017\ufee6\001\002" +
+    "\020\004\225\005\227\012\231\013\u0160\142\u015c\252\234" +
+    "\340\224\001\002\000\006\013\uff15\016\uff15\001\002\000" +
+    "\050\011\ufecf\012\u0159\013\ufecf\016\ufecf\017\ufecf\021\273" +
+    "\022\274\156\ufecf\256\ufecf\337\ufecf\340\ufecf\341\ufecf\342" +
+    "\ufecf\343\ufecf\344\ufecf\345\ufecf\346\ufecf\347\ufecf\350\ufecf" +
+    "\001\002\000\042\011\ufee2\013\ufee5\016\ufee5\017\ufee5\156" +
+    "\ufee2\256\ufee2\337\ufee2\340\ufee2\341\ufee2\342\ufee2\343\ufee2" +
+    "\344\ufee2\345\ufee2\346\ufee2\347\ufee2\350\ufee2\001\002\000" +
+    "\006\013\u0157\016\u0156\001\002\000\034\011\244\156\237" +
+    "\256\251\337\243\340\236\341\240\342\245\343\241\344" +
+    "\242\345\250\346\246\347\252\350\247\001\002\000\006" +
+    "\013\uff1d\016\uff1d\001\002\000\042\011\ufee3\013\ufee6\016" +
+    "\ufee6\017\ufee6\156\ufee3\256\ufee3\337\ufee3\340\ufee3\341\ufee3" +
+    "\342\ufee3\343\ufee3\344\ufee3\345\ufee3\346\ufee3\347\ufee3\350" +
+    "\ufee3\001\002\000\010\013\ufee7\016\ufee7\017\ufee7\001\002" +
     "\000\016\004\225\005\227\012\231\142\u014f\252\234\340" +
-    "\224\001\002\000\006\013\uff1d\016\uff1d\001\002\000\006" +
-    "\013\uff13\016\uff13\001\002\000\020\004\ufec9\005\ufec9\012" +
-    "\ufec9\013\ufec9\142\ufec9\252\ufec9\340\ufec9\001\002\000\016" +
-    "\004\225\005\227\012\231\142\u015d\252\234\340\224\001" +
-    "\002\000\004\013\u0168\001\002\000\006\013\ufec8\016\u0166" +
-    "\001\002\000\046\011\ufece\012\u0164\013\ufece\016\ufece\021" +
-    "\273\022\274\156\ufece\256\ufece\337\ufece\340\ufece\341\ufece" +
-    "\342\ufece\343\ufece\344\ufece\345\ufece\346\ufece\347\ufece\350" +
-    "\ufece\001\002\000\040\011\ufee1\013\ufec4\016\ufec4\156\ufee1" +
-    "\256\ufee1\337\ufee1\340\ufee1\341\ufee1\342\ufee1\343\ufee1\344" +
-    "\ufee1\345\ufee1\346\ufee1\347\ufee1\350\ufee1\001\002\000\004" +
-    "\013\u0163\001\002\000\010\013\ufecb\016\ufecb\017\ufecb\001" +
-    "\002\000\040\011\ufee2\013\ufec5\016\ufec5\156\ufee2\256\ufee2" +
-    "\337\ufee2\340\ufee2\341\ufee2\342\ufee2\343\ufee2\344\ufee2\345" +
-    "\ufee2\346\ufee2\347\ufee2\350\ufee2\001\002\000\006\013\ufec3" +
-    "\016\ufec3\001\002\000\010\013\ufeca\016\ufeca\017\ufeca\001" +
-    "\002\000\020\004\ufec9\005\ufec9\012\ufec9\013\ufec0\142\ufec9" +
-    "\252\ufec9\340\ufec9\001\002\000\016\004\225\005\227\012" +
-    "\231\142\u015d\252\234\340\224\001\002\000\016\004\ufec6" +
-    "\005\ufec6\012\ufec6\142\ufec6\252\ufec6\340\ufec6\001\002\000" +
-    "\004\013\ufec7\001\002\000\006\013\ufec2\016\ufec2\001\002" +
-    "\000\004\013\u016a\001\002\000\006\013\ufec1\016\ufec1\001" +
+    "\224\001\002\000\006\013\uff1e\016\uff1e\001\002\000\006" +
+    "\013\uff14\016\uff14\001\002\000\020\004\ufeca\005\ufeca\012" +
+    "\ufeca\013\ufeca\142\ufeca\252\ufeca\340\ufeca\001\002\000\016" +
+    "\004\225\005\227\012\231\142\u015c\252\234\340\224\001" +
+    "\002\000\004\013\u0168\001\002\000\046\011\ufecf\012\u0167" +
+    "\013\ufecf\016\ufecf\021\273\022\274\156\ufecf\256\ufecf\337" +
+    "\ufecf\340\ufecf\341\ufecf\342\ufecf\343\ufecf\344\ufecf\345\ufecf" +
+    "\346\ufecf\347\ufecf\350\ufecf\001\002\000\006\013\ufec9\016" +
+    "\u0164\001\002\000\040\011\ufee2\013\ufec5\016\ufec5\156\ufee2" +
+    "\256\ufee2\337\ufee2\340\ufee2\341\ufee2\342\ufee2\343\ufee2\344" +
+    "\ufee2\345\ufee2\346\ufee2\347\ufee2\350\ufee2\001\002\000\004" +
+    "\013\u0163\001\002\000\010\013\ufecc\016\ufecc\017\ufecc\001" +
+    "\002\000\040\011\ufee3\013\ufec6\016\ufec6\156\ufee3\256\ufee3" +
+    "\337\ufee3\340\ufee3\341\ufee3\342\ufee3\343\ufee3\344\ufee3\345" +
+    "\ufee3\346\ufee3\347\ufee3\350\ufee3\001\002\000\006\013\ufec4" +
+    "\016\ufec4\001\002\000\010\013\ufecb\016\ufecb\017\ufecb\001" +
+    "\002\000\016\004\ufec7\005\ufec7\012\ufec7\142\ufec7\252\ufec7" +
+    "\340\ufec7\001\002\000\016\004\225\005\227\012\231\142" +
+    "\u015c\252\234\340\224\001\002\000\004\013\ufec8\001\002" +
+    "\000\020\004\ufeca\005\ufeca\012\ufeca\013\ufec1\142\ufeca\252" +
+    "\ufeca\340\ufeca\001\002\000\006\013\ufec3\016\ufec3\001\002" +
+    "\000\004\013\u016a\001\002\000\006\013\ufec2\016\ufec2\001" +
     "\002\000\016\004\225\005\227\012\231\142\226\252\234" +
-    "\340\224\001\002\000\036\011\243\013\ufee3\156\236\256" +
-    "\251\337\244\340\237\341\240\342\246\343\241\344\242" +
-    "\345\250\346\245\347\252\350\247\001\002\000\004\013" +
-    "\u016e\001\002\000\006\013\uff1a\016\uff1a\001\002\000\012" +
-    "\040\u0130\041\u0134\042\u012b\043\u0132\001\002\000\004\013" +
-    "\uff2b\001\002\000\012\013\uff30\015\uff30\016\uff30\211\uff30" +
-    "\001\002\000\006\131\uff19\142\uff19\001\002\000\012\040" +
-    "\uff37\041\uff37\042\uff37\043\uff37\001\002\000\012\040\uff31" +
-    "\041\uff31\042\uff31\043\uff31\001\002\000\012\040\uff2f\041" +
-    "\uff2f\042\uff2f\043\uff2f\001\002\000\004\013\u0177\001\002" +
-    "\000\012\013\uff2e\015\uff2e\016\uff2e\211\uff2e\001\002\000" +
-    "\004\013\u0179\001\002\000\012\013\uff34\015\uff34\016\uff34" +
-    "\211\uff34\001\002\000\012\040\uff33\041\uff33\042\uff33\043" +
-    "\uff33\001\002\000\004\013\u017c\001\002\000\012\013\uff38" +
-    "\015\uff38\016\uff38\211\uff38\001\002\000\036\011\243\025" +
-    "\u017e\156\236\256\251\337\244\340\237\341\240\342\246" +
-    "\343\241\344\242\345\250\346\245\347\252\350\247\001" +
+    "\340\224\001\002\000\036\011\244\013\ufee4\156\237\256" +
+    "\251\337\243\340\236\341\240\342\245\343\241\344\242" +
+    "\345\250\346\246\347\252\350\247\001\002\000\004\013" +
+    "\u016e\001\002\000\006\013\uff1b\016\uff1b\001\002\000\012" +
+    "\040\u0131\041\u0134\042\u012b\043\u0132\001\002\000\004\013" +
+    "\uff2c\001\002\000\012\013\uff31\015\uff31\016\uff31\211\uff31" +
+    "\001\002\000\006\131\uff1a\142\uff1a\001\002\000\012\040" +
+    "\uff38\041\uff38\042\uff38\043\uff38\001\002\000\012\040\uff32" +
+    "\041\uff32\042\uff32\043\uff32\001\002\000\012\040\uff30\041" +
+    "\uff30\042\uff30\043\uff30\001\002\000\004\013\u0177\001\002" +
+    "\000\012\013\uff2f\015\uff2f\016\uff2f\211\uff2f\001\002\000" +
+    "\004\013\u0179\001\002\000\012\013\uff35\015\uff35\016\uff35" +
+    "\211\uff35\001\002\000\012\040\uff34\041\uff34\042\uff34\043" +
+    "\uff34\001\002\000\004\013\u017c\001\002\000\012\013\uff39" +
+    "\015\uff39\016\uff39\211\uff39\001\002\000\036\011\244\025" +
+    "\u017e\156\237\256\251\337\243\340\236\341\240\342\245" +
+    "\343\241\344\242\345\250\346\246\347\252\350\247\001" +
     "\002\000\020\066\u0125\067\u0119\070\u0118\071\u011c\126\u0124" +
-    "\127\u0120\130\u0116\001\002\000\004\211\u0180\001\002\000" +
+    "\127\u0122\130\u0116\001\002\000\004\211\u0180\001\002\000" +
     "\004\065\u0181\001\002\000\004\012\u0182\001\002\000\006" +
-    "\004\u0184\040\u0183\001\002\000\004\023\u0186\001\002\000" +
-    "\004\013\u0185\001\002\000\010\013\uff43\015\uff43\016\uff43" +
-    "\001\002\000\004\004\u0187\001\002\000\004\013\u0188\001" +
-    "\002\000\010\013\uff42\015\uff42\016\uff42\001\002\000\012" +
-    "\040\uff35\041\uff35\042\uff35\043\uff35\001\002\000\004\013" +
-    "\u018b\001\002\000\012\013\uff36\015\uff36\016\uff36\211\uff36" +
-    "\001\002\000\012\040\uff2d\041\uff2d\042\uff2d\043\uff2d\001" +
-    "\002\000\004\013\u018e\001\002\000\012\013\uff32\015\uff32" +
-    "\016\uff32\211\uff32\001\002\000\004\017\u0190\001\002\000" +
-    "\006\015\uff47\146\uff47\001\002\000\004\013\u0192\001\002" +
+    "\004\u0183\040\u0184\001\002\000\004\013\u0188\001\002\000" +
+    "\004\023\u0185\001\002\000\004\004\u0186\001\002\000\004" +
+    "\013\u0187\001\002\000\010\013\uff43\015\uff43\016\uff43\001" +
+    "\002\000\010\013\uff44\015\uff44\016\uff44\001\002\000\012" +
+    "\040\uff36\041\uff36\042\uff36\043\uff36\001\002\000\004\013" +
+    "\u018b\001\002\000\012\013\uff37\015\uff37\016\uff37\211\uff37" +
+    "\001\002\000\012\040\uff2e\041\uff2e\042\uff2e\043\uff2e\001" +
+    "\002\000\004\013\u018e\001\002\000\012\013\uff33\015\uff33" +
+    "\016\uff33\211\uff33\001\002\000\004\017\u0190\001\002\000" +
+    "\006\015\uff48\146\uff48\001\002\000\004\013\u0192\001\002" +
     "\000\004\015\u0193\001\002\000\004\017\u0194\001\002\000" +
-    "\006\015\uff46\146\uff46\001\002\000\014\015\uff4f\213\uff4f" +
-    "\217\uff4f\311\uff4f\320\uff4f\001\002\000\004\172\u010b\001" +
-    "\002\000\004\015\u0198\001\002\000\014\015\uff5b\213\uff5b" +
-    "\217\uff5b\311\uff5b\320\uff5b\001\002\000\014\015\uff51\213" +
-    "\uff51\217\uff51\311\uff51\320\uff51\001\002\000\006\015\u019c" +
+    "\006\015\uff47\146\uff47\001\002\000\014\015\uff50\213\uff50" +
+    "\217\uff50\311\uff50\320\uff50\001\002\000\004\172\u010b\001" +
+    "\002\000\004\015\u0198\001\002\000\014\015\uff5c\213\uff5c" +
+    "\217\uff5c\311\uff5c\320\uff5c\001\002\000\014\015\uff52\213" +
+    "\uff52\217\uff52\311\uff52\320\uff52\001\002\000\006\015\u019c" +
     "\172\u010b\001\002\000\004\015\u019d\001\002\000\014\015" +
-    "\uff52\213\uff52\217\uff52\311\uff52\320\uff52\001\002\000\014" +
-    "\015\uff53\213\uff53\217\uff53\311\uff53\320\uff53\001\002\000" +
-    "\004\020\u019f\001\002\000\026\105\u01a2\110\u01a4\111\u01a1" +
-    "\112\u01a3\113\u01a7\114\u01a9\115\u01a5\123\u01a6\124\u01a0\125" +
-    "\u01a8\001\002\000\006\014\uff50\017\uff50\001\002\000\006" +
-    "\014\uff64\017\uff64\001\002\000\006\014\uff6f\017\uff6f\001" +
-    "\002\000\004\014\uff60\001\002\000\006\014\uff68\017\uff68" +
-    "\001\002\000\004\014\uff58\001\002\000\006\014\uff54\017" +
-    "\uff54\001\002\000\004\014\uff5c\001\002\000\006\014\uff4c" +
-    "\017\uff4c\001\002\000\004\014\uff5a\001\002\000\004\142" +
+    "\uff53\213\uff53\217\uff53\311\uff53\320\uff53\001\002\000\014" +
+    "\015\uff54\213\uff54\217\uff54\311\uff54\320\uff54\001\002\000" +
+    "\004\020\u019f\001\002\000\026\105\u01a2\110\u01a3\111\u01a1" +
+    "\112\u01a4\113\u01a7\114\u01a9\115\u01a5\123\u01a6\124\u01a0\125" +
+    "\u01a8\001\002\000\006\014\uff51\017\uff51\001\002\000\006" +
+    "\014\uff65\017\uff65\001\002\000\006\014\uff70\017\uff70\001" +
+    "\002\000\006\014\uff69\017\uff69\001\002\000\004\014\uff61" +
+    "\001\002\000\004\014\uff59\001\002\000\006\014\uff55\017" +
+    "\uff55\001\002\000\004\014\uff5d\001\002\000\006\014\uff4d" +
+    "\017\uff4d\001\002\000\004\014\uff5b\001\002\000\004\142" +
     "\u01ab\001\002\000\004\020\u01ac\001\002\000\004\107\u01ad" +
-    "\001\002\000\006\014\uff73\017\uff73\001\002\000\004\015" +
-    "\uff85\001\002\000\004\172\u010b\001\002\000\004\015\u01b1" +
-    "\001\002\000\014\015\uff59\213\uff59\217\uff59\311\uff59\320" +
-    "\uff59\001\002\000\014\015\uff6e\213\uff6e\217\uff6e\311\uff6e" +
-    "\320\uff6e\001\002\000\004\106\u01b4\001\002\000\004\014" +
-    "\u01b5\001\002\000\004\015\u01b6\001\002\000\014\015\uff6d" +
-    "\213\uff6d\217\uff6d\311\uff6d\320\uff6d\001\002\000\014\015" +
-    "\uff6b\213\uff6b\217\uff6b\311\uff6b\320\uff6b\001\002\000\006" +
+    "\001\002\000\006\014\uff74\017\uff74\001\002\000\004\015" +
+    "\uff86\001\002\000\014\015\uff6f\213\uff6f\217\uff6f\311\uff6f" +
+    "\320\uff6f\001\002\000\004\106\u01b1\001\002\000\004\014" +
+    "\u01b2\001\002\000\004\015\u01b3\001\002\000\014\015\uff6e" +
+    "\213\uff6e\217\uff6e\311\uff6e\320\uff6e\001\002\000\004\172" +
+    "\u010b\001\002\000\004\015\u01b6\001\002\000\014\015\uff5a" +
+    "\213\uff5a\217\uff5a\311\uff5a\320\uff5a\001\002\000\014\015" +
+    "\uff6c\213\uff6c\217\uff6c\311\uff6c\320\uff6c\001\002\000\006" +
     "\015\u01ba\172\u010b\001\002\000\004\015\u01bb\001\002\000" +
-    "\014\015\uff6a\213\uff6a\217\uff6a\311\uff6a\320\uff6a\001\002" +
-    "\000\014\015\uff69\213\uff69\217\uff69\311\uff69\320\uff69\001" +
-    "\002\000\020\015\uff8a\146\uff8a\165\uff8a\172\uff8a\216\uff8a" +
-    "\263\uff8a\271\uff8a\001\002\000\014\015\uff55\213\uff55\217" +
-    "\uff55\311\uff55\320\uff55\001\002\000\006\015\u01c0\172\u010b" +
-    "\001\002\000\004\015\u01c1\001\002\000\014\015\uff56\213" +
-    "\uff56\217\uff56\311\uff56\320\uff56\001\002\000\014\015\uff57" +
-    "\213\uff57\217\uff57\311\uff57\320\uff57\001\002\000\014\015" +
-    "\uff72\213\uff72\217\uff72\311\uff72\320\uff72\001\002\000\006" +
-    "\015\u01c4\172\u01c6\001\002\000\014\015\uff71\213\uff71\217" +
-    "\uff71\311\uff71\320\uff71\001\002\000\004\015\u01dd\001\002" +
+    "\014\015\uff6b\213\uff6b\217\uff6b\311\uff6b\320\uff6b\001\002" +
+    "\000\014\015\uff6a\213\uff6a\217\uff6a\311\uff6a\320\uff6a\001" +
+    "\002\000\020\015\uff8b\146\uff8b\165\uff8b\172\uff8b\216\uff8b" +
+    "\263\uff8b\271\uff8b\001\002\000\014\015\uff56\213\uff56\217" +
+    "\uff56\311\uff56\320\uff56\001\002\000\006\015\u01c0\172\u010b" +
+    "\001\002\000\004\015\u01c1\001\002\000\014\015\uff57\213" +
+    "\uff57\217\uff57\311\uff57\320\uff57\001\002\000\014\015\uff58" +
+    "\213\uff58\217\uff58\311\uff58\320\uff58\001\002\000\014\015" +
+    "\uff73\213\uff73\217\uff73\311\uff73\320\uff73\001\002\000\006" +
+    "\015\u01c4\172\u01c6\001\002\000\014\015\uff72\213\uff72\217" +
+    "\uff72\311\uff72\320\uff72\001\002\000\004\015\u01dd\001\002" +
     "\000\004\035\u01c7\001\002\000\004\272\u01c8\001\002\000" +
     "\004\035\u01c9\001\002\000\004\023\u01ca\001\002\000\004" +
-    "\014\u01cb\001\002\000\026\012\u01cc\066\uff40\067\uff40\070" +
-    "\uff40\071\uff40\126\uff40\127\uff40\130\uff40\231\uff40\336\u01ce" +
-    "\001\002\000\024\013\u01d5\066\uff40\067\uff40\070\uff40\071" +
-    "\uff40\126\uff40\127\uff40\130\uff40\231\uff40\001\002\000\004" +
+    "\014\u01cb\001\002\000\026\012\u01cc\066\uff41\067\uff41\070" +
+    "\uff41\071\uff41\126\uff41\127\uff41\130\uff41\231\uff41\336\u01ce" +
+    "\001\002\000\024\013\u01d5\066\uff41\067\uff41\070\uff41\071" +
+    "\uff41\126\uff41\127\uff41\130\uff41\231\uff41\001\002\000\004" +
     "\015\u01d1\001\002\000\004\015\u01cf\001\002\000\004\017" +
-    "\u01d0\001\002\000\004\015\uff4a\001\002\000\004\017\u01d2" +
-    "\001\002\000\004\015\uff48\001\002\000\004\013\u01da\001" +
-    "\002\000\006\013\uff45\016\u01d8\001\002\000\004\015\u01d6" +
-    "\001\002\000\004\017\u01d7\001\002\000\004\015\uff4b\001" +
-    "\002\000\022\066\uff40\067\uff40\070\uff40\071\uff40\126\uff40" +
-    "\127\uff40\130\uff40\231\uff40\001\002\000\004\013\uff44\001" +
+    "\u01d0\001\002\000\004\015\uff4b\001\002\000\004\017\u01d2" +
+    "\001\002\000\004\015\uff49\001\002\000\004\013\u01da\001" +
+    "\002\000\006\013\uff46\016\u01d8\001\002\000\004\015\u01d6" +
+    "\001\002\000\004\017\u01d7\001\002\000\004\015\uff4c\001" +
+    "\002\000\022\066\uff41\067\uff41\070\uff41\071\uff41\126\uff41" +
+    "\127\uff41\130\uff41\231\uff41\001\002\000\004\013\uff45\001" +
     "\002\000\004\015\u01db\001\002\000\004\017\u01dc\001\002" +
-    "\000\004\015\uff49\001\002\000\014\015\uff70\213\uff70\217" +
-    "\uff70\311\uff70\320\uff70\001\002\000\004\146\u0248\001\002" +
+    "\000\004\015\uff4a\001\002\000\014\015\uff71\213\uff71\217" +
+    "\uff71\311\uff71\320\uff71\001\002\000\004\146\u0248\001\002" +
     "\000\004\014\u0224\001\002\000\004\142\u021f\001\002\000" +
     "\004\014\u0205\001\002\000\004\315\u01e3\001\002\000\004" +
     "\142\u01e4\001\002\000\006\014\u01e6\017\u01e5\001\002\000" +
-    "\014\015\uff09\213\uff09\217\uff09\311\uff09\320\uff09\001\002" +
+    "\014\015\uff0a\213\uff0a\217\uff0a\311\uff0a\320\uff0a\001\002" +
     "\000\004\165\u01e8\001\002\000\004\017\u0203\001\002\000" +
     "\012\007\u01f1\140\u01ee\141\u01ef\142\u01f0\001\002\000\004" +
     "\015\u01ed\001\002\000\004\017\ufeed\001\002\000\004\017" +
-    "\ufeec\001\002\000\004\017\ufeee\001\002\000\014\015\uff07" +
-    "\213\uff07\217\uff07\311\uff07\320\uff07\001\002\000\004\020" +
+    "\ufeee\001\002\000\004\017\ufeef\001\002\000\014\015\uff08" +
+    "\213\uff08\217\uff08\311\uff08\320\uff08\001\002\000\004\020" +
     "\u01ff\001\002\000\004\020\u01fa\001\002\000\004\020\u01f6" +
     "\001\002\000\004\020\u01f2\001\002\000\004\077\u01f3\001" +
     "\002\000\004\023\u01f4\001\002\000\004\006\u01f5\001\002" +
-    "\000\004\017\ufee8\001\002\000\004\077\u01f7\001\002\000" +
+    "\000\004\017\ufee9\001\002\000\004\077\u01f7\001\002\000" +
     "\004\023\u01f8\001\002\000\004\006\u01f9\001\002\000\004" +
-    "\017\ufee7\001\002\000\004\100\u01fb\001\002\000\004\023" +
+    "\017\ufee8\001\002\000\004\100\u01fb\001\002\000\004\023" +
     "\u01fc\001\002\000\006\004\u01fe\010\u01fd\001\002\000\004" +
-    "\017\ufeea\001\002\000\004\017\ufee9\001\002\000\004\077" +
+    "\017\ufeeb\001\002\000\004\017\ufeea\001\002\000\004\077" +
     "\u0200\001\002\000\004\023\u0201\001\002\000\004\006\u0202" +
-    "\001\002\000\004\017\ufeeb\001\002\000\006\015\ufef0\165" +
-    "\u01e8\001\002\000\004\015\ufeef\001\002\000\006\015\u0207" +
+    "\001\002\000\004\017\ufeec\001\002\000\006\015\ufef1\165" +
+    "\u01e8\001\002\000\004\015\ufef0\001\002\000\006\015\u0207" +
     "\222\u0208\001\002\000\004\015\u021e\001\002\000\004\315" +
-    "\uff04\001\002\000\004\046\u0209\001\002\000\004\017\u020a" +
+    "\uff05\001\002\000\004\046\u0209\001\002\000\004\017\u020a" +
     "\001\002\000\004\315\u020b\001\002\000\010\047\u020d\146" +
-    "\u020f\161\u0210\001\002\000\004\015\ufefd\001\002\000\004" +
+    "\u020f\161\u0210\001\002\000\004\015\ufefe\001\002\000\004" +
     "\017\u021d\001\002\000\004\315\u0219\001\002\000\004\023" +
-    "\u0215\001\002\000\004\142\uff0f\001\002\000\004\024\u0212" +
+    "\u0215\001\002\000\004\142\uff10\001\002\000\004\024\u0212" +
     "\001\002\000\016\004\225\005\227\012\231\142\u014f\252" +
     "\234\340\224\001\002\000\004\017\u0214\001\002\000\004" +
-    "\315\ufefa\001\002\000\004\142\u0216\001\002\000\004\012" +
-    "\u0159\001\002\000\004\017\u0218\001\002\000\004\315\ufef9" +
+    "\315\ufefb\001\002\000\004\142\u0216\001\002\000\004\012" +
+    "\u0159\001\002\000\004\017\u0218\001\002\000\004\315\ufefa" +
     "\001\002\000\010\047\u021b\146\u020f\161\u0210\001\002\000" +
-    "\004\015\ufefb\001\002\000\004\017\u021c\001\002\000\004" +
-    "\015\ufefc\001\002\000\004\015\ufefe\001\002\000\004\315" +
-    "\uff03\001\002\000\006\014\u0221\017\u0220\001\002\000\014" +
-    "\015\uff0a\213\uff0a\217\uff0a\311\uff0a\320\uff0a\001\002\000" +
+    "\004\015\ufefc\001\002\000\004\017\u021c\001\002\000\004" +
+    "\015\ufefd\001\002\000\004\015\ufeff\001\002\000\004\315" +
+    "\uff04\001\002\000\006\014\u0221\017\u0220\001\002\000\014" +
+    "\015\uff0b\213\uff0b\217\uff0b\311\uff0b\320\uff0b\001\002\000" +
     "\004\165\u01e8\001\002\000\004\015\u0223\001\002\000\014" +
-    "\015\uff08\213\uff08\217\uff08\311\uff08\320\uff08\001\002\000" +
-    "\010\015\u0228\222\u022a\242\u0225\001\002\000\004\072\u0240" +
-    "\001\002\000\004\222\u022a\001\002\000\004\242\u0225\001" +
-    "\002\000\004\315\uff02\001\002\000\004\015\u023d\001\002" +
-    "\000\004\046\u022b\001\002\000\004\017\u022c\001\002\000" +
-    "\004\315\u022d\001\002\000\006\047\u023b\161\u0233\001\002" +
-    "\000\004\315\u0230\001\002\000\006\015\ufef4\242\ufef4\001" +
-    "\002\000\006\047\u0232\161\u0233\001\002\000\006\015\ufef2" +
-    "\242\ufef2\001\002\000\004\017\u023a\001\002\000\004\142" +
-    "\uff0f\001\002\000\004\024\u0235\001\002\000\004\072\u0236" +
-    "\001\002\000\004\021\u0237\001\002\000\004\142\u0238\001" +
-    "\002\000\004\017\u0239\001\002\000\004\315\ufef1\001\002" +
-    "\000\006\015\ufef3\242\ufef3\001\002\000\004\017\u023c\001" +
-    "\002\000\006\015\ufef5\242\ufef5\001\002\000\004\315\uff01" +
-    "\001\002\000\004\015\ufef7\001\002\000\004\015\ufef8\001" +
-    "\002\000\004\020\u0241\001\002\000\004\142\u0242\001\002" +
-    "\000\004\023\u0243\001\002\000\004\042\u0244\001\002\000" +
-    "\004\157\u0245\001\002\000\004\142\u0246\001\002\000\004" +
-    "\017\u0247\001\002\000\006\015\ufef6\222\ufef6\001\002\000" +
+    "\015\uff09\213\uff09\217\uff09\311\uff09\320\uff09\001\002\000" +
+    "\010\015\u0228\222\u0229\242\u0226\001\002\000\004\222\u0229" +
+    "\001\002\000\004\072\u023f\001\002\000\004\242\u0226\001" +
+    "\002\000\004\315\uff03\001\002\000\004\046\u022c\001\002" +
+    "\000\004\015\u022b\001\002\000\004\315\uff02\001\002\000" +
+    "\004\017\u022d\001\002\000\004\315\u022e\001\002\000\006" +
+    "\047\u023c\161\u0234\001\002\000\004\315\u0231\001\002\000" +
+    "\006\015\ufef5\242\ufef5\001\002\000\006\047\u0233\161\u0234" +
+    "\001\002\000\006\015\ufef3\242\ufef3\001\002\000\004\017" +
+    "\u023b\001\002\000\004\142\uff10\001\002\000\004\024\u0236" +
+    "\001\002\000\004\072\u0237\001\002\000\004\021\u0238\001" +
+    "\002\000\004\142\u0239\001\002\000\004\017\u023a\001\002" +
+    "\000\004\315\ufef2\001\002\000\006\015\ufef4\242\ufef4\001" +
+    "\002\000\004\017\u023d\001\002\000\006\015\ufef6\242\ufef6" +
+    "\001\002\000\004\015\ufef8\001\002\000\004\020\u0240\001" +
+    "\002\000\004\142\u0241\001\002\000\004\023\u0242\001\002" +
+    "\000\004\042\u0243\001\002\000\004\157\u0244\001\002\000" +
+    "\004\142\u0245\001\002\000\004\017\u0246\001\002\000\006" +
+    "\015\ufef7\222\ufef7\001\002\000\004\015\ufef9\001\002\000" +
     "\004\020\u0249\001\002\000\006\120\u024a\121\u024b\001\002" +
-    "\000\004\014\ufeff\001\002\000\004\014\uff00\001\002\000" +
-    "\014\015\uff67\213\uff67\217\uff67\311\uff67\320\uff67\001\002" +
+    "\000\004\014\uff00\001\002\000\004\014\uff01\001\002\000" +
+    "\014\015\uff68\213\uff68\217\uff68\311\uff68\320\uff68\001\002" +
     "\000\006\015\u024f\172\u010b\001\002\000\004\015\u0250\001" +
-    "\002\000\014\015\uff66\213\uff66\217\uff66\311\uff66\320\uff66" +
-    "\001\002\000\014\015\uff65\213\uff65\217\uff65\311\uff65\320" +
-    "\uff65\001\002\000\006\146\u0252\172\u010b\001\002\000\004" +
+    "\002\000\014\015\uff67\213\uff67\217\uff67\311\uff67\320\uff67" +
+    "\001\002\000\014\015\uff66\213\uff66\217\uff66\311\uff66\320" +
+    "\uff66\001\002\000\006\146\u0252\172\u010b\001\002\000\004" +
     "\037\u025a\001\002\000\004\146\u0252\001\002\000\006\015" +
     "\u0256\172\u010b\001\002\000\004\015\u0257\001\002\000\014" +
-    "\015\uff61\213\uff61\217\uff61\311\uff61\320\uff61\001\002\000" +
-    "\014\015\uff63\213\uff63\217\uff63\311\uff63\320\uff63\001\002" +
-    "\000\004\015\u0259\001\002\000\014\015\uff62\213\uff62\217" +
-    "\uff62\311\uff62\320\uff62\001\002\000\004\272\u025b\001\002" +
+    "\015\uff62\213\uff62\217\uff62\311\uff62\320\uff62\001\002\000" +
+    "\014\015\uff64\213\uff64\217\uff64\311\uff64\320\uff64\001\002" +
+    "\000\004\015\u0259\001\002\000\014\015\uff63\213\uff63\217" +
+    "\uff63\311\uff63\320\uff63\001\002\000\004\272\u025b\001\002" +
     "\000\004\037\u025c\001\002\000\004\014\u025d\001\002\000" +
     "\004\222\u025f\001\002\000\004\015\u0270\001\002\000\004" +
     "\046\u0260\001\002\000\004\017\u0261\001\002\000\004\315" +
-    "\u0262\001\002\000\004\161\u0263\001\002\000\004\142\uff0f" +
+    "\u0262\001\002\000\004\161\u0263\001\002\000\004\142\uff10" +
     "\001\002\000\004\024\u0265\001\002\000\004\074\u0266\001" +
     "\002\000\004\012\u0267\001\002\000\016\004\225\005\227" +
     "\012\231\142\226\252\234\340\224\001\002\000\036\011" +
-    "\243\016\u0269\156\236\256\251\337\244\340\237\341\240" +
-    "\342\246\343\241\344\242\345\250\346\245\347\252\350" +
+    "\244\016\u0269\156\237\256\251\337\243\340\236\341\240" +
+    "\342\245\343\241\344\242\345\250\346\246\347\252\350" +
     "\247\001\002\000\016\004\225\005\227\012\231\142\226" +
-    "\252\234\340\224\001\002\000\036\011\243\013\u026b\156" +
-    "\236\256\251\337\244\340\237\341\240\342\246\343\241" +
-    "\344\242\345\250\346\245\347\252\350\247\001\002\000" +
+    "\252\234\340\224\001\002\000\036\011\244\013\u026b\156" +
+    "\237\256\251\337\243\340\236\341\240\342\245\343\241" +
+    "\344\242\345\250\346\246\347\252\350\247\001\002\000" +
     "\004\017\u026c\001\002\000\004\315\u026d\001\002\000\004" +
     "\047\u026e\001\002\000\004\017\u026f\001\002\000\004\015" +
-    "\uff0d\001\002\000\006\015\uff0e\172\uff0e\001\002\000\014" +
-    "\015\uff76\213\uff76\217\uff76\311\uff76\320\uff76\001\002\000" +
+    "\uff0e\001\002\000\006\015\uff0f\172\uff0f\001\002\000\014" +
+    "\015\uff77\213\uff77\217\uff77\311\uff77\320\uff77\001\002\000" +
     "\006\015\u0274\172\u010b\001\002\000\004\015\u0275\001\002" +
-    "\000\014\015\uff75\213\uff75\217\uff75\311\uff75\320\uff75\001" +
-    "\002\000\014\015\uff74\213\uff74\217\uff74\311\uff74\320\uff74" +
-    "\001\002\000\006\146\u0277\172\u010b\001\002\000\004\037" +
-    "\u027f\001\002\000\006\015\u027d\172\u010b\001\002\000\004" +
-    "\146\u0277\001\002\000\004\015\u027b\001\002\000\014\015" +
-    "\uff5e\213\uff5e\217\uff5e\311\uff5e\320\uff5e\001\002\000\004" +
-    "\015\u027e\001\002\000\014\015\uff5f\213\uff5f\217\uff5f\311" +
-    "\uff5f\320\uff5f\001\002\000\014\015\uff5d\213\uff5d\217\uff5d" +
-    "\311\uff5d\320\uff5d\001\002\000\004\272\u0280\001\002\000" +
-    "\004\037\u0281\001\002\000\004\014\u0282\001\002\000\004" +
-    "\222\u0284\001\002\000\004\015\u0294\001\002\000\004\046" +
-    "\u0285\001\002\000\004\017\u0286\001\002\000\004\315\u0287" +
-    "\001\002\000\004\161\u0288\001\002\000\004\142\uff0f\001" +
-    "\002\000\004\024\u028a\001\002\000\004\142\u028b\001\002" +
-    "\000\004\021\u028c\001\002\000\004\045\u028d\001\002\000" +
-    "\004\012\u028e\001\002\000\004\013\u028f\001\002\000\004" +
-    "\017\u0290\001\002\000\004\315\u0291\001\002\000\004\047" +
-    "\u0292\001\002\000\004\017\u0293\001\002\000\004\015\uff0b" +
-    "\001\002\000\006\015\uff0c\172\uff0c\001\002\000\004\142" +
+    "\000\014\015\uff76\213\uff76\217\uff76\311\uff76\320\uff76\001" +
+    "\002\000\014\015\uff75\213\uff75\217\uff75\311\uff75\320\uff75" +
+    "\001\002\000\006\146\u0278\172\u010b\001\002\000\006\015" +
+    "\u0293\172\u010b\001\002\000\004\037\u027c\001\002\000\004" +
+    "\146\u0278\001\002\000\004\015\u027b\001\002\000\014\015" +
+    "\uff5f\213\uff5f\217\uff5f\311\uff5f\320\uff5f\001\002\000\004" +
+    "\272\u027d\001\002\000\004\037\u027e\001\002\000\004\014" +
+    "\u027f\001\002\000\004\222\u0281\001\002\000\004\015\u0291" +
+    "\001\002\000\004\046\u0282\001\002\000\004\017\u0283\001" +
+    "\002\000\004\315\u0284\001\002\000\004\161\u0285\001\002" +
+    "\000\004\142\uff10\001\002\000\004\024\u0287\001\002\000" +
+    "\004\142\u0288\001\002\000\004\021\u0289\001\002\000\004" +
+    "\045\u028a\001\002\000\004\012\u028b\001\002\000\004\013" +
+    "\u028c\001\002\000\004\017\u028d\001\002\000\004\315\u028e" +
+    "\001\002\000\004\047\u028f\001\002\000\004\017\u0290\001" +
+    "\002\000\004\015\uff0c\001\002\000\006\015\uff0d\172\uff0d" +
+    "\001\002\000\004\015\u0294\001\002\000\014\015\uff60\213" +
+    "\uff60\217\uff60\311\uff60\320\uff60\001\002\000\014\015\uff5e" +
+    "\213\uff5e\217\uff5e\311\uff5e\320\uff5e\001\002\000\004\142" +
     "\u0296\001\002\000\004\020\u0297\001\002\000\004\106\u0298" +
-    "\001\002\000\006\017\uff6c\023\uff6c\001\002\000\004\020" +
-    "\u029a\001\002\000\004\103\u029b\001\002\000\006\014\uff95" +
-    "\017\uff95\001\002\000\026\015\uffaa\146\uffaa\165\uffaa\167" +
-    "\uffaa\172\uffaa\216\uffaa\263\uffaa\266\uffaa\270\uffaa\271\uffaa" +
-    "\001\002\000\026\015\uffa9\146\uffa9\165\uffa9\167\uffa9\172" +
-    "\uffa9\216\uffa9\263\uffa9\266\uffa9\270\uffa9\271\uffa9\001\002" +
-    "\000\010\015\u02a2\165\310\302\u02a0\001\002\000\004\015" +
-    "\u02a8\001\002\000\004\020\u02a5\001\002\000\010\015\uff91" +
-    "\165\310\302\u02a0\001\002\000\020\015\uff94\146\uff94\165" +
-    "\uff94\172\uff94\216\uff94\263\uff94\271\uff94\001\002\000\010" +
-    "\015\uff8f\165\uff8f\302\uff8f\001\002\000\004\015\uff90\001" +
+    "\001\002\000\006\017\uff6d\023\uff6d\001\002\000\004\020" +
+    "\u029a\001\002\000\004\103\u029b\001\002\000\006\014\uff96" +
+    "\017\uff96\001\002\000\026\015\uffab\146\uffab\165\uffab\167" +
+    "\uffab\172\uffab\216\uffab\263\uffab\266\uffab\270\uffab\271\uffab" +
+    "\001\002\000\026\015\uffaa\146\uffaa\165\uffaa\167\uffaa\172" +
+    "\uffaa\216\uffaa\263\uffaa\266\uffaa\270\uffaa\271\uffaa\001\002" +
+    "\000\010\015\u02a1\165\310\302\u02a0\001\002\000\004\015" +
+    "\u02a8\001\002\000\004\020\u02a5\001\002\000\020\015\uff95" +
+    "\146\uff95\165\uff95\172\uff95\216\uff95\263\uff95\271\uff95\001" +
+    "\002\000\010\015\uff92\165\310\302\u02a0\001\002\000\010" +
+    "\015\uff90\165\uff90\302\uff90\001\002\000\004\015\uff91\001" +
     "\002\000\010\075\331\076\330\142\327\001\002\000\004" +
-    "\017\u02a7\001\002\000\010\015\uff8e\165\uff8e\302\uff8e\001" +
-    "\002\000\020\015\uff93\146\uff93\165\uff93\172\uff93\216\uff93" +
-    "\263\uff93\271\uff93\001\002\000\004\020\u02aa\001\002\000" +
-    "\004\104\u02ab\001\002\000\004\014\uff92\001\002\000\004" +
-    "\024\u02b1\001\002\000\020\015\uffa1\146\uffa1\165\uffa1\172" +
-    "\uffa1\216\uffa1\263\uffa1\271\uffa1\001\002\000\016\004\225" +
-    "\005\227\012\231\142\226\252\234\340\224\001\002\000" +
-    "\036\011\243\017\u02b0\156\236\256\251\337\244\340\237" +
-    "\341\240\342\246\343\241\344\242\345\250\346\245\347" +
-    "\252\350\247\001\002\000\020\015\uffa0\146\uffa0\165\uffa0" +
-    "\172\uffa0\216\uffa0\263\uffa0\271\uffa0\001\002\000\016\004" +
+    "\017\u02a7\001\002\000\010\015\uff8f\165\uff8f\302\uff8f\001" +
+    "\002\000\020\015\uff94\146\uff94\165\uff94\172\uff94\216\uff94" +
+    "\263\uff94\271\uff94\001\002\000\004\020\u02aa\001\002\000" +
+    "\004\104\u02ab\001\002\000\004\014\uff93\001\002\000\004" +
+    "\024\u02b1\001\002\000\016\004\225\005\227\012\231\142" +
+    "\226\252\234\340\224\001\002\000\020\015\uffa2\146\uffa2" +
+    "\165\uffa2\172\uffa2\216\uffa2\263\uffa2\271\uffa2\001\002\000" +
+    "\036\011\244\017\u02b0\156\237\256\251\337\243\340\236" +
+    "\341\240\342\245\343\241\344\242\345\250\346\246\347" +
+    "\252\350\247\001\002\000\020\015\uffa1\146\uffa1\165\uffa1" +
+    "\172\uffa1\216\uffa1\263\uffa1\271\uffa1\001\002\000\016\004" +
     "\225\005\227\012\231\142\226\252\234\340\224\001\002" +
-    "\000\036\011\243\017\u02b3\156\236\256\251\337\244\340" +
-    "\237\341\240\342\246\343\241\344\242\345\250\346\245" +
-    "\347\252\350\247\001\002\000\020\015\uff9f\146\uff9f\165" +
-    "\uff9f\172\uff9f\216\uff9f\263\uff9f\271\uff9f\001\002\000\004" +
+    "\000\036\011\244\017\u02b3\156\237\256\251\337\243\340" +
+    "\236\341\240\342\245\343\241\344\242\345\250\346\246" +
+    "\347\252\350\247\001\002\000\020\015\uffa0\146\uffa0\165" +
+    "\uffa0\172\uffa0\216\uffa0\263\uffa0\271\uffa0\001\002\000\004" +
     "\020\u02b5\001\002\000\010\075\331\076\330\142\327\001" +
-    "\002\000\010\017\uff9e\024\uff9e\203\uff9e\001\002\000\004" +
+    "\002\000\010\017\uff9f\024\uff9f\203\uff9f\001\002\000\004" +
     "\142\u02b8\001\002\000\004\020\u02b9\001\002\000\010\075" +
-    "\331\076\330\142\327\001\002\000\006\017\uff9b\024\uff9b" +
+    "\331\076\330\142\327\001\002\000\006\017\uff9c\024\uff9c" +
     "\001\002\000\004\122\u02bc\001\002\000\004\020\u02bd\001" +
-    "\002\000\004\117\u02be\001\002\000\006\014\uff87\017\uff87" +
+    "\002\000\004\117\u02be\001\002\000\006\014\uff88\017\uff88" +
     "\001\002\000\006\063\u02c1\064\u02c0\001\002\000\004\166" +
     "\u02ce\001\002\000\004\166\u02c2\001\002\000\004\142\u02c3" +
     "\001\002\000\006\021\u02c4\023\u02c5\001\002\000\004\142" +
@@ -755,54 +754,52 @@ public class AvatarFromSysMLParser extends java_cup.runtime.lr_parser {
     "\001\002\000\006\015\u02dc\165\310\001\002\000\004\015" +
     "\u02dd\001\002\000\016\015\uffe8\165\uffe8\167\uffe8\263\uffe8" +
     "\266\uffe8\270\uffe8\001\002\000\016\015\uffe9\165\uffe9\167" +
-    "\uffe9\263\uffe9\266\uffe9\270\uffe9\001\002\000\004\266\u02e1" +
+    "\uffe9\263\uffe9\266\uffe9\270\uffe9\001\002\000\004\263\u02e1" +
     "\001\002\000\016\015\uffbc\165\uffbc\167\uffbc\263\uffbc\266" +
-    "\uffbc\270\uffbc\001\002\000\006\015\u02ed\165\310\001\002" +
-    "\000\004\263\u02e2\001\002\000\004\043\u02e3\001\002\000" +
-    "\006\020\u02e5\023\u02e4\001\002\000\004\142\u02ea\001\002" +
-    "\000\004\056\u02e6\001\002\000\004\023\u02e7\001\002\000" +
-    "\004\142\u02e8\001\002\000\004\017\u02e9\001\002\000\006" +
-    "\015\uffb7\165\uffb7\001\002\000\004\017\u02eb\001\002\000" +
-    "\006\015\uffb6\165\uffb6\001\002\000\004\015\u02ee\001\002" +
-    "\000\016\015\uffba\165\uffba\167\uffba\263\uffba\266\uffba\270" +
-    "\uffba\001\002\000\016\015\uffb9\165\uffb9\167\uffb9\263\uffb9" +
-    "\266\uffb9\270\uffb9\001\002\000\004\015\u02f0\001\002\000" +
-    "\016\015\uffb8\165\uffb8\167\uffb8\263\uffb8\266\uffb8\270\uffb8" +
-    "\001\002\000\016\015\uffb5\165\uffb5\167\uffb5\263\uffb5\266" +
-    "\uffb5\270\uffb5\001\002\000\006\015\u02f5\165\u02f3\001\002" +
-    "\000\004\142\u02f9\001\002\000\016\015\uffb3\165\uffb3\167" +
-    "\uffb3\263\uffb3\266\uffb3\270\uffb3\001\002\000\016\015\uffb4" +
-    "\165\uffb4\167\uffb4\263\uffb4\266\uffb4\270\uffb4\001\002\000" +
-    "\006\015\u02f8\165\u02f3\001\002\000\016\015\uffaf\165\uffaf" +
-    "\167\uffaf\263\uffaf\266\uffaf\270\uffaf\001\002\000\016\015" +
-    "\uffb0\165\uffb0\167\uffb0\263\uffb0\266\uffb0\270\uffb0\001\002" +
-    "\000\004\272\u02fa\001\002\000\004\142\u02fb\001\002\000" +
-    "\004\017\u02fc\001\002\000\006\015\uffae\165\uffae\001\002" +
-    "\000\006\013\uffd2\016\uffd2\001\002\000\004\023\u0315\001" +
-    "\002\000\004\023\u0313\001\002\000\006\013\uffd3\016\uffd3" +
-    "\001\002\000\004\013\u0311\001\002\000\006\013\uffd0\016" +
-    "\uffd0\001\002\000\006\013\uffd6\016\u030f\001\002\000\006" +
-    "\013\uffd1\016\uffd1\001\002\000\004\023\u030d\001\002\000" +
-    "\004\023\u030b\001\002\000\006\013\uffd4\016\uffd4\001\002" +
-    "\000\004\023\u0309\001\002\000\004\004\u030a\001\002\000" +
-    "\006\013\uffcc\016\uffcc\001\002\000\004\142\u030c\001\002" +
-    "\000\006\013\uffcf\016\uffcf\001\002\000\004\005\u030e\001" +
-    "\002\000\006\013\uffcb\016\uffcb\001\002\000\014\026\u0305" +
-    "\027\u0308\030\u02ff\033\u0306\034\u02fe\001\002\000\004\013" +
-    "\uffd5\001\002\000\004\017\u0312\001\002\000\016\015\uffdc" +
-    "\165\uffdc\167\uffdc\263\uffdc\266\uffdc\270\uffdc\001\002\000" +
-    "\004\005\u0314\001\002\000\006\013\uffcd\016\uffcd\001\002" +
-    "\000\004\142\u0316\001\002\000\006\013\uffce\016\uffce\001" +
-    "\002\000\016\015\ufffb\165\ufffb\167\ufffb\263\ufffb\266\ufffb" +
-    "\270\ufffb\001\002\000\004\013\u0319\001\002\000\004\017" +
-    "\u031a\001\002\000\016\015\uffd8\165\uffd8\167\uffd8\263\uffd8" +
-    "\266\uffd8\270\uffd8\001\002\000\004\015\ufffd\001\002\000" +
-    "\004\142\u031d\001\002\000\006\307\137\335\141\001\002" +
-    "\000\004\101\u031f\001\002\000\004\014\uffe7\001\002\000" +
-    "\004\013\u0321\001\002\000\004\017\u0322\001\002\000\016" +
-    "\015\uffda\165\uffda\167\uffda\263\uffda\266\uffda\270\uffda\001" +
-    "\002\000\016\015\ufffc\165\ufffc\167\ufffc\263\ufffc\266\ufffc" +
-    "\270\ufffc\001\002\000\004\002\000\001\002" });
+    "\uffbc\270\uffbc\001\002\000\006\015\u02e9\165\310\001\002" +
+    "\000\004\043\u02e2\001\002\000\004\272\u02e3\001\002\000" +
+    "\004\043\u02e4\001\002\000\004\023\u02e5\001\002\000\004" +
+    "\142\u02e6\001\002\000\004\017\u02e7\001\002\000\006\015" +
+    "\uffb7\165\uffb7\001\002\000\004\015\u02ea\001\002\000\016" +
+    "\015\uffba\165\uffba\167\uffba\263\uffba\266\uffba\270\uffba\001" +
+    "\002\000\016\015\uffb9\165\uffb9\167\uffb9\263\uffb9\266\uffb9" +
+    "\270\uffb9\001\002\000\004\015\u02ec\001\002\000\016\015" +
+    "\uffb8\165\uffb8\167\uffb8\263\uffb8\266\uffb8\270\uffb8\001\002" +
+    "\000\016\015\uffb6\165\uffb6\167\uffb6\263\uffb6\266\uffb6\270" +
+    "\uffb6\001\002\000\006\015\u02f1\165\u02ef\001\002\000\004" +
+    "\142\u02f5\001\002\000\016\015\uffb4\165\uffb4\167\uffb4\263" +
+    "\uffb4\266\uffb4\270\uffb4\001\002\000\016\015\uffb5\165\uffb5" +
+    "\167\uffb5\263\uffb5\266\uffb5\270\uffb5\001\002\000\006\015" +
+    "\u02f4\165\u02ef\001\002\000\016\015\uffb0\165\uffb0\167\uffb0" +
+    "\263\uffb0\266\uffb0\270\uffb0\001\002\000\016\015\uffb1\165" +
+    "\uffb1\167\uffb1\263\uffb1\266\uffb1\270\uffb1\001\002\000\004" +
+    "\272\u02f6\001\002\000\004\142\u02f7\001\002\000\004\017" +
+    "\u02f8\001\002\000\006\015\uffaf\165\uffaf\001\002\000\006" +
+    "\013\uffd2\016\uffd2\001\002\000\004\023\u0311\001\002\000" +
+    "\004\023\u030f\001\002\000\006\013\uffd3\016\uffd3\001\002" +
+    "\000\004\013\u030d\001\002\000\006\013\uffd0\016\uffd0\001" +
+    "\002\000\006\013\uffd6\016\u030b\001\002\000\006\013\uffd1" +
+    "\016\uffd1\001\002\000\004\023\u0309\001\002\000\004\023" +
+    "\u0307\001\002\000\006\013\uffd4\016\uffd4\001\002\000\004" +
+    "\023\u0305\001\002\000\004\004\u0306\001\002\000\006\013" +
+    "\uffcc\016\uffcc\001\002\000\004\142\u0308\001\002\000\006" +
+    "\013\uffcf\016\uffcf\001\002\000\004\005\u030a\001\002\000" +
+    "\006\013\uffcb\016\uffcb\001\002\000\014\026\u0301\027\u0304" +
+    "\030\u02fb\033\u0302\034\u02fa\001\002\000\004\013\uffd5\001" +
+    "\002\000\004\017\u030e\001\002\000\016\015\uffdc\165\uffdc" +
+    "\167\uffdc\263\uffdc\266\uffdc\270\uffdc\001\002\000\004\005" +
+    "\u0310\001\002\000\006\013\uffcd\016\uffcd\001\002\000\004" +
+    "\142\u0312\001\002\000\006\013\uffce\016\uffce\001\002\000" +
+    "\016\015\ufffb\165\ufffb\167\ufffb\263\ufffb\266\ufffb\270\ufffb" +
+    "\001\002\000\004\013\u0315\001\002\000\004\017\u0316\001" +
+    "\002\000\016\015\uffd8\165\uffd8\167\uffd8\263\uffd8\266\uffd8" +
+    "\270\uffd8\001\002\000\004\015\ufffd\001\002\000\004\142" +
+    "\u0319\001\002\000\006\307\137\335\141\001\002\000\004" +
+    "\101\u031b\001\002\000\004\014\uffe7\001\002\000\004\013" +
+    "\u031d\001\002\000\004\017\u031e\001\002\000\016\015\uffda" +
+    "\165\uffda\167\uffda\263\uffda\266\uffda\270\uffda\001\002\000" +
+    "\016\015\ufffc\165\ufffc\167\ufffc\263\ufffc\266\ufffc\270\ufffc" +
+    "\001\002\000\004\002\000\001\002" });
 
   /** Access to parse-action table. */
   @Override
@@ -811,30 +808,30 @@ public class AvatarFromSysMLParser extends java_cup.runtime.lr_parser {
   /** <code>reduce_goto</code> table. */
   protected static final short[][] _reduce_table = 
     unpackFromStrings(new String[] {
-    "\000\u0322\000\004\006\003\001\001\000\002\001\001\000" +
+    "\000\u031e\000\004\006\003\001\001\000\002\001\001\000" +
     "\002\001\001\000\002\001\001\000\066\007\042\010\020" +
     "\013\007\015\035\016\037\021\023\022\044\023\012\024" +
     "\011\034\032\035\015\036\021\037\045\040\025\041\022" +
     "\042\027\043\010\044\016\045\026\046\034\047\014\050" +
     "\031\055\036\056\033\057\043\060\041\001\001\000\002" +
     "\001\001\000\002\001\001\000\002\001\001\000\002\001" +
-    "\001\000\002\001\001\000\002\001\001\000\020\025\u031f" +
-    "\026\u0302\027\u0306\030\u02ff\031\u02fc\032\u0303\033\u0301\001" +
-    "\001\000\002\001\001\000\002\001\001\000\066\007\u031a" +
+    "\001\000\002\001\001\000\002\001\001\000\020\025\u031b" +
+    "\026\u02fe\027\u0302\030\u02fb\031\u02f8\032\u02ff\033\u02fd\001" +
+    "\001\000\002\001\001\000\002\001\001\000\066\007\u0316" +
     "\010\020\013\007\015\035\016\037\021\023\022\044\023" +
     "\012\024\011\034\032\035\015\036\021\037\045\040\025" +
     "\041\022\042\027\043\010\044\016\045\026\046\034\047" +
     "\014\050\031\055\036\056\033\057\043\060\041\001\001" +
-    "\000\020\025\u0317\026\u0302\027\u0306\030\u02ff\031\u02fc\032" +
-    "\u0303\033\u0301\001\001\000\002\001\001\000\002\001\001" +
+    "\000\020\025\u0313\026\u02fe\027\u0302\030\u02fb\031\u02f8\032" +
+    "\u02ff\033\u02fd\001\001\000\002\001\001\000\002\001\001" +
     "\000\002\001\001\000\002\001\001\000\002\001\001\000" +
     "\002\001\001\000\002\001\001\000\002\001\001\000\020" +
-    "\025\u0300\026\u0302\027\u0306\030\u02ff\031\u02fc\032\u0303\033" +
-    "\u0301\001\001\000\002\001\001\000\002\001\001\000\002" +
+    "\025\u02fc\026\u02fe\027\u0302\030\u02fb\031\u02f8\032\u02ff\033" +
+    "\u02fd\001\001\000\002\001\001\000\002\001\001\000\002" +
     "\001\001\000\014\017\u02dd\020\311\051\u02de\052\u02df\103" +
     "\312\001\001\000\002\001\001\000\002\001\001\000\044" +
-    "\057\177\060\041\061\167\062\165\063\175\064\161\065" +
-    "\160\066\166\067\170\070\152\073\172\074\157\075\155" +
+    "\057\177\060\041\061\167\062\166\063\175\064\161\065" +
+    "\160\066\165\067\170\070\152\073\172\074\157\075\155" +
     "\100\174\101\164\102\176\173\173\001\001\000\002\001" +
     "\001\000\002\001\001\000\002\001\001\000\002\001\001" +
     "\000\002\001\001\000\002\001\001\000\002\001\001\000" +
@@ -862,10 +859,10 @@ public class AvatarFromSysMLParser extends java_cup.runtime.lr_parser {
     "\000\002\001\001\000\002\001\001\000\002\001\001\000" +
     "\002\001\001\000\002\001\001\000\002\001\001\000\002" +
     "\001\001\000\002\001\001\000\002\001\001\000\002\001" +
-    "\001\000\044\057\177\060\041\061\u029c\062\165\063\175" +
-    "\064\161\065\160\066\166\067\170\070\152\073\172\074" +
-    "\157\075\155\100\174\101\164\102\176\173\173\001\001" +
-    "\000\002\001\001\000\002\001\001\000\002\001\001\000" +
+    "\001\000\002\001\001\000\044\057\177\060\041\061\u029c" +
+    "\062\166\063\175\064\161\065\160\066\165\067\170\070" +
+    "\152\073\172\074\157\075\155\100\174\101\164\102\176" +
+    "\173\173\001\001\000\002\001\001\000\002\001\001\000" +
     "\002\001\001\000\002\001\001\000\002\001\001\000\002" +
     "\001\001\000\002\001\001\000\002\001\001\000\002\001" +
     "\001\000\002\001\001\000\002\001\001\000\002\001\001" +
@@ -908,9 +905,9 @@ public class AvatarFromSysMLParser extends java_cup.runtime.lr_parser {
     "\001\001\000\002\001\001\000\002\001\001\000\002\001" +
     "\001\000\002\001\001\000\002\001\001\000\074\076\356" +
     "\077\362\105\344\106\341\107\350\110\347\111\370\112" +
-    "\365\113\336\114\375\115\364\116\351\117\346\120\337" +
-    "\121\354\157\340\160\352\161\360\162\357\163\343\164" +
-    "\342\165\335\166\372\167\361\170\355\171\371\172\373" +
+    "\365\113\336\114\374\115\364\116\351\117\346\120\337" +
+    "\121\355\157\340\160\352\161\361\162\357\163\343\164" +
+    "\342\165\335\166\372\167\360\170\353\171\371\172\373" +
     "\201\367\206\345\001\001\000\002\001\001\000\002\001" +
     "\001\000\002\001\001\000\002\001\001\000\002\001\001" +
     "\000\002\001\001\000\002\001\001\000\002\001\001\000" +
@@ -920,9 +917,9 @@ public class AvatarFromSysMLParser extends java_cup.runtime.lr_parser {
     "\001\001\000\002\001\001\000\002\001\001\000\002\001" +
     "\001\000\002\001\001\000\002\001\001\000\074\076\u01ad" +
     "\077\362\105\344\106\341\107\350\110\347\111\370\112" +
-    "\365\113\336\114\375\115\364\116\351\117\346\120\337" +
-    "\121\354\157\340\160\352\161\360\162\357\163\343\164" +
-    "\342\165\335\166\372\167\361\170\355\171\371\172\373" +
+    "\365\113\336\114\374\115\364\116\351\117\346\120\337" +
+    "\121\355\157\340\160\352\161\361\162\357\163\343\164" +
+    "\342\165\335\166\372\167\360\170\353\171\371\172\373" +
     "\201\367\206\345\001\001\000\002\001\001\000\002\001" +
     "\001\000\002\001\001\000\002\001\001\000\002\001\001" +
     "\000\002\001\001\000\002\001\001\000\002\001\001\000" +
@@ -934,25 +931,25 @@ public class AvatarFromSysMLParser extends java_cup.runtime.lr_parser {
     "\000\002\001\001\000\002\001\001\000\002\001\001\000" +
     "\002\001\001\000\006\125\u0111\225\u0112\001\001\000\006" +
     "\125\u0190\225\u0112\001\001\000\002\001\001\000\034\126" +
-    "\u0120\127\u0122\132\u0126\133\u0113\134\u011c\135\u0121\136\u0125" +
+    "\u011f\127\u0122\132\u0126\133\u0113\134\u011c\135\u0120\136\u0125" +
     "\151\u011a\152\u0116\153\u011d\154\u0114\155\u0127\156\u011e\001" +
     "\001\000\002\001\001\000\030\130\u018c\131\u012d\137\u012b" +
-    "\140\u0128\144\u0130\145\u0136\146\u0129\147\u0134\150\u0132\174" +
+    "\140\u0128\144\u012f\145\u0136\146\u0129\147\u0134\150\u0132\174" +
     "\u012e\224\u0135\001\001\000\002\001\001\000\030\130\u0189" +
-    "\131\u012d\137\u012b\140\u0128\144\u0130\145\u0136\146\u0129\147" +
+    "\131\u012d\137\u012b\140\u0128\144\u012f\145\u0136\146\u0129\147" +
     "\u0134\150\u0132\174\u012e\224\u0135\001\001\000\002\001\001" +
     "\000\002\001\001\000\010\231\u017c\232\232\233\227\001" +
-    "\001\000\030\130\u017a\131\u012d\137\u012b\140\u0128\144\u0130" +
+    "\001\000\030\130\u017a\131\u012d\137\u012b\140\u0128\144\u012f" +
     "\145\u0136\146\u0129\147\u0134\150\u0132\174\u012e\224\u0135\001" +
     "\001\000\002\001\001\000\002\001\001\000\030\130\u0177" +
-    "\131\u012d\137\u012b\140\u0128\144\u0130\145\u0136\146\u0129\147" +
+    "\131\u012d\137\u012b\140\u0128\144\u012f\145\u0136\146\u0129\147" +
     "\u0134\150\u0132\174\u012e\224\u0135\001\001\000\030\130\u0175" +
-    "\131\u012d\137\u012b\140\u0128\144\u0130\145\u0136\146\u0129\147" +
+    "\131\u012d\137\u012b\140\u0128\144\u012f\145\u0136\146\u0129\147" +
     "\u0134\150\u0132\174\u012e\224\u0135\001\001\000\002\001\001" +
     "\000\002\001\001\000\002\001\001\000\002\001\001\000" +
     "\002\001\001\000\002\001\001\000\002\001\001\000\002" +
     "\001\001\000\030\130\u012c\131\u012d\137\u012b\140\u0128\144" +
-    "\u0130\145\u0136\146\u0129\147\u0134\150\u0132\174\u012e\224\u0135" +
+    "\u012f\145\u0136\146\u0129\147\u0134\150\u0132\174\u012e\224\u0135" +
     "\001\001\000\002\001\001\000\002\001\001\000\002\001" +
     "\001\000\002\001\001\000\002\001\001\000\002\001\001" +
     "\000\002\001\001\000\002\001\001\000\002\001\001\000" +
@@ -966,31 +963,31 @@ public class AvatarFromSysMLParser extends java_cup.runtime.lr_parser {
     "\001\001\000\002\001\001\000\002\001\001\000\002\001" +
     "\001\000\002\001\001\000\002\001\001\000\002\001\001" +
     "\000\002\001\001\000\002\001\001\000\020\205\u0150\226" +
-    "\u014c\230\u0154\231\u0151\232\u0153\233\u014f\234\u014d\001\001" +
-    "\000\002\001\001\000\022\231\u0151\232\u0160\233\u015d\234" +
-    "\u0159\235\u015b\237\u0161\240\u015a\241\u015e\001\001\000\002" +
+    "\u014d\230\u0154\231\u0151\232\u0153\233\u014f\234\u014c\001\001" +
+    "\000\022\231\u0151\232\u0160\233\u015d\234\u0159\235\u015c\237" +
+    "\u0161\240\u015a\241\u015e\001\001\000\002\001\001\000\002" +
     "\001\001\000\002\001\001\000\002\001\001\000\002\001" +
     "\001\000\002\001\001\000\002\001\001\000\002\001\001" +
     "\000\016\226\u0157\230\u0154\231\u0151\232\u0153\233\u014f\234" +
-    "\u014d\001\001\000\002\001\001\000\002\001\001\000\002" +
+    "\u014c\001\001\000\002\001\001\000\002\001\001\000\002" +
     "\001\001\000\022\231\u0151\232\u0160\233\u015d\234\u0159\235" +
-    "\u015b\237\u0161\240\u015a\241\u0168\001\001\000\002\001\001" +
-    "\000\004\236\u0164\001\001\000\002\001\001\000\002\001" +
+    "\u015c\237\u0161\240\u015a\241\u0168\001\001\000\002\001\001" +
+    "\000\002\001\001\000\004\236\u0164\001\001\000\002\001" +
     "\001\000\002\001\001\000\002\001\001\000\002\001\001" +
     "\000\002\001\001\000\002\001\001\000\002\001\001\000" +
-    "\022\231\u0151\232\u0160\233\u015d\234\u0159\235\u015b\237\u0161" +
-    "\240\u015a\241\u0166\001\001\000\002\001\001\000\002\001" +
+    "\022\231\u0151\232\u0160\233\u015d\234\u0159\235\u015c\237\u0161" +
+    "\240\u015a\241\u0165\001\001\000\002\001\001\000\002\001" +
     "\001\000\002\001\001\000\002\001\001\000\002\001\001" +
     "\000\012\227\u016c\231\u016b\232\232\233\227\001\001\000" +
     "\002\001\001\000\002\001\001\000\002\001\001\000\030" +
-    "\130\u016f\131\u012d\137\u012b\140\u0128\144\u0130\145\u0136\146" +
+    "\130\u016f\131\u012d\137\u012b\140\u0128\144\u012f\145\u0136\146" +
     "\u0129\147\u0134\150\u0132\174\u012e\224\u0135\001\001\000\002" +
     "\001\001\000\002\001\001\000\002\001\001\000\002\001" +
     "\001\000\002\001\001\000\002\001\001\000\002\001\001" +
     "\000\002\001\001\000\002\001\001\000\002\001\001\000" +
     "\002\001\001\000\002\001\001\000\002\001\001\000\002" +
     "\001\001\000\034\126\u017e\127\u0122\132\u0126\133\u0113\134" +
-    "\u011c\135\u0121\136\u0125\151\u011a\152\u0116\153\u011d\154\u0114" +
+    "\u011c\135\u0120\136\u0125\151\u011a\152\u0116\153\u011d\154\u0114" +
     "\155\u0127\156\u011e\001\001\000\002\001\001\000\002\001" +
     "\001\000\002\001\001\000\002\001\001\000\002\001\001" +
     "\000\002\001\001\000\002\001\001\000\002\001\001\000" +
@@ -1006,9 +1003,9 @@ public class AvatarFromSysMLParser extends java_cup.runtime.lr_parser {
     "\001\001\000\002\001\001\000\002\001\001\000\002\001" +
     "\001\000\002\001\001\000\002\001\001\000\002\001\001" +
     "\000\002\001\001\000\002\001\001\000\002\001\001\000" +
-    "\002\001\001\000\002\001\001\000\004\123\u01af\001\001" +
-    "\000\002\001\001\000\002\001\001\000\002\001\001\000" +
     "\002\001\001\000\002\001\001\000\002\001\001\000\002" +
+    "\001\001\000\002\001\001\000\002\001\001\000\002\001" +
+    "\001\000\004\123\u01b4\001\001\000\002\001\001\000\002" +
     "\001\001\000\002\001\001\000\004\123\u01b8\001\001\000" +
     "\002\001\001\000\002\001\001\000\002\001\001\000\002" +
     "\001\001\000\002\001\001\000\004\123\u01be\001\001\000" +
@@ -1026,7 +1023,7 @@ public class AvatarFromSysMLParser extends java_cup.runtime.lr_parser {
     "\001\001\000\002\001\001\000\002\001\001\000\002\001" +
     "\001\000\002\001\001\000\002\001\001\000\002\001\001" +
     "\000\002\001\001\000\014\207\u01e8\220\u01e6\221\u01eb\222" +
-    "\u01e9\223\u01ea\001\001\000\002\001\001\000\002\001\001" +
+    "\u01ea\223\u01e9\001\001\000\002\001\001\000\002\001\001" +
     "\000\002\001\001\000\002\001\001\000\002\001\001\000" +
     "\002\001\001\000\002\001\001\000\002\001\001\000\002" +
     "\001\001\000\002\001\001\000\002\001\001\000\002\001" +
@@ -1035,27 +1032,27 @@ public class AvatarFromSysMLParser extends java_cup.runtime.lr_parser {
     "\002\001\001\000\002\001\001\000\002\001\001\000\002" +
     "\001\001\000\002\001\001\000\002\001\001\000\002\001" +
     "\001\000\002\001\001\000\002\001\001\000\002\001\001" +
-    "\000\014\207\u0203\220\u01e6\221\u01eb\222\u01e9\223\u01ea\001" +
+    "\000\014\207\u0203\220\u01e6\221\u01eb\222\u01ea\223\u01e9\001" +
     "\001\000\002\001\001\000\004\210\u0205\001\001\000\002" +
     "\001\001\000\002\001\001\000\002\001\001\000\002\001" +
     "\001\000\004\203\u020b\001\001\000\004\204\u020d\001\001" +
     "\000\002\001\001\000\002\001\001\000\004\203\u0219\001" +
     "\001\000\002\001\001\000\006\003\u0210\004\276\001\001" +
     "\000\002\001\001\000\016\226\u0212\230\u0154\231\u0151\232" +
-    "\u0153\233\u014f\234\u014d\001\001\000\002\001\001\000\002" +
-    "\001\001\000\006\230\u0216\234\u014d\001\001\000\002\001" +
+    "\u0153\233\u014f\234\u014c\001\001\000\002\001\001\000\002" +
+    "\001\001\000\006\230\u0216\234\u014c\001\001\000\002\001" +
     "\001\000\002\001\001\000\002\001\001\000\004\204\u020d" +
     "\001\001\000\002\001\001\000\002\001\001\000\002\001" +
     "\001\000\002\001\001\000\002\001\001\000\002\001\001" +
     "\000\002\001\001\000\014\207\u0221\220\u01e6\221\u01eb\222" +
-    "\u01e9\223\u01ea\001\001\000\002\001\001\000\002\001\001" +
-    "\000\010\211\u0228\214\u0225\215\u0226\001\001\000\002\001" +
-    "\001\000\004\215\u023e\001\001\000\004\214\u023d\001\001" +
+    "\u01ea\223\u01e9\001\001\000\002\001\001\000\002\001\001" +
+    "\000\010\211\u0229\214\u0224\215\u0226\001\001\000\004\215" +
+    "\u0246\001\001\000\002\001\001\000\004\214\u023d\001\001" +
     "\000\002\001\001\000\002\001\001\000\002\001\001\000" +
-    "\002\001\001\000\006\216\u022e\217\u022d\001\001\000\002" +
-    "\001\001\000\006\216\u0230\217\u022d\001\001\000\002\001" +
+    "\002\001\001\000\002\001\001\000\006\216\u022f\217\u022e" +
+    "\001\001\000\002\001\001\000\006\216\u0231\217\u022e\001" +
     "\001\000\002\001\001\000\002\001\001\000\002\001\001" +
-    "\000\006\003\u0233\004\276\001\001\000\002\001\001\000" +
+    "\000\002\001\001\000\006\003\u0234\004\276\001\001\000" +
     "\002\001\001\000\002\001\001\000\002\001\001\000\002" +
     "\001\001\000\002\001\001\000\002\001\001\000\002\001" +
     "\001\000\002\001\001\000\002\001\001\000\002\001\001" +
@@ -1078,13 +1075,13 @@ public class AvatarFromSysMLParser extends java_cup.runtime.lr_parser {
     "\000\002\001\001\000\002\001\001\000\002\001\001\000" +
     "\002\001\001\000\002\001\001\000\002\001\001\000\004" +
     "\123\u0272\001\001\000\002\001\001\000\002\001\001\000" +
-    "\002\001\001\000\006\123\u0278\177\u0277\001\001\000\002" +
-    "\001\001\000\004\123\u027b\001\001\000\004\177\u0279\001" +
+    "\002\001\001\000\006\123\u0278\177\u0276\001\001\000\004" +
+    "\123\u0291\001\001\000\002\001\001\000\004\177\u0279\001" +
     "\001\000\002\001\001\000\002\001\001\000\002\001\001" +
-    "\000\002\001\001\000\002\001\001\000\002\001\001\000" +
-    "\002\001\001\000\002\001\001\000\004\200\u0282\001\001" +
-    "\000\002\001\001\000\002\001\001\000\002\001\001\000" +
-    "\002\001\001\000\002\001\001\000\006\003\u0288\004\276" +
+    "\000\002\001\001\000\002\001\001\000\004\200\u027f\001" +
+    "\001\000\002\001\001\000\002\001\001\000\002\001\001" +
+    "\000\002\001\001\000\002\001\001\000\006\003\u0285\004" +
+    "\276\001\001\000\002\001\001\000\002\001\001\000\002" +
     "\001\001\000\002\001\001\000\002\001\001\000\002\001" +
     "\001\000\002\001\001\000\002\001\001\000\002\001\001" +
     "\000\002\001\001\000\002\001\001\000\002\001\001\000" +
@@ -1092,13 +1089,13 @@ public class AvatarFromSysMLParser extends java_cup.runtime.lr_parser {
     "\001\001\000\002\001\001\000\002\001\001\000\002\001" +
     "\001\000\002\001\001\000\002\001\001\000\002\001\001" +
     "\000\002\001\001\000\002\001\001\000\012\020\u02a2\071" +
-    "\u029e\072\u02a0\103\312\001\001\000\002\001\001\000\002" +
-    "\001\001\000\012\020\u02a2\071\u02a3\072\u02a0\103\312\001" +
-    "\001\000\002\001\001\000\002\001\001\000\002\001\001" +
+    "\u029e\072\u02a1\103\312\001\001\000\002\001\001\000\002" +
+    "\001\001\000\002\001\001\000\012\020\u02a2\071\u02a3\072" +
+    "\u02a1\103\312\001\001\000\002\001\001\000\002\001\001" +
     "\000\004\002\u02a5\001\001\000\002\001\001\000\002\001" +
     "\001\000\002\001\001\000\002\001\001\000\002\001\001" +
-    "\000\002\001\001\000\002\001\001\000\002\001\001\000" +
-    "\010\231\u02ae\232\232\233\227\001\001\000\002\001\001" +
+    "\000\002\001\001\000\002\001\001\000\010\231\u02ae\232" +
+    "\232\233\227\001\001\000\002\001\001\000\002\001\001" +
     "\000\002\001\001\000\010\231\u02b1\232\232\233\227\001" +
     "\001\000\002\001\001\000\002\001\001\000\002\001\001" +
     "\000\004\002\u02b5\001\001\000\002\001\001\000\002\001" +
@@ -1114,31 +1111,30 @@ public class AvatarFromSysMLParser extends java_cup.runtime.lr_parser {
     "\001\001\000\002\001\001\000\002\001\001\000\002\001" +
     "\001\000\002\001\001\000\002\001\001\000\010\017\u02da" +
     "\020\311\103\312\001\001\000\002\001\001\000\002\001" +
-    "\001\000\002\001\001\000\004\052\u02ee\001\001\000\002" +
-    "\001\001\000\010\017\u02eb\020\311\103\312\001\001\000" +
+    "\001\000\002\001\001\000\004\052\u02ea\001\001\000\002" +
+    "\001\001\000\010\017\u02e7\020\311\103\312\001\001\000" +
     "\002\001\001\000\002\001\001\000\002\001\001\000\002" +
     "\001\001\000\002\001\001\000\002\001\001\000\002\001" +
     "\001\000\002\001\001\000\002\001\001\000\002\001\001" +
     "\000\002\001\001\000\002\001\001\000\002\001\001\000" +
-    "\002\001\001\000\002\001\001\000\002\001\001\000\002" +
-    "\001\001\000\006\053\u02f3\054\u02f5\001\001\000\002\001" +
-    "\001\000\002\001\001\000\002\001\001\000\006\053\u02f6" +
-    "\054\u02f5\001\001\000\002\001\001\000\002\001\001\000" +
+    "\006\053\u02ef\054\u02f1\001\001\000\002\001\001\000\002" +
+    "\001\001\000\002\001\001\000\006\053\u02f2\054\u02f1\001" +
+    "\001\000\002\001\001\000\002\001\001\000\002\001\001" +
+    "\000\002\001\001\000\002\001\001\000\002\001\001\000" +
     "\002\001\001\000\002\001\001\000\002\001\001\000\002" +
     "\001\001\000\002\001\001\000\002\001\001\000\002\001" +
     "\001\000\002\001\001\000\002\001\001\000\002\001\001" +
     "\000\002\001\001\000\002\001\001\000\002\001\001\000" +
     "\002\001\001\000\002\001\001\000\002\001\001\000\002" +
+    "\001\001\000\002\001\001\000\020\025\u030b\026\u02fe\027" +
+    "\u0302\030\u02fb\031\u02f8\032\u02ff\033\u02fd\001\001\000\002" +
     "\001\001\000\002\001\001\000\002\001\001\000\002\001" +
-    "\001\000\002\001\001\000\002\001\001\000\020\025\u030f" +
-    "\026\u0302\027\u0306\030\u02ff\031\u02fc\032\u0303\033\u0301\001" +
     "\001\000\002\001\001\000\002\001\001\000\002\001\001" +
     "\000\002\001\001\000\002\001\001\000\002\001\001\000" +
+    "\002\001\001\000\002\001\001\000\002\001\001\000\004" +
+    "\011\u0319\001\001\000\002\001\001\000\002\001\001\000" +
     "\002\001\001\000\002\001\001\000\002\001\001\000\002" +
-    "\001\001\000\002\001\001\000\002\001\001\000\002\001" +
-    "\001\000\004\011\u031d\001\001\000\002\001\001\000\002" +
-    "\001\001\000\002\001\001\000\002\001\001\000\002\001" +
-    "\001\000\002\001\001\000\002\001\001" });
+    "\001\001\000\002\001\001" });
 
   /** Access to <code>reduce_goto</code> table. */
   @Override
@@ -2635,37 +2631,12 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 74: // messageChannel ::= PRIVATE PART CHANNEL_F COLON CHANNEL_T EQUAL IDENT SEMICOLON 
-            {
-              Object RESULT =null;
-		Location pxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-7)).xleft;
-		Location pxright = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-7)).xright;
-		Object p = CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-7).<Object>value();
-		Location chxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-1)).xleft;
-		Location chxright = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-1)).xright;
-		Ident ch = CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-1).<Ident>value();
-		
-        if (messageChannelParam != null) // duplicate
-            addError(new AvatarFromSysMLError(AvatarFromSysMLError.ERROR, pxleft,
-                "in-message channel has already been set", messageChannelParam));
-        else { // message param is not set
-            getChannel(ch.getAvatarName());
-            theChannel.setInProfile((StxInMessage)theStructure);
-            ((StxInMessage)theStructure).setChannel(theChannel);
-            messageChannelParam = pxleft; // now it is
-        }
-      
-              CUP$AvatarFromSysMLParser$result = parser.getSymbolFactory().newSymbol("messageChannel",40, CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-7), CUP$AvatarFromSysMLParser$stack.peek(), RESULT);
-            }
-          return CUP$AvatarFromSysMLParser$result;
-
-          /*. . . . . . . . . . . . . . . . . . . .*/
-          case 75: // messageChannel ::= PRIVATE PART CHANNEL_F EQUAL IDENT SEMICOLON 
+          case 74: // messageChannel ::= PART CHANNEL_F REDEFINES CHANNEL_F EQUAL IDENT SEMICOLON 
             {
               Object RESULT =null;
-		Location pxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-5)).xleft;
-		Location pxright = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-5)).xright;
-		Object p = CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-5).<Object>value();
+		Location pxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-6)).xleft;
+		Location pxright = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-6)).xright;
+		Object p = CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-6).<Object>value();
 		Location chxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-1)).xleft;
 		Location chxright = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-1)).xright;
 		Ident ch = CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-1).<Ident>value();
@@ -2680,12 +2651,12 @@ class CUP$AvatarFromSysMLParser$actions {
             messageChannelParam = pxleft; // now it is
         }
       
-              CUP$AvatarFromSysMLParser$result = parser.getSymbolFactory().newSymbol("messageChannel",40, CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-5), CUP$AvatarFromSysMLParser$stack.peek(), RESULT);
+              CUP$AvatarFromSysMLParser$result = parser.getSymbolFactory().newSymbol("messageChannel",40, CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-6), CUP$AvatarFromSysMLParser$stack.peek(), RESULT);
             }
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 76: // outMessageDecl ::= outMessageDeclBegin SEMICOLON 
+          case 75: // outMessageDecl ::= outMessageDeclBegin SEMICOLON 
             {
               Object RESULT =null;
 		Location bxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -2699,7 +2670,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 77: // outMessageDecl ::= outMessageDeclBegin LBRAC RBRAC 
+          case 76: // outMessageDecl ::= outMessageDeclBegin LBRAC RBRAC 
             {
               Object RESULT =null;
 		Location bxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -2713,7 +2684,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 78: // outMessageDecl ::= outMessageDeclBegin LBRAC outMessageDeclBODY 
+          case 77: // outMessageDecl ::= outMessageDeclBegin LBRAC outMessageDeclBODY 
             {
               Object RESULT =null;
 
@@ -2722,7 +2693,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 79: // outMessageDeclBegin ::= PART DEF IDENT specializes OUTMESSAGE_T COMMA IDENT 
+          case 78: // outMessageDeclBegin ::= PART DEF IDENT specializes OUTMESSAGE_T COMMA IDENT 
             {
               Object RESULT =null;
 		Location pxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-6)).xleft;
@@ -2751,7 +2722,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 80: // outMessageDeclBegin ::= PART DEF IDENT specializes IDENT COMMA OUTMESSAGE_T 
+          case 79: // outMessageDeclBegin ::= PART DEF IDENT specializes IDENT COMMA OUTMESSAGE_T 
             {
               Object RESULT =null;
 		Location pxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-6)).xleft;
@@ -2779,7 +2750,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 81: // outMessageDeclBODY ::= redefineField RBRAC 
+          case 80: // outMessageDeclBODY ::= redefineField RBRAC 
             {
               Object RESULT =null;
 		Location bxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -2793,7 +2764,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 82: // outMessageDeclBODY ::= redefineField outMessageDeclBODY 
+          case 81: // outMessageDeclBODY ::= redefineField outMessageDeclBODY 
             {
               Object RESULT =null;
 
@@ -2802,7 +2773,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 83: // redefineField ::= ATTRIBUTE IDENT REDEFINES IDENT SEMICOLON 
+          case 82: // redefineField ::= ATTRIBUTE IDENT REDEFINES IDENT SEMICOLON 
             {
               Object RESULT =null;
 		Location axleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-4)).xleft;
@@ -2826,7 +2797,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 84: // blockDecl ::= blockDeclBegin RBRAC 
+          case 83: // blockDecl ::= blockDeclBegin RBRAC 
             {
               Object RESULT =null;
 		Location exleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -2838,7 +2809,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 85: // blockDecl ::= blockDeclBegin blockDeclBODY 
+          case 84: // blockDecl ::= blockDeclBegin blockDeclBODY 
             {
               Object RESULT =null;
 		Location exleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -2850,7 +2821,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 86: // blockDeclBegin ::= PART IDENT COLON AVBLOCK_T LBRAC 
+          case 85: // blockDeclBegin ::= PART IDENT COLON AVBLOCK_T LBRAC 
             {
               Object RESULT =null;
 		Location pxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-4)).xleft;
@@ -2878,7 +2849,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 87: // blockDeclBODY ::= blockItem RBRAC 
+          case 86: // blockDeclBODY ::= blockItem RBRAC 
             {
               Object RESULT =null;
 
@@ -2887,7 +2858,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 88: // blockDeclBODY ::= blockItem blockDeclBODY 
+          case 87: // blockDeclBODY ::= blockItem blockDeclBODY 
             {
               Object RESULT =null;
 
@@ -2896,7 +2867,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 89: // blockItem ::= attributeDecl 
+          case 88: // blockItem ::= attributeDecl 
             {
               Object RESULT =null;
 
@@ -2905,7 +2876,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 90: // blockItem ::= constantDecl 
+          case 89: // blockItem ::= constantDecl 
             {
               Object RESULT =null;
 
@@ -2914,7 +2885,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 91: // blockItem ::= methodDecl 
+          case 90: // blockItem ::= methodDecl 
             {
               Object RESULT =null;
 
@@ -2923,7 +2894,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 92: // blockItem ::= signalDecl 
+          case 91: // blockItem ::= signalDecl 
             {
               Object RESULT =null;
 
@@ -2932,7 +2903,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 93: // blockItem ::= timerDecl 
+          case 92: // blockItem ::= timerDecl 
             {
               Object RESULT =null;
 
@@ -2941,7 +2912,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 94: // blockItem ::= stateMachine 
+          case 93: // blockItem ::= stateMachine 
             {
               Object RESULT =null;
 
@@ -2950,7 +2921,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 95: // blockItem ::= blockDecl 
+          case 94: // blockItem ::= blockDecl 
             {
               Object RESULT =null;
 
@@ -2959,7 +2930,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 96: // attributeDecl ::= attributeDeclHEADER SEMICOLON 
+          case 95: // attributeDecl ::= attributeDeclHEADER SEMICOLON 
             {
               Object RESULT =null;
 		Location qxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -2973,7 +2944,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 97: // attributeDecl ::= attributeDeclHEADER GETS iexpr SEMICOLON 
+          case 96: // attributeDecl ::= attributeDeclHEADER GETS iexpr SEMICOLON 
             {
               Object RESULT =null;
 		Location exleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-1)).xleft;
@@ -2991,7 +2962,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 98: // attributeDecl ::= attributeDeclHEADER DEFAULT GETS iexpr SEMICOLON 
+          case 97: // attributeDecl ::= attributeDeclHEADER DEFAULT GETS iexpr SEMICOLON 
             {
               Object RESULT =null;
 		Location exleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-1)).xleft;
@@ -3010,7 +2981,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 99: // attributeDeclHEADER ::= ATTRIBUTE IDENT COLON typeIdent 
+          case 98: // attributeDeclHEADER ::= ATTRIBUTE IDENT COLON typeIdent 
             {
               Object RESULT =null;
 		Location axleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-3)).xleft;
@@ -3050,7 +3021,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 100: // constantDecl ::= constantDeclHEADER SEMICOLON 
+          case 99: // constantDecl ::= constantDeclHEADER SEMICOLON 
             {
               Object RESULT =null;
 		Location qxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -3064,7 +3035,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 101: // constantDecl ::= constantDeclHEADER GETS iexpr SEMICOLON 
+          case 100: // constantDecl ::= constantDeclHEADER GETS iexpr SEMICOLON 
             {
               Object RESULT =null;
 		Location exleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-1)).xleft;
@@ -3082,7 +3053,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 102: // constantDeclHEADER ::= READONLY ATTRIBUTE IDENT COLON typeIdent 
+          case 101: // constantDeclHEADER ::= READONLY ATTRIBUTE IDENT COLON typeIdent 
             {
               Object RESULT =null;
 		Location rxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-4)).xleft;
@@ -3122,7 +3093,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 103: // methodDecl ::= voidMethodDecl 
+          case 102: // methodDecl ::= voidMethodDecl 
             {
               Object RESULT =null;
 
@@ -3131,7 +3102,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 104: // methodDecl ::= calcMethodDecl 
+          case 103: // methodDecl ::= calcMethodDecl 
             {
               Object RESULT =null;
 
@@ -3140,7 +3111,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 105: // voidMethodDecl ::= voidMethodDeclBegin LBRAC RBRAC 
+          case 104: // voidMethodDecl ::= voidMethodDeclBegin LBRAC RBRAC 
             {
               Object RESULT =null;
 		Location bxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -3154,7 +3125,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 106: // voidMethodDecl ::= voidMethodDeclBegin SEMICOLON 
+          case 105: // voidMethodDecl ::= voidMethodDeclBegin SEMICOLON 
             {
               Object RESULT =null;
 		Location bxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -3168,7 +3139,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 107: // voidMethodDecl ::= voidMethodDeclBegin LBRAC fieldDecls RBRAC 
+          case 106: // voidMethodDecl ::= voidMethodDeclBegin LBRAC fieldDecls RBRAC 
             {
               Object RESULT =null;
 		Location bxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -3182,7 +3153,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 108: // voidMethodDeclBegin ::= ACTION IDENT COLON AVVOIDMETHOD_T 
+          case 107: // voidMethodDeclBegin ::= ACTION IDENT COLON AVVOIDMETHOD_T 
             {
               Object RESULT =null;
 		Location axleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-3)).xleft;
@@ -3219,7 +3190,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 109: // calcMethodDecl ::= calcMethodDeclBegin LBRAC RBRAC 
+          case 108: // calcMethodDecl ::= calcMethodDeclBegin LBRAC RBRAC 
             {
               Object RESULT =null;
 		Location bxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -3233,7 +3204,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 110: // calcMethodDecl ::= calcMethodDeclBegin LBRAC calcMethodItems RBRAC 
+          case 109: // calcMethodDecl ::= calcMethodDeclBegin LBRAC calcMethodItems RBRAC 
             {
               Object RESULT =null;
 		Location bxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -3247,7 +3218,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 111: // calcMethodDeclBegin ::= CALC IDENT COLON AVCALCMETHOD_T 
+          case 110: // calcMethodDeclBegin ::= CALC IDENT COLON AVCALCMETHOD_T 
             {
               Object RESULT =null;
 		Location cxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-3)).xleft;
@@ -3284,7 +3255,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 112: // calcMethodItems ::= calcMethodItem 
+          case 111: // calcMethodItems ::= calcMethodItem 
             {
               Object RESULT =null;
 
@@ -3293,7 +3264,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 113: // calcMethodItems ::= calcMethodItem calcMethodItems 
+          case 112: // calcMethodItems ::= calcMethodItem calcMethodItems 
             {
               Object RESULT =null;
 
@@ -3302,7 +3273,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 114: // calcMethodItem ::= fieldDecl 
+          case 113: // calcMethodItem ::= fieldDecl 
             {
               Object RESULT =null;
 
@@ -3311,7 +3282,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 115: // calcMethodItem ::= RETURN COLON typeIdent SEMICOLON 
+          case 114: // calcMethodItem ::= RETURN COLON typeIdent SEMICOLON 
             {
               Object RESULT =null;
 		Location tpxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-1)).xleft;
@@ -3325,7 +3296,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 116: // signalDecl ::= PART IDENT COLON FIFO_T SEMICOLON 
+          case 115: // signalDecl ::= PART IDENT COLON FIFO_T SEMICOLON 
             {
               Object RESULT =null;
 		Location pxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-4)).xleft;
@@ -3364,7 +3335,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 117: // signalDecl ::= PART IDENT COLON CHANNEL_T SEMICOLON 
+          case 116: // signalDecl ::= PART IDENT COLON CHANNEL_T SEMICOLON 
             {
               Object RESULT =null;
 		Location pxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-4)).xleft;
@@ -3403,7 +3374,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 118: // timerDecl ::= PART IDENT COLON AVTIMER_T EQUAL AVTIMER_T LPAR BLOCK_F EQUAL SELF RPAR SEMICOLON 
+          case 117: // timerDecl ::= PART IDENT COLON AVTIMER_T EQUAL AVTIMER_T LPAR BLOCK_F EQUAL SELF RPAR SEMICOLON 
             {
               Object RESULT =null;
 		Location pxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-11)).xleft;
@@ -3439,7 +3410,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 119: // stateMachine ::= stateMachineBegin LBRAC stateMachineItems RBRAC 
+          case 118: // stateMachine ::= stateMachineBegin LBRAC stateMachineItems RBRAC 
             {
               Object RESULT =null;
 		
@@ -3451,7 +3422,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 120: // stateMachine ::= stateMachineBegin LBRAC RBRAC 
+          case 119: // stateMachine ::= stateMachineBegin LBRAC RBRAC 
             {
               Object RESULT =null;
 		
@@ -3463,7 +3434,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 121: // stateMachine ::= stateMachineBegin SEMICOLON 
+          case 120: // stateMachine ::= stateMachineBegin SEMICOLON 
             {
               Object RESULT =null;
 		
@@ -3475,7 +3446,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 122: // stateMachineBegin ::= EXHIBIT STATE STATEMACHINE COLON AVSTATEMACHINE_T 
+          case 121: // stateMachineBegin ::= EXHIBIT STATE STATEMACHINE COLON AVSTATEMACHINE_T 
             {
               Object RESULT =null;
 		Location exleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-4)).xleft;
@@ -3495,7 +3466,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 123: // stateMachineItems ::= stateMachineItem 
+          case 122: // stateMachineItems ::= stateMachineItem 
             {
               Object RESULT =null;
 
@@ -3504,7 +3475,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 124: // stateMachineItems ::= stateMachineItem stateMachineItems 
+          case 123: // stateMachineItems ::= stateMachineItem stateMachineItems 
             {
               Object RESULT =null;
 
@@ -3513,7 +3484,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 125: // stateMachineItem ::= state 
+          case 124: // stateMachineItem ::= state 
             {
               Object RESULT =null;
 
@@ -3522,7 +3493,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 126: // stateMachineItem ::= transition 
+          case 125: // stateMachineItem ::= transition 
             {
               Object RESULT =null;
 
@@ -3531,7 +3502,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 127: // state ::= standardState 
+          case 126: // state ::= standardState 
             {
               Object RESULT =null;
 
@@ -3540,7 +3511,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 128: // state ::= stopState 
+          case 127: // state ::= stopState 
             {
               Object RESULT =null;
 
@@ -3549,7 +3520,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 129: // state ::= startState 
+          case 128: // state ::= startState 
             {
               Object RESULT =null;
 
@@ -3558,7 +3529,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 130: // state ::= sendState 
+          case 129: // state ::= sendState 
             {
               Object RESULT =null;
 
@@ -3567,7 +3538,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 131: // state ::= receiveState 
+          case 130: // state ::= receiveState 
             {
               Object RESULT =null;
 
@@ -3576,7 +3547,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 132: // state ::= randomState 
+          case 131: // state ::= randomState 
             {
               Object RESULT =null;
 
@@ -3585,7 +3556,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 133: // state ::= countState 
+          case 132: // state ::= countState 
             {
               Object RESULT =null;
 
@@ -3594,7 +3565,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 134: // state ::= presendState 
+          case 133: // state ::= presendState 
             {
               Object RESULT =null;
 
@@ -3603,7 +3574,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 135: // state ::= prereceiveState 
+          case 134: // state ::= prereceiveState 
             {
               Object RESULT =null;
 
@@ -3612,7 +3583,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 136: // state ::= setTimerState 
+          case 135: // state ::= setTimerState 
             {
               Object RESULT =null;
 
@@ -3621,7 +3592,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 137: // state ::= resetTimerState 
+          case 136: // state ::= resetTimerState 
             {
               Object RESULT =null;
 
@@ -3630,7 +3601,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 138: // state ::= expireTimerState 
+          case 137: // state ::= expireTimerState 
             {
               Object RESULT =null;
 
@@ -3639,7 +3610,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 139: // startState ::= startStateBegin SEMICOLON 
+          case 138: // startState ::= startStateBegin SEMICOLON 
             {
               Object RESULT =null;
 		Location bxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-1)).xleft;
@@ -3657,7 +3628,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 140: // startState ::= startStateBegin LBRAC RBRAC 
+          case 139: // startState ::= startStateBegin LBRAC RBRAC 
             {
               Object RESULT =null;
 		Location bxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-2)).xleft;
@@ -3675,7 +3646,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 141: // startState ::= startStateBegin LBRAC requestParam RBRAC 
+          case 140: // startState ::= startStateBegin LBRAC requestParam RBRAC 
             {
               Object RESULT =null;
 		Location qxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -3689,7 +3660,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 142: // startStateBegin ::= ENTRY ACTION IDENT COLON AVSTARTSTATE_T 
+          case 141: // startStateBegin ::= ENTRY ACTION IDENT COLON AVSTARTSTATE_T 
             {
               Object RESULT =null;
 		Location zxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-4)).xleft;
@@ -3717,7 +3688,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 143: // standardState ::= standardStateBegin SEMICOLON 
+          case 142: // standardState ::= standardStateBegin SEMICOLON 
             {
               Object RESULT =null;
 		Location bxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-1)).xleft;
@@ -3735,7 +3706,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 144: // standardState ::= standardStateBegin LBRAC RBRAC 
+          case 143: // standardState ::= standardStateBegin LBRAC RBRAC 
             {
               Object RESULT =null;
 		Location bxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-2)).xleft;
@@ -3753,7 +3724,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 145: // standardState ::= standardStateBegin LBRAC poolParam RBRAC 
+          case 144: // standardState ::= standardStateBegin LBRAC poolParam RBRAC 
             {
               Object RESULT =null;
 		Location qxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -3767,7 +3738,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 146: // standardStateBegin ::= STATE IDENT COLON AVSTANDARDSTATE_T 
+          case 145: // standardStateBegin ::= STATE IDENT COLON AVSTANDARDSTATE_T 
             {
               Object RESULT =null;
 		Location zxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-3)).xleft;
@@ -3796,7 +3767,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 147: // stopState ::= stopStateBegin SEMICOLON 
+          case 146: // stopState ::= stopStateBegin SEMICOLON 
             {
               Object RESULT =null;
 		Location qxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -3810,7 +3781,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 148: // stopState ::= stopStateBegin EQUAL AVSTOPSTATE_T LBRAC RBRAC 
+          case 147: // stopState ::= stopStateBegin EQUAL AVSTOPSTATE_T LBRAC RBRAC 
             {
               Object RESULT =null;
 		Location qxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -3824,7 +3795,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 149: // stopStateBegin ::= EXIT ACTION IDENT COLON AVSTOPSTATE_T 
+          case 148: // stopStateBegin ::= EXIT ACTION IDENT COLON AVSTOPSTATE_T 
             {
               Object RESULT =null;
 		Location zxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-4)).xleft;
@@ -3851,7 +3822,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 150: // sendState ::= sendStateBegin SEMICOLON 
+          case 149: // sendState ::= sendStateBegin SEMICOLON 
             {
               Object RESULT =null;
 		Location bxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-1)).xleft;
@@ -3869,7 +3840,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 151: // sendState ::= sendStateBegin LBRAC RBRAC 
+          case 150: // sendState ::= sendStateBegin LBRAC RBRAC 
             {
               Object RESULT =null;
 		Location qxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -3883,7 +3854,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 152: // sendState ::= sendStateBegin LBRAC requestParam RBRAC 
+          case 151: // sendState ::= sendStateBegin LBRAC requestParam RBRAC 
             {
               Object RESULT =null;
 		Location qxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -3897,7 +3868,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 153: // sendStateBegin ::= STATE IDENT COLON AVSENDSTATE_T 
+          case 152: // sendStateBegin ::= STATE IDENT COLON AVSENDSTATE_T 
             {
               Object RESULT =null;
 		Location zxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-3)).xleft;
@@ -3925,7 +3896,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 154: // receiveState ::= receiveStateBegin SEMICOLON 
+          case 153: // receiveState ::= receiveStateBegin SEMICOLON 
             {
               Object RESULT =null;
 		Location bxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-1)).xleft;
@@ -3943,7 +3914,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 155: // receiveState ::= receiveStateBegin LBRAC RBRAC 
+          case 154: // receiveState ::= receiveStateBegin LBRAC RBRAC 
             {
               Object RESULT =null;
 		Location bxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-2)).xleft;
@@ -3961,7 +3932,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 156: // receiveState ::= receiveStateBegin LBRAC requestParam RBRAC 
+          case 155: // receiveState ::= receiveStateBegin LBRAC requestParam RBRAC 
             {
               Object RESULT =null;
 		Location qxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -3975,7 +3946,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 157: // receiveStateBegin ::= STATE IDENT COLON AVRECEIVESTATE_T 
+          case 156: // receiveStateBegin ::= STATE IDENT COLON AVRECEIVESTATE_T 
             {
               Object RESULT =null;
 		Location zxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-3)).xleft;
@@ -4003,7 +3974,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 158: // randomState ::= randomStateBegin LBRAC randomAction requestParam RBRAC 
+          case 157: // randomState ::= randomStateBegin LBRAC randomAction requestParam RBRAC 
             {
               Object RESULT =null;
 		Location qxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -4017,7 +3988,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 159: // randomState ::= randomStateBegin LBRAC requestParam randomAction RBRAC 
+          case 158: // randomState ::= randomStateBegin LBRAC requestParam randomAction RBRAC 
             {
               Object RESULT =null;
 		Location qxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -4031,7 +4002,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 160: // randomState ::= randomStateBegin LBRAC randomAction RBRAC 
+          case 159: // randomState ::= randomStateBegin LBRAC randomAction RBRAC 
             {
               Object RESULT =null;
 		Location bxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-3)).xleft;
@@ -4049,7 +4020,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 161: // randomStateBegin ::= STATE IDENT COLON AVRANDOMSTATE_T 
+          case 160: // randomStateBegin ::= STATE IDENT COLON AVRANDOMSTATE_T 
             {
               Object RESULT =null;
 		Location zxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-3)).xleft;
@@ -4077,7 +4048,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 162: // countState ::= countStateBegin LBRAC countAction RBRAC 
+          case 161: // countState ::= countStateBegin LBRAC countAction RBRAC 
             {
               Object RESULT =null;
 		Location bxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-3)).xleft;
@@ -4095,7 +4066,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 163: // countState ::= countStateBegin LBRAC requestParam countAction RBRAC 
+          case 162: // countState ::= countStateBegin LBRAC requestParam countAction RBRAC 
             {
               Object RESULT =null;
 		Location qxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -4109,7 +4080,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 164: // countState ::= countStateBegin LBRAC countAction requestParam RBRAC 
+          case 163: // countState ::= countStateBegin LBRAC countAction requestParam RBRAC 
             {
               Object RESULT =null;
 		Location qxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -4123,7 +4094,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 165: // countStateBegin ::= STATE IDENT COLON AVCOUNTSTATE_T 
+          case 164: // countStateBegin ::= STATE IDENT COLON AVCOUNTSTATE_T 
             {
               Object RESULT =null;
 		Location zxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-3)).xleft;
@@ -4151,7 +4122,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 166: // presendState ::= presendStateBegin LBRAC requestParam RBRAC 
+          case 165: // presendState ::= presendStateBegin LBRAC requestParam RBRAC 
             {
               Object RESULT =null;
 		Location qxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -4165,7 +4136,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 167: // presendStateBegin ::= STATE IDENT COLON AVPRESENDSTATE_T 
+          case 166: // presendStateBegin ::= STATE IDENT COLON AVPRESENDSTATE_T 
             {
               Object RESULT =null;
 		Location zxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-3)).xleft;
@@ -4193,7 +4164,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 168: // prereceiveState ::= prereceiveStateBegin LBRAC requestParam RBRAC 
+          case 167: // prereceiveState ::= prereceiveStateBegin LBRAC requestParam RBRAC 
             {
               Object RESULT =null;
 		Location qxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -4207,7 +4178,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 169: // prereceiveStateBegin ::= STATE IDENT COLON AVPRERECEIVESTATE_T 
+          case 168: // prereceiveStateBegin ::= STATE IDENT COLON AVPRERECEIVESTATE_T 
             {
               Object RESULT =null;
 		Location zxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-3)).xleft;
@@ -4235,7 +4206,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 170: // setTimerState ::= setTimerStateBegin LBRAC requestParam RBRAC 
+          case 169: // setTimerState ::= setTimerStateBegin LBRAC requestParam RBRAC 
             {
               Object RESULT =null;
 		Location qxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -4249,7 +4220,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 171: // setTimerState ::= setTimerStateBegin LBRAC RBRAC 
+          case 170: // setTimerState ::= setTimerStateBegin LBRAC RBRAC 
             {
               Object RESULT =null;
 		Location bxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-2)).xleft;
@@ -4267,7 +4238,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 172: // setTimerState ::= setTimerStateBegin SEMICOLON 
+          case 171: // setTimerState ::= setTimerStateBegin SEMICOLON 
             {
               Object RESULT =null;
 		Location bxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-1)).xleft;
@@ -4285,7 +4256,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 173: // setTimerStateBegin ::= STATE IDENT COLON AVSETTIMERSTATE_T 
+          case 172: // setTimerStateBegin ::= STATE IDENT COLON AVSETTIMERSTATE_T 
             {
               Object RESULT =null;
 		Location zxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-3)).xleft;
@@ -4313,7 +4284,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 174: // resetTimerState ::= resetTimerStateBegin LBRAC requestParam RBRAC 
+          case 173: // resetTimerState ::= resetTimerStateBegin LBRAC requestParam RBRAC 
             {
               Object RESULT =null;
 		Location qxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -4327,7 +4298,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 175: // resetTimerState ::= resetTimerStateBegin LBRAC RBRAC 
+          case 174: // resetTimerState ::= resetTimerStateBegin LBRAC RBRAC 
             {
               Object RESULT =null;
 		Location bxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-2)).xleft;
@@ -4345,7 +4316,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 176: // resetTimerState ::= resetTimerStateBegin SEMICOLON 
+          case 175: // resetTimerState ::= resetTimerStateBegin SEMICOLON 
             {
               Object RESULT =null;
 		Location bxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-1)).xleft;
@@ -4363,7 +4334,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 177: // resetTimerStateBegin ::= STATE IDENT COLON AVRESETTIMERSTATE_T 
+          case 176: // resetTimerStateBegin ::= STATE IDENT COLON AVRESETTIMERSTATE_T 
             {
               Object RESULT =null;
 		Location zxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-3)).xleft;
@@ -4391,7 +4362,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 178: // expireTimerState ::= expireTimerStateBegin LBRAC requestParam RBRAC 
+          case 177: // expireTimerState ::= expireTimerStateBegin LBRAC requestParam RBRAC 
             {
               Object RESULT =null;
 		Location qxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -4405,7 +4376,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 179: // expireTimerState ::= expireTimerStateBegin LBRAC RBRAC 
+          case 178: // expireTimerState ::= expireTimerStateBegin LBRAC RBRAC 
             {
               Object RESULT =null;
 		Location bxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-2)).xleft;
@@ -4423,7 +4394,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 180: // expireTimerState ::= expireTimerStateBegin SEMICOLON 
+          case 179: // expireTimerState ::= expireTimerStateBegin SEMICOLON 
             {
               Object RESULT =null;
 		Location bxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-1)).xleft;
@@ -4441,7 +4412,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 181: // expireTimerStateBegin ::= STATE IDENT COLON AVEXPIRETIMERSTATE_T 
+          case 180: // expireTimerStateBegin ::= STATE IDENT COLON AVEXPIRETIMERSTATE_T 
             {
               Object RESULT =null;
 		Location zxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-3)).xleft;
@@ -4469,7 +4440,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 182: // poolParam ::= CALC POOL_F REDEFINES POOL_F EQUAL LBRAC LPAR RPAR RBRAC SEMICOLON 
+          case 181: // poolParam ::= CALC POOL_F REDEFINES POOL_F EQUAL LBRAC LPAR RPAR RBRAC SEMICOLON 
             {
               Object RESULT =null;
 
@@ -4478,7 +4449,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 183: // poolParam ::= CALC POOL_F REDEFINES POOL_F EQUAL LBRAC NULL RBRAC SEMICOLON 
+          case 182: // poolParam ::= CALC POOL_F REDEFINES POOL_F EQUAL LBRAC NULL RBRAC SEMICOLON 
             {
               Object RESULT =null;
 
@@ -4487,7 +4458,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 184: // poolParam ::= CALC POOL_F REDEFINES POOL_F EQUAL LBRAC LPAR requestList RPAR RBRAC SEMICOLON 
+          case 183: // poolParam ::= CALC POOL_F REDEFINES POOL_F EQUAL LBRAC LPAR requestList RPAR RBRAC SEMICOLON 
             {
               Object RESULT =null;
 
@@ -4496,7 +4467,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 185: // poolParam ::= CALC POOL_F REDEFINES POOL_F EQUAL LBRAC request RBRAC SEMICOLON 
+          case 184: // poolParam ::= CALC POOL_F REDEFINES POOL_F EQUAL LBRAC request RBRAC SEMICOLON 
             {
               Object RESULT =null;
 
@@ -4505,7 +4476,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 186: // requestParam ::= CALC REQUEST_F REDEFINES REQUEST_F EQUAL LBRAC request RBRAC SEMICOLON 
+          case 185: // requestParam ::= CALC REQUEST_F REDEFINES REQUEST_F EQUAL LBRAC request RBRAC SEMICOLON 
             {
               Object RESULT =null;
 
@@ -4514,7 +4485,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 187: // requestParam ::= CALC REQUEST_F REDEFINES REQUEST_F EQUAL LBRAC LPAR request RPAR RBRAC SEMICOLON 
+          case 186: // requestParam ::= CALC REQUEST_F REDEFINES REQUEST_F EQUAL LBRAC LPAR request RPAR RBRAC SEMICOLON 
             {
               Object RESULT =null;
 
@@ -4523,7 +4494,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 188: // requestList ::= request 
+          case 187: // requestList ::= request 
             {
               Object RESULT =null;
 
@@ -4532,7 +4503,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 189: // requestList ::= request COMMA requestList 
+          case 188: // requestList ::= request COMMA requestList 
             {
               Object RESULT =null;
 
@@ -4541,7 +4512,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 190: // request ::= dummy IF iexpr QUEST simpleRequest ELSE NOKREQUEST_T LPAR INT RPAR 
+          case 189: // request ::= dummy IF iexpr QUEST simpleRequest ELSE NOKREQUEST_T LPAR INT RPAR 
             {
               Object RESULT =null;
 		Location ixleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-8)).xleft;
@@ -4576,7 +4547,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 191: // request ::= dummy IF iexpr QUEST simpleRequest ELSE NOKREQUEST_T LPAR INDEX_F EQUAL INT RPAR 
+          case 190: // request ::= dummy IF iexpr QUEST simpleRequest ELSE NOKREQUEST_T LPAR INDEX_F EQUAL INT RPAR 
             {
               Object RESULT =null;
 		Location ixleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-10)).xleft;
@@ -4611,7 +4582,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 192: // request ::= dummy simpleRequest 
+          case 191: // request ::= dummy simpleRequest 
             {
               Object RESULT =null;
 		Location ixleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -4629,7 +4600,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 193: // dummy ::= 
+          case 192: // dummy ::= 
             {
               Object RESULT =null;
 		
@@ -4651,7 +4622,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 194: // simpleRequest ::= trivialRequest 
+          case 193: // simpleRequest ::= trivialRequest 
             {
               Object RESULT =null;
 
@@ -4660,7 +4631,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 195: // simpleRequest ::= sendRequest 
+          case 194: // simpleRequest ::= sendRequest 
             {
               Object RESULT =null;
 
@@ -4669,7 +4640,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 196: // simpleRequest ::= receiveRequest 
+          case 195: // simpleRequest ::= receiveRequest 
             {
               Object RESULT =null;
 
@@ -4678,7 +4649,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 197: // simpleRequest ::= setTimerRequest 
+          case 196: // simpleRequest ::= setTimerRequest 
             {
               Object RESULT =null;
 
@@ -4687,7 +4658,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 198: // simpleRequest ::= resetTimerRequest 
+          case 197: // simpleRequest ::= resetTimerRequest 
             {
               Object RESULT =null;
 
@@ -4696,7 +4667,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 199: // simpleRequest ::= expireTimerRequest 
+          case 198: // simpleRequest ::= expireTimerRequest 
             {
               Object RESULT =null;
 
@@ -4705,7 +4676,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 200: // trivialRequest ::= IMMEDIATEREQUEST_U 
+          case 199: // trivialRequest ::= IMMEDIATEREQUEST_U 
             {
               Object RESULT =null;
 		Location ixleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -4724,7 +4695,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 201: // trivialRequest ::= trivialRequestBegin requestArgs RPAR 
+          case 200: // trivialRequest ::= trivialRequestBegin requestArgs RPAR 
             {
               Object RESULT =null;
 
@@ -4733,7 +4704,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 202: // trivialRequestBegin ::= TRIVIALREQUEST_T LPAR 
+          case 201: // trivialRequestBegin ::= TRIVIALREQUEST_T LPAR 
             {
               Object RESULT =null;
 		
@@ -4746,7 +4717,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 203: // sendRequest ::= sendRequestBegin requestArgs RPAR 
+          case 202: // sendRequest ::= sendRequestBegin requestArgs RPAR 
             {
               Object RESULT =null;
 
@@ -4755,7 +4726,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 204: // sendRequestBegin ::= SENDREQUEST_T LPAR 
+          case 203: // sendRequestBegin ::= SENDREQUEST_T LPAR 
             {
               Object RESULT =null;
 		
@@ -4768,7 +4739,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 205: // receiveRequest ::= receiveRequestBegin requestArgs RPAR 
+          case 204: // receiveRequest ::= receiveRequestBegin requestArgs RPAR 
             {
               Object RESULT =null;
 
@@ -4777,7 +4748,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 206: // receiveRequestBegin ::= RECEIVEREQUEST_T LPAR 
+          case 205: // receiveRequestBegin ::= RECEIVEREQUEST_T LPAR 
             {
               Object RESULT =null;
 		
@@ -4790,7 +4761,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 207: // setTimerRequest ::= setTimerRequestBegin requestArgs RPAR 
+          case 206: // setTimerRequest ::= setTimerRequestBegin requestArgs RPAR 
             {
               Object RESULT =null;
 
@@ -4799,7 +4770,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 208: // setTimerRequestBegin ::= SETTIMERREQUEST_T LPAR 
+          case 207: // setTimerRequestBegin ::= SETTIMERREQUEST_T LPAR 
             {
               Object RESULT =null;
 		
@@ -4812,7 +4783,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 209: // resetTimerRequest ::= resetTimerRequestBegin requestArgs RPAR 
+          case 208: // resetTimerRequest ::= resetTimerRequestBegin requestArgs RPAR 
             {
               Object RESULT =null;
 
@@ -4821,7 +4792,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 210: // resetTimerRequestBegin ::= RESETTIMERREQUEST_T LPAR 
+          case 209: // resetTimerRequestBegin ::= RESETTIMERREQUEST_T LPAR 
             {
               Object RESULT =null;
 		
@@ -4834,7 +4805,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 211: // expireTimerRequest ::= expireTimerRequestBegin requestArgs RPAR 
+          case 210: // expireTimerRequest ::= expireTimerRequestBegin requestArgs RPAR 
             {
               Object RESULT =null;
 
@@ -4843,7 +4814,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 212: // expireTimerRequestBegin ::= EXPIRETIMERREQUEST_T LPAR 
+          case 211: // expireTimerRequestBegin ::= EXPIRETIMERREQUEST_T LPAR 
             {
               Object RESULT =null;
 		
@@ -4856,7 +4827,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 213: // requestArgs ::= requestArg 
+          case 212: // requestArgs ::= requestArg 
             {
               Object RESULT =null;
 
@@ -4865,7 +4836,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 214: // requestArgs ::= requestArg COMMA requestArgs 
+          case 213: // requestArgs ::= requestArg COMMA requestArgs 
             {
               Object RESULT =null;
 
@@ -4874,7 +4845,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 215: // requestArg ::= indexParam 
+          case 214: // requestArg ::= indexParam 
             {
               Object RESULT =null;
 
@@ -4883,7 +4854,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 216: // requestArg ::= delayParam 
+          case 215: // requestArg ::= delayParam 
             {
               Object RESULT =null;
 
@@ -4892,7 +4863,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 217: // requestArg ::= channelParam 
+          case 216: // requestArg ::= channelParam 
             {
               Object RESULT =null;
 
@@ -4901,7 +4872,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 218: // requestArg ::= payloadParam 
+          case 217: // requestArg ::= payloadParam 
             {
               Object RESULT =null;
 
@@ -4910,7 +4881,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 219: // requestArg ::= settimerParam 
+          case 218: // requestArg ::= settimerParam 
             {
               Object RESULT =null;
 
@@ -4919,7 +4890,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 220: // requestArg ::= resettimerParam 
+          case 219: // requestArg ::= resettimerParam 
             {
               Object RESULT =null;
 
@@ -4928,7 +4899,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 221: // requestArg ::= expiretimerParam 
+          case 220: // requestArg ::= expiretimerParam 
             {
               Object RESULT =null;
 
@@ -4937,7 +4908,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 222: // indexParam ::= INDEX_F EQUAL INT 
+          case 221: // indexParam ::= INDEX_F EQUAL INT 
             {
               Object RESULT =null;
 		Location fxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-2)).xleft;
@@ -4959,7 +4930,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 223: // delayParam ::= delayKeyword EQUAL delayExpr 
+          case 222: // delayParam ::= delayKeyword EQUAL delayExpr 
             {
               Object RESULT =null;
 
@@ -4968,7 +4939,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 224: // delayKeyword ::= DELAY_F 
+          case 223: // delayKeyword ::= DELAY_F 
             {
               Object RESULT =null;
 		Location dxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -4989,7 +4960,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 225: // delayExpr ::= iexpr 
+          case 224: // delayExpr ::= iexpr 
             {
               Object RESULT =null;
 		Location exleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -5001,7 +4972,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 226: // delayExpr ::= delayRandomExpr 
+          case 225: // delayExpr ::= delayRandomExpr 
             {
               Object RESULT =null;
 
@@ -5010,7 +4981,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 227: // delayRandomExpr ::= BOUNDRANDOM_U LPAR iexpr COMMA iexpr RPAR 
+          case 226: // delayRandomExpr ::= BOUNDRANDOM_U LPAR iexpr COMMA iexpr RPAR 
             {
               Object RESULT =null;
 		Location ixleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-3)).xleft;
@@ -5030,7 +5001,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 228: // payloadParam ::= payloadParamBegin IDENT LPAR termList RPAR 
+          case 227: // payloadParam ::= payloadParamBegin IDENT LPAR termList RPAR 
             {
               Object RESULT =null;
 		Location bxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-4)).xleft;
@@ -5050,7 +5021,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 229: // payloadParam ::= payloadParamBegin IDENT LPAR RPAR 
+          case 228: // payloadParam ::= payloadParamBegin IDENT LPAR RPAR 
             {
               Object RESULT =null;
 		Location bxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-3)).xleft;
@@ -5070,7 +5041,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 230: // payloadParam ::= payloadParamBegin IDENT 
+          case 229: // payloadParam ::= payloadParamBegin IDENT 
             {
               Object RESULT =null;
 		Location bxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-1)).xleft;
@@ -5090,7 +5061,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 231: // payloadParam ::= payloadParamBegin TIMERSETMSG_T LPAR stxExpr RPAR 
+          case 230: // payloadParam ::= payloadParamBegin TIMERSETMSG_T LPAR stxExpr RPAR 
             {
               Object RESULT =null;
 		Location bxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-4)).xleft;
@@ -5114,7 +5085,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 232: // payloadParamBegin ::= PAYLOAD_F EQUAL 
+          case 231: // payloadParamBegin ::= PAYLOAD_F EQUAL 
             {
               Object RESULT =null;
 		Location pxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-1)).xleft;
@@ -5136,7 +5107,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 233: // channelParam ::= CHANNEL_F EQUAL IDENT 
+          case 232: // channelParam ::= CHANNEL_F EQUAL IDENT 
             {
               Object RESULT =null;
 		Location cxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-2)).xleft;
@@ -5165,7 +5136,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 234: // settimerParam ::= CHANNEL_F EQUAL IDENT POINT SET_TM 
+          case 233: // settimerParam ::= CHANNEL_F EQUAL IDENT POINT SET_TM 
             {
               Object RESULT =null;
 		Location cxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-4)).xleft;
@@ -5190,7 +5161,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 235: // resettimerParam ::= CHANNEL_F EQUAL IDENT POINT RESET_TM 
+          case 234: // resettimerParam ::= CHANNEL_F EQUAL IDENT POINT RESET_TM 
             {
               Object RESULT =null;
 		Location cxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-4)).xleft;
@@ -5215,7 +5186,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 236: // expiretimerParam ::= CHANNEL_F EQUAL IDENT POINT EXPIRE_TM 
+          case 235: // expiretimerParam ::= CHANNEL_F EQUAL IDENT POINT EXPIRE_TM 
             {
               Object RESULT =null;
 		Location cxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-4)).xleft;
@@ -5240,7 +5211,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 237: // termList ::= stxRvalue 
+          case 236: // termList ::= stxRvalue 
             {
               Object RESULT =null;
 		Location exleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -5252,7 +5223,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 238: // termList ::= termList COMMA stxRvalue 
+          case 237: // termList ::= termList COMMA stxRvalue 
             {
               Object RESULT =null;
 		Location exleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -5264,7 +5235,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 239: // fulllIdent ::= IDENT 
+          case 238: // fulllIdent ::= IDENT 
             {
               String RESULT =null;
 		Location idxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -5276,7 +5247,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 240: // fulllIdent ::= fulllIdent FOURPOINTS IDENT 
+          case 239: // fulllIdent ::= fulllIdent FOURPOINTS IDENT 
             {
               String RESULT =null;
 		Location idxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -5288,7 +5259,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 241: // fullIdent ::= fullIdentInit fulllIdent 
+          case 240: // fullIdent ::= fullIdentInit fulllIdent 
             {
               String RESULT =null;
 		
@@ -5300,7 +5271,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 242: // fullIdentInit ::= 
+          case 241: // fullIdentInit ::= 
             {
               String RESULT =null;
 		
@@ -5311,7 +5282,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 243: // randomAction ::= ACTION STATEACTION_F REDEFINES STATEACTION_F LBRAC randomParam RBRAC 
+          case 242: // randomAction ::= ACTION STATEACTION_F REDEFINES STATEACTION_F LBRAC randomParam RBRAC 
             {
               Object RESULT =null;
 
@@ -5320,7 +5291,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 244: // randomParam ::= FIRST START_U SEMICOLON THEN ASSIGN fullIdent GETS BOUNDRANDOM_U LPAR iexpr COMMA iexpr RPAR SEMICOLON THEN DONE_U SEMICOLON 
+          case 243: // randomParam ::= FIRST START_U SEMICOLON THEN ASSIGN fullIdent GETS BOUNDRANDOM_U LPAR iexpr COMMA iexpr RPAR SEMICOLON THEN DONE_U SEMICOLON 
             {
               Object RESULT =null;
 		Location idxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-11)).xleft;
@@ -5342,7 +5313,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 245: // countAction ::= ACTION STATEACTION_F REDEFINES STATEACTION_F LBRAC countParam RBRAC 
+          case 244: // countAction ::= ACTION STATEACTION_F REDEFINES STATEACTION_F LBRAC countParam RBRAC 
             {
               Object RESULT =null;
 
@@ -5351,7 +5322,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 246: // countParam ::= FIRST START_U SEMICOLON THEN ASSIGN fullIdent GETS IDENT POINT AMOUNT_U LPAR RPAR SEMICOLON THEN DONE_U SEMICOLON 
+          case 245: // countParam ::= FIRST START_U SEMICOLON THEN ASSIGN fullIdent GETS IDENT POINT AMOUNT_U LPAR RPAR SEMICOLON THEN DONE_U SEMICOLON 
             {
               Object RESULT =null;
 		Location tidxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-10)).xleft;
@@ -5370,7 +5341,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 247: // transition ::= transitionBegin THEN IDENT SEMICOLON 
+          case 246: // transition ::= transitionBegin THEN IDENT SEMICOLON 
             {
               Object RESULT =null;
 		Location txleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-3)).xleft;
@@ -5395,7 +5366,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 248: // transition ::= transitionBegin doActions THEN IDENT SEMICOLON 
+          case 247: // transition ::= transitionBegin doActions THEN IDENT SEMICOLON 
             {
               Object RESULT =null;
 		Location txleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-4)).xleft;
@@ -5420,7 +5391,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 249: // transition ::= transitionBegin THEN IDENT LBRAC transitionLabels RBRAC 
+          case 248: // transition ::= transitionBegin THEN IDENT LBRAC transitionLabels RBRAC 
             {
               Object RESULT =null;
 		Location txleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-5)).xleft;
@@ -5447,7 +5418,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 250: // transition ::= transitionBegin doActions THEN IDENT LBRAC transitionLabels RBRAC 
+          case 249: // transition ::= transitionBegin doActions THEN IDENT LBRAC transitionLabels RBRAC 
             {
               Object RESULT =null;
 		Location txleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-6)).xleft;
@@ -5474,7 +5445,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 251: // transitionBegin ::= TRANSITION COLON AVTRANSITION_T FIRST IDENT 
+          case 250: // transitionBegin ::= TRANSITION COLON AVTRANSITION_T FIRST IDENT 
             {
               Object RESULT =null;
 		Location txleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-4)).xleft;
@@ -5499,7 +5470,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 252: // transitionBegin ::= TRANSITION COLON AVTRANSITION_T FIRST IDENT IF INDEX_F EQ INT 
+          case 251: // transitionBegin ::= TRANSITION COLON AVTRANSITION_T FIRST IDENT IF INDEX_F EQ INT 
             {
               Object RESULT =null;
 		Location txleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-8)).xleft;
@@ -5527,7 +5498,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 253: // doActions ::= transitionActionBegin LBRAC RBRAC 
+          case 252: // doActions ::= transitionActionBegin LBRAC RBRAC 
             {
               Object RESULT =null;
 
@@ -5536,7 +5507,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 254: // doActions ::= transitionActionBegin LBRAC transitionAction RBRAC 
+          case 253: // doActions ::= transitionActionBegin LBRAC transitionAction RBRAC 
             {
               Object RESULT =null;
 		
@@ -5548,7 +5519,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 255: // doActions ::= receiveActionBegin LBRAC RBRAC 
+          case 254: // doActions ::= receiveActionBegin LBRAC RBRAC 
             {
               Object RESULT =null;
 
@@ -5557,7 +5528,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 256: // doActions ::= receiveActionBegin LBRAC receiveAction RBRAC 
+          case 255: // doActions ::= receiveActionBegin LBRAC receiveAction RBRAC 
             {
               Object RESULT =null;
 		
@@ -5569,7 +5540,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 257: // transitionActionBegin ::= DO ACTION COLON TRANSITIONACTION_T 
+          case 256: // transitionActionBegin ::= DO ACTION COLON TRANSITIONACTION_T 
             {
               Object RESULT =null;
 		
@@ -5580,7 +5551,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 258: // receiveActionBegin ::= DO ACTION COLON RECEIVEACTION_T 
+          case 257: // receiveActionBegin ::= DO ACTION COLON RECEIVEACTION_T 
             {
               Object RESULT =null;
 		
@@ -5591,7 +5562,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 259: // transitionAction ::= FIRST START_U SEMICOLON THEN DONE_U SEMICOLON 
+          case 258: // transitionAction ::= FIRST START_U SEMICOLON THEN DONE_U SEMICOLON 
             {
               Object RESULT =null;
 
@@ -5600,7 +5571,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 260: // transitionAction ::= FIRST START_U SEMICOLON actionSeq 
+          case 259: // transitionAction ::= FIRST START_U SEMICOLON actionSeq 
             {
               Object RESULT =null;
 
@@ -5609,7 +5580,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 261: // actionSeq ::= THEN act THEN DONE_U SEMICOLON 
+          case 260: // actionSeq ::= THEN act THEN DONE_U SEMICOLON 
             {
               Object RESULT =null;
 
@@ -5618,7 +5589,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 262: // actionSeq ::= THEN act actionSeq 
+          case 261: // actionSeq ::= THEN act actionSeq 
             {
               Object RESULT =null;
 
@@ -5627,7 +5598,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 263: // act ::= ASSIGN fullIdent GETS stxRvalue SEMICOLON 
+          case 262: // act ::= ASSIGN fullIdent GETS stxRvalue SEMICOLON 
             {
               Object RESULT =null;
 		Location axleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-4)).xleft;
@@ -5650,7 +5621,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 264: // act ::= ACTION EQUAL stxCall SEMICOLON 
+          case 263: // act ::= ACTION EQUAL stxCall SEMICOLON 
             {
               Object RESULT =null;
 		Location axleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-3)).xleft;
@@ -5670,7 +5641,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 265: // receiveAction ::= messageLine receiveAssigns 
+          case 264: // receiveAction ::= messageLine receiveAssigns 
             {
               Object RESULT =null;
 
@@ -5679,7 +5650,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 266: // receiveAction ::= receiveAssigns messageLine 
+          case 265: // receiveAction ::= receiveAssigns messageLine 
             {
               Object RESULT =null;
 
@@ -5688,7 +5659,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 267: // messageLine ::= ITEM MSG_U COLON IDENT EQUAL PAYLOAD_F AS IDENT SEMICOLON 
+          case 266: // messageLine ::= ITEM MSG_U COLON IDENT EQUAL PAYLOAD_F AS IDENT SEMICOLON 
             {
               Object RESULT =null;
 
@@ -5697,7 +5668,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 268: // receiveAssigns ::= FIRST START_U SEMICOLON THEN DONE_U SEMICOLON 
+          case 267: // receiveAssigns ::= FIRST START_U SEMICOLON THEN DONE_U SEMICOLON 
             {
               Object RESULT =null;
 
@@ -5706,7 +5677,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 269: // receiveAssigns ::= FIRST START_U SEMICOLON receiveAssignSeq 
+          case 268: // receiveAssigns ::= FIRST START_U SEMICOLON receiveAssignSeq 
             {
               Object RESULT =null;
 
@@ -5715,7 +5686,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 270: // receiveAssignSeq ::= receiveAssign THEN DONE_U SEMICOLON 
+          case 269: // receiveAssignSeq ::= receiveAssign THEN DONE_U SEMICOLON 
             {
               Object RESULT =null;
 
@@ -5724,7 +5695,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 271: // receiveAssignSeq ::= receiveAssign receiveAssignSeq 
+          case 270: // receiveAssignSeq ::= receiveAssign receiveAssignSeq 
             {
               Object RESULT =null;
 
@@ -5733,7 +5704,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 272: // receiveAssign ::= THEN ASSIGN fullIdent GETS MSG_U POINT IDENT SEMICOLON 
+          case 271: // receiveAssign ::= THEN ASSIGN fullIdent GETS MSG_U POINT IDENT SEMICOLON 
             {
               Object RESULT =null;
 		Location txleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-7)).xleft;
@@ -5757,7 +5728,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 273: // transitionLabels ::= transitionLabel SEMICOLON 
+          case 272: // transitionLabels ::= transitionLabel SEMICOLON 
             {
               Object RESULT =null;
 
@@ -5766,7 +5737,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 274: // transitionLabels ::= transitionLabel SEMICOLON transitionLabels 
+          case 273: // transitionLabels ::= transitionLabel SEMICOLON transitionLabels 
             {
               Object RESULT =null;
 
@@ -5775,7 +5746,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 275: // transitionLabel ::= distributionLabel 
+          case 274: // transitionLabel ::= distributionLabel 
             {
               Object RESULT =null;
 
@@ -5784,7 +5755,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 276: // transitionLabel ::= weightLabel 
+          case 275: // transitionLabel ::= weightLabel 
             {
               Object RESULT =null;
 
@@ -5793,7 +5764,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 277: // transitionLabel ::= extraLabel 
+          case 276: // transitionLabel ::= extraLabel 
             {
               Object RESULT =null;
 
@@ -5802,7 +5773,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 278: // distributionLabel ::= ATTRIBUTE DISTRIBUTION_A COLON STRING_T EQUAL STRING 
+          case 277: // distributionLabel ::= ATTRIBUTE DISTRIBUTION_A COLON STRING_T EQUAL STRING 
             {
               Object RESULT =null;
 		Location axleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-5)).xleft;
@@ -5825,7 +5796,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 279: // weightLabel ::= ATTRIBUTE WEIGHT_A COLON REAL_T EQUAL REAL 
+          case 278: // weightLabel ::= ATTRIBUTE WEIGHT_A COLON REAL_T EQUAL REAL 
             {
               Object RESULT =null;
 		Location axleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-5)).xleft;
@@ -5848,7 +5819,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 280: // weightLabel ::= ATTRIBUTE WEIGHT_A COLON REAL_T EQUAL INT 
+          case 279: // weightLabel ::= ATTRIBUTE WEIGHT_A COLON REAL_T EQUAL INT 
             {
               Object RESULT =null;
 		Location axleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-5)).xleft;
@@ -5871,7 +5842,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 281: // extraLabel ::= ATTRIBUTE ANYNAME COLON STRING_T EQUAL STRING 
+          case 280: // extraLabel ::= ATTRIBUTE ANYNAME COLON STRING_T EQUAL STRING 
             {
               Object RESULT =null;
 		Location nxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-4)).xleft;
@@ -5890,7 +5861,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 282: // extraLabel ::= ATTRIBUTE IDENT COLON STRING_T EQUAL STRING 
+          case 281: // extraLabel ::= ATTRIBUTE IDENT COLON STRING_T EQUAL STRING 
             {
               Object RESULT =null;
 		Location nxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-4)).xleft;
@@ -5909,7 +5880,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 283: // stxRvalue ::= stxCall 
+          case 282: // stxRvalue ::= stxCall 
             {
               StxTerm RESULT =null;
 		Location cxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -5921,7 +5892,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 284: // stxRvalue ::= expr 
+          case 283: // stxRvalue ::= expr 
             {
               StxTerm RESULT =null;
 		Location exleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -5933,7 +5904,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 285: // stxRvalue ::= complexIdent 
+          case 284: // stxRvalue ::= complexIdent 
             {
               StxTerm RESULT =null;
 		Location ixleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -5945,7 +5916,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 286: // stxExpr ::= iexpr 
+          case 285: // stxExpr ::= iexpr 
             {
               StxExpr RESULT =null;
 		Location exleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -5957,7 +5928,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 287: // iexpr ::= expr 
+          case 286: // iexpr ::= expr 
             {
               String RESULT =null;
 		Location exleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -5969,7 +5940,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 288: // iexpr ::= complexIdent 
+          case 287: // iexpr ::= complexIdent 
             {
               String RESULT =null;
 		Location ixleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -5981,7 +5952,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 289: // expr ::= iexpr PLUS iexpr 
+          case 288: // expr ::= iexpr PLUS iexpr 
             {
               String RESULT =null;
 		Location lxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-2)).xleft;
@@ -5996,7 +5967,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 290: // expr ::= iexpr MINUS iexpr 
+          case 289: // expr ::= iexpr MINUS iexpr 
             {
               String RESULT =null;
 		Location lxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-2)).xleft;
@@ -6011,7 +5982,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 291: // expr ::= iexpr MULT iexpr 
+          case 290: // expr ::= iexpr MULT iexpr 
             {
               String RESULT =null;
 		Location lxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-2)).xleft;
@@ -6026,7 +5997,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 292: // expr ::= iexpr DIV iexpr 
+          case 291: // expr ::= iexpr DIV iexpr 
             {
               String RESULT =null;
 		Location lxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-2)).xleft;
@@ -6041,7 +6012,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 293: // expr ::= iexpr MOD iexpr 
+          case 292: // expr ::= iexpr MOD iexpr 
             {
               String RESULT =null;
 		Location lxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-2)).xleft;
@@ -6056,7 +6027,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 294: // expr ::= MINUS iexpr 
+          case 293: // expr ::= MINUS iexpr 
             {
               String RESULT =null;
 		Location exleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -6068,7 +6039,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 295: // expr ::= iexpr OR iexpr 
+          case 294: // expr ::= iexpr OR iexpr 
             {
               String RESULT =null;
 		Location lxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-2)).xleft;
@@ -6083,7 +6054,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 296: // expr ::= iexpr AND iexpr 
+          case 295: // expr ::= iexpr AND iexpr 
             {
               String RESULT =null;
 		Location lxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-2)).xleft;
@@ -6098,7 +6069,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 297: // expr ::= NOT iexpr 
+          case 296: // expr ::= NOT iexpr 
             {
               String RESULT =null;
 		Location exleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -6110,7 +6081,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 298: // expr ::= iexpr LT iexpr 
+          case 297: // expr ::= iexpr LT iexpr 
             {
               String RESULT =null;
 		Location lxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-2)).xleft;
@@ -6125,7 +6096,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 299: // expr ::= iexpr GT iexpr 
+          case 298: // expr ::= iexpr GT iexpr 
             {
               String RESULT =null;
 		Location lxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-2)).xleft;
@@ -6139,6 +6110,21 @@ class CUP$AvatarFromSysMLParser$actions {
             }
           return CUP$AvatarFromSysMLParser$result;
 
+          /*. . . . . . . . . . . . . . . . . . . .*/
+          case 299: // expr ::= iexpr LEQ iexpr 
+            {
+              String RESULT =null;
+		Location lxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-2)).xleft;
+		Location lxright = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-2)).xright;
+		String l = CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-2).<String>value();
+		Location rxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
+		Location rxright = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xright;
+		String r = CUP$AvatarFromSysMLParser$stack.peek().<String>value();
+		 RESULT = l + " <= " + r; 
+              CUP$AvatarFromSysMLParser$result = parser.getSymbolFactory().newSymbol("expr",152, CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-2), CUP$AvatarFromSysMLParser$stack.peek(), RESULT);
+            }
+          return CUP$AvatarFromSysMLParser$result;
+
           /* . . . . . .*/
           default:
             throw new Exception(
@@ -6161,22 +6147,7 @@ class CUP$AvatarFromSysMLParser$actions {
       switch (CUP$AvatarFromSysMLParser$act_num)
         {
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 300: // expr ::= iexpr LEQ iexpr 
-            {
-              String RESULT =null;
-		Location lxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-2)).xleft;
-		Location lxright = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-2)).xright;
-		String l = CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-2).<String>value();
-		Location rxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
-		Location rxright = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xright;
-		String r = CUP$AvatarFromSysMLParser$stack.peek().<String>value();
-		 RESULT = l + " <= " + r; 
-              CUP$AvatarFromSysMLParser$result = parser.getSymbolFactory().newSymbol("expr",152, CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-2), CUP$AvatarFromSysMLParser$stack.peek(), RESULT);
-            }
-          return CUP$AvatarFromSysMLParser$result;
-
-          /*. . . . . . . . . . . . . . . . . . . .*/
-          case 301: // expr ::= iexpr GEQ iexpr 
+          case 300: // expr ::= iexpr GEQ iexpr 
             {
               String RESULT =null;
 		Location lxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-2)).xleft;
@@ -6191,7 +6162,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 302: // expr ::= iexpr EQ iexpr 
+          case 301: // expr ::= iexpr EQ iexpr 
             {
               String RESULT =null;
 		Location lxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-2)).xleft;
@@ -6206,7 +6177,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 303: // expr ::= iexpr DIF iexpr 
+          case 302: // expr ::= iexpr DIF iexpr 
             {
               String RESULT =null;
 		Location lxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-2)).xleft;
@@ -6221,7 +6192,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 304: // expr ::= LPAR iexpr RPAR 
+          case 303: // expr ::= LPAR iexpr RPAR 
             {
               String RESULT =null;
 		Location exleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-1)).xleft;
@@ -6233,7 +6204,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 305: // expr ::= INT 
+          case 304: // expr ::= INT 
             {
               String RESULT =null;
 		Location ixleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -6245,7 +6216,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 306: // expr ::= BOOL 
+          case 305: // expr ::= BOOL 
             {
               String RESULT =null;
 		Location bxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -6257,7 +6228,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 307: // complexIdent ::= IDENT 
+          case 306: // complexIdent ::= IDENT 
             {
               String RESULT =null;
 		Location exleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -6269,7 +6240,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 308: // complexIdent ::= IDENT FOURPOINTS complexIdent 
+          case 307: // complexIdent ::= IDENT FOURPOINTS complexIdent 
             {
               String RESULT =null;
 		Location exleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-2)).xleft;
@@ -6284,7 +6255,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 309: // complexIdent ::= IDENT POINT fullIdent 
+          case 308: // complexIdent ::= IDENT POINT fullIdent 
             {
               String RESULT =null;
 		Location exleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-2)).xleft;
@@ -6299,7 +6270,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 310: // stxCall ::= stxCallBegin RPAR 
+          case 309: // stxCall ::= stxCallBegin RPAR 
             {
               StxCall RESULT =null;
 		Location bxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-1)).xleft;
@@ -6317,7 +6288,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 311: // stxCall ::= stxCallBegin stxCallParams RPAR 
+          case 310: // stxCall ::= stxCallBegin stxCallParams RPAR 
             {
               StxCall RESULT =null;
 		Location bxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-2)).xleft;
@@ -6338,7 +6309,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 312: // stxCallBegin ::= IDENT LPAR 
+          case 311: // stxCallBegin ::= IDENT LPAR 
             {
               Object RESULT =null;
 		Location ixleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-1)).xleft;
@@ -6353,7 +6324,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 313: // stxCallParams ::= stxCallParam 
+          case 312: // stxCallParams ::= stxCallParam 
             {
               Object RESULT =null;
 
@@ -6362,7 +6333,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 314: // stxCallParams ::= stxCallParam comma stxCallParams 
+          case 313: // stxCallParams ::= stxCallParam comma stxCallParams 
             {
               Object RESULT =null;
 
@@ -6371,7 +6342,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 315: // comma ::= COMMA 
+          case 314: // comma ::= COMMA 
             {
               Object RESULT =null;
 		 exprStringAcc.append(", "); 
@@ -6380,7 +6351,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 316: // stxCallParam ::= expr 
+          case 315: // stxCallParam ::= expr 
             {
               Object RESULT =null;
 		Location exleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -6392,7 +6363,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 317: // stxCallParam ::= complexIdent 
+          case 316: // stxCallParam ::= complexIdent 
             {
               Object RESULT =null;
 		Location ixleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.peek()).xleft;
@@ -6408,7 +6379,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 318: // stxCallParam ::= call 
+          case 317: // stxCallParam ::= call 
             {
               Object RESULT =null;
 
@@ -6417,7 +6388,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 319: // call ::= callBegin RPAR 
+          case 318: // call ::= callBegin RPAR 
             {
               Object RESULT =null;
 		 exprStringAcc.append(")"); 
@@ -6426,7 +6397,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 320: // call ::= stxCallBegin stxCallParams RPAR 
+          case 319: // call ::= stxCallBegin stxCallParams RPAR 
             {
               Object RESULT =null;
 		Location lxleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-1)).xleft;
@@ -6438,7 +6409,7 @@ class CUP$AvatarFromSysMLParser$actions {
           return CUP$AvatarFromSysMLParser$result;
 
           /*. . . . . . . . . . . . . . . . . . . .*/
-          case 321: // callBegin ::= IDENT LPAR 
+          case 320: // callBegin ::= IDENT LPAR 
             {
               Object RESULT =null;
 		Location ixleft = ((java_cup.runtime.ComplexSymbolFactory.ComplexSymbol)CUP$AvatarFromSysMLParser$stack.elementAt(CUP$AvatarFromSysMLParser$top-1)).xleft;
diff --git a/src/main/java/avatartranslator/tosysmlv2/javacup/AvatarFromSysML.jcup b/src/main/java/avatartranslator/tosysmlv2/javacup/AvatarFromSysML.jcup
index 73eb151229fcc0a534deb36c4ce209c56b18bf0e..e9571c66954b6e7b7b5e058d05ae8fcd9a70c045 100644
--- a/src/main/java/avatartranslator/tosysmlv2/javacup/AvatarFromSysML.jcup
+++ b/src/main/java/avatartranslator/tosysmlv2/javacup/AvatarFromSysML.jcup
@@ -863,18 +863,7 @@ inMessageDeclBODY ::=
     | fieldDecls messageChannel RBRAC
 ;
 messageChannel ::=
-      PRIVATE:p PART CHANNEL_F COLON CHANNEL_T EQUAL IDENT:ch SEMICOLON {:
-        if (messageChannelParam != null) // duplicate
-            addError(new AvatarFromSysMLError(AvatarFromSysMLError.ERROR, pxleft,
-                "in-message channel has already been set", messageChannelParam));
-        else { // message param is not set
-            getChannel(ch.getAvatarName());
-            theChannel.setInProfile((StxInMessage)theStructure);
-            ((StxInMessage)theStructure).setChannel(theChannel);
-            messageChannelParam = pxleft; // now it is
-        }
-      :}
-    | PRIVATE:p PART CHANNEL_F EQUAL IDENT:ch SEMICOLON {:
+      PART:p CHANNEL_F REDEFINES CHANNEL_F EQUAL IDENT:ch SEMICOLON {:
         if (messageChannelParam != null) // duplicate
             addError(new AvatarFromSysMLError(AvatarFromSysMLError.ERROR, pxleft,
                 "in-message channel has already been set", messageChannelParam));
diff --git a/ttool/src/test/resources/cli/models/avSysML_AttrTimerNameClashL.sysml b/ttool/src/test/resources/cli/models/avSysML_AttrTimerNameClashL.sysml
index 413c33c7394f7a7cfd59157e353e8063adb96eb6..1caa8f3f58f421539bbaa78631f3f8be131ba048 100644
--- a/ttool/src/test/resources/cli/models/avSysML_AttrTimerNameClashL.sysml
+++ b/ttool/src/test/resources/cli/models/avSysML_AttrTimerNameClashL.sysml
@@ -23,7 +23,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B0'.'@sig:in0'............
     part def '@MSG:B0.in0' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.in0<B1_0.out1';
+        part '@channel' redefines '@channel' = '@syn:B0.in0<B1_0.out1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
@@ -43,7 +43,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B1_0'.'@sig:in1'............
     part def '@MSG:B1_0.in1' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.out0>B1_0.in1';
+        part '@channel' redefines '@channel' = '@syn:B0.out0>B1_0.in1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
diff --git a/ttool/src/test/resources/cli/models/avSysML_DupChParamSndPayloadErrE.sysml b/ttool/src/test/resources/cli/models/avSysML_DupChParamSndPayloadErrE.sysml
index 16aeca137cdcb2b6f85e959ec1182fd24a7522da..19e89014bd4d8749af2e458ed6fc6d483c54bf01 100644
--- a/ttool/src/test/resources/cli/models/avSysML_DupChParamSndPayloadErrE.sysml
+++ b/ttool/src/test/resources/cli/models/avSysML_DupChParamSndPayloadErrE.sysml
@@ -23,7 +23,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B0'.'@sig:in0'............
     part def '@MSG:B0.in0' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.in0<B1.out1';
+        part '@channel' redefines '@channel' = '@syn:B0.in0<B1.out1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
@@ -43,7 +43,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B1'.'@sig:in1'............
     part def '@MSG:B1.in1' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.out0>B1.in1';
+        part '@channel' redefines '@channel' = '@syn:B0.out0>B1.in1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
diff --git a/ttool/src/test/resources/cli/models/avSysML_badFieldNameErr4.sysml b/ttool/src/test/resources/cli/models/avSysML_badFieldNameErr4.sysml
index 6fb86be3c7eba6305d7809cff875e4ea8abaab77..a3c0f52859e0c0167123e42292fdd47c3dec1185 100644
--- a/ttool/src/test/resources/cli/models/avSysML_badFieldNameErr4.sysml
+++ b/ttool/src/test/resources/cli/models/avSysML_badFieldNameErr4.sysml
@@ -23,7 +23,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B0'.'@sig:in0'............
     part def '@MSG:B0.in0' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.in0<B1.out1';
+        part '@channel' redefines '@channel' = '@syn:B0.in0<B1.out1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
@@ -43,7 +43,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B1'.'@sig:in1'............
     part def '@MSG:B1.in1' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.out0>B1.in1';
+        part '@channel' redefines '@channel' = '@syn:B0.out0>B1.in1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
diff --git a/ttool/src/test/resources/cli/models/avSysML_dupAttrDeclK.sysml b/ttool/src/test/resources/cli/models/avSysML_dupAttrDeclK.sysml
index 2105351536e27683b01f395dde0a9f4799f044d3..05b65fe9fae29ade3d252d29bd7c56c3d1f9ed5c 100644
--- a/ttool/src/test/resources/cli/models/avSysML_dupAttrDeclK.sysml
+++ b/ttool/src/test/resources/cli/models/avSysML_dupAttrDeclK.sysml
@@ -23,7 +23,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B0'.'@sig:in0'............
     part def '@MSG:B0.in0' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.in0<B1_0.out1';
+        part '@channel' redefines '@channel' = '@syn:B0.in0<B1_0.out1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
@@ -43,7 +43,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B1_0'.'@sig:in1'............
     part def '@MSG:B1_0.in1' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.out0>B1_0.in1';
+        part '@channel' redefines '@channel' = '@syn:B0.out0>B1_0.in1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
diff --git a/ttool/src/test/resources/cli/models/avSysML_missingAttrDeclErr6.sysml b/ttool/src/test/resources/cli/models/avSysML_missingAttrDeclErr6.sysml
index b156aa968cb37bde73e608a3faa8cf2aaeb8ca1d..a16c919d2e756822c089d0c8fd5ecbadb311aa69 100644
--- a/ttool/src/test/resources/cli/models/avSysML_missingAttrDeclErr6.sysml
+++ b/ttool/src/test/resources/cli/models/avSysML_missingAttrDeclErr6.sysml
@@ -23,7 +23,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B0'.'@sig:in0'............
     part def '@MSG:B0.in0' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.in0<B1.out1';
+        part '@channel' redefines '@channel' = '@syn:B0.in0<B1.out1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
@@ -43,7 +43,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B1'.'@sig:in1'............
     part def '@MSG:B1.in1' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.out0>B1.in1';
+        part '@channel' redefines '@channel' = '@syn:B0.out0>B1.in1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
diff --git a/ttool/src/test/resources/cli/models/avSysML_missingBlockBindErrH.sysml b/ttool/src/test/resources/cli/models/avSysML_missingBlockBindErrH.sysml
index f1c1cfb8dcc45081a4107de095d1ce2acb2b1a06..ede6c9e951b90719c578fb6bdea1e1b3bf3e5bc9 100644
--- a/ttool/src/test/resources/cli/models/avSysML_missingBlockBindErrH.sysml
+++ b/ttool/src/test/resources/cli/models/avSysML_missingBlockBindErrH.sysml
@@ -23,7 +23,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B0'.'@sig:in0'............
     part def '@MSG:B0.in0' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.in0<B1_0.out1';
+        part '@channel' redefines '@channel' = '@syn:B0.in0<B1_0.out1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
@@ -43,7 +43,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B1_0'.'@sig:in1'............
     part def '@MSG:B1_0.in1' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.out0>B1_0.in1';
+        part '@channel' redefines '@channel' = '@syn:B0.out0>B1_0.in1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
diff --git a/ttool/src/test/resources/cli/models/avSysML_missingBlockErr3.sysml b/ttool/src/test/resources/cli/models/avSysML_missingBlockErr3.sysml
index e24ea58788363b8f8344b92bfaa0619d2d111b31..fd603ec0d386261cd4181ff84f66cba24e7646fd 100644
--- a/ttool/src/test/resources/cli/models/avSysML_missingBlockErr3.sysml
+++ b/ttool/src/test/resources/cli/models/avSysML_missingBlockErr3.sysml
@@ -23,7 +23,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B0'.'@sig:in0'............
     part def '@MSG:B0.in0' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.in0<B1.out1';
+        part '@channel' redefines '@channel' = '@syn:B0.in0<B1.out1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
@@ -43,7 +43,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B1'.'@sig:in1'............
     part def '@MSG:B1.in1' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.out0>B1.in1';
+        part '@channel' redefines '@channel' = '@syn:B0.out0>B1.in1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
diff --git a/ttool/src/test/resources/cli/models/avSysML_missingBlockErrG.sysml b/ttool/src/test/resources/cli/models/avSysML_missingBlockErrG.sysml
index 734445d8f0ef06b5750e29689d6eab9e1768dd66..bc20d0361c31fb537d4330af5624f52e6db9b00b 100644
--- a/ttool/src/test/resources/cli/models/avSysML_missingBlockErrG.sysml
+++ b/ttool/src/test/resources/cli/models/avSysML_missingBlockErrG.sysml
@@ -23,7 +23,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B0'.'@sig:in0'............
     part def '@MSG:B0.in0' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.in0<B1.out1';
+        part '@channel' redefines '@channel' = '@syn:B0.in0<B1.out1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
@@ -43,7 +43,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B1'.'@sig:in1'............
     part def '@MSG:B1.in1' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.out0>B1.in1';
+        part '@channel' redefines '@channel' = '@syn:B0.out0>B1.in1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
diff --git a/ttool/src/test/resources/cli/models/avSysML_missingChanInSndErrB.sysml b/ttool/src/test/resources/cli/models/avSysML_missingChanInSndErrB.sysml
index 78ec201879dc93ad0ebeecc54b8eda735e3a6e6e..9f7974ea6bdebf5a1459b557df526e25312c3dee 100644
--- a/ttool/src/test/resources/cli/models/avSysML_missingChanInSndErrB.sysml
+++ b/ttool/src/test/resources/cli/models/avSysML_missingChanInSndErrB.sysml
@@ -23,7 +23,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B0'.'@sig:in0'............
     part def '@MSG:B0.in0' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.in0<B1.out1';
+        part '@channel' redefines '@channel' = '@syn:B0.in0<B1.out1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
@@ -43,7 +43,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B1'.'@sig:in1'............
     part def '@MSG:B1.in1' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.out0>B1.in1';
+        part '@channel' redefines '@channel' = '@syn:B0.out0>B1.in1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
diff --git a/ttool/src/test/resources/cli/models/avSysML_missingDatatypeDeclErrF.sysml b/ttool/src/test/resources/cli/models/avSysML_missingDatatypeDeclErrF.sysml
index bf664651c7e8b260e44d7acbca2e82d032e40bb1..638d6fee65e3f6d855d40081e780dcc5a3999e5d 100644
--- a/ttool/src/test/resources/cli/models/avSysML_missingDatatypeDeclErrF.sysml
+++ b/ttool/src/test/resources/cli/models/avSysML_missingDatatypeDeclErrF.sysml
@@ -23,7 +23,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B0'.'@sig:in0'............
     part def '@MSG:B0.in0' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.in0<B1.out1';
+        part '@channel' redefines '@channel' = '@syn:B0.in0<B1.out1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
@@ -43,7 +43,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B1'.'@sig:in1'............
     part def '@MSG:B1.in1' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.out0>B1.in1';
+        part '@channel' redefines '@channel' = '@syn:B0.out0>B1.in1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
diff --git a/ttool/src/test/resources/cli/models/avSysML_missingMethDeclErr8.sysml b/ttool/src/test/resources/cli/models/avSysML_missingMethDeclErr8.sysml
index 78115a78dfe15c8a7ab0b2864f753b5e2fcc7144..a8f3a2ef483fdbedf7927a394ca51fee2882feaa 100644
--- a/ttool/src/test/resources/cli/models/avSysML_missingMethDeclErr8.sysml
+++ b/ttool/src/test/resources/cli/models/avSysML_missingMethDeclErr8.sysml
@@ -23,7 +23,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B0'.'@sig:in0'............
     part def '@MSG:B0.in0' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.in0<B1.out1';
+        part '@channel' redefines '@channel' = '@syn:B0.in0<B1.out1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
@@ -43,7 +43,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B1'.'@sig:in1'............
     part def '@MSG:B1.in1' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.out0>B1.in1';
+        part '@channel' redefines '@channel' = '@syn:B0.out0>B1.in1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
diff --git a/ttool/src/test/resources/cli/models/avSysML_missingOutMsgErr7.sysml b/ttool/src/test/resources/cli/models/avSysML_missingOutMsgErr7.sysml
index ad09d36eaaa46c398ef0838cecc986ab0236256f..bf46ec6cf5250478215b625d13f2da418cba6fa2 100644
--- a/ttool/src/test/resources/cli/models/avSysML_missingOutMsgErr7.sysml
+++ b/ttool/src/test/resources/cli/models/avSysML_missingOutMsgErr7.sysml
@@ -23,7 +23,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B0'.'@sig:in0'............
     part def '@MSG:B0.in0' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.in0<B1.out1';
+        part '@channel' redefines '@channel' = '@syn:B0.in0<B1.out1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
@@ -43,7 +43,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B1'.'@sig:in1'............
     part def '@MSG:B1.in1' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.out0>B1.in1';
+        part '@channel' redefines '@channel' = '@syn:B0.out0>B1.in1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
diff --git a/ttool/src/test/resources/cli/models/avSysML_missingParamSndPayloadErrD.sysml b/ttool/src/test/resources/cli/models/avSysML_missingParamSndPayloadErrD.sysml
index a5363dd249f45082676d0a5acbe4ebdbbc424059..46f2d335816695601b75dae1cef2f0b38cbc3609 100644
--- a/ttool/src/test/resources/cli/models/avSysML_missingParamSndPayloadErrD.sysml
+++ b/ttool/src/test/resources/cli/models/avSysML_missingParamSndPayloadErrD.sysml
@@ -23,7 +23,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B0'.'@sig:in0'............
     part def '@MSG:B0.in0' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.in0<B1.out1';
+        part '@channel' redefines '@channel' = '@syn:B0.in0<B1.out1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
@@ -43,7 +43,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B1'.'@sig:in1'............
     part def '@MSG:B1.in1' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.out0>B1.in1';
+        part '@channel' redefines '@channel' = '@syn:B0.out0>B1.in1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
diff --git a/ttool/src/test/resources/cli/models/avSysML_missingSignalBindingErr5.sysml b/ttool/src/test/resources/cli/models/avSysML_missingSignalBindingErr5.sysml
index 97b86a27e0b6b1639be869e579f65c7b2da08bb2..321b89f9cdb9daf2be49ec5cdabd8fa35dcebf66 100644
--- a/ttool/src/test/resources/cli/models/avSysML_missingSignalBindingErr5.sysml
+++ b/ttool/src/test/resources/cli/models/avSysML_missingSignalBindingErr5.sysml
@@ -23,7 +23,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B0'.'@sig:in0'............
     part def '@MSG:B0.in0' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.in0<B1.out1';
+        part '@channel' redefines '@channel' = '@syn:B0.in0<B1.out1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
@@ -43,7 +43,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B1'.'@sig:in1'............
     part def '@MSG:B1.in1' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.out0>B1.in1';
+        part '@channel' redefines '@channel' = '@syn:B0.out0>B1.in1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
diff --git a/ttool/src/test/resources/cli/models/avSysML_missingSndPayloadN.sysml b/ttool/src/test/resources/cli/models/avSysML_missingSndPayloadN.sysml
index 3ef71138775fb6ef4e81c9f81565ad5856562687..bb2f88120faa0c3081ee2d691ea4ab763bb7570c 100644
--- a/ttool/src/test/resources/cli/models/avSysML_missingSndPayloadN.sysml
+++ b/ttool/src/test/resources/cli/models/avSysML_missingSndPayloadN.sysml
@@ -23,7 +23,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B0'.'@sig:in0'............
     part def '@MSG:B0.in0' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.in0<B1_0.out1';
+        part '@channel' redefines '@channel' = '@syn:B0.in0<B1_0.out1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
@@ -43,7 +43,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B1_0'.'@sig:in1'............
     part def '@MSG:B1_0.in1' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.out0>B1_0.in1';
+        part '@channel' redefines '@channel' = '@syn:B0.out0>B1_0.in1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
diff --git a/ttool/src/test/resources/cli/models/avSysML_missingStateErrA.sysml b/ttool/src/test/resources/cli/models/avSysML_missingStateErrA.sysml
index a4ed2c41229d2b91ed904596d4a9d44f8ae8672c..1c8a2e12ffd43ab20232cdeb1d10e6f571b578e6 100644
--- a/ttool/src/test/resources/cli/models/avSysML_missingStateErrA.sysml
+++ b/ttool/src/test/resources/cli/models/avSysML_missingStateErrA.sysml
@@ -23,7 +23,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B0'.'@sig:in0'............
     part def '@MSG:B0.in0' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.in0<B1.out1';
+        part '@channel' redefines '@channel' = '@syn:B0.in0<B1.out1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
@@ -43,7 +43,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B1'.'@sig:in1'............
     part def '@MSG:B1.in1' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.out0>B1.in1';
+        part '@channel' redefines '@channel' = '@syn:B0.out0>B1.in1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
diff --git a/ttool/src/test/resources/cli/models/avSysML_missingStateMachineErr9.sysml b/ttool/src/test/resources/cli/models/avSysML_missingStateMachineErr9.sysml
index ddfb7bef8103ea19a8b008335475aa302b26ca3d..ff047fce3835e6bd378b5c96c41729cc023335ee 100644
--- a/ttool/src/test/resources/cli/models/avSysML_missingStateMachineErr9.sysml
+++ b/ttool/src/test/resources/cli/models/avSysML_missingStateMachineErr9.sysml
@@ -23,7 +23,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B0'.'@sig:in0'............
     part def '@MSG:B0.in0' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.in0<B1.out1';
+        part '@channel' redefines '@channel' = '@syn:B0.in0<B1.out1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
@@ -43,7 +43,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B1'.'@sig:in1'............
     part def '@MSG:B1.in1' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.out0>B1.in1';
+        part '@channel' redefines '@channel' = '@syn:B0.out0>B1.in1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
diff --git a/ttool/src/test/resources/cli/models/avSysML_missingTimerDeclErrI.sysml b/ttool/src/test/resources/cli/models/avSysML_missingTimerDeclErrI.sysml
index cfd10b6bc599951d8b295cc30635adb9e59ffe91..a89ebf335837753233b097f42bef8099632900b9 100644
--- a/ttool/src/test/resources/cli/models/avSysML_missingTimerDeclErrI.sysml
+++ b/ttool/src/test/resources/cli/models/avSysML_missingTimerDeclErrI.sysml
@@ -23,7 +23,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B0'.'@sig:in0'............
     part def '@MSG:B0.in0' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.in0<B1_0.out1';
+        part '@channel' redefines '@channel' = '@syn:B0.in0<B1_0.out1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
@@ -43,7 +43,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B1_0'.'@sig:in1'............
     part def '@MSG:B1_0.in1' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.out0>B1_0.in1';
+        part '@channel' redefines '@channel' = '@syn:B0.out0>B1_0.in1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
diff --git a/ttool/src/test/resources/cli/models/avSysML_missingTimerOnTransErrJ.sysml b/ttool/src/test/resources/cli/models/avSysML_missingTimerOnTransErrJ.sysml
index c2ba85139f0727017b173431e377859e136a215a..f91318e3cd0c793a587cc326618540c22dd8743c 100644
--- a/ttool/src/test/resources/cli/models/avSysML_missingTimerOnTransErrJ.sysml
+++ b/ttool/src/test/resources/cli/models/avSysML_missingTimerOnTransErrJ.sysml
@@ -23,7 +23,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B0'.'@sig:in0'............
     part def '@MSG:B0.in0' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.in0<B1_0.out1';
+        part '@channel' redefines '@channel' = '@syn:B0.in0<B1_0.out1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
@@ -43,7 +43,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B1_0'.'@sig:in1'............
     part def '@MSG:B1_0.in1' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.out0>B1_0.in1';
+        part '@channel' redefines '@channel' = '@syn:B0.out0>B1_0.in1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
diff --git a/ttool/src/test/resources/cli/models/avSysML_missingTransDeclErrC.sysml b/ttool/src/test/resources/cli/models/avSysML_missingTransDeclErrC.sysml
index 31e014a8618fbe0d2f051529783c12edf9336193..f10f6af72e1a06794caf37695b28609d96fa8959 100644
--- a/ttool/src/test/resources/cli/models/avSysML_missingTransDeclErrC.sysml
+++ b/ttool/src/test/resources/cli/models/avSysML_missingTransDeclErrC.sysml
@@ -23,7 +23,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B0'.'@sig:in0'............
     part def '@MSG:B0.in0' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.in0<B1.out1';
+        part '@channel' redefines '@channel' = '@syn:B0.in0<B1.out1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
@@ -43,7 +43,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B1'.'@sig:in1'............
     part def '@MSG:B1.in1' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.out0>B1.in1';
+        part '@channel' redefines '@channel' = '@syn:B0.out0>B1.in1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
diff --git a/ttool/src/test/resources/cli/models/avSysML_missingTransRecvPayloadM.sysml b/ttool/src/test/resources/cli/models/avSysML_missingTransRecvPayloadM.sysml
index 6ece923ffb8ced235c4d9d005037e9e452c97fe2..c3a6a8d6b39745a99fa9bfee1e7db11cb1fd194a 100644
--- a/ttool/src/test/resources/cli/models/avSysML_missingTransRecvPayloadM.sysml
+++ b/ttool/src/test/resources/cli/models/avSysML_missingTransRecvPayloadM.sysml
@@ -23,7 +23,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B0'.'@sig:in0'............
     part def '@MSG:B0.in0' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.in0<B1_0.out1';
+        part '@channel' redefines '@channel' = '@syn:B0.in0<B1_0.out1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
@@ -43,7 +43,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B1_0'.'@sig:in1'............
     part def '@MSG:B1_0.in1' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.out0>B1_0.in1';
+        part '@channel' redefines '@channel' = '@syn:B0.out0>B1_0.in1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
diff --git a/ttool/src/test/resources/cli/models/avSysML_original.sysml b/ttool/src/test/resources/cli/models/avSysML_original.sysml
index 42bc73ad4ecfc26dda97d5b78a3b84eedd32f523..cdd177a87b10f1dd5c80eece4ef75e3d3e2118e5 100644
--- a/ttool/src/test/resources/cli/models/avSysML_original.sysml
+++ b/ttool/src/test/resources/cli/models/avSysML_original.sysml
@@ -16,7 +16,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B0'.'@sig:in0'............
     part def '@MSG:B0.in0' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@nbf:B0.in0<B2.out2';
+        part '@channel' redefines '@channel' = '@nbf:B0.in0<B2.out2';
         attribute 'x' : Integer;
         attribute 'b' : Boolean;
     }
@@ -37,7 +37,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B1'.'@sig:in1'............
     part def '@MSG:B1.in1' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.out0>B1.in1';
+        part '@channel' redefines '@channel' = '@syn:B0.out0>B1.in1';
         attribute 'x' : Integer;
         attribute 'b' : Boolean;
     }
diff --git a/ttool/src/test/resources/cli/models/avSysML_originalRealNames.sysml b/ttool/src/test/resources/cli/models/avSysML_originalRealNames.sysml
index 48f112cab53acba53dd2c4801ac66c14d463e757..d2e2292287d1646c41178a5447733ecdd4f452c9 100644
--- a/ttool/src/test/resources/cli/models/avSysML_originalRealNames.sysml
+++ b/ttool/src/test/resources/cli/models/avSysML_originalRealNames.sysml
@@ -16,7 +16,7 @@ package AvatarInstance {
 
     // Message of signal B0.in0............
     part def msg_in0 :> '#InMessage' {
-        private part '@channel' : '#Channel' = fifo_in0_out2;
+        part '@channel' redefines '@channel' = fifo_in0_out2;
         attribute x : Integer;
         attribute b : Boolean;
     }
@@ -37,7 +37,7 @@ package AvatarInstance {
 
     // Message of signal B1.in1............
     part def msg_in1 :> '#InMessage' {
-        private part '@channel' : '#Channel' = sync_out0_in1;
+        part '@channel' redefines '@channel' = sync_out0_in1;
         attribute x : Integer;
         attribute b : Boolean;
     }
diff --git a/ttool/src/test/resources/cli/models/avSysML_syntaxErr1.sysml b/ttool/src/test/resources/cli/models/avSysML_syntaxErr1.sysml
index 1f3301e53ddfa1c0d0da1634eefe46889d32f481..3dbd45100bdf8e2bb010efef71d1bf8792fb7f04 100644
--- a/ttool/src/test/resources/cli/models/avSysML_syntaxErr1.sysml
+++ b/ttool/src/test/resources/cli/models/avSysML_syntaxErr1.sysml
@@ -23,7 +23,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B0'.'@sig:in0'............
     part def '@MSG:B0.in0' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.in0<B1.out1';
+        part '@channel' redefines '@channel' = '@syn:B0.in0<B1.out1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
@@ -43,7 +43,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B1'.'@sig:in1'............
     part def '@MSG:B1.in1' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.out0>B1.in1';
+        part '@channel' redefines '@channel' = '@syn:B0.out0>B1.in1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
diff --git a/ttool/src/test/resources/cli/models/avSysML_syntaxErr2.sysml b/ttool/src/test/resources/cli/models/avSysML_syntaxErr2.sysml
index 7bdcccae36794ee883bdfb14e98febf398f86e40..6f8fff71ae87232061dbea27e30e74f1efb155d6 100644
--- a/ttool/src/test/resources/cli/models/avSysML_syntaxErr2.sysml
+++ b/ttool/src/test/resources/cli/models/avSysML_syntaxErr2.sysml
@@ -23,7 +23,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B0'.'@sig:in0'............
     part def '@MSG:B0.in0' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.in0<B1.out1';
+        part '@channel' redefines '@channel' = '@syn:B0.in0<B1.out1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
@@ -43,7 +43,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B1'.'@sig:in1'............
     part def '@MSG:B1.in1' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.out0>B1.in1';
+        part '@channel' redefines '@channel' = '@syn:B0.out0>B1.in1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
diff --git a/ttool/src/test/resources/cli/models/avSysML_timer.sysml b/ttool/src/test/resources/cli/models/avSysML_timer.sysml
index 3a635c5e387429a3876a238d382152826c339742..11c0de002c613675ce7391eea8c2caf5319bdd38 100644
--- a/ttool/src/test/resources/cli/models/avSysML_timer.sysml
+++ b/ttool/src/test/resources/cli/models/avSysML_timer.sysml
@@ -23,7 +23,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B0'.'@sig:in0'............
     part def '@MSG:B0.in0' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.in0<B1_0.out1';
+        part '@channel' redefines '@channel' = '@syn:B0.in0<B1_0.out1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
@@ -43,7 +43,7 @@ package AvatarInstance {
 
     // Message of signal '@blk:B1_0'.'@sig:in1'............
     part def '@MSG:B1_0.in1' :> '#InMessage' {
-        private part '@channel' : '#Channel' = '@syn:B0.out0>B1_0.in1';
+        part '@channel' redefines '@channel' = '@syn:B0.out0>B1_0.in1';
         attribute 'x' : Integer;
         attribute 'p' : '@dt:Point';
         attribute 'b' : Boolean;
diff --git a/ttool/src/test/resources/cli/models/avSysML_timerRealNames.sysml b/ttool/src/test/resources/cli/models/avSysML_timerRealNames.sysml
index 78eb4e49e38122efe1bf9ae7901dbbd2b38c7289..37a3b545630d3e627775e160a6a2f570604b2138 100644
--- a/ttool/src/test/resources/cli/models/avSysML_timerRealNames.sysml
+++ b/ttool/src/test/resources/cli/models/avSysML_timerRealNames.sysml
@@ -23,7 +23,7 @@ package AvatarInstance {
 
     // Message of signal B0.in0............
     part def msg_in0 :> '#InMessage' {
-        private part '@channel' : '#Channel' = sync_in0_out1;
+        part '@channel' redefines '@channel' = sync_in0_out1;
         attribute x : Integer;
         attribute p : Point;
         attribute b : Boolean;
@@ -43,7 +43,7 @@ package AvatarInstance {
 
     // Message of signal B1_0.in1............
     part def msg_in1 :> '#InMessage' {
-        private part '@channel' : '#Channel' = sync_out0_in1;
+        part '@channel' redefines '@channel' = sync_out0_in1;
         attribute x : Integer;
         attribute p : Point;
         attribute b : Boolean;