diff --git a/23BDD/BDD-23-4.sql b/23BDD/BDD-23-4.sql
new file mode 100644
index 0000000..0db8199
--- /dev/null
+++ b/23BDD/BDD-23-4.sql
@@ -0,0 +1,61 @@
+//TP4
+//1
+SELECT * FROM CommandeBuveur;
+
+//Ca marche
+
+DELETE FROM CommandeBuveur
+WHERE numCom = 8;
+
+SELECT * FROM CommandeBuveur;
+
+//Ca marche
+
+UPDATE CommandeBuveur
+SET dateCom = '11-DEC-11'
+WHERE numCom = 3;
+
+SELECT * FROM CommandeBuveur;
+
+//Ca marche
+
+UPDATE CommandeBuveur
+SET nomBuveur = 'MAURICE'
+WHERE numCom = 3;
+
+SELECT * FROM CommandeBuveur;
+
+//On peut pas parce que cela concerne un autre tableau
+
+INSERT INTO CommandeBuveur
+VALUES (15, '11-SEP-11', 'FRANCOIS');
+
+SELECT * FROM CommandeBuveur;
+//On peut pas parce que cela concerne un autre tableau
+
+//2
+
+SELECT * FROM VIN2;
+
+UPDATE VIN2
+SET cru = 'BOURGEUIL'
+WHERE numvin = 85;
+
+SELECT * FROM VIN2;
+//Ca marche
+DELETE FROM VIN2
+WHERE numvin = 190;
+
+SELECT * FROM VIN2;
+SELECT * FROM Vin;
+//Ca marche
+
+INSERT INTO VIN2
+VALUES (10, 'CHINON', 'LOIRE');
+
+SELECT * FROM VIN2;
+
+//Ca marche pas
+
+//3
+
diff --git a/23BDD/BDD-23.sql b/23BDD/BDD-23.sql
new file mode 100644
index 0000000..97696a0
--- /dev/null
+++ b/23BDD/BDD-23.sql
@@ -0,0 +1,36 @@
+CREATE TABLE Buveur (
+    NumBuveur NUMBER PRIMARY KEY,
+    Nom VARCHAR2(25) NOT NULL,
+    Prenom VARCHAR2(25),
+    Ville VARCHAR2(30) NOT NULL
+);
+
+CREATE TABLE Viticulteur (
+    NumVitic NUMBER PRIMARY KEY,
+    Nom VARCHAR2(25) NOT NULL,
+    Prenom VARCHAR2(25),
+    Ville VARCHAR2(30) NOT NULL
+);
+
+CREATE TABLE Vin (
+    NumVin NUMBER PRIMARY KEY,
+    cru VARCHAR2(15) NOT NULL,
+    Millesime INT NOT NULL,
+    Region VARCHAR2(15) NOT NULL,
+    NumVitic NUMBER REFERENCES Viticulteur
+);
+
+CREATE TABLE Commande (
+    NumCom NUMBER PRIMARY KEY,
+    NumBuveur NUMBER REFERENCES Buveur,
+    NumVin NUMBER REFERENCES Vin,
+    Qtte INT NOT NULL,
+    DateCom DATE NOT NULL
+);
+
+CREATE TABLE Livraison (
+    NumCom NUMBER REFERENCES Commande NOT NULL,
+    Qte NUMBER NOT NULL,
+    DateLiv DATE,
+    PRIMARY KEY(NumCom, DateLiv)
+);
\ No newline at end of file
diff --git a/23BDD/BDD-23~1.sql b/23BDD/BDD-23~1.sql
new file mode 100644
index 0000000..fa16930
--- /dev/null
+++ b/23BDD/BDD-23~1.sql
@@ -0,0 +1,63 @@
+//1
+SELECT * 
+FROM Buveur;
+
+//2
+SELECT NumBuveur, NomB, VilleB
+FROM Buveur;
+
+//3
+SELECT NumBuveur, NomB
+FROM Buveur
+WHERE VilleB = 'PARIS';
+
+//4
+SELECT NumBuveur, NomB
+FROM Buveur
+WHERE VilleB = 'PARIS' OR VilleB = 'MACON';
+
+//5
+SELECT cru
+FROM Vin
+WHERE Region = 'LOIRE';
+//ou
+SELECT DISTINCT cru
+FROM Vin
+WHERE Region = 'LOIRE';
+
+//6
+SELECT DISTINCT VilleB
+FROM Buveur;
+
+//7
+SELECT NumCom
+FROM Commande
+WHERE Qtte > 10 AND Qtte < 50;
+//ou
+SELECT NumCom
+FROM Commande
+WHERE Qtte BETWEEN 10 AND 50;
+
+//8
+SELECT NumCom
+FROM Livraison
+WHERE DateLiv > '1-DEC-1987';
+
+//9
+SELECT NumVin, cru
+FROM Vin
+WHERE cru LIKE 'B%';
+
+//10
+SELECT NumVitic, NomV
+FROM Viticulteur
+WHERE NomV LIKE '%LIN%';
+
+//11
+SELECT NumBuveur, NomB
+FROM Buveur
+WHERE VilleB != 'PARIS' AND VilleB != 'MACON';
+//ou
+SELECT NumBuveur, NomB
+FROM Buveur
+WHERE VilleB NOT IN('PARIS', 'MACON');
\ No newline at end of file
diff --git a/23BDD/BDD23-5.sql b/23BDD/BDD23-5.sql
new file mode 100644
index 0000000..e5b9a40
--- /dev/null
+++ b/23BDD/BDD23-5.sql
@@ -0,0 +1,54 @@
+//1.1
+SELECT *
+FROM Vin V LEFT OUTER JOIN Commande C ON V.NumVin = C.NumVin;
+
+//1.2
+SELECT NumBuveur
+FROM  Buveur
+WHERE NumBuveur NOT IN (SELECT NumBuveur FROM Commande);
+
+//1.3
+(SELECT NumBuveur, Nom
+FROM Buveur NATURAL JOIN Commande NATURAL JOIN Vin
+WHERE Region = 'BOURGOGNE')
+MINUS
+(SELECT NumBuveur, Nom
+FROM Buveur NATURAL JOIN Commande NATURAL JOIN Vin
+WHERE  Region != 'BOURGOGNE');
+
+//1.4
+(SELECT NumBuveur, Nom
+FROM Buveur NATURAL JOIN Commande NATURAL JOIN Vin
+WHERE  Region = 'BOURGOGNE') 
+INTERSECT
+(SELECT NumBuveur, Nom
+FROM Buveur NATURAL JOIN Commande NATURAL JOIN Vin
+WHERE Region = 'BORDEAUX');
+
+//2.5
+INSERT INTO Vin
+VALUES (200, 'ARBOIS', 1985, 'JURA', 20);
+
+SELECT *
+FROM Vin;
+
+SELECT *
+FROM Livraison;
+
+SELECT *
+FROM Vin;
+//2.6
+UPDATE Commande
+SET Qtte = 12
+WHERE numCom = 7;
+
+//2.7
+DELETE FROM Livraison
+WHERE NumCom IN (SELECT NumCom FROM Buveur NATURAL JOIN Commande WHERE Nom = 'DUPOND');
+
+
+
+//2.8
+
+INSERT INTO Commande
+VALUES (10, 1500, 100, 18, CURRENT);
\ No newline at end of file
diff --git a/23BDD/ORA2-TP6.sql b/23BDD/ORA2-TP6.sql
new file mode 100644
index 0000000..3a2765f
--- /dev/null
+++ b/23BDD/ORA2-TP6.sql
@@ -0,0 +1,16 @@
+//TP6
+
+//1
+CREATE USER RABAN_PROP1
+IDENTIFIED BY iut
+DEFAULT TABLESPACE datausers4F
+TEMPORARY TABLESPACE temp;
+
+CREATE USER RABAN_PROP2
+IDENTIFIED BY iut
+DEFAULT TABLESPACE datausers4F
+TEMPORARY TABLESPACE temp;
+
+GRANT CONNECT, RESOURCE TO RABAN_PROP1, RABAN_PROP2;
+
+
diff --git a/23BDD/PROP1-TP6.sql b/23BDD/PROP1-TP6.sql
new file mode 100644
index 0000000..0b19e59
--- /dev/null
+++ b/23BDD/PROP1-TP6.sql
@@ -0,0 +1,66 @@
+//2
+//A
+CREATE TABLE Client_C (
+    login VARCHAR2(20) PRIMARY KEY,
+    nomClient VARCHAR2(30),
+    prenomClient VARCHAR2(30)
+);
+
+CREATE TABLE Film (
+    numFilm number PRIMARY KEY,
+    nomFilm VARCHAR2(30)
+);
+
+CREATE TABLE Location_L (
+    login VARCHAR2(20) REFERENCES Client_C,
+    numFilm number REFERENCES Film,
+    dateLocation DATE,
+    PRIMARY KEY(login, numFilm)
+);
+
+//B
+INSERT INTO Client_C VALUES('RABAN_PROP1', 'AURIEL', 'Samuel');
+INSERT INTO Client_C VALUES('RABAN_PROP2', 'BEL', 'Commode');
+INSERT INTO Client_C VALUES('BANANA', 'O', 'Beng');
+
+INSERT INTO Film VALUES(01, 'La petite sirene d alarme');
+INSERT INTO Film VALUES(02, 'Retour vers le présent');
+INSERT INTO Film VALUES(03, 'starsheep trooper');
+INSERT INTO Film VALUES(04, 'Splatoon');
+INSERT INTO Film VALUES(05, 'BESOIN DE VIOLENCE 4');
+INSERT INTO Film VALUES(06, 'Il étais une fois chez moi');
+
+INSERT INTO Location_L VALUES('RABAN_PROP1', 01, '02-JAN-2002');
+INSERT INTO Location_L VALUES('RABAN_PROP2', 02, '05-MAR-2004');
+INSERT INTO Location_L VALUES('BANANA', 03, '07-DEC-2012');
+INSERT INTO Location_L VALUES('RABAN_PROP1', 06, '02-JAN-2002');
+INSERT INTO Location_L VALUES('RABAN_PROP2', 04, '05-MAR-2004');
+INSERT INTO Location_L VALUES('BANANA', 05, '07-DEC-2012');
+
+//C
+CREATE VIEW MES_LOCATIONS (nomClient, numFilm, dateLocation)
+AS SELECT nomClient, numFilm, dateLocation FROM Location_L NATURAL JOIN Client_C WHERE login = USER;
+
+commit;
+
+//3
+
+//B
+GRANT SELECT ON Client_C TO RABAN_PROP2;
+
+//4
+
+//A
+
+GRANT SELECT ON MES_LOCATIONS TO RABAN_PROP2;
+GRANT SELECT,INSERT,DELETE ON Location_L TO RABAN_PROP2;
+GRANT INSERT,UPDATE(nomClient, prenomClient) ON Client_C TO RABAN_PROP2;
+GRANT INSERT ON Film TO RABAN_PROP2;
+
+//D
+
+SELECT * FROM Client_C;
+SELECT * FROM Film;
+SELECT * FROM location_L;
+
+COMMIT;
\ No newline at end of file
diff --git a/23BDD/PROP2-TP6.sql b/23BDD/PROP2-TP6.sql
new file mode 100644
index 0000000..4434add
--- /dev/null
+++ b/23BDD/PROP2-TP6.sql
@@ -0,0 +1,28 @@
+//3
+
+//A
+
+SELECT * FROM RABAN_PROP1.Client_C;
+
+SELECT * FROM RABAN_PROP1.mes_locations;
+
+//C
+
+INSERT INTO RABAN_PROP1.Client_C VALUES ('YESSIR','123','Trois petitCHATCHATCHAT');
+
+INSERT INTO RABAN_PROP1.Film VALUES (07,'Le monde incroyable de Marvin');
+
+INSERT INTO RABAN_PROP1.Location_L VALUES ('RABAN_PROP2',07,'12-JUN-2010');
+
+COMMIT;
+
+
+//5
+
+//A
+
+
+
+//B
+
+
diff --git a/23BDD/SAE/BDD-23.sql b/23BDD/SAE/BDD-23.sql
new file mode 100644
index 0000000..9ac4e61
--- /dev/null
+++ b/23BDD/SAE/BDD-23.sql
@@ -0,0 +1,44 @@
+CREATE TABLE Gare (
+IdGare INT Primary Key,
+Ville varchar2(100),
+NomGare varchar2(50)
+);
+CREATE TABLE PersonneP (
+idPersonne INT Primary Key,
+NomPers varchar2(50),
+PrenomPers varchar2(50),
+AdressePers varchar2(100),
+TelPers varchar2(10)
+);
+CREATE TABLE Conducteur (
+idPersonne INT Primary Key REFERENCES PersonneP,
+telPro varchar2(10),
+centreRattachement varchar2(50),
+datePermis Date
+);
+CREATE TABLE Train (
+idTrain INT Primary Key,
+typeTrain varchar2(50),
+duplex INT,
+idGareDep INT REFERENCES Gare,
+idGareArrivee INT REFERENCES Gare,
+idPersonne INT REFERENCES Conducteur
+);
+CREATE TABLE Trajet (
+IdTrain INT REFERENCES Train,
+dateDepart DATE,
+heureDepart INT,
+heureArrivee INT,
+tarifBase INT,
+Primary Key (IdTrain,dateDepart,heureDepart)
+);
+CREATE TABLE VoyageV(
+IdVoyage INT PRIMARY KEY,
+dateCreation DATE,
+codeTarif INT,
+idTrain INT,
+DateDepart DATE,
+heureDepart INT,
+Foreign Key (idTrain,dateDepart, heureDepart) REFERENCES Trajet
+);
+
diff --git a/23BDD/SAE/BDD23(part3).sql b/23BDD/SAE/BDD23(part3).sql
new file mode 100644
index 0000000..a15ac33
--- /dev/null
+++ b/23BDD/SAE/BDD23(part3).sql
@@ -0,0 +1,51 @@
+DROP TABLE Voyage;
+DROP TABLE Trajet;
+DROP TABLE Train;
+DROP TABLE Conducteur;
+DROP TABLE Personne;
+DROP TABLE Gare;
+
+CREATE TABLE Gare (
+IdGare INT Primary Key,
+Ville varchar2(100),
+NomGare varchar2(50)
+);
+CREATE TABLE Personne (
+idPersonne INT Primary Key,
+NomPers varchar2(50),
+PrenomPers varchar2(50),
+AdressePers varchar2(100),
+TelPers varchar2(10)
+);
+CREATE TABLE Conducteur (
+idPersonne INT Primary Key REFERENCES Personne,
+telPro varchar2(10),
+centreRattachement varchar2(50),
+datePermis Date
+);
+CREATE TABLE Train (
+idTrain INT Primary Key,
+typeTrain varchar2(50),
+duplex Boolean,
+idGareDep INT REFERENCES Gare,
+idGareArrivee INT REFERENCES Gare,
+idPersonne INT REFERENCES Conducteur
+);
+CREATE TABLE Trajet (
+IdTrain INT REFERENCES Train,
+dateDepart DATE,
+heureDepart INT,
+heureArrivee INT,
+tarifBase INT,
+Primary Key (IdTrain,dateDepart,heureDepart)
+);
+CREATE TABLE Voyage(
+IdVoyage INT PRIMARY KEY,
+dateCreation DATE,
+codeTarif INT,
+idTrain INT,
+DateDepart DATE,
+heureDepart INT,
+Foreign Key (idTrain,dateDepart, heureDepart) REFERENCES Trajet
+);
+
diff --git a/23BDD/SAE/SAE_Part_1.mdj b/23BDD/SAE/SAE_Part_1.mdj
new file mode 100644
index 0000000..e44e596
--- /dev/null
+++ b/23BDD/SAE/SAE_Part_1.mdj
@@ -0,0 +1,7345 @@
+{
+	"_type": "Project",
+	"_id": "AAAAAAFF+h6SjaM2Hec=",
+	"name": "Untitled",
+	"ownedElements": [
+		{
+			"_type": "UMLModel",
+			"_id": "AAAAAAFF+qBWK6M3Z8Y=",
+			"_parent": {
+				"$ref": "AAAAAAFF+h6SjaM2Hec="
+			},
+			"name": "Model",
+			"ownedElements": [
+				{
+					"_type": "UMLClassDiagram",
+					"_id": "AAAAAAFF+qBtyKM79qY=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Main",
+					"defaultDiagram": true,
+					"ownedViews": [
+						{
+							"_type": "UMLClassView",
+							"_id": "AAAAAAGMsOh9+/+ntv0=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMsOh9+P+lYYw="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAGMsOh9+/+ool4=",
+									"_parent": {
+										"$ref": "AAAAAAGMsOh9+/+ntv0="
+									},
+									"model": {
+										"$ref": "AAAAAAGMsOh9+P+lYYw="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMsOh9/P+p42w=",
+											"_parent": {
+												"$ref": "AAAAAAGMsOh9+/+ool4="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 96,
+											"top": 176,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMsOh9/P+qxqo=",
+											"_parent": {
+												"$ref": "AAAAAAGMsOh9+/+ool4="
+											},
+											"font": "Arial;13;1",
+											"left": 405,
+											"top": 367,
+											"width": 63.2353515625,
+											"height": 13,
+											"text": "Train"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMsOh9/P+rd+Q=",
+											"_parent": {
+												"$ref": "AAAAAAGMsOh9+/+ool4="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 96,
+											"top": 176,
+											"width": 73.67724609375,
+											"height": 13,
+											"text": "(from Model)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMsOh9/P+sjDs=",
+											"_parent": {
+												"$ref": "AAAAAAGMsOh9+/+ool4="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 96,
+											"top": 176,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 400,
+									"top": 360,
+									"width": 73.2353515625,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAGMsOh9/P+p42w="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAGMsOh9/P+qxqo="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAGMsOh9/P+rd+Q="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAGMsOh9/P+sjDs="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAGMsOh9/P+t91U=",
+									"_parent": {
+										"$ref": "AAAAAAGMsOh9+/+ntv0="
+									},
+									"model": {
+										"$ref": "AAAAAAGMsOh9+P+lYYw="
+									},
+									"subViews": [
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMsOit4v/ScLg=",
+											"_parent": {
+												"$ref": "AAAAAAGMsOh9/P+t91U="
+											},
+											"model": {
+												"$ref": "AAAAAAGMsOit2P/PrIo="
+											},
+											"font": "Arial;13;0",
+											"left": 405,
+											"top": 390,
+											"width": 63.2353515625,
+											"height": 13,
+											"text": "+Id {id}",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMsOjj6f/aueg=",
+											"_parent": {
+												"$ref": "AAAAAAGMsOh9/P+t91U="
+											},
+											"model": {
+												"$ref": "AAAAAAGMsOjj3f/Xp04="
+											},
+											"font": "Arial;13;0",
+											"left": 405,
+											"top": 405,
+											"width": 63.2353515625,
+											"height": 13,
+											"text": "+Duplex",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMsOkXP//hGZs=",
+											"_parent": {
+												"$ref": "AAAAAAGMsOh9/P+t91U="
+											},
+											"model": {
+												"$ref": "AAAAAAGMsOkXN//e51Q="
+											},
+											"font": "Arial;13;0",
+											"left": 405,
+											"top": 420,
+											"width": 63.2353515625,
+											"height": 13,
+											"text": "+Type",
+											"horizontalAlignment": 0
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 400,
+									"top": 385,
+									"width": 73.2353515625,
+									"height": 53
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAGMsOh9/P+u9I8=",
+									"_parent": {
+										"$ref": "AAAAAAGMsOh9+/+ntv0="
+									},
+									"model": {
+										"$ref": "AAAAAAGMsOh9+P+lYYw="
+									},
+									"font": "Arial;13;0",
+									"left": 400,
+									"top": 438,
+									"width": 73.2353515625,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAGMsOh9/f+v464=",
+									"_parent": {
+										"$ref": "AAAAAAGMsOh9+/+ntv0="
+									},
+									"model": {
+										"$ref": "AAAAAAGMsOh9+P+lYYw="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 48,
+									"top": 88,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAGMsOh9/f+wBik=",
+									"_parent": {
+										"$ref": "AAAAAAGMsOh9+/+ntv0="
+									},
+									"model": {
+										"$ref": "AAAAAAGMsOh9+P+lYYw="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 48,
+									"top": 88,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 400,
+							"top": 360,
+							"width": 73.2353515625,
+							"height": 88,
+							"nameCompartment": {
+								"$ref": "AAAAAAGMsOh9+/+ool4="
+							},
+							"attributeCompartment": {
+								"$ref": "AAAAAAGMsOh9/P+t91U="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAGMsOh9/P+u9I8="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAGMsOh9/f+v464="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAGMsOh9/f+wBik="
+							}
+						},
+						{
+							"_type": "UMLClassView",
+							"_id": "AAAAAAGMsOlTJ//nA/A=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMsOlTJv/lLqw="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAGMsOlTJ//o8tw=",
+									"_parent": {
+										"$ref": "AAAAAAGMsOlTJ//nA/A="
+									},
+									"model": {
+										"$ref": "AAAAAAGMsOlTJv/lLqw="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMsOlTJ//pcoo=",
+											"_parent": {
+												"$ref": "AAAAAAGMsOlTJ//o8tw="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 368,
+											"top": -592,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMsOlTKP/qYYc=",
+											"_parent": {
+												"$ref": "AAAAAAGMsOlTJ//o8tw="
+											},
+											"font": "Arial;13;1",
+											"left": 573,
+											"top": 215,
+											"width": 108.7353515625,
+											"height": 13,
+											"text": "Voiture"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMsOlTKP/rjgI=",
+											"_parent": {
+												"$ref": "AAAAAAGMsOlTJ//o8tw="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 368,
+											"top": -592,
+											"width": 73.67724609375,
+											"height": 13,
+											"text": "(from Model)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMsOlTKP/s9Ms=",
+											"_parent": {
+												"$ref": "AAAAAAGMsOlTJ//o8tw="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 368,
+											"top": -592,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 568,
+									"top": 208,
+									"width": 118.7353515625,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAGMsOlTJ//pcoo="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAGMsOlTKP/qYYc="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAGMsOlTKP/rjgI="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAGMsOlTKP/s9Ms="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAGMsOlTKP/tnBM=",
+									"_parent": {
+										"$ref": "AAAAAAGMsOlTJ//nA/A="
+									},
+									"model": {
+										"$ref": "AAAAAAGMsOlTJv/lLqw="
+									},
+									"subViews": [
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMsOl0cgAS7pI=",
+											"_parent": {
+												"$ref": "AAAAAAGMsOlTKP/tnBM="
+											},
+											"model": {
+												"$ref": "AAAAAAGMsOl0awAP4uw="
+											},
+											"font": "Arial;13;0",
+											"left": 573,
+											"top": 238,
+											"width": 108.7353515625,
+											"height": 13,
+											"text": "+Code {id}",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMsOmk1QAZUOs=",
+											"_parent": {
+												"$ref": "AAAAAAGMsOlTKP/tnBM="
+											},
+											"model": {
+												"$ref": "AAAAAAGMsOmkzgAWs8g="
+											},
+											"font": "Arial;13;0",
+											"left": 573,
+											"top": 253,
+											"width": 108.7353515625,
+											"height": 13,
+											"text": "+Position",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMsOnEjwAgRo0=",
+											"_parent": {
+												"$ref": "AAAAAAGMsOlTKP/tnBM="
+											},
+											"model": {
+												"$ref": "AAAAAAGMsOnEigAd2y0="
+											},
+											"font": "Arial;13;0",
+											"left": 573,
+											"top": 268,
+											"width": 108.7353515625,
+											"height": 13,
+											"text": "+DateMiseEnCiruc",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMz7BsWAuWkf8=",
+											"_parent": {
+												"$ref": "AAAAAAGMsOlTKP/tnBM="
+											},
+											"model": {
+												"$ref": "AAAAAAGMz7BsPAuTpr4="
+											},
+											"font": "Arial;13;0",
+											"left": 573,
+											"top": 283,
+											"width": 108.7353515625,
+											"height": 13,
+											"text": "+NumSiège",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMz7CjOQwh04Y=",
+											"_parent": {
+												"$ref": "AAAAAAGMsOlTKP/tnBM="
+											},
+											"model": {
+												"$ref": "AAAAAAGMz7CjLAwepVk="
+											},
+											"font": "Arial;13;0",
+											"left": 573,
+											"top": 298,
+											"width": 108.7353515625,
+											"height": 13,
+											"text": "+IdentifiantTrain",
+											"horizontalAlignment": 0
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 568,
+									"top": 233,
+									"width": 118.7353515625,
+									"height": 83
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAGMsOlTKP/uM4k=",
+									"_parent": {
+										"$ref": "AAAAAAGMsOlTJ//nA/A="
+									},
+									"model": {
+										"$ref": "AAAAAAGMsOlTJv/lLqw="
+									},
+									"font": "Arial;13;0",
+									"left": 568,
+									"top": 316,
+									"width": 118.7353515625,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAGMsOlTKP/v4r4=",
+									"_parent": {
+										"$ref": "AAAAAAGMsOlTJ//nA/A="
+									},
+									"model": {
+										"$ref": "AAAAAAGMsOlTJv/lLqw="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 184,
+									"top": -296,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAGMsOlTKP/w8k0=",
+									"_parent": {
+										"$ref": "AAAAAAGMsOlTJ//nA/A="
+									},
+									"model": {
+										"$ref": "AAAAAAGMsOlTJv/lLqw="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 184,
+									"top": -296,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 568,
+							"top": 208,
+							"width": 118.7353515625,
+							"height": 118,
+							"nameCompartment": {
+								"$ref": "AAAAAAGMsOlTJ//o8tw="
+							},
+							"attributeCompartment": {
+								"$ref": "AAAAAAGMsOlTKP/tnBM="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAGMsOlTKP/uM4k="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAGMsOlTKP/v4r4="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAGMsOlTKP/w8k0="
+							}
+						},
+						{
+							"_type": "UMLClassView",
+							"_id": "AAAAAAGMuz03CwHYXl4=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMuz03CgHWSPQ="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAGMuz03CwHZqC8=",
+									"_parent": {
+										"$ref": "AAAAAAGMuz03CwHYXl4="
+									},
+									"model": {
+										"$ref": "AAAAAAGMuz03CgHWSPQ="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMuz03CwHaMnM=",
+											"_parent": {
+												"$ref": "AAAAAAGMuz03CwHZqC8="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -400,
+											"top": 752,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMuz03CwHbsuQ=",
+											"_parent": {
+												"$ref": "AAAAAAGMuz03CwHZqC8="
+											},
+											"font": "Arial;13;1",
+											"left": 365,
+											"top": 687,
+											"width": 98.642578125,
+											"height": 13,
+											"text": "Employé"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMuz03CwHcL2E=",
+											"_parent": {
+												"$ref": "AAAAAAGMuz03CwHZqC8="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -400,
+											"top": 752,
+											"width": 73.67724609375,
+											"height": 13,
+											"text": "(from Model)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMuz03CwHd0d8=",
+											"_parent": {
+												"$ref": "AAAAAAGMuz03CwHZqC8="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -400,
+											"top": 752,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 360,
+									"top": 680,
+									"width": 108.642578125,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAGMuz03CwHaMnM="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAGMuz03CwHbsuQ="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAGMuz03CwHcL2E="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAGMuz03CwHd0d8="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAGMuz03CwHeXsc=",
+									"_parent": {
+										"$ref": "AAAAAAGMuz03CwHYXl4="
+									},
+									"model": {
+										"$ref": "AAAAAAGMuz03CgHWSPQ="
+									},
+									"subViews": [
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMz77HiA/N77A=",
+											"_parent": {
+												"$ref": "AAAAAAGMuz03CwHeXsc="
+											},
+											"model": {
+												"$ref": "AAAAAAGMz77Hcw/Ka38="
+											},
+											"font": "Arial;13;0",
+											"left": 365,
+											"top": 710,
+											"width": 98.642578125,
+											"height": 13,
+											"text": "+IdEmployé {id}",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMuz3LIwThJV4=",
+											"_parent": {
+												"$ref": "AAAAAAGMuz03CwHeXsc="
+											},
+											"model": {
+												"$ref": "AAAAAAGMuz3LEQTbxcw="
+											},
+											"font": "Arial;13;0",
+											"left": 365,
+											"top": 725,
+											"width": 98.642578125,
+											"height": 13,
+											"text": "+Nom",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMuz/0GBOb5Js=",
+											"_parent": {
+												"$ref": "AAAAAAGMuz03CwHeXsc="
+											},
+											"model": {
+												"$ref": "AAAAAAGMuz/0BROVN2k="
+											},
+											"font": "Arial;13;0",
+											"left": 365,
+											"top": 740,
+											"width": 98.642578125,
+											"height": 13,
+											"text": "+Prénom",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMu0ANbBPku6c=",
+											"_parent": {
+												"$ref": "AAAAAAGMuz03CwHeXsc="
+											},
+											"model": {
+												"$ref": "AAAAAAGMu0ANWxPerSo="
+											},
+											"font": "Arial;13;0",
+											"left": 365,
+											"top": 755,
+											"width": 98.642578125,
+											"height": 13,
+											"text": "+Adresse",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMu0AzOBQtKBg=",
+											"_parent": {
+												"$ref": "AAAAAAGMuz03CwHeXsc="
+											},
+											"model": {
+												"$ref": "AAAAAAGMu0AzMhQnvg8="
+											},
+											"font": "Arial;13;0",
+											"left": 365,
+											"top": 770,
+											"width": 98.642578125,
+											"height": 13,
+											"text": "+NumTélPro",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMu0BYPRS4/bs=",
+											"_parent": {
+												"$ref": "AAAAAAGMuz03CwHeXsc="
+											},
+											"model": {
+												"$ref": "AAAAAAGMu0BYLBSy48w="
+											},
+											"font": "Arial;13;0",
+											"left": 365,
+											"top": 785,
+											"width": 98.642578125,
+											"height": 13,
+											"text": "+NumTélPerso",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMu0DmZhYoiCQ=",
+											"_parent": {
+												"$ref": "AAAAAAGMuz03CwHeXsc="
+											},
+											"model": {
+												"$ref": "AAAAAAGMu0DmWhYi2nw="
+											},
+											"font": "Arial;13;0",
+											"left": 365,
+											"top": 800,
+											"width": 98.642578125,
+											"height": 13,
+											"text": "+CentreRattache",
+											"horizontalAlignment": 0
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 360,
+									"top": 705,
+									"width": 108.642578125,
+									"height": 113
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAGMuz03DAHfFJE=",
+									"_parent": {
+										"$ref": "AAAAAAGMuz03CwHYXl4="
+									},
+									"model": {
+										"$ref": "AAAAAAGMuz03CgHWSPQ="
+									},
+									"font": "Arial;13;0",
+									"left": 360,
+									"top": 818,
+									"width": 108.642578125,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAGMuz03DAHgys8=",
+									"_parent": {
+										"$ref": "AAAAAAGMuz03CwHYXl4="
+									},
+									"model": {
+										"$ref": "AAAAAAGMuz03CgHWSPQ="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -200,
+									"top": 376,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAGMuz03DAHhHfw=",
+									"_parent": {
+										"$ref": "AAAAAAGMuz03CwHYXl4="
+									},
+									"model": {
+										"$ref": "AAAAAAGMuz03CgHWSPQ="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -200,
+									"top": 376,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 360,
+							"top": 680,
+							"width": 108.642578125,
+							"height": 148,
+							"nameCompartment": {
+								"$ref": "AAAAAAGMuz03CwHZqC8="
+							},
+							"attributeCompartment": {
+								"$ref": "AAAAAAGMuz03CwHeXsc="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAGMuz03DAHfFJE="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAGMuz03DAHgys8="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAGMuz03DAHhHfw="
+							}
+						},
+						{
+							"_type": "UMLClassView",
+							"_id": "AAAAAAGMuz4B6QamQ1o=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMuz4B6Aakm/4="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAGMuz4B6QanGcU=",
+									"_parent": {
+										"$ref": "AAAAAAGMuz4B6QamQ1o="
+									},
+									"model": {
+										"$ref": "AAAAAAGMuz4B6Aakm/4="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMuz4B6QaoH/I=",
+											"_parent": {
+												"$ref": "AAAAAAGMuz4B6QanGcU="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -848,
+											"top": -112,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMuz4B6QapflU=",
+											"_parent": {
+												"$ref": "AAAAAAGMuz4B6QanGcU="
+											},
+											"font": "Arial;13;1",
+											"left": 205,
+											"top": 439,
+											"width": 75.4990234375,
+											"height": 13,
+											"text": "Conducteur"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMuz4B6Qaqao8=",
+											"_parent": {
+												"$ref": "AAAAAAGMuz4B6QanGcU="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -848,
+											"top": -112,
+											"width": 73.67724609375,
+											"height": 13,
+											"text": "(from Model)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMuz4B6garu74=",
+											"_parent": {
+												"$ref": "AAAAAAGMuz4B6QanGcU="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -848,
+											"top": -112,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 200,
+									"top": 432,
+									"width": 85.4990234375,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAGMuz4B6QaoH/I="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAGMuz4B6QapflU="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAGMuz4B6Qaqao8="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAGMuz4B6garu74="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAGMuz4B6gasGqE=",
+									"_parent": {
+										"$ref": "AAAAAAGMuz4B6QamQ1o="
+									},
+									"model": {
+										"$ref": "AAAAAAGMuz4B6Aakm/4="
+									},
+									"subViews": [
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMuz6vnAqmfWA=",
+											"_parent": {
+												"$ref": "AAAAAAGMuz4B6gasGqE="
+											},
+											"model": {
+												"$ref": "AAAAAAGMuz6vhQqdoho="
+											},
+											"font": "Arial;13;0",
+											"left": 205,
+											"top": 462,
+											"width": 75.4990234375,
+											"height": 13,
+											"text": "+DatePermis",
+											"horizontalAlignment": 0
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 200,
+									"top": 457,
+									"width": 85.4990234375,
+									"height": 23
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAGMuz4B6gatmoc=",
+									"_parent": {
+										"$ref": "AAAAAAGMuz4B6QamQ1o="
+									},
+									"model": {
+										"$ref": "AAAAAAGMuz4B6Aakm/4="
+									},
+									"font": "Arial;13;0",
+									"left": 200,
+									"top": 480,
+									"width": 85.4990234375,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAGMuz4B6gaulw4=",
+									"_parent": {
+										"$ref": "AAAAAAGMuz4B6QamQ1o="
+									},
+									"model": {
+										"$ref": "AAAAAAGMuz4B6Aakm/4="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -424,
+									"top": -56,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAGMuz4B6gavO48=",
+									"_parent": {
+										"$ref": "AAAAAAGMuz4B6QamQ1o="
+									},
+									"model": {
+										"$ref": "AAAAAAGMuz4B6Aakm/4="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -424,
+									"top": -56,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 200,
+							"top": 432,
+							"width": 85.4990234375,
+							"height": 58,
+							"nameCompartment": {
+								"$ref": "AAAAAAGMuz4B6QanGcU="
+							},
+							"attributeCompartment": {
+								"$ref": "AAAAAAGMuz4B6gasGqE="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAGMuz4B6gatmoc="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAGMuz4B6gaulw4="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAGMuz4B6gavO48="
+							}
+						},
+						{
+							"_type": "UMLClassView",
+							"_id": "AAAAAAGMu0OUqSI7D+U=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMu0OUqCI5+R0="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAGMu0OUqSI8brI=",
+									"_parent": {
+										"$ref": "AAAAAAGMu0OUqSI7D+U="
+									},
+									"model": {
+										"$ref": "AAAAAAGMu0OUqCI5+R0="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMu0OUqSI9WBc=",
+											"_parent": {
+												"$ref": "AAAAAAGMu0OUqSI8brI="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 304,
+											"top": 1152,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMu0OUqSI+TSM=",
+											"_parent": {
+												"$ref": "AAAAAAGMu0OUqSI8brI="
+											},
+											"font": "Arial;13;1",
+											"left": 709,
+											"top": 735,
+											"width": 88.537109375,
+											"height": 13,
+											"text": "Gare"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMu0OUqSI/6pU=",
+											"_parent": {
+												"$ref": "AAAAAAGMu0OUqSI8brI="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 304,
+											"top": 1152,
+											"width": 73.67724609375,
+											"height": 13,
+											"text": "(from Model)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMu0OUqSJAPtQ=",
+											"_parent": {
+												"$ref": "AAAAAAGMu0OUqSI8brI="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 304,
+											"top": 1152,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 704,
+									"top": 728,
+									"width": 98.537109375,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAGMu0OUqSI9WBc="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAGMu0OUqSI+TSM="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAGMu0OUqSI/6pU="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAGMu0OUqSJAPtQ="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAGMu0OUqSJBuDY=",
+									"_parent": {
+										"$ref": "AAAAAAGMu0OUqSI7D+U="
+									},
+									"model": {
+										"$ref": "AAAAAAGMu0OUqCI5+R0="
+									},
+									"subViews": [
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMu0OmOyL2HiQ=",
+											"_parent": {
+												"$ref": "AAAAAAGMu0OUqSJBuDY="
+											},
+											"model": {
+												"$ref": "AAAAAAGMu0OmLSLnwU4="
+											},
+											"font": "Arial;13;0",
+											"left": 709,
+											"top": 758,
+											"width": 88.537109375,
+											"height": 13,
+											"text": "+Identifiant {id}",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMu0QCgySLP4Q=",
+											"_parent": {
+												"$ref": "AAAAAAGMu0OUqSJBuDY="
+											},
+											"model": {
+												"$ref": "AAAAAAGMu0QCfSR89lg="
+											},
+											"font": "Arial;13;0",
+											"left": 709,
+											"top": 773,
+											"width": 88.537109375,
+											"height": 13,
+											"text": "+Nom",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMu0Qa0CUWuHw=",
+											"_parent": {
+												"$ref": "AAAAAAGMu0OUqSJBuDY="
+											},
+											"model": {
+												"$ref": "AAAAAAGMu0QaySUHeqA="
+											},
+											"font": "Arial;13;0",
+											"left": 709,
+											"top": 788,
+											"width": 88.537109375,
+											"height": 13,
+											"text": "+Ville",
+											"horizontalAlignment": 0
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 704,
+									"top": 753,
+									"width": 98.537109375,
+									"height": 53
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAGMu0OUqSJCLmg=",
+									"_parent": {
+										"$ref": "AAAAAAGMu0OUqSI7D+U="
+									},
+									"model": {
+										"$ref": "AAAAAAGMu0OUqCI5+R0="
+									},
+									"font": "Arial;13;0",
+									"left": 704,
+									"top": 806,
+									"width": 98.537109375,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAGMu0OUqSJDsvU=",
+									"_parent": {
+										"$ref": "AAAAAAGMu0OUqSI7D+U="
+									},
+									"model": {
+										"$ref": "AAAAAAGMu0OUqCI5+R0="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 152,
+									"top": 576,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAGMu0OUqSJEbZ0=",
+									"_parent": {
+										"$ref": "AAAAAAGMu0OUqSI7D+U="
+									},
+									"model": {
+										"$ref": "AAAAAAGMu0OUqCI5+R0="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 152,
+									"top": 576,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 704,
+							"top": 728,
+							"width": 98.537109375,
+							"height": 88,
+							"nameCompartment": {
+								"$ref": "AAAAAAGMu0OUqSI8brI="
+							},
+							"attributeCompartment": {
+								"$ref": "AAAAAAGMu0OUqSJBuDY="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAGMu0OUqSJCLmg="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAGMu0OUqSJDsvU="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAGMu0OUqSJEbZ0="
+							}
+						},
+						{
+							"_type": "UMLClassView",
+							"_id": "AAAAAAGMu0TTzivn4uY=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMu0TTzivlbXo="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAGMu0TTzyvoYv4=",
+									"_parent": {
+										"$ref": "AAAAAAGMu0TTzivn4uY="
+									},
+									"model": {
+										"$ref": "AAAAAAGMu0TTzivlbXo="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMu0TTzyvpalE=",
+											"_parent": {
+												"$ref": "AAAAAAGMu0TTzyvoYv4="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 1120,
+											"top": 832,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMu0TTzyvqksQ=",
+											"_parent": {
+												"$ref": "AAAAAAGMu0TTzyvoYv4="
+											},
+											"font": "Arial;13;1",
+											"left": 989,
+											"top": 551,
+											"width": 98.63623046875,
+											"height": 13,
+											"text": "Trajet"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMu0TTzyvrSGA=",
+											"_parent": {
+												"$ref": "AAAAAAGMu0TTzyvoYv4="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 1120,
+											"top": 832,
+											"width": 73.67724609375,
+											"height": 13,
+											"text": "(from Model)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMu0TTzyvsvwk=",
+											"_parent": {
+												"$ref": "AAAAAAGMu0TTzyvoYv4="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 1120,
+											"top": 832,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 984,
+									"top": 544,
+									"width": 108.63623046875,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAGMu0TTzyvpalE="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAGMu0TTzyvqksQ="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAGMu0TTzyvrSGA="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAGMu0TTzyvsvwk="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAGMu0TTzyvt6wQ=",
+									"_parent": {
+										"$ref": "AAAAAAGMu0TTzivn4uY="
+									},
+									"model": {
+										"$ref": "AAAAAAGMu0TTzivlbXo="
+									},
+									"subViews": [
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMz7i1nE35pys=",
+											"_parent": {
+												"$ref": "AAAAAAGMu0TTzyvt6wQ="
+											},
+											"model": {
+												"$ref": "AAAAAAGMz7i1h032fPY="
+											},
+											"font": "Arial;13;0",
+											"left": 989,
+											"top": 574,
+											"width": 98.63623046875,
+											"height": 13,
+											"text": "+Identifiant {id}",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMu0UICy1rVC4=",
+											"_parent": {
+												"$ref": "AAAAAAGMu0TTzyvt6wQ="
+											},
+											"model": {
+												"$ref": "AAAAAAGMu0UH9C1ZZig="
+											},
+											"font": "Arial;13;0",
+											"left": 989,
+											"top": 589,
+											"width": 98.63623046875,
+											"height": 13,
+											"text": "+DateDépart",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMu0Uq4i4XPJg=",
+											"_parent": {
+												"$ref": "AAAAAAGMu0TTzyvt6wQ="
+											},
+											"model": {
+												"$ref": "AAAAAAGMu0Uq0S4Fu6A="
+											},
+											"font": "Arial;13;0",
+											"left": 989,
+											"top": 604,
+											"width": 98.63623046875,
+											"height": 13,
+											"text": "+HeureDépart",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMu0Vfgy7DFGo=",
+											"_parent": {
+												"$ref": "AAAAAAGMu0TTzyvt6wQ="
+											},
+											"model": {
+												"$ref": "AAAAAAGMu0Vfey6xBME="
+											},
+											"font": "Arial;13;0",
+											"left": 989,
+											"top": 619,
+											"width": 98.63623046875,
+											"height": 13,
+											"text": "+HeureArrivee",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMz7iUDkwh12s=",
+											"_parent": {
+												"$ref": "AAAAAAGMu0TTzyvt6wQ="
+											},
+											"model": {
+												"$ref": "AAAAAAGMz7iT/Uwe3dc="
+											},
+											"font": "Arial;13;0",
+											"left": 989,
+											"top": 634,
+											"width": 98.63623046875,
+											"height": 13,
+											"text": "+TarifBase",
+											"horizontalAlignment": 0
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 984,
+									"top": 569,
+									"width": 108.63623046875,
+									"height": 83
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAGMu0TTzyvuo+g=",
+									"_parent": {
+										"$ref": "AAAAAAGMu0TTzivn4uY="
+									},
+									"model": {
+										"$ref": "AAAAAAGMu0TTzivlbXo="
+									},
+									"font": "Arial;13;0",
+									"left": 984,
+									"top": 652,
+									"width": 108.63623046875,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAGMu0TTzyvv/CI=",
+									"_parent": {
+										"$ref": "AAAAAAGMu0TTzivn4uY="
+									},
+									"model": {
+										"$ref": "AAAAAAGMu0TTzivlbXo="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 560,
+									"top": 416,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAGMu0TTzyvwo40=",
+									"_parent": {
+										"$ref": "AAAAAAGMu0TTzivn4uY="
+									},
+									"model": {
+										"$ref": "AAAAAAGMu0TTzivlbXo="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 560,
+									"top": 416,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 984,
+							"top": 544,
+							"width": 108.63623046875,
+							"height": 118,
+							"nameCompartment": {
+								"$ref": "AAAAAAGMu0TTzyvoYv4="
+							},
+							"attributeCompartment": {
+								"$ref": "AAAAAAGMu0TTzyvt6wQ="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAGMu0TTzyvuo+g="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAGMu0TTzyvv/CI="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAGMu0TTzyvwo40="
+							}
+						},
+						{
+							"_type": "UMLClassView",
+							"_id": "AAAAAAGMu0Yl4TpWhno=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMu0Yl4TpUnNk="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAGMu0Yl4TpXOmk=",
+									"_parent": {
+										"$ref": "AAAAAAGMu0Yl4TpWhno="
+									},
+									"model": {
+										"$ref": "AAAAAAGMu0Yl4TpUnNk="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMu0Yl4TpY9VM=",
+											"_parent": {
+												"$ref": "AAAAAAGMu0Yl4TpXOmk="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 1152,
+											"top": -96,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMu0Yl4TpZfzI=",
+											"_parent": {
+												"$ref": "AAAAAAGMu0Yl4TpXOmk="
+											},
+											"font": "Arial;13;1",
+											"left": 813,
+											"top": 135,
+											"width": 162.27783203125,
+											"height": 13,
+											"text": "Voyage"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMu0Yl4TpaoGY=",
+											"_parent": {
+												"$ref": "AAAAAAGMu0Yl4TpXOmk="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 1152,
+											"top": -96,
+											"width": 73.67724609375,
+											"height": 13,
+											"text": "(from Model)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMu0Yl4TpbgSY=",
+											"_parent": {
+												"$ref": "AAAAAAGMu0Yl4TpXOmk="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 1152,
+											"top": -96,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 808,
+									"top": 128,
+									"width": 172.27783203125,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAGMu0Yl4TpY9VM="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAGMu0Yl4TpZfzI="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAGMu0Yl4TpaoGY="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAGMu0Yl4TpbgSY="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAGMu0Yl4TpcpXU=",
+									"_parent": {
+										"$ref": "AAAAAAGMu0Yl4TpWhno="
+									},
+									"model": {
+										"$ref": "AAAAAAGMu0Yl4TpUnNk="
+									},
+									"subViews": [
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMz7kXGVJblA4=",
+											"_parent": {
+												"$ref": "AAAAAAGMu0Yl4TpcpXU="
+											},
+											"model": {
+												"$ref": "AAAAAAGMz7kXClJYFa8="
+											},
+											"font": "Arial;13;0",
+											"left": 813,
+											"top": 158,
+											"width": 162.27783203125,
+											"height": 13,
+											"text": "+RéférenceVoyage {unique}",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMu0ZCgDs1oNY=",
+											"_parent": {
+												"$ref": "AAAAAAGMu0Yl4TpcpXU="
+											},
+											"model": {
+												"$ref": "AAAAAAGMu0ZCcDsjpH4="
+											},
+											"font": "Arial;13;0",
+											"left": 813,
+											"top": 173,
+											"width": 162.27783203125,
+											"height": 13,
+											"text": "+DateCreation",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMz7lxMFZTKkE=",
+											"_parent": {
+												"$ref": "AAAAAAGMu0Yl4TpcpXU="
+											},
+											"model": {
+												"$ref": "AAAAAAGMz7lxIFZQnoI="
+											},
+											"font": "Arial;13;0",
+											"left": 813,
+											"top": 188,
+											"width": 162.27783203125,
+											"height": 13,
+											"text": "+CodeTarif",
+											"horizontalAlignment": 0
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 808,
+									"top": 153,
+									"width": 172.27783203125,
+									"height": 53
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAGMu0Yl4TpdePo=",
+									"_parent": {
+										"$ref": "AAAAAAGMu0Yl4TpWhno="
+									},
+									"model": {
+										"$ref": "AAAAAAGMu0Yl4TpUnNk="
+									},
+									"font": "Arial;13;0",
+									"left": 808,
+									"top": 206,
+									"width": 172.27783203125,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAGMu0Yl4jpepMc=",
+									"_parent": {
+										"$ref": "AAAAAAGMu0Yl4TpWhno="
+									},
+									"model": {
+										"$ref": "AAAAAAGMu0Yl4TpUnNk="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 576,
+									"top": -48,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAGMu0Yl4jpfoEI=",
+									"_parent": {
+										"$ref": "AAAAAAGMu0Yl4TpWhno="
+									},
+									"model": {
+										"$ref": "AAAAAAGMu0Yl4TpUnNk="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 576,
+									"top": -48,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 808,
+							"top": 128,
+							"width": 172.27783203125,
+							"height": 88,
+							"nameCompartment": {
+								"$ref": "AAAAAAGMu0Yl4TpXOmk="
+							},
+							"attributeCompartment": {
+								"$ref": "AAAAAAGMu0Yl4TpcpXU="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAGMu0Yl4TpdePo="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAGMu0Yl4jpepMc="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAGMu0Yl4jpfoEI="
+							}
+						},
+						{
+							"_type": "UMLClassView",
+							"_id": "AAAAAAGMu0e2lEH+coQ=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMu0e2lEH8UPw="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAGMu0e2lEH/FHo=",
+									"_parent": {
+										"$ref": "AAAAAAGMu0e2lEH+coQ="
+									},
+									"model": {
+										"$ref": "AAAAAAGMu0e2lEH8UPw="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMu0e2lEIAzp0=",
+											"_parent": {
+												"$ref": "AAAAAAGMu0e2lEH/FHo="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 976,
+											"top": -464,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMu0e2lEIBap0=",
+											"_parent": {
+												"$ref": "AAAAAAGMu0e2lEH/FHo="
+											},
+											"font": "Arial;13;1",
+											"left": 781,
+											"top": 383,
+											"width": 97.2080078125,
+											"height": 13,
+											"text": "Client"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMu0e2lEICF2I=",
+											"_parent": {
+												"$ref": "AAAAAAGMu0e2lEH/FHo="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 976,
+											"top": -464,
+											"width": 73.67724609375,
+											"height": 13,
+											"text": "(from Model)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMu0e2lEIDBw0=",
+											"_parent": {
+												"$ref": "AAAAAAGMu0e2lEH/FHo="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 976,
+											"top": -464,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 776,
+									"top": 376,
+									"width": 107.2080078125,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAGMu0e2lEIAzp0="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAGMu0e2lEIBap0="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAGMu0e2lEICF2I="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAGMu0e2lEIDBw0="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAGMu0e2lUIEi9k=",
+									"_parent": {
+										"$ref": "AAAAAAGMu0e2lEH+coQ="
+									},
+									"model": {
+										"$ref": "AAAAAAGMu0e2lEH8UPw="
+									},
+									"subViews": [
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMz7oVoF2zPB4=",
+											"_parent": {
+												"$ref": "AAAAAAGMu0e2lUIEi9k="
+											},
+											"model": {
+												"$ref": "AAAAAAGMz7oVjV2wA3o="
+											},
+											"font": "Arial;13;0",
+											"left": 781,
+											"top": 406,
+											"width": 97.2080078125,
+											"height": 13,
+											"text": "+IDClient {id}",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMu0fM8ULdUGw=",
+											"_parent": {
+												"$ref": "AAAAAAGMu0e2lUIEi9k="
+											},
+											"model": {
+												"$ref": "AAAAAAGMu0fM5ULLvwk="
+											},
+											"font": "Arial;13;0",
+											"left": 781,
+											"top": 421,
+											"width": 97.2080078125,
+											"height": 13,
+											"text": "+Nom",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMu0fZ8kOJqiU=",
+											"_parent": {
+												"$ref": "AAAAAAGMu0e2lUIEi9k="
+											},
+											"model": {
+												"$ref": "AAAAAAGMu0fZ5kN3tVU="
+											},
+											"font": "Arial;13;0",
+											"left": 781,
+											"top": 436,
+											"width": 97.2080078125,
+											"height": 13,
+											"text": "+Prénom",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMu0fqdEQ1lug=",
+											"_parent": {
+												"$ref": "AAAAAAGMu0e2lUIEi9k="
+											},
+											"model": {
+												"$ref": "AAAAAAGMu0fqbEQjN0o="
+											},
+											"font": "Arial;13;0",
+											"left": 781,
+											"top": 451,
+											"width": 97.2080078125,
+											"height": 13,
+											"text": "+Adresse",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMu0gKF0Th0IQ=",
+											"_parent": {
+												"$ref": "AAAAAAGMu0e2lUIEi9k="
+											},
+											"model": {
+												"$ref": "AAAAAAGMu0gKD0TPz6k="
+											},
+											"font": "Arial;13;0",
+											"left": 781,
+											"top": 466,
+											"width": 97.2080078125,
+											"height": 13,
+											"text": "+DateNaissance",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMu0gsckWNp2Y=",
+											"_parent": {
+												"$ref": "AAAAAAGMu0e2lUIEi9k="
+											},
+											"model": {
+												"$ref": "AAAAAAGMu0gsakV7HPM="
+											},
+											"font": "Arial;13;0",
+											"left": 781,
+											"top": 481,
+											"width": 97.2080078125,
+											"height": 13,
+											"text": "+NumTél",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMu0hS0UY526o=",
+											"_parent": {
+												"$ref": "AAAAAAGMu0e2lUIEi9k="
+											},
+											"model": {
+												"$ref": "AAAAAAGMu0hSx0Yn2gI="
+											},
+											"font": "Arial;13;0",
+											"left": 781,
+											"top": 496,
+											"width": 97.2080078125,
+											"height": 13,
+											"text": "+AdresseMail",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMu0hmukbl0Yg=",
+											"_parent": {
+												"$ref": "AAAAAAGMu0e2lUIEi9k="
+											},
+											"model": {
+												"$ref": "AAAAAAGMu0hms0bT1QM="
+											},
+											"font": "Arial;13;0",
+											"left": 781,
+											"top": 511,
+											"width": 97.2080078125,
+											"height": 13,
+											"text": "+CodeRéduction",
+											"horizontalAlignment": 0
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 776,
+									"top": 401,
+									"width": 107.2080078125,
+									"height": 128
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAGMu0e2lUIFH/s=",
+									"_parent": {
+										"$ref": "AAAAAAGMu0e2lEH+coQ="
+									},
+									"model": {
+										"$ref": "AAAAAAGMu0e2lEH8UPw="
+									},
+									"font": "Arial;13;0",
+									"left": 776,
+									"top": 529,
+									"width": 107.2080078125,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAGMu0e2lUIGIZk=",
+									"_parent": {
+										"$ref": "AAAAAAGMu0e2lEH+coQ="
+									},
+									"model": {
+										"$ref": "AAAAAAGMu0e2lEH8UPw="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 488,
+									"top": -232,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAGMu0e2lUIHvIE=",
+									"_parent": {
+										"$ref": "AAAAAAGMu0e2lEH+coQ="
+									},
+									"model": {
+										"$ref": "AAAAAAGMu0e2lEH8UPw="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 488,
+									"top": -232,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 776,
+							"top": 376,
+							"width": 107.2080078125,
+							"height": 163,
+							"nameCompartment": {
+								"$ref": "AAAAAAGMu0e2lEH/FHo="
+							},
+							"attributeCompartment": {
+								"$ref": "AAAAAAGMu0e2lUIEi9k="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAGMu0e2lUIFH/s="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAGMu0e2lUIGIZk="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAGMu0e2lUIHvIE="
+							}
+						},
+						{
+							"_type": "UMLAssociationView",
+							"_id": "AAAAAAGMz7F5lhmGmxM=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMz7F5lhmCZEg="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7F5lhmHVqU=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7F5lhmGmxM="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7F5lhmCZEg="
+									},
+									"font": "Arial;13;0",
+									"left": 482,
+									"top": 323,
+									"width": 58.90625,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7F5lhmGmxM="
+									},
+									"edgePosition": 1,
+									"text": "+Attachée"
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7F5lhmIZ68=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7F5lhmGmxM="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7F5lhmCZEg="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 502,
+									"top": 311,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7F5lhmGmxM="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7F5lhmJcD8=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7F5lhmGmxM="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7F5lhmCZEg="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 528,
+									"top": 348,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7F5lhmGmxM="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7F5lhmKPSA=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7F5lhmGmxM="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7F5lhmDMyw="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 485,
+									"top": 342,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7F5lhmGmxM="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7F5lhmLKBA=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7F5lhmGmxM="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7F5lhmDMyw="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 479,
+									"top": 330,
+									"height": 13,
+									"alpha": 0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7F5lhmGmxM="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7F5lhmM2N4=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7F5lhmGmxM="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7F5lhmDMyw="
+									},
+									"font": "Arial;13;0",
+									"left": 494,
+									"top": 367,
+									"width": 7.22998046875,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7F5lhmGmxM="
+									},
+									"edgePosition": 2,
+									"text": "1"
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7F5lhmNfAs=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7F5lhmGmxM="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7F5lhmE4aE="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 537,
+									"top": 305,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7F5lhmGmxM="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7F5lhmOEos=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7F5lhmGmxM="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7F5lhmE4aE="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 527,
+									"top": 296,
+									"height": 13,
+									"alpha": -0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7F5lhmGmxM="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7F5lhmP/Wk=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7F5lhmGmxM="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7F5lhmE4aE="
+									},
+									"font": "Arial;13;0",
+									"left": 547,
+									"top": 325,
+									"width": 19.5126953125,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7F5lhmGmxM="
+									},
+									"text": "1..*"
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAGMz7F5lhmQ3Bg=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7F5lhmGmxM="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7F5lhmDMyw="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -56,
+									"top": -208,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAGMz7F5lhmRB0w=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7F5lhmGmxM="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7F5lhmE4aE="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -56,
+									"top": -208,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAGMsOlTJ//nA/A="
+							},
+							"tail": {
+								"$ref": "AAAAAAGMsOh9+/+ntv0="
+							},
+							"lineStyle": 1,
+							"points": "473:376;567:309",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAGMz7F5lhmHVqU="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAGMz7F5lhmIZ68="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAGMz7F5lhmJcD8="
+							},
+							"showEndOrder": "hide",
+							"tailRoleNameLabel": {
+								"$ref": "AAAAAAGMz7F5lhmKPSA="
+							},
+							"tailPropertyLabel": {
+								"$ref": "AAAAAAGMz7F5lhmLKBA="
+							},
+							"tailMultiplicityLabel": {
+								"$ref": "AAAAAAGMz7F5lhmM2N4="
+							},
+							"headRoleNameLabel": {
+								"$ref": "AAAAAAGMz7F5lhmNfAs="
+							},
+							"headPropertyLabel": {
+								"$ref": "AAAAAAGMz7F5lhmOEos="
+							},
+							"headMultiplicityLabel": {
+								"$ref": "AAAAAAGMz7F5lhmP/Wk="
+							},
+							"tailQualifiersCompartment": {
+								"$ref": "AAAAAAGMz7F5lhmQ3Bg="
+							},
+							"headQualifiersCompartment": {
+								"$ref": "AAAAAAGMz7F5lhmRB0w="
+							}
+						},
+						{
+							"_type": "UMLClassView",
+							"_id": "AAAAAAGMz7IOvBxwcbs=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMz7IOvBxu+A0="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAGMz7IOvBxxbEk=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7IOvBxwcbs="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7IOvBxu+A0="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMz7IOvBxysA0=",
+											"_parent": {
+												"$ref": "AAAAAAGMz7IOvBxxbEk="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 432,
+											"top": -480,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMz7IOvBxzCr8=",
+											"_parent": {
+												"$ref": "AAAAAAGMz7IOvBxxbEk="
+											},
+											"font": "Arial;13;1",
+											"left": 637,
+											"top": 79,
+											"width": 78.78076171875,
+											"height": 13,
+											"text": "2ème Classe"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMz7IOvBx0Gto=",
+											"_parent": {
+												"$ref": "AAAAAAGMz7IOvBxxbEk="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 432,
+											"top": -480,
+											"width": 73.67724609375,
+											"height": 13,
+											"text": "(from Model)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMz7IOvBx1BIA=",
+											"_parent": {
+												"$ref": "AAAAAAGMz7IOvBxxbEk="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 432,
+											"top": -480,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 632,
+									"top": 72,
+									"width": 88.78076171875,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAGMz7IOvBxysA0="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAGMz7IOvBxzCr8="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAGMz7IOvBx0Gto="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAGMz7IOvBx1BIA="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAGMz7IOvBx22gw=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7IOvBxwcbs="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7IOvBxu+A0="
+									},
+									"subViews": [
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMz7MDIR3FEk0=",
+											"_parent": {
+												"$ref": "AAAAAAGMz7IOvBx22gw="
+											},
+											"model": {
+												"$ref": "AAAAAAGMz7MDCh2/eS0="
+											},
+											"font": "Arial;13;0",
+											"left": 637,
+											"top": 102,
+											"width": 78.78076171875,
+											"height": 13,
+											"text": "+NbSiège",
+											"horizontalAlignment": 0
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 632,
+									"top": 97,
+									"width": 88.78076171875,
+									"height": 23
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAGMz7IOvBx3r+A=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7IOvBxwcbs="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7IOvBxu+A0="
+									},
+									"font": "Arial;13;0",
+									"left": 632,
+									"top": 120,
+									"width": 88.78076171875,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAGMz7IOvBx47oI=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7IOvBxwcbs="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7IOvBxu+A0="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 216,
+									"top": -240,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAGMz7IOvBx5v2U=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7IOvBxwcbs="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7IOvBxu+A0="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 216,
+									"top": -240,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 632,
+							"top": 72,
+							"width": 88.78076171875,
+							"height": 58,
+							"nameCompartment": {
+								"$ref": "AAAAAAGMz7IOvBxxbEk="
+							},
+							"attributeCompartment": {
+								"$ref": "AAAAAAGMz7IOvBx22gw="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAGMz7IOvBx3r+A="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAGMz7IOvBx47oI="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAGMz7IOvBx5v2U="
+							}
+						},
+						{
+							"_type": "UMLClassView",
+							"_id": "AAAAAAGMz7J+thzuvwo=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMz7J+thzsfbU="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAGMz7J+thzvoXg=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7J+thzuvwo="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7J+thzsfbU="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMz7J+thzwHTg=",
+											"_parent": {
+												"$ref": "AAAAAAGMz7J+thzvoXg="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 128,
+											"top": -672,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMz7J+thzxlkI=",
+											"_parent": {
+												"$ref": "AAAAAAGMz7J+thzvoXg="
+											},
+											"font": "Arial;13;1",
+											"left": 517,
+											"top": 79,
+											"width": 75.892578125,
+											"height": 13,
+											"text": "1ière Classe"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMz7J+thzy7DU=",
+											"_parent": {
+												"$ref": "AAAAAAGMz7J+thzvoXg="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 128,
+											"top": -672,
+											"width": 73.67724609375,
+											"height": 13,
+											"text": "(from Model)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMz7J+thzzK14=",
+											"_parent": {
+												"$ref": "AAAAAAGMz7J+thzvoXg="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 128,
+											"top": -672,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 512,
+									"top": 72,
+									"width": 85.892578125,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAGMz7J+thzwHTg="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAGMz7J+thzxlkI="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAGMz7J+thzy7DU="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAGMz7J+thzzK14="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAGMz7J+thz0ZB0=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7J+thzuvwo="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7J+thzsfbU="
+									},
+									"subViews": [
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMz7MmmR4aNAA=",
+											"_parent": {
+												"$ref": "AAAAAAGMz7J+thz0ZB0="
+											},
+											"model": {
+												"$ref": "AAAAAAGMz7MmiR4U8aU="
+											},
+											"font": "Arial;13;0",
+											"left": 517,
+											"top": 102,
+											"width": 75.892578125,
+											"height": 13,
+											"text": "+NbSiège",
+											"horizontalAlignment": 0
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 512,
+									"top": 97,
+									"width": 85.892578125,
+									"height": 23
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAGMz7J+thz1o0g=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7J+thzuvwo="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7J+thzsfbU="
+									},
+									"font": "Arial;13;0",
+									"left": 512,
+									"top": 120,
+									"width": 85.892578125,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAGMz7J+thz2wQY=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7J+thzuvwo="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7J+thzsfbU="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 64,
+									"top": -336,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAGMz7J+thz3/ho=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7J+thzuvwo="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7J+thzsfbU="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 64,
+									"top": -336,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 512,
+							"top": 72,
+							"width": 85.892578125,
+							"height": 58,
+							"nameCompartment": {
+								"$ref": "AAAAAAGMz7J+thzvoXg="
+							},
+							"attributeCompartment": {
+								"$ref": "AAAAAAGMz7J+thz0ZB0="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAGMz7J+thz1o0g="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAGMz7J+thz2wQY="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAGMz7J+thz3/ho="
+							}
+						},
+						{
+							"_type": "UMLGeneralizationView",
+							"_id": "AAAAAAGMz7N0Jh79/8A=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMz7N0Jh77k7Q="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7N0Jh7+Xoc=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7N0Jh79/8A="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7N0Jh77k7Q="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 668,
+									"top": 166,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7N0Jh79/8A="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7N0Jh7/4ko=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7N0Jh79/8A="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7N0Jh77k7Q="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 682,
+									"top": 170,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7N0Jh79/8A="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7N0Jh8Awxo=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7N0Jh79/8A="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7N0Jh77k7Q="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 639,
+									"top": 157,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7N0Jh79/8A="
+									},
+									"edgePosition": 1
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAGMsOlTJ//nA/A="
+							},
+							"tail": {
+								"$ref": "AAAAAAGMz7IOvBxwcbs="
+							},
+							"lineStyle": 1,
+							"points": "666:130;643:207",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAGMz7N0Jh7+Xoc="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAGMz7N0Jh7/4ko="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAGMz7N0Jh8Awxo="
+							}
+						},
+						{
+							"_type": "UMLGeneralizationView",
+							"_id": "AAAAAAGMz7OJEx9x83U=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMz7OJEh9vnbI="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7OJEx9ykFc=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7OJEx9x83U="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7OJEh9vnbI="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 596,
+									"top": 156,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7OJEx9x83U="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7OJEx9zPIk=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7OJEx9x83U="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7OJEh9vnbI="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 610,
+									"top": 150,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7OJEx9x83U="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7OJEx90qTQ=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7OJEx9x83U="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7OJEh9vnbI="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 569,
+									"top": 167,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7OJEx9x83U="
+									},
+									"edgePosition": 1
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAGMsOlTJ//nA/A="
+							},
+							"tail": {
+								"$ref": "AAAAAAGMz7J+thzuvwo="
+							},
+							"lineStyle": 1,
+							"points": "567:130;600:207",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAGMz7OJEx9ykFc="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAGMz7OJEx9zPIk="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAGMz7OJEx90qTQ="
+							}
+						},
+						{
+							"_type": "FreelineEdgeView",
+							"_id": "AAAAAAGMz7SILCNIAu8=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"font": "Arial;13;0",
+							"lineStyle": 1,
+							"points": "512:168;752:168",
+							"lineMode": 2
+						},
+						{
+							"_type": "UMLTextView",
+							"_id": "AAAAAAGMz7TpWCaqgoM=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"font": "Arial;13;0",
+							"left": 504,
+							"top": 152,
+							"width": 66.37353515625,
+							"height": 25,
+							"text": "{Partition}"
+						},
+						{
+							"_type": "UMLAssociationView",
+							"_id": "AAAAAAGMz7Ymci3j9lY=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMz7Ymci3faBw="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7Ymci3kzmE=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7Ymci3j9lY="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7Ymci3faBw="
+									},
+									"font": "Arial;13;0",
+									"left": 387,
+									"top": 555,
+									"width": 46.3759765625,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7Ymci3j9lY="
+									},
+									"edgePosition": 1,
+									"text": "+Affiliée"
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7Ymci3lFKc=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7Ymci3j9lY="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7Ymci3faBw="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 395,
+									"top": 554,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7Ymci3j9lY="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7Ymci3mqC4=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7Ymci3j9lY="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7Ymci3faBw="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 439,
+									"top": 558,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7Ymci3j9lY="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7Ymci3nAyQ=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7Ymci3j9lY="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7Ymci3gqMU="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 404,
+									"top": 646,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7Ymci3j9lY="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7Ymci3oTqI=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7Ymci3j9lY="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7Ymci3gqMU="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 391,
+									"top": 642,
+									"height": 13,
+									"alpha": 0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7Ymci3j9lY="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7Ymci3pQgQ=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7Ymci3j9lY="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7Ymci3gqMU="
+									},
+									"font": "Arial;13;0",
+									"left": 422,
+									"top": 652,
+									"width": 19.5126953125,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7Ymci3j9lY="
+									},
+									"edgePosition": 2,
+									"text": "1..*"
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7Ymci3qhlg=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7Ymci3j9lY="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7Ymci3hTMQ="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 416,
+									"top": 466,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7Ymci3j9lY="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7Ymci3rAnw=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7Ymci3j9lY="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7Ymci3hTMQ="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 402,
+									"top": 468,
+									"height": 13,
+									"alpha": -0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7Ymci3j9lY="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7Ymci3sXM0=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7Ymci3j9lY="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7Ymci3hTMQ="
+									},
+									"font": "Arial;13;0",
+									"left": 441,
+									"top": 464,
+									"width": 7.22998046875,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7Ymci3j9lY="
+									},
+									"text": "1"
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAGMz7Ymci3tzsY=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7Ymci3j9lY="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7Ymci3gqMU="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -56,
+									"top": -8,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAGMz7Ymcy3u6eA=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7Ymci3j9lY="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7Ymci3hTMQ="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -56,
+									"top": -8,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAGMsOh9+/+ntv0="
+							},
+							"tail": {
+								"$ref": "AAAAAAGMuz03CwHYXl4="
+							},
+							"lineStyle": 1,
+							"points": "418:679;433:448",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAGMz7Ymci3kzmE="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAGMz7Ymci3lFKc="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAGMz7Ymci3mqC4="
+							},
+							"showEndOrder": "hide",
+							"tailRoleNameLabel": {
+								"$ref": "AAAAAAGMz7Ymci3nAyQ="
+							},
+							"tailPropertyLabel": {
+								"$ref": "AAAAAAGMz7Ymci3oTqI="
+							},
+							"tailMultiplicityLabel": {
+								"$ref": "AAAAAAGMz7Ymci3pQgQ="
+							},
+							"headRoleNameLabel": {
+								"$ref": "AAAAAAGMz7Ymci3qhlg="
+							},
+							"headPropertyLabel": {
+								"$ref": "AAAAAAGMz7Ymci3rAnw="
+							},
+							"headMultiplicityLabel": {
+								"$ref": "AAAAAAGMz7Ymci3sXM0="
+							},
+							"tailQualifiersCompartment": {
+								"$ref": "AAAAAAGMz7Ymci3tzsY="
+							},
+							"headQualifiersCompartment": {
+								"$ref": "AAAAAAGMz7Ymcy3u6eA="
+							}
+						},
+						{
+							"_type": "UMLClassView",
+							"_id": "AAAAAAGMz7bSjzgBuPQ=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMz7bSjjf/Kok="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAGMz7bSjzgCCeY=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7bSjzgBuPQ="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7bSjjf/Kok="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMz7bSjzgDecM=",
+											"_parent": {
+												"$ref": "AAAAAAGMz7bSjzgCCeY="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -816,
+											"top": -384,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMz7bSjzgEG4Y=",
+											"_parent": {
+												"$ref": "AAAAAAGMz7bSjzgCCeY="
+											},
+											"font": "Arial;13;1",
+											"left": 101,
+											"top": 591,
+											"width": 119.919921875,
+											"height": 13,
+											"text": "Personnel navigant"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMz7bSjzgFzgQ=",
+											"_parent": {
+												"$ref": "AAAAAAGMz7bSjzgCCeY="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -816,
+											"top": -384,
+											"width": 73.67724609375,
+											"height": 13,
+											"text": "(from Model)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMz7bSjzgGJu0=",
+											"_parent": {
+												"$ref": "AAAAAAGMz7bSjzgCCeY="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -816,
+											"top": -384,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 96,
+									"top": 584,
+									"width": 129.919921875,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAGMz7bSjzgDecM="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAGMz7bSjzgEG4Y="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAGMz7bSjzgFzgQ="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAGMz7bSjzgGJu0="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAGMz7bSjzgHocU=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7bSjzgBuPQ="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7bSjjf/Kok="
+									},
+									"subViews": [
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMz7cIOjh0ScY=",
+											"_parent": {
+												"$ref": "AAAAAAGMz7bSjzgHocU="
+											},
+											"model": {
+												"$ref": "AAAAAAGMz7cIJzhrdAU="
+											},
+											"font": "Arial;13;0",
+											"left": 101,
+											"top": 614,
+											"width": 119.919921875,
+											"height": 13,
+											"text": "+Poste",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMz7cb9ji9j6Y=",
+											"_parent": {
+												"$ref": "AAAAAAGMz7bSjzgHocU="
+											},
+											"model": {
+												"$ref": "AAAAAAGMz7cb4Ti0nTA="
+											},
+											"font": "Arial;13;0",
+											"left": 101,
+											"top": 629,
+											"width": 119.919921875,
+											"height": 13,
+											"text": "+ContratEmbauche",
+											"horizontalAlignment": 0
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 96,
+									"top": 609,
+									"width": 129.919921875,
+									"height": 38
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAGMz7bSjzgIu1I=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7bSjzgBuPQ="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7bSjjf/Kok="
+									},
+									"font": "Arial;13;0",
+									"left": 96,
+									"top": 647,
+									"width": 129.919921875,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAGMz7bSjzgJuXU=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7bSjzgBuPQ="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7bSjjf/Kok="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -408,
+									"top": -192,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAGMz7bSjzgK2dk=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7bSjzgBuPQ="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7bSjjf/Kok="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -408,
+									"top": -192,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 96,
+							"top": 584,
+							"width": 129.919921875,
+							"height": 73,
+							"nameCompartment": {
+								"$ref": "AAAAAAGMz7bSjzgCCeY="
+							},
+							"attributeCompartment": {
+								"$ref": "AAAAAAGMz7bSjzgHocU="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAGMz7bSjzgIu1I="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAGMz7bSjzgJuXU="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAGMz7bSjzgK2dk="
+							}
+						},
+						{
+							"_type": "UMLGeneralizationView",
+							"_id": "AAAAAAGMz7davDlHty4=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMz7dauzlFbWg="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7davDlIM2k=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7davDlHty4="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7dauzlFbWg="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 327,
+									"top": 570,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7davDlHty4="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7davDlJ/pA=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7davDlHty4="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7dauzlFbWg="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 340,
+									"top": 562,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7davDlHty4="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7davDlKXH0=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7davDlHty4="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7dauzlFbWg="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 302,
+									"top": 585,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7davDlHty4="
+									},
+									"edgePosition": 1
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAGMuz03CwHYXl4="
+							},
+							"tail": {
+								"$ref": "AAAAAAGMuz4B6QamQ1o="
+							},
+							"lineStyle": 1,
+							"points": "260:490;370:679",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAGMz7davDlIM2k="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAGMz7davDlJ/pA="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAGMz7davDlKXH0="
+							}
+						},
+						{
+							"_type": "UMLGeneralizationView",
+							"_id": "AAAAAAGMz7dkqzn05U4=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMz7dkqjnyTDA="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7dkqzn1chM=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7dkqzn05U4="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7dkqjnyTDA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 298,
+									"top": 670,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7dkqzn05U4="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7dkqzn2OI0=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7dkqzn05U4="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7dkqjnyTDA="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 305,
+									"top": 657,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7dkqzn05U4="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7dkqzn3Vfo=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7dkqzn05U4="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7dkqjnyTDA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 285,
+									"top": 697,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7dkqzn05U4="
+									},
+									"edgePosition": 1
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAGMuz03CwHYXl4="
+							},
+							"tail": {
+								"$ref": "AAAAAAGMz7bSjzgBuPQ="
+							},
+							"lineStyle": 1,
+							"points": "226:655;359:725",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAGMz7dkqzn1chM="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAGMz7dkqzn2OI0="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAGMz7dkqzn3Vfo="
+							}
+						},
+						{
+							"_type": "UMLNaryAssociationNodeView",
+							"_id": "AAAAAAGMz7eT5TpfkMI=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMz7eT5DpdoNI="
+							},
+							"subViews": [
+								{
+									"_type": "NodeLabelView",
+									"_id": "AAAAAAGMz7eT5Tpgb+8=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7eT5TpfkMI="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7eT5DpdoNI="
+									},
+									"font": "Arial;13;0",
+									"left": 568.740478515625,
+									"top": 581,
+									"width": 45.51904296875,
+									"height": 13,
+									"alpha": 2.356194490192345,
+									"distance": 20,
+									"text": "Associe"
+								},
+								{
+									"_type": "NodeLabelView",
+									"_id": "AAAAAAGMz7eT5jphYTw=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7eT5TpfkMI="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7eT5DpdoNI="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 581.5,
+									"top": 571,
+									"height": 13,
+									"alpha": 2.356194490192345,
+									"distance": 35
+								},
+								{
+									"_type": "NodeLabelView",
+									"_id": "AAAAAAGMz7eT5jpiKV4=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7eT5TpfkMI="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7eT5DpdoNI="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 591.5,
+									"top": 610,
+									"height": 13,
+									"alpha": -2.356194490192345,
+									"distance": 20
+								}
+							],
+							"font": "Arial;13;0",
+							"left": 592,
+							"top": 592,
+							"width": 30,
+							"height": 22,
+							"nameLabel": {
+								"$ref": "AAAAAAGMz7eT5Tpgb+8="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAGMz7eT5jphYTw="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAGMz7eT5jpiKV4="
+							}
+						},
+						{
+							"_type": "UMLAssociationView",
+							"_id": "AAAAAAGMz7foizwqsno=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMz7foizwmbhY="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7foizwr3xg=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7foizwqsno="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7foizwmbhY="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 546,
+									"top": 503,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7foizwqsno="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7fojDws5MY=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7foizwqsno="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7foizwmbhY="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 557,
+									"top": 493,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7foizwqsno="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7fojDwtqLA=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7foizwqsno="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7foizwmbhY="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 523,
+									"top": 522,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7foizwqsno="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7fojDwuS+s=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7foizwqsno="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7foizwn8+I="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 501,
+									"top": 450,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7foizwqsno="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7fojDwvMOM=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7foizwqsno="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7foizwn8+I="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 512,
+									"top": 443,
+									"height": 13,
+									"alpha": 0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7foizwqsno="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7fojDwwQOw=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7foizwqsno="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7foizwn8+I="
+									},
+									"font": "Arial;13;0",
+									"left": 474,
+									"top": 465,
+									"width": 7.22998046875,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7foizwqsno="
+									},
+									"edgePosition": 2,
+									"text": "1"
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7fojDwxr6o=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7foizwqsno="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7foizwoVNo="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 591,
+									"top": 555,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7foizwqsno="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7fojDwySvY=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7foizwqsno="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7foizwoVNo="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 599,
+									"top": 545,
+									"height": 13,
+									"alpha": -0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7foizwqsno="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7fojDwzPgo=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7foizwqsno="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7foizwoVNo="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 573,
+									"top": 576,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7foizwqsno="
+									}
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAGMz7fojDw0uH0=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7foizwqsno="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7foizwn8+I="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -48,
+									"top": 72,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAGMz7fojDw1Fg0=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7foizwqsno="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7foizwoVNo="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -48,
+									"top": 72,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAGMz7eT5TpfkMI="
+							},
+							"tail": {
+								"$ref": "AAAAAAGMsOh9+/+ntv0="
+							},
+							"lineStyle": 1,
+							"points": "473:447;597:591",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAGMz7foizwr3xg="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAGMz7fojDws5MY="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAGMz7fojDwtqLA="
+							},
+							"showEndOrder": "hide",
+							"tailRoleNameLabel": {
+								"$ref": "AAAAAAGMz7fojDwuS+s="
+							},
+							"tailPropertyLabel": {
+								"$ref": "AAAAAAGMz7fojDwvMOM="
+							},
+							"tailMultiplicityLabel": {
+								"$ref": "AAAAAAGMz7fojDwwQOw="
+							},
+							"headRoleNameLabel": {
+								"$ref": "AAAAAAGMz7fojDwxr6o="
+							},
+							"headPropertyLabel": {
+								"$ref": "AAAAAAGMz7fojDwySvY="
+							},
+							"headMultiplicityLabel": {
+								"$ref": "AAAAAAGMz7fojDwzPgo="
+							},
+							"tailQualifiersCompartment": {
+								"$ref": "AAAAAAGMz7fojDw0uH0="
+							},
+							"headQualifiersCompartment": {
+								"$ref": "AAAAAAGMz7fojDw1Fg0="
+							}
+						},
+						{
+							"_type": "UMLAssociationView",
+							"_id": "AAAAAAGMz7f3ZD2Hk5c=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMz7f3ZD2DT8Q="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7f3ZD2IcZ8=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7f3ZD2Hk5c="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7f3ZD2DT8Q="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 676,
+									"top": 654,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7f3ZD2Hk5c="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7f3ZD2JoCA=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7f3ZD2Hk5c="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7f3ZD2DT8Q="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 687,
+									"top": 644,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7f3ZD2Hk5c="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7f3ZD2KY/E=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7f3ZD2Hk5c="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7f3ZD2DT8Q="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 653,
+									"top": 673,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7f3ZD2Hk5c="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7f3ZD2L6nM=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7f3ZD2Hk5c="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7f3ZD2EPDI="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 644,
+									"top": 617,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7f3ZD2Hk5c="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7f3ZD2MTCA=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7f3ZD2Hk5c="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7f3ZD2EPDI="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 655,
+									"top": 610,
+									"height": 13,
+									"alpha": 0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7f3ZD2Hk5c="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7f3ZD2N3SY=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7f3ZD2Hk5c="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7f3ZD2EPDI="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 620,
+									"top": 632,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7f3ZD2Hk5c="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7f3ZD2O5pc=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7f3ZD2Hk5c="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7f3ZD2FPZg="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 708,
+									"top": 691,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7f3ZD2Hk5c="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7f3ZD2Ph0A=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7f3ZD2Hk5c="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7f3ZD2FPZg="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 716,
+									"top": 681,
+									"height": 13,
+									"alpha": -0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7f3ZD2Hk5c="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7f3ZD2Qnzk=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7f3ZD2Hk5c="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7f3ZD2FPZg="
+									},
+									"font": "Arial;13;0",
+									"left": 687,
+									"top": 712,
+									"width": 7.22998046875,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7f3ZD2Hk5c="
+									},
+									"text": "2"
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAGMz7f3ZD2RP38=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7f3ZD2Hk5c="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7f3ZD2EPDI="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -48,
+									"top": 72,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAGMz7f3ZD2SU64=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7f3ZD2Hk5c="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7f3ZD2FPZg="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -48,
+									"top": 72,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAGMu0OUqSI7D+U="
+							},
+							"tail": {
+								"$ref": "AAAAAAGMz7eT5TpfkMI="
+							},
+							"lineStyle": 1,
+							"points": "616:614;714:727",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAGMz7f3ZD2IcZ8="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAGMz7f3ZD2JoCA="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAGMz7f3ZD2KY/E="
+							},
+							"showEndOrder": "hide",
+							"tailRoleNameLabel": {
+								"$ref": "AAAAAAGMz7f3ZD2L6nM="
+							},
+							"tailPropertyLabel": {
+								"$ref": "AAAAAAGMz7f3ZD2MTCA="
+							},
+							"tailMultiplicityLabel": {
+								"$ref": "AAAAAAGMz7f3ZD2N3SY="
+							},
+							"headRoleNameLabel": {
+								"$ref": "AAAAAAGMz7f3ZD2O5pc="
+							},
+							"headPropertyLabel": {
+								"$ref": "AAAAAAGMz7f3ZD2Ph0A="
+							},
+							"headMultiplicityLabel": {
+								"$ref": "AAAAAAGMz7f3ZD2Qnzk="
+							},
+							"tailQualifiersCompartment": {
+								"$ref": "AAAAAAGMz7f3ZD2RP38="
+							},
+							"headQualifiersCompartment": {
+								"$ref": "AAAAAAGMz7f3ZD2SU64="
+							}
+						},
+						{
+							"_type": "UMLAssociationView",
+							"_id": "AAAAAAGMz7gCuT7nMQA=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMz7gCuT7jeys="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7gCuT7o0DY=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7gCuT7nMQA="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7gCuT7jeys="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 802,
+									"top": 581,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7gCuT7nMQA="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7gCuT7p5Ks=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7gCuT7nMQA="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7gCuT7jeys="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 802,
+									"top": 566,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7gCuT7nMQA="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7gCuT7qy2Q=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7gCuT7nMQA="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7gCuT7jeys="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 802,
+									"top": 611,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7gCuT7nMQA="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7gCuT7rEic=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7gCuT7nMQA="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7gCuT7kx64="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 647,
+									"top": 581,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7gCuT7nMQA="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7gCuT7sRYA=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7gCuT7nMQA="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7gCuT7kx64="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 650,
+									"top": 567,
+									"height": 13,
+									"alpha": 0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7gCuT7nMQA="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7gCuj7tlbI=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7gCuT7nMQA="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7gCuT7kx64="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 643,
+									"top": 608,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7gCuT7nMQA="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7gCuj7uH4s=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7gCuT7nMQA="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7gCuT7l5mw="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 957,
+									"top": 581,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7gCuT7nMQA="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7gCuj7vPdw=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7gCuT7nMQA="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7gCuT7l5mw="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 954,
+									"top": 567,
+									"height": 13,
+									"alpha": -0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7gCuT7nMQA="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7gCuj7wpLA=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7gCuT7nMQA="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7gCuT7l5mw="
+									},
+									"font": "Arial;13;0",
+									"left": 958,
+									"top": 608,
+									"width": 7.22998046875,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7gCuT7nMQA="
+									},
+									"text": "1"
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAGMz7gCuj7xIqM=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7gCuT7nMQA="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7gCuT7kx64="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -48,
+									"top": 72,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAGMz7gCuj7yJJQ=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7gCuT7nMQA="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7gCuT7l5mw="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -48,
+									"top": 72,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAGMu0TTzivn4uY="
+							},
+							"tail": {
+								"$ref": "AAAAAAGMz7eT5TpfkMI="
+							},
+							"lineStyle": 1,
+							"points": "622:602;983:602",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAGMz7gCuT7o0DY="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAGMz7gCuT7p5Ks="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAGMz7gCuT7qy2Q="
+							},
+							"showEndOrder": "hide",
+							"tailRoleNameLabel": {
+								"$ref": "AAAAAAGMz7gCuT7rEic="
+							},
+							"tailPropertyLabel": {
+								"$ref": "AAAAAAGMz7gCuT7sRYA="
+							},
+							"tailMultiplicityLabel": {
+								"$ref": "AAAAAAGMz7gCuj7tlbI="
+							},
+							"headRoleNameLabel": {
+								"$ref": "AAAAAAGMz7gCuj7uH4s="
+							},
+							"headPropertyLabel": {
+								"$ref": "AAAAAAGMz7gCuj7vPdw="
+							},
+							"headMultiplicityLabel": {
+								"$ref": "AAAAAAGMz7gCuj7wpLA="
+							},
+							"tailQualifiersCompartment": {
+								"$ref": "AAAAAAGMz7gCuj7xIqM="
+							},
+							"headQualifiersCompartment": {
+								"$ref": "AAAAAAGMz7gCuj7yJJQ="
+							}
+						},
+						{
+							"_type": "UMLAssociationView",
+							"_id": "AAAAAAGMz7mkpVfD0h8=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMz7mkpVe/4s8="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7mkpVfEts8=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7mkpVfD0h8="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7mkpVe/4s8="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 947,
+									"top": 377,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7mkpVfD0h8="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7mkpVfF5Uo=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7mkpVfD0h8="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7mkpVe/4s8="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 933,
+									"top": 382,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7mkpVfD0h8="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7mkpVfGS58=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7mkpVfD0h8="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7mkpVe/4s8="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 976,
+									"top": 368,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7mkpVfD0h8="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7mkpVfHN8o=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7mkpVfD0h8="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7mkpVfAhKE="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 994,
+									"top": 517,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7mkpVfD0h8="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7mkpVfIKMI=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7mkpVfD0h8="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7mkpVfAhKE="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 981,
+									"top": 519,
+									"height": 13,
+									"alpha": 0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7mkpVfD0h8="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7mkpVfJCNw=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7mkpVfD0h8="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7mkpVfAhKE="
+									},
+									"font": "Arial;13;0",
+									"left": 1019,
+									"top": 512,
+									"width": 7.22998046875,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7mkpVfD0h8="
+									},
+									"edgePosition": 2,
+									"text": "1"
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7mkpVfKKF0=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7mkpVfD0h8="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7mkpVfBtaU="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 901,
+									"top": 239,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7mkpVfD0h8="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7mkpVfLtAc=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7mkpVfD0h8="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7mkpVfBtaU="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 890,
+									"top": 245,
+									"height": 13,
+									"alpha": -0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7mkpVfD0h8="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7mkpVfM5DA=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7mkpVfD0h8="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7mkpVfBtaU="
+									},
+									"font": "Arial;13;0",
+									"left": 923,
+									"top": 226,
+									"width": 7.22998046875,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7mkpVfD0h8="
+									},
+									"text": "1"
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAGMz7mkpVfNhVQ=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7mkpVfD0h8="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7mkpVfAhKE="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -48,
+									"top": 72,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAGMz7mkpVfOHZs=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7mkpVfD0h8="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7mkpVfBtaU="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -48,
+									"top": 72,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAGMu0Yl4TpWhno="
+							},
+							"tail": {
+								"$ref": "AAAAAAGMu0TTzivn4uY="
+							},
+							"lineStyle": 1,
+							"points": "1017:543;908:216",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAGMz7mkpVfEts8="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAGMz7mkpVfF5Uo="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAGMz7mkpVfGS58="
+							},
+							"showEndOrder": "hide",
+							"tailRoleNameLabel": {
+								"$ref": "AAAAAAGMz7mkpVfHN8o="
+							},
+							"tailPropertyLabel": {
+								"$ref": "AAAAAAGMz7mkpVfIKMI="
+							},
+							"tailMultiplicityLabel": {
+								"$ref": "AAAAAAGMz7mkpVfJCNw="
+							},
+							"headRoleNameLabel": {
+								"$ref": "AAAAAAGMz7mkpVfKKF0="
+							},
+							"headPropertyLabel": {
+								"$ref": "AAAAAAGMz7mkpVfLtAc="
+							},
+							"headMultiplicityLabel": {
+								"$ref": "AAAAAAGMz7mkpVfM5DA="
+							},
+							"tailQualifiersCompartment": {
+								"$ref": "AAAAAAGMz7mkpVfNhVQ="
+							},
+							"headQualifiersCompartment": {
+								"$ref": "AAAAAAGMz7mkpVfOHZs="
+							}
+						},
+						{
+							"_type": "UMLNaryAssociationNodeView",
+							"_id": "AAAAAAGMz7rOW22OmD0=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMz7rOW22MD78="
+							},
+							"subViews": [
+								{
+									"_type": "NodeLabelView",
+									"_id": "AAAAAAGMz7rOW22PJUQ=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7rOW22OmD0="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7rOW22MD78="
+									},
+									"font": "Arial;13;0",
+									"left": 764.81640625,
+									"top": 293,
+									"width": 69.3671875,
+									"height": 13,
+									"alpha": 2.356194490192345,
+									"distance": 20,
+									"text": "Réservation"
+								},
+								{
+									"_type": "NodeLabelView",
+									"_id": "AAAAAAGMz7rOW22QYXU=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7rOW22OmD0="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7rOW22MD78="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 789.5,
+									"top": 283,
+									"height": 13,
+									"alpha": 2.356194490192345,
+									"distance": 35
+								},
+								{
+									"_type": "NodeLabelView",
+									"_id": "AAAAAAGMz7rOW22RDqk=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7rOW22OmD0="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7rOW22MD78="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 799.5,
+									"top": 322,
+									"height": 13,
+									"alpha": -2.356194490192345,
+									"distance": 20
+								}
+							],
+							"font": "Arial;13;0",
+							"left": 800,
+							"top": 304,
+							"width": 30,
+							"height": 22,
+							"nameLabel": {
+								"$ref": "AAAAAAGMz7rOW22PJUQ="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAGMz7rOW22QYXU="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAGMz7rOW22RDqk="
+							}
+						},
+						{
+							"_type": "UMLAssociationView",
+							"_id": "AAAAAAGMz7r/f3AGvjg=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMz7r/f3AC4WM="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7r/f3AH3oc=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7r/f3AGvjg="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7r/f3AC4WM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 739,
+									"top": 304,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7r/f3AGvjg="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7r/f3AI1tg=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7r/f3AGvjg="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7r/f3AC4WM="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 735,
+									"top": 319,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7r/f3AGvjg="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7r/f3AJRPo=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7r/f3AGvjg="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7r/f3AC4WM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 746,
+									"top": 275,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7r/f3AGvjg="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7r/f3AK2DY=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7r/f3AGvjg="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7r/f3ADhw8="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 770,
+									"top": 312,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7r/f3AGvjg="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7r/f3ALOP4=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7r/f3AGvjg="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7r/f3ADhw8="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 764,
+									"top": 324,
+									"height": 13,
+									"alpha": 0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7r/f3AGvjg="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7r/f3AMtSg=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7r/f3AGvjg="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7r/f3ADhw8="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 781,
+									"top": 286,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7r/f3AGvjg="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7r/f3ANzOQ=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7r/f3AGvjg="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7r/f3AEpKo="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 708,
+									"top": 296,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7r/f3AGvjg="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7r/f3AORT0=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7r/f3AGvjg="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7r/f3AEpKo="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 707,
+									"top": 310,
+									"height": 13,
+									"alpha": -0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7r/f3AGvjg="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7r/f3APFSc=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7r/f3AGvjg="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7r/f3AEpKo="
+									},
+									"font": "Arial;13;0",
+									"left": 708,
+									"top": 269,
+									"width": 7.22998046875,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7r/f3AGvjg="
+									},
+									"text": "1"
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAGMz7r/f3AQVgg=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7r/f3AGvjg="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7r/f3ADhw8="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -56,
+									"top": -8,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAGMz7r/gHAROyY=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7r/f3AGvjg="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7r/f3AEpKo="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -56,
+									"top": -8,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAGMsOlTJ//nA/A="
+							},
+							"tail": {
+								"$ref": "AAAAAAGMz7rOW22OmD0="
+							},
+							"lineStyle": 1,
+							"points": "799:310;687:282",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAGMz7r/f3AH3oc="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAGMz7r/f3AI1tg="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAGMz7r/f3AJRPo="
+							},
+							"showEndOrder": "hide",
+							"tailRoleNameLabel": {
+								"$ref": "AAAAAAGMz7r/f3AK2DY="
+							},
+							"tailPropertyLabel": {
+								"$ref": "AAAAAAGMz7r/f3ALOP4="
+							},
+							"tailMultiplicityLabel": {
+								"$ref": "AAAAAAGMz7r/f3AMtSg="
+							},
+							"headRoleNameLabel": {
+								"$ref": "AAAAAAGMz7r/f3ANzOQ="
+							},
+							"headPropertyLabel": {
+								"$ref": "AAAAAAGMz7r/f3AORT0="
+							},
+							"headMultiplicityLabel": {
+								"$ref": "AAAAAAGMz7r/f3APFSc="
+							},
+							"tailQualifiersCompartment": {
+								"$ref": "AAAAAAGMz7r/f3AQVgg="
+							},
+							"headQualifiersCompartment": {
+								"$ref": "AAAAAAGMz7r/gHAROyY="
+							}
+						},
+						{
+							"_type": "UMLAssociationView",
+							"_id": "AAAAAAGMz7sOOHLv0fs=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMz7sOOHLr+DY="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7sOOHLwITc=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7sOOHLv0fs="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7sOOHLr+DY="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 830,
+									"top": 245,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7sOOHLv0fs="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7sOOHLxJ3E=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7sOOHLv0fs="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7sOOHLr+DY="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 817,
+									"top": 238,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7sOOHLv0fs="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7sOOHLy0kQ=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7sOOHLv0fs="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7sOOHLr+DY="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 857,
+									"top": 260,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7sOOHLv0fs="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7sOOHLzEPc=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7sOOHLv0fs="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7sOOHLsY4M="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 819,
+									"top": 267,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7sOOHLv0fs="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7sOOHL0LxI=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7sOOHLv0fs="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7sOOHLsY4M="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 808,
+									"top": 258,
+									"height": 13,
+									"alpha": 0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7sOOHLv0fs="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7sOOXL1QxA=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7sOOHLv0fs="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7sOOHLsY4M="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 841,
+									"top": 284,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7sOOHLv0fs="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7sOOXL2g9o=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7sOOHLv0fs="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7sOOHLtUgs="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 842,
+									"top": 225,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7sOOHLv0fs="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7sOOXL3LwE=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7sOOHLv0fs="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7sOOHLtUgs="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 829,
+									"top": 221,
+									"height": 13,
+									"alpha": -0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7sOOHLv0fs="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7sOOXL4qd4=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7sOOHLv0fs="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7sOOHLtUgs="
+									},
+									"font": "Arial;13;0",
+									"left": 865,
+									"top": 234,
+									"width": 7.22998046875,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7sOOHLv0fs="
+									},
+									"text": "1"
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAGMz7sOOXL5aSw=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7sOOHLv0fs="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7sOOHLsY4M="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -48,
+									"top": 72,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAGMz7sOOXL6RIg=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7sOOHLv0fs="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7sOOHLtUgs="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -48,
+									"top": 72,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAGMu0Yl4TpWhno="
+							},
+							"tail": {
+								"$ref": "AAAAAAGMz7rOW22OmD0="
+							},
+							"lineStyle": 1,
+							"points": "820:303;868:216",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAGMz7sOOHLwITc="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAGMz7sOOHLxJ3E="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAGMz7sOOHLy0kQ="
+							},
+							"showEndOrder": "hide",
+							"tailRoleNameLabel": {
+								"$ref": "AAAAAAGMz7sOOHLzEPc="
+							},
+							"tailPropertyLabel": {
+								"$ref": "AAAAAAGMz7sOOHL0LxI="
+							},
+							"tailMultiplicityLabel": {
+								"$ref": "AAAAAAGMz7sOOXL1QxA="
+							},
+							"headRoleNameLabel": {
+								"$ref": "AAAAAAGMz7sOOXL2g9o="
+							},
+							"headPropertyLabel": {
+								"$ref": "AAAAAAGMz7sOOXL3LwE="
+							},
+							"headMultiplicityLabel": {
+								"$ref": "AAAAAAGMz7sOOXL4qd4="
+							},
+							"tailQualifiersCompartment": {
+								"$ref": "AAAAAAGMz7sOOXL5aSw="
+							},
+							"headQualifiersCompartment": {
+								"$ref": "AAAAAAGMz7sOOXL6RIg="
+							}
+						},
+						{
+							"_type": "UMLAssociationView",
+							"_id": "AAAAAAGMz7saZnbLPHY=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMz7saZnbH6o4="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7saZnbMeyU=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7saZnbLPHY="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7saZnbH6o4="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 831,
+									"top": 342,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7saZnbLPHY="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7saZnbNjo4=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7saZnbLPHY="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7saZnbH6o4="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 846,
+									"top": 340,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7saZnbLPHY="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7saZnbOG9I=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7saZnbLPHY="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7saZnbH6o4="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 802,
+									"top": 345,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7saZnbLPHY="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7saZnbPrO4=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7saZnbLPHY="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7saZnbIJwU="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 832,
+									"top": 344,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7saZnbLPHY="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7saZnbQLlA=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7saZnbLPHY="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7saZnbIJwU="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 846,
+									"top": 345,
+									"height": 13,
+									"alpha": 0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7saZnbLPHY="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7saZnbRRQM=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7saZnbLPHY="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7saZnbIJwU="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 804,
+									"top": 342,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7saZnbLPHY="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7saZnbSpAE=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7saZnbLPHY="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7saZnbJjJY="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 832,
+									"top": 341,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7saZnbLPHY="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7saZnbTZdo=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7saZnbLPHY="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7saZnbJjJY="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 845,
+									"top": 337,
+									"height": 13,
+									"alpha": -0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7saZnbLPHY="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7saZnbUkJU=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7saZnbLPHY="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7saZnbJjJY="
+									},
+									"font": "Arial;13;0",
+									"left": 802,
+									"top": 348,
+									"width": 7.22998046875,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7saZnbLPHY="
+									},
+									"text": "1"
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAGMz7saZnbVgC8=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7saZnbLPHY="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7saZnbIJwU="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -48,
+									"top": 72,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAGMz7saZnbWFQ4=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7saZnbLPHY="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7saZnbJjJY="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -48,
+									"top": 72,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAGMu0e2lEH+coQ="
+							},
+							"tail": {
+								"$ref": "AAAAAAGMz7rOW22OmD0="
+							},
+							"lineStyle": 1,
+							"points": "815:326;820:375",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAGMz7saZnbMeyU="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAGMz7saZnbNjo4="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAGMz7saZnbOG9I="
+							},
+							"showEndOrder": "hide",
+							"tailRoleNameLabel": {
+								"$ref": "AAAAAAGMz7saZnbPrO4="
+							},
+							"tailPropertyLabel": {
+								"$ref": "AAAAAAGMz7saZnbQLlA="
+							},
+							"tailMultiplicityLabel": {
+								"$ref": "AAAAAAGMz7saZnbRRQM="
+							},
+							"headRoleNameLabel": {
+								"$ref": "AAAAAAGMz7saZnbSpAE="
+							},
+							"headPropertyLabel": {
+								"$ref": "AAAAAAGMz7saZnbTZdo="
+							},
+							"headMultiplicityLabel": {
+								"$ref": "AAAAAAGMz7saZnbUkJU="
+							},
+							"tailQualifiersCompartment": {
+								"$ref": "AAAAAAGMz7saZnbVgC8="
+							},
+							"headQualifiersCompartment": {
+								"$ref": "AAAAAAGMz7saZnbWFQ4="
+							}
+						},
+						{
+							"_type": "UMLAssociationView",
+							"_id": "AAAAAAGMz7uaP4mvueE=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMz7uaPomrmj0="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7uaP4mwwiI=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7uaP4mvueE="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7uaPomrmj0="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 924,
+									"top": 535,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7uaP4mvueE="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7uaP4mxgjY=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7uaP4mvueE="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7uaPomrmj0="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 916,
+									"top": 547,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7uaP4mvueE="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7uaP4myUkc=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7uaP4mvueE="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7uaPomrmj0="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 941,
+									"top": 510,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7uaP4mvueE="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7uaP4mz2jY=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7uaP4mvueE="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7uaPomsXkE="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 953,
+									"top": 555,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7uaP4mvueE="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7uaP4m04ec=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7uaP4mvueE="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7uaPomsXkE="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 943,
+									"top": 565,
+									"height": 13,
+									"alpha": 0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7uaP4mvueE="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7uaP4m10sw=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7uaP4mvueE="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7uaPomsXkE="
+									},
+									"font": "Arial;13;0",
+									"left": 969,
+									"top": 535,
+									"width": 7.22998046875,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7uaP4mvueE="
+									},
+									"edgePosition": 2,
+									"text": "1"
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7uaP4m2zaI=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7uaP4mvueE="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7uaPomtjqo="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 895,
+									"top": 516,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7uaP4mvueE="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7uaP4m3Ojg=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7uaP4mvueE="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7uaPomtjqo="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 890,
+									"top": 528,
+									"height": 13,
+									"alpha": -0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7uaP4mvueE="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMz7uaP4m4mD4=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7uaP4mvueE="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7uaPomtjqo="
+									},
+									"font": "Arial;13;0",
+									"left": 898,
+									"top": 491,
+									"width": 19.5126953125,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAGMz7uaP4mvueE="
+									},
+									"text": "1..*"
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAGMz7uaP4m5LdM=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7uaP4mvueE="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7uaPomsXkE="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -48,
+									"top": 72,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAGMz7uaP4m6dPk=",
+									"_parent": {
+										"$ref": "AAAAAAGMz7uaP4mvueE="
+									},
+									"model": {
+										"$ref": "AAAAAAGMz7uaPomtjqo="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -48,
+									"top": 72,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAGMu0e2lEH+coQ="
+							},
+							"tail": {
+								"$ref": "AAAAAAGMu0TTzivn4uY="
+							},
+							"lineStyle": 1,
+							"points": "983:564;883:495",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAGMz7uaP4mwwiI="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAGMz7uaP4mxgjY="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAGMz7uaP4myUkc="
+							},
+							"showEndOrder": "hide",
+							"tailRoleNameLabel": {
+								"$ref": "AAAAAAGMz7uaP4mz2jY="
+							},
+							"tailPropertyLabel": {
+								"$ref": "AAAAAAGMz7uaP4m04ec="
+							},
+							"tailMultiplicityLabel": {
+								"$ref": "AAAAAAGMz7uaP4m10sw="
+							},
+							"headRoleNameLabel": {
+								"$ref": "AAAAAAGMz7uaP4m2zaI="
+							},
+							"headPropertyLabel": {
+								"$ref": "AAAAAAGMz7uaP4m3Ojg="
+							},
+							"headMultiplicityLabel": {
+								"$ref": "AAAAAAGMz7uaP4m4mD4="
+							},
+							"tailQualifiersCompartment": {
+								"$ref": "AAAAAAGMz7uaP4m5LdM="
+							},
+							"headQualifiersCompartment": {
+								"$ref": "AAAAAAGMz7uaP4m6dPk="
+							}
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAGMsOh9+P+lYYw=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Train",
+					"ownedElements": [
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAGMuz2L1AMTRgQ=",
+							"_parent": {
+								"$ref": "AAAAAAGMsOh9+P+lYYw="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMuz2L1AMUXv0=",
+								"_parent": {
+									"$ref": "AAAAAAGMuz2L1AMTRgQ="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMsOh9+P+lYYw="
+								},
+								"multiplicity": "1"
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMuz2L1QMV76w=",
+								"_parent": {
+									"$ref": "AAAAAAGMuz2L1AMTRgQ="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMuz03CgHWSPQ="
+								},
+								"multiplicity": "*"
+							}
+						},
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAGMykjwuMS0oiI=",
+							"_parent": {
+								"$ref": "AAAAAAGMsOh9+P+lYYw="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMykjwuMS1l5g=",
+								"_parent": {
+									"$ref": "AAAAAAGMykjwuMS0oiI="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMsOh9+P+lYYw="
+								},
+								"multiplicity": "1..*"
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMykjwuMS27sA=",
+								"_parent": {
+									"$ref": "AAAAAAGMykjwuMS0oiI="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMykgpTqxDHN0="
+								},
+								"multiplicity": "1"
+							}
+						},
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAGMz7F5lhmCZEg=",
+							"_parent": {
+								"$ref": "AAAAAAGMsOh9+P+lYYw="
+							},
+							"name": "Attachée",
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMz7F5lhmDMyw=",
+								"_parent": {
+									"$ref": "AAAAAAGMz7F5lhmCZEg="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMsOh9+P+lYYw="
+								},
+								"multiplicity": "1"
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMz7F5lhmE4aE=",
+								"_parent": {
+									"$ref": "AAAAAAGMz7F5lhmCZEg="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMsOlTJv/lLqw="
+								},
+								"multiplicity": "1..*"
+							}
+						},
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAGMz7foizwmbhY=",
+							"_parent": {
+								"$ref": "AAAAAAGMsOh9+P+lYYw="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMz7foizwn8+I=",
+								"_parent": {
+									"$ref": "AAAAAAGMz7foizwmbhY="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMsOh9+P+lYYw="
+								},
+								"multiplicity": "1"
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMz7foizwoVNo=",
+								"_parent": {
+									"$ref": "AAAAAAGMz7foizwmbhY="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMz7eT5DpdoNI="
+								}
+							}
+						}
+					],
+					"attributes": [
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMsOit2P/PrIo=",
+							"_parent": {
+								"$ref": "AAAAAAGMsOh9+P+lYYw="
+							},
+							"name": "Id",
+							"type": "",
+							"isID": true
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMsOjj3f/Xp04=",
+							"_parent": {
+								"$ref": "AAAAAAGMsOh9+P+lYYw="
+							},
+							"name": "Duplex",
+							"type": ""
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMsOkXN//e51Q=",
+							"_parent": {
+								"$ref": "AAAAAAGMsOh9+P+lYYw="
+							},
+							"name": "Type",
+							"type": ""
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAGMsOlTJv/lLqw=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Voiture",
+					"ownedElements": [
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAGMsOpcTQAljHY=",
+							"_parent": {
+								"$ref": "AAAAAAGMsOlTJv/lLqw="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMsOpcTQAm5Hg=",
+								"_parent": {
+									"$ref": "AAAAAAGMsOpcTQAljHY="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMsOlTJv/lLqw="
+								},
+								"multiplicity": "0..*"
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMsOpcTQAnqkg=",
+								"_parent": {
+									"$ref": "AAAAAAGMsOpcTQAljHY="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMsOh9+P+lYYw="
+								},
+								"multiplicity": "1"
+							}
+						}
+					],
+					"attributes": [
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMsOl0awAP4uw=",
+							"_parent": {
+								"$ref": "AAAAAAGMsOlTJv/lLqw="
+							},
+							"name": "Code",
+							"type": "",
+							"isID": true
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMsOmkzgAWs8g=",
+							"_parent": {
+								"$ref": "AAAAAAGMsOlTJv/lLqw="
+							},
+							"name": "Position",
+							"type": ""
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMsOnEigAd2y0=",
+							"_parent": {
+								"$ref": "AAAAAAGMsOlTJv/lLqw="
+							},
+							"name": "DateMiseEnCiruc",
+							"type": ""
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMz7BsPAuTpr4=",
+							"_parent": {
+								"$ref": "AAAAAAGMsOlTJv/lLqw="
+							},
+							"name": "NumSiège"
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMz7CjLAwepVk=",
+							"_parent": {
+								"$ref": "AAAAAAGMsOlTJv/lLqw="
+							},
+							"name": "IdentifiantTrain"
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAGMuz03CgHWSPQ=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Employé",
+					"ownedElements": [
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAGMz7Ymci3faBw=",
+							"_parent": {
+								"$ref": "AAAAAAGMuz03CgHWSPQ="
+							},
+							"name": "Affiliée",
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMz7Ymci3gqMU=",
+								"_parent": {
+									"$ref": "AAAAAAGMz7Ymci3faBw="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMuz03CgHWSPQ="
+								},
+								"multiplicity": "1..*"
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMz7Ymci3hTMQ=",
+								"_parent": {
+									"$ref": "AAAAAAGMz7Ymci3faBw="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMsOh9+P+lYYw="
+								},
+								"multiplicity": "1"
+							}
+						}
+					],
+					"attributes": [
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMz77Hcw/Ka38=",
+							"_parent": {
+								"$ref": "AAAAAAGMuz03CgHWSPQ="
+							},
+							"name": "IdEmployé",
+							"isID": true
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMuz3LEQTbxcw=",
+							"_parent": {
+								"$ref": "AAAAAAGMuz03CgHWSPQ="
+							},
+							"name": "Nom",
+							"type": ""
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMuz/0BROVN2k=",
+							"_parent": {
+								"$ref": "AAAAAAGMuz03CgHWSPQ="
+							},
+							"name": "Prénom",
+							"type": ""
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMu0ANWxPerSo=",
+							"_parent": {
+								"$ref": "AAAAAAGMuz03CgHWSPQ="
+							},
+							"name": "Adresse",
+							"type": ""
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMu0AzMhQnvg8=",
+							"_parent": {
+								"$ref": "AAAAAAGMuz03CgHWSPQ="
+							},
+							"name": "NumTélPro",
+							"type": ""
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMu0BYLBSy48w=",
+							"_parent": {
+								"$ref": "AAAAAAGMuz03CgHWSPQ="
+							},
+							"name": "NumTélPerso",
+							"type": ""
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMu0DmWhYi2nw=",
+							"_parent": {
+								"$ref": "AAAAAAGMuz03CgHWSPQ="
+							},
+							"name": "CentreRattache",
+							"type": ""
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAGMuz4B6Aakm/4=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Conducteur",
+					"ownedElements": [
+						{
+							"_type": "UMLGeneralization",
+							"_id": "AAAAAAGMuz+XhhHCt4c=",
+							"_parent": {
+								"$ref": "AAAAAAGMuz4B6Aakm/4="
+							},
+							"source": {
+								"$ref": "AAAAAAGMuz4B6Aakm/4="
+							},
+							"target": {
+								"$ref": "AAAAAAGMuz03CgHWSPQ="
+							}
+						},
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAGMu0HpiRkKoOg=",
+							"_parent": {
+								"$ref": "AAAAAAGMuz4B6Aakm/4="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMu0HpiRkLAQ8=",
+								"_parent": {
+									"$ref": "AAAAAAGMu0HpiRkKoOg="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMuz4B6Aakm/4="
+								}
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMu0HpiRkMAKk=",
+								"_parent": {
+									"$ref": "AAAAAAGMu0HpiRkKoOg="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMuz03CgHWSPQ="
+								}
+							}
+						},
+						{
+							"_type": "UMLGeneralization",
+							"_id": "AAAAAAGMz7dauzlFbWg=",
+							"_parent": {
+								"$ref": "AAAAAAGMuz4B6Aakm/4="
+							},
+							"source": {
+								"$ref": "AAAAAAGMuz4B6Aakm/4="
+							},
+							"target": {
+								"$ref": "AAAAAAGMuz03CgHWSPQ="
+							}
+						}
+					],
+					"attributes": [
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMuz6vhQqdoho=",
+							"_parent": {
+								"$ref": "AAAAAAGMuz4B6Aakm/4="
+							},
+							"name": "DatePermis",
+							"type": ""
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAGMuz4f4gciTQA=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Barman",
+					"ownedElements": [
+						{
+							"_type": "UMLGeneralization",
+							"_id": "AAAAAAGMuz9/PQ/GkH4=",
+							"_parent": {
+								"$ref": "AAAAAAGMuz4f4gciTQA="
+							},
+							"source": {
+								"$ref": "AAAAAAGMuz4f4gciTQA="
+							},
+							"target": {
+								"$ref": "AAAAAAGMuz7YmgvXgnY="
+							}
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAGMuz7YmgvXgnY=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Personnel",
+					"ownedElements": [
+						{
+							"_type": "UMLGeneralization",
+							"_id": "AAAAAAGMuz+n5BKrYOc=",
+							"_parent": {
+								"$ref": "AAAAAAGMuz7YmgvXgnY="
+							},
+							"source": {
+								"$ref": "AAAAAAGMuz7YmgvXgnY="
+							},
+							"target": {
+								"$ref": "AAAAAAGMuz03CgHWSPQ="
+							}
+						},
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAGMu0H1XBpDQ/g=",
+							"_parent": {
+								"$ref": "AAAAAAGMuz7YmgvXgnY="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMu0H1XRpE0Yo=",
+								"_parent": {
+									"$ref": "AAAAAAGMu0H1XBpDQ/g="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMuz7YmgvXgnY="
+								}
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMu0H1XRpFTRQ=",
+								"_parent": {
+									"$ref": "AAAAAAGMu0H1XBpDQ/g="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMuz03CgHWSPQ="
+								}
+							}
+						}
+					],
+					"attributes": [
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMuz8OLQxDRQc=",
+							"_parent": {
+								"$ref": "AAAAAAGMuz7YmgvXgnY="
+							},
+							"name": "Contrat",
+							"type": ""
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAGMuz9AwA2c8pM=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Controleur",
+					"ownedElements": [
+						{
+							"_type": "UMLGeneralization",
+							"_id": "AAAAAAGMuz+KIRDTrrs=",
+							"_parent": {
+								"$ref": "AAAAAAGMuz9AwA2c8pM="
+							},
+							"source": {
+								"$ref": "AAAAAAGMuz9AwA2c8pM="
+							},
+							"target": {
+								"$ref": "AAAAAAGMuz7YmgvXgnY="
+							}
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAGMu0HG5BdoibA=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Class1"
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAGMu0OUqCI5+R0=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Gare",
+					"ownedElements": [
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAGMu0RY2SbuYrc=",
+							"_parent": {
+								"$ref": "AAAAAAGMu0OUqCI5+R0="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMu0RY2SbvSPc=",
+								"_parent": {
+									"$ref": "AAAAAAGMu0RY2SbuYrc="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMu0OUqCI5+R0="
+								},
+								"multiplicity": "0..1"
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMu0RY2Sbwhd4=",
+								"_parent": {
+									"$ref": "AAAAAAGMu0RY2SbuYrc="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMsOh9+P+lYYw="
+								},
+								"multiplicity": "1..*"
+							}
+						}
+					],
+					"attributes": [
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMu0OmLSLnwU4=",
+							"_parent": {
+								"$ref": "AAAAAAGMu0OUqCI5+R0="
+							},
+							"name": "Identifiant",
+							"type": "",
+							"isID": true
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMu0QCfSR89lg=",
+							"_parent": {
+								"$ref": "AAAAAAGMu0OUqCI5+R0="
+							},
+							"name": "Nom",
+							"type": ""
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMu0QaySUHeqA=",
+							"_parent": {
+								"$ref": "AAAAAAGMu0OUqCI5+R0="
+							},
+							"name": "Ville",
+							"type": ""
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAGMu0TTzivlbXo=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Trajet",
+					"ownedElements": [
+						{
+							"_type": "UMLAssociationClassLink",
+							"_id": "AAAAAAGMyaBbEaDyQBw=",
+							"_parent": {
+								"$ref": "AAAAAAGMu0TTzivlbXo="
+							},
+							"classSide": {
+								"$ref": "AAAAAAGMu0TTzivlbXo="
+							},
+							"associationSide": {
+								"$ref": "AAAAAAGMu0RY2SbuYrc="
+							}
+						},
+						{
+							"_type": "UMLAssociationClassLink",
+							"_id": "AAAAAAGMyklazNGugs0=",
+							"_parent": {
+								"$ref": "AAAAAAGMu0TTzivlbXo="
+							},
+							"classSide": {
+								"$ref": "AAAAAAGMu0TTzivlbXo="
+							},
+							"associationSide": {
+								"$ref": "AAAAAAGMykjf7cFirjc="
+							}
+						},
+						{
+							"_type": "UMLAssociationClassLink",
+							"_id": "AAAAAAGMykltgNUTxDE=",
+							"_parent": {
+								"$ref": "AAAAAAGMu0TTzivlbXo="
+							},
+							"classSide": {
+								"$ref": "AAAAAAGMu0TTzivlbXo="
+							},
+							"associationSide": {
+								"$ref": "AAAAAAGMykjwuMS0oiI="
+							}
+						},
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAGMz7mkpVe/4s8=",
+							"_parent": {
+								"$ref": "AAAAAAGMu0TTzivlbXo="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMz7mkpVfAhKE=",
+								"_parent": {
+									"$ref": "AAAAAAGMz7mkpVe/4s8="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMu0TTzivlbXo="
+								},
+								"multiplicity": "1"
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMz7mkpVfBtaU=",
+								"_parent": {
+									"$ref": "AAAAAAGMz7mkpVe/4s8="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMu0Yl4TpUnNk="
+								},
+								"multiplicity": "1"
+							}
+						},
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAGMz7uaPomrmj0=",
+							"_parent": {
+								"$ref": "AAAAAAGMu0TTzivlbXo="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMz7uaPomsXkE=",
+								"_parent": {
+									"$ref": "AAAAAAGMz7uaPomrmj0="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMu0TTzivlbXo="
+								},
+								"multiplicity": "1"
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMz7uaPomtjqo=",
+								"_parent": {
+									"$ref": "AAAAAAGMz7uaPomrmj0="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMu0e2lEH8UPw="
+								},
+								"multiplicity": "1..*"
+							}
+						}
+					],
+					"attributes": [
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMz7i1h032fPY=",
+							"_parent": {
+								"$ref": "AAAAAAGMu0TTzivlbXo="
+							},
+							"name": "Identifiant",
+							"isID": true
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMu0UH9C1ZZig=",
+							"_parent": {
+								"$ref": "AAAAAAGMu0TTzivlbXo="
+							},
+							"name": "DateDépart",
+							"type": ""
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMu0Uq0S4Fu6A=",
+							"_parent": {
+								"$ref": "AAAAAAGMu0TTzivlbXo="
+							},
+							"name": "HeureDépart",
+							"type": ""
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMu0Vfey6xBME=",
+							"_parent": {
+								"$ref": "AAAAAAGMu0TTzivlbXo="
+							},
+							"name": "HeureArrivee",
+							"type": ""
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMz7iT/Uwe3dc=",
+							"_parent": {
+								"$ref": "AAAAAAGMu0TTzivlbXo="
+							},
+							"name": "TarifBase"
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAGMu0Yl4TpUnNk=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Voyage",
+					"ownedElements": [
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAGMyZWt23gqYDk=",
+							"_parent": {
+								"$ref": "AAAAAAGMu0Yl4TpUnNk="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMyZWt23grydc=",
+								"_parent": {
+									"$ref": "AAAAAAGMyZWt23gqYDk="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMu0Yl4TpUnNk="
+								},
+								"multiplicity": "1"
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMyZWt23gs+/o=",
+								"_parent": {
+									"$ref": "AAAAAAGMyZWt23gqYDk="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMu0e2lEH8UPw="
+								},
+								"multiplicity": "1..*"
+							}
+						}
+					],
+					"attributes": [
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMz7kXClJYFa8=",
+							"_parent": {
+								"$ref": "AAAAAAGMu0Yl4TpUnNk="
+							},
+							"name": "RéférenceVoyage",
+							"isUnique": true
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMu0ZCcDsjpH4=",
+							"_parent": {
+								"$ref": "AAAAAAGMu0Yl4TpUnNk="
+							},
+							"name": "DateCreation",
+							"type": ""
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMz7lxIFZQnoI=",
+							"_parent": {
+								"$ref": "AAAAAAGMu0Yl4TpUnNk="
+							},
+							"name": "CodeTarif"
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAGMu0azVz3l0nY=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Réservation",
+					"ownedElements": [
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAGMylqK5dmYHjM=",
+							"_parent": {
+								"$ref": "AAAAAAGMu0azVz3l0nY="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMylqK5dmZ2vE=",
+								"_parent": {
+									"$ref": "AAAAAAGMylqK5dmYHjM="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMu0azVz3l0nY="
+								},
+								"multiplicity": "1..*"
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMylqK5dmadbk=",
+								"_parent": {
+									"$ref": "AAAAAAGMylqK5dmYHjM="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMsOlTJv/lLqw="
+								},
+								"multiplicity": "1"
+							}
+						}
+					],
+					"attributes": [
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMu0bNZz60Bvg=",
+							"_parent": {
+								"$ref": "AAAAAAGMu0azVz3l0nY="
+							},
+							"name": "DateReservation",
+							"type": ""
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMu0cUST9gyl4=",
+							"_parent": {
+								"$ref": "AAAAAAGMu0azVz3l0nY="
+							},
+							"name": "NumPosVoiture",
+							"type": ""
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMu0d0c0AMyjc=",
+							"_parent": {
+								"$ref": "AAAAAAGMu0azVz3l0nY="
+							},
+							"name": "NumSiège",
+							"type": ""
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAGMu0e2lEH8UPw=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Client",
+					"ownedElements": [
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAGMyZZoEYDRPu0=",
+							"_parent": {
+								"$ref": "AAAAAAGMu0e2lEH8UPw="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMyZZoEYDSPS4=",
+								"_parent": {
+									"$ref": "AAAAAAGMyZZoEYDRPu0="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMu0e2lEH8UPw="
+								},
+								"multiplicity": "1"
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMyZZoEoDTTZs=",
+								"_parent": {
+									"$ref": "AAAAAAGMyZZoEYDRPu0="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMu0azVz3l0nY="
+								},
+								"multiplicity": "1"
+							}
+						}
+					],
+					"attributes": [
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMz7oVjV2wA3o=",
+							"_parent": {
+								"$ref": "AAAAAAGMu0e2lEH8UPw="
+							},
+							"name": "IDClient",
+							"isID": true
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMu0fM5ULLvwk=",
+							"_parent": {
+								"$ref": "AAAAAAGMu0e2lEH8UPw="
+							},
+							"name": "Nom",
+							"type": ""
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMu0fZ5kN3tVU=",
+							"_parent": {
+								"$ref": "AAAAAAGMu0e2lEH8UPw="
+							},
+							"name": "Prénom",
+							"type": ""
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMu0fqbEQjN0o=",
+							"_parent": {
+								"$ref": "AAAAAAGMu0e2lEH8UPw="
+							},
+							"name": "Adresse",
+							"type": ""
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMu0gKD0TPz6k=",
+							"_parent": {
+								"$ref": "AAAAAAGMu0e2lEH8UPw="
+							},
+							"name": "DateNaissance",
+							"type": ""
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMu0gsakV7HPM=",
+							"_parent": {
+								"$ref": "AAAAAAGMu0e2lEH8UPw="
+							},
+							"name": "NumTél",
+							"type": ""
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMu0hSx0Yn2gI=",
+							"_parent": {
+								"$ref": "AAAAAAGMu0e2lEH8UPw="
+							},
+							"name": "AdresseMail",
+							"type": ""
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMu0hms0bT1QM=",
+							"_parent": {
+								"$ref": "AAAAAAGMu0e2lEH8UPw="
+							},
+							"name": "CodeRéduction",
+							"type": ""
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAGMykgpTqxDHN0=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Arrivée",
+					"ownedElements": [
+						{
+							"_type": "UMLGeneralization",
+							"_id": "AAAAAAGMykjDIbsNpZQ=",
+							"_parent": {
+								"$ref": "AAAAAAGMykgpTqxDHN0="
+							},
+							"source": {
+								"$ref": "AAAAAAGMykgpTqxDHN0="
+							},
+							"target": {
+								"$ref": "AAAAAAGMu0OUqCI5+R0="
+							}
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAGMykiB1bKEvic=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Départ",
+					"ownedElements": [
+						{
+							"_type": "UMLGeneralization",
+							"_id": "AAAAAAGMykizH7k66WI=",
+							"_parent": {
+								"$ref": "AAAAAAGMykiB1bKEvic="
+							},
+							"source": {
+								"$ref": "AAAAAAGMykiB1bKEvic="
+							},
+							"target": {
+								"$ref": "AAAAAAGMu0OUqCI5+R0="
+							}
+						},
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAGMykjf7cFirjc=",
+							"_parent": {
+								"$ref": "AAAAAAGMykiB1bKEvic="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMykjf7cFjYqE=",
+								"_parent": {
+									"$ref": "AAAAAAGMykjf7cFirjc="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMykiB1bKEvic="
+								},
+								"multiplicity": "1"
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMykjf7cFk3R4=",
+								"_parent": {
+									"$ref": "AAAAAAGMykjf7cFirjc="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMsOh9+P+lYYw="
+								},
+								"multiplicity": "1..*"
+							}
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAGMz2L1DRRo6O0=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Tarif",
+					"attributes": [
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMz2M00RW7a3U=",
+							"_parent": {
+								"$ref": "AAAAAAGMz2L1DRRo6O0="
+							},
+							"name": "TarifDeBase",
+							"type": ""
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMz2NY3Rbr+9E=",
+							"_parent": {
+								"$ref": "AAAAAAGMz2L1DRRo6O0="
+							},
+							"name": "CodeTarifVoyage",
+							"type": ""
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMz2OeBBgbueA=",
+							"_parent": {
+								"$ref": "AAAAAAGMz2L1DRRo6O0="
+							},
+							"name": "codeRéductionClient",
+							"type": ""
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAGMz7IOvBxu+A0=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "2ème Classe",
+					"ownedElements": [
+						{
+							"_type": "UMLGeneralization",
+							"_id": "AAAAAAGMz7N0Jh77k7Q=",
+							"_parent": {
+								"$ref": "AAAAAAGMz7IOvBxu+A0="
+							},
+							"source": {
+								"$ref": "AAAAAAGMz7IOvBxu+A0="
+							},
+							"target": {
+								"$ref": "AAAAAAGMsOlTJv/lLqw="
+							}
+						}
+					],
+					"attributes": [
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMz7MDCh2/eS0=",
+							"_parent": {
+								"$ref": "AAAAAAGMz7IOvBxu+A0="
+							},
+							"name": "NbSiège"
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAGMz7J+thzsfbU=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "1ière Classe",
+					"ownedElements": [
+						{
+							"_type": "UMLGeneralization",
+							"_id": "AAAAAAGMz7OJEh9vnbI=",
+							"_parent": {
+								"$ref": "AAAAAAGMz7J+thzsfbU="
+							},
+							"source": {
+								"$ref": "AAAAAAGMz7J+thzsfbU="
+							},
+							"target": {
+								"$ref": "AAAAAAGMsOlTJv/lLqw="
+							}
+						}
+					],
+					"attributes": [
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMz7MmiR4U8aU=",
+							"_parent": {
+								"$ref": "AAAAAAGMz7J+thzsfbU="
+							},
+							"name": "NbSiège"
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAGMz7bSjjf/Kok=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Personnel navigant",
+					"ownedElements": [
+						{
+							"_type": "UMLGeneralization",
+							"_id": "AAAAAAGMz7dkqjnyTDA=",
+							"_parent": {
+								"$ref": "AAAAAAGMz7bSjjf/Kok="
+							},
+							"source": {
+								"$ref": "AAAAAAGMz7bSjjf/Kok="
+							},
+							"target": {
+								"$ref": "AAAAAAGMuz03CgHWSPQ="
+							}
+						}
+					],
+					"attributes": [
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMz7cIJzhrdAU=",
+							"_parent": {
+								"$ref": "AAAAAAGMz7bSjjf/Kok="
+							},
+							"name": "Poste"
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMz7cb4Ti0nTA=",
+							"_parent": {
+								"$ref": "AAAAAAGMz7bSjjf/Kok="
+							},
+							"name": "ContratEmbauche"
+						}
+					]
+				},
+				{
+					"_type": "UMLNaryAssociationNode",
+					"_id": "AAAAAAGMz7eT5DpdoNI=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Associe",
+					"ownedElements": [
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAGMz7f3ZD2DT8Q=",
+							"_parent": {
+								"$ref": "AAAAAAGMz7eT5DpdoNI="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMz7f3ZD2EPDI=",
+								"_parent": {
+									"$ref": "AAAAAAGMz7f3ZD2DT8Q="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMz7eT5DpdoNI="
+								}
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMz7f3ZD2FPZg=",
+								"_parent": {
+									"$ref": "AAAAAAGMz7f3ZD2DT8Q="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMu0OUqCI5+R0="
+								},
+								"multiplicity": "2"
+							}
+						},
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAGMz7gCuT7jeys=",
+							"_parent": {
+								"$ref": "AAAAAAGMz7eT5DpdoNI="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMz7gCuT7kx64=",
+								"_parent": {
+									"$ref": "AAAAAAGMz7gCuT7jeys="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMz7eT5DpdoNI="
+								}
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMz7gCuT7l5mw=",
+								"_parent": {
+									"$ref": "AAAAAAGMz7gCuT7jeys="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMu0TTzivlbXo="
+								},
+								"multiplicity": "1"
+							}
+						}
+					]
+				},
+				{
+					"_type": "UMLNaryAssociationNode",
+					"_id": "AAAAAAGMz7rOW22MD78=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Réservation",
+					"ownedElements": [
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAGMz7r/f3AC4WM=",
+							"_parent": {
+								"$ref": "AAAAAAGMz7rOW22MD78="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMz7r/f3ADhw8=",
+								"_parent": {
+									"$ref": "AAAAAAGMz7r/f3AC4WM="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMz7rOW22MD78="
+								}
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMz7r/f3AEpKo=",
+								"_parent": {
+									"$ref": "AAAAAAGMz7r/f3AC4WM="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMsOlTJv/lLqw="
+								},
+								"multiplicity": "1"
+							}
+						},
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAGMz7sOOHLr+DY=",
+							"_parent": {
+								"$ref": "AAAAAAGMz7rOW22MD78="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMz7sOOHLsY4M=",
+								"_parent": {
+									"$ref": "AAAAAAGMz7sOOHLr+DY="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMz7rOW22MD78="
+								}
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMz7sOOHLtUgs=",
+								"_parent": {
+									"$ref": "AAAAAAGMz7sOOHLr+DY="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMu0Yl4TpUnNk="
+								},
+								"multiplicity": "1"
+							}
+						},
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAGMz7saZnbH6o4=",
+							"_parent": {
+								"$ref": "AAAAAAGMz7rOW22MD78="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMz7saZnbIJwU=",
+								"_parent": {
+									"$ref": "AAAAAAGMz7saZnbH6o4="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMz7rOW22MD78="
+								}
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMz7saZnbJjJY=",
+								"_parent": {
+									"$ref": "AAAAAAGMz7saZnbH6o4="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMu0e2lEH8UPw="
+								},
+								"multiplicity": "1"
+							}
+						}
+					]
+				}
+			]
+		}
+	]
+}
\ No newline at end of file
diff --git a/23BDD/SAE/Test.sql b/23BDD/SAE/Test.sql
new file mode 100644
index 0000000..e69de29
diff --git a/23BDD/TP1-S2.sql b/23BDD/TP1-S2.sql
new file mode 100644
index 0000000..dd182c1
--- /dev/null
+++ b/23BDD/TP1-S2.sql
@@ -0,0 +1,41 @@
+//1
+SELECT region, COUNT(*)
+FROM Vin
+GROUP BY region;
+//2
+SELECT nom, numvitic, COUNT(DISTINCT cru)
+FROM Viticulteur NATURAL JOIN Vin
+GROUP BY nom, numvitic;
+//3
+SELECT nom, numbuveur, AVG(ALL qtte)
+FROM Buveur NATURAL JOIN Commande
+WHERE ville = 'PARIS'
+GROUP BY nom, numbuveur;
+//4
+SELECT numBuveur, COUNT (*)
+FROM Commande
+GROUP BY numBuveur;
+//5
+SELECT NumBuveur, SUM(qtte)
+FROM Commande
+GROUP BY NumBuveur
+HAVING AVG(qtte)>=12;
+//6
+SELECT nom, numvitic
+FROM viticulteur NATURAL JOIN vin
+GROUP BY nom, numvitic
+HAVING COUNT(DISTINCT cru) >= 2;
+//7
+SELECT numvin, cru, COUNT()
+FROM 
+WHERE ;
+//8
+SELECT 
+FROM 
+GROUP BY 
+HAVING;
+/*SELECT 
+FROM 
+WHERE
+GROUP BY
+HAVING*/
\ No newline at end of file
diff --git a/23BDD/TP2ET3.sql b/23BDD/TP2ET3.sql
new file mode 100644
index 0000000..8a87424
--- /dev/null
+++ b/23BDD/TP2ET3.sql
@@ -0,0 +1,141 @@
+//TP2
+
+//1
+CREATE VIEW VinDesViticulteurs(idVin, Cru, idViticulteur, nomViticulteur)
+AS  SELECT numVin, Cru, numVitic, nom
+    FROM Vin NATURAL JOIN Viticulteur
+    WHERE region = 'BOURGOGNE';
+
+//2
+CREATE VIEW BuvCom(numero, nom, nbrCommandes)
+AS  (SELECT numBuveur, nom, COUNT(*)
+    FROM Buveur NATURAL JOIN Commande
+    GROUP BY numBuveur, nom)
+    UNION
+    (SELECT numBuveur, nom, NULL
+    FROM Buveur 
+    WHERE numBuveur NOT IN(SELECT numBuveur FROM Commande));
+    
+INSERT INTO BuvCom VALUES(1750, 'JAMET', null);
+
+UPDATE BuvCom
+SET 
+WHERE ;
+
+DELETE BuvCom
+;
+
+DROP VIEW BuvCom;
+
+//3
+SELECT numVitic, nom
+FROM Viticulteur NATURAL JOIN Vin NATURAL JOIN Commande;
+
+//4
+SELECT numVitic, nom
+FROM Vin V NATURAL JOIN Viticulteur
+WHERE NOT EXISTS(
+    SELECT *
+    FROM Commande
+    WHERE Commande.numVin = V.numVin);
+
+//5
+SELECT 
+FROM 
+WHERE ;
+
+//6
+SELECT 
+FROM 
+WHERE ;
+
+//7
+SELECT 
+FROM 
+WHERE ;
+
+
+//TP3
+//Q1
+//1
+ALTER TABLE Buveur ADD CODE_TARIF varchar2(50) DEFAULT 'BASE';
+
+//2
+CREATE TABLE Cave_Cooperative(
+    NumCav NUMBER PRIMARY KEY,
+    Ville_Cav varchar2(30) NOT NULL,
+    NumResp NUMBER NOT NULL REFERENCES Viticulteur
+);
+
+//3
+ALTER TABLE Viticulteur ADD NumCav NUMBER REFERENCES Cave_Cooperative NOT NULL;
+
+//4
+INSERT INTO Cave_Cooperative VALUES(10, 'MACON', 01);
+
+//5
+INSERT INTO Viticulteur VALUES(40, 'WEISS', 'JACQUES', 'COLMAR', null);
+INSERT INTO Cave_Cooperative VALUES(12, 'STRASBOURG', 40);
+COMMIT;
+
+//Q2
+
+//1
+CREATE TABLE Buveur2(
+    NumBuveur NUMBER PRIMARY KEY,
+    Nom VARCHAR2(25) NOT NULL,
+    Prenom VARCHAR2(25),
+    Ville VARCHAR2(30) NOT NULL
+);
+ALTER TABLE Buveur2 ADD CODE_TARIF varchar2(50) DEFAULT 'BASE';
+
+insert into Buveur2 (select * from raban.buveur);
+//2
+ALTER TABLE Buveur2 DROP COLUMN Ville;
+
+//3
+CREATE TABLE Commande2(
+    NumCom NUMBER PRIMARY KEY,
+    NumBuveur NUMBER REFERENCES Buveur2,
+    NumVin NUMBER REFERENCES Vin,
+    Qtte INT NOT NULL,
+    DateCom DATE NOT NULL
+);
+
+//4
+ALTER TABLE Buveur2 DROP COLUMN numBuveur;
+
+//Q3
+
+//1
+ALTER TABLE Buveur2 MODIFY Nom varchar2(15);
+
+//2
+ALTER TABLE Buveur2 MODIFY Prenom varchar2(5);
+
+//3
+ALTER TABLE Buveur2 RENAME COLUMN Nom TO NomBuveur;
+
+//4
+ALTER TABLE Buveur2 RENAME COLUMN NumBuveur TO idBuv;
+
+//5
+/*Suivant si les données,on peut modifier le type, et on peut modifier le nom*/ 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/23BDD/TP3.txt b/23BDD/TP3.txt
new file mode 100644
index 0000000..753fa28
--- /dev/null
+++ b/23BDD/TP3.txt
@@ -0,0 +1,27 @@
+1/
+
+SELECT NumBuveur, NomB, villeB
+FROM 
+
+2/
+
+3/
+
+4/
+
+5/
+
+6/
+
+7/
+
+8/
+
+9/
+
+10/
+
+11/
+
+12/
+
diff --git a/23BDD/TP4.sql b/23BDD/TP4.sql
new file mode 100644
index 0000000..5a8f1da
--- /dev/null
+++ b/23BDD/TP4.sql
@@ -0,0 +1,135 @@
+//1
+DROP TABLE Personnel;
+DROP TABLE Peut_Atterrir;
+DROP TABLE Avion;
+DROP TABLE Type_Avion;
+DROP TABLE Vol;
+DROP TABLE Aeroport;
+
+CREATE TABLE Aeroport (
+codeAeroport varchar2(15) NOT NULL Primary Key,
+nom varchar2(40) NOT NULL UNIQUE,
+ville varchar2(40) NOT NULL UNIQUE,
+pays varchar2(40) NOT NULL UNIQUE
+);
+
+CREATE TABLE Vol (
+numVol INT Primary Key NOT NULL,
+Compagnie varchar2(40) NOT NULL,
+periodeVol varchar2(30) NOT NULL
+);
+
+CREATE TABLE Type_Avion (
+nomType varchar2(40) NOT NULL Primary Key,
+maxSieges INT NOT NULL,
+nomConstructeur varchar2(40) NOT NULL
+);
+
+CREATE TABLE Avion (
+idAvion INT NOT NULL Primary Key,
+totalSieges INT NOT NULL,
+nomTypeAvion varchar2(40) REFERENCES Type_Avion
+);
+
+CREATE TABLE Peut_Atterrir (
+nomTypeAvion varchar2(40) REFERENCES Type_Avion,
+codeAeroport varchar2(15) REFERENCES Aeroport
+);
+
+CREATE TABLE Personnel(
+idPersonne INT NOT NULL Primary Key,
+nom varchar2(40) NOT NULL,
+prenom varchar2(40) NOT NULL,
+fonction varchar2(40) NOT NULL
+);
+
+//2
+
+INSERT INTO Aeroport VALUES('C15RF', 'Charles De Gaulle', 'Roissy-en-France', 'Paris');
+INSERT INTO Aeroport VALUES('MM4', 'Charles De Gaulle', 'Roissy-en-France', 'Paris');
+INSERT INTO Aeroport VALUES('JM3630LP', NULL, NULL, NULL);
+
+INSERT INTO Type_Avion VALUES('RAFALE', 2, 'Dassault Aviation');
+
+INSERT INTO Avion VALUES(0455632, 2, 'RAFALE');
+
+INSERT INTO Peut_Atterrir VALUES('RAFALE', 'C15RF');
+
+DELETE FROM Aeroport
+WHERE codeAeroport = 'C15RF';
+
+//3
+DROP TABLE Hotesse_Equipage;
+DROP TABLE Equipage;
+DROP TABLE Instance_Escale;
+DROP TABLE Escale;
+
+CREATE TABLE Escale(
+numVol INT REFERENCES Vol,
+numEscale INT NOT NULL CONSTRAINT NumLim CHECK(numEscale BETWEEN 0 and 20),
+aeroportDepart varchar2(15) REFERENCES Aeroport,
+aeroportArrivee varchar2(15) REFERENCES Aeroport,
+CONSTRAINT Diff CHECK(aeroportDepart != aeroportArrivee),
+heureDepartPrevue INT NOT NULL CONSTRAINT CoheureDepartPrevue CHECK(heureDepartPrevue BETWEEN 0 and 23),
+minuteDepartPrevue INT NOT NULL CONSTRAINT CominuteDepartPrevue CHECK(minuteDepartPrevue BETWEEN 0 and 59),
+heureArriveePrevue INT NOT NULL CONSTRAINT CoheureArriveePrevue CHECK(heureArriveePrevue BETWEEN 0 and 23),
+minuteArriveePrevue INT NOT NULL CONSTRAINT CominuteArriveePrevue CHECK(minuteArriveePrevue BETWEEN 0 and 59),
+Primary Key(numVol, numEscale)
+);
+
+CREATE TABLE Instance_Escale (
+numVol INT,
+numEscale INT,
+dateEscale DATE Primary Key,
+nbrSieges INT NOT NULL,
+idAvion INT NOT NULL,
+dateDepartEffectuee DATE NOT NULL,
+dateArriveeEffectuee DATE NOT NULL,
+CONSTRAINT DiffDate CHECK(dateDepartEffectuee < dateArriveeEffectuee),
+idEquipe INT NOT NULL,
+FOREIGN Key(numVol, numEscale) REFERENCES Escale
+);
+
+CREATE TABLE Equipage(
+numVol INT,
+numEscale INT,
+dateEscale DATE,
+idEquipe INT Primary Key,
+idPilote INT,
+idCoPilote INT,
+idChefCabine INT,
+FOREIGN Key(numVol, numEscale, dateEscale) REFERENCES Instance_Escale,
+FOREIGN Key(idPilote, idCoPilote, idChefCabine) REFERENCES Personnel
+);
+
+CREATE TABLE Hotesse_Equipage(
+idEquipe INT REFERENCES Equipage,
+idPersonne INT REFERENCES Personnel
+);
+
+//4
+
+
+
+//5
+
+
+
+//6
+
+//TP5
+
+//1
+
+
+CREATE TABLE AUTEUR(
+NumAuteur number Primary Key,
+NomAuteur varchar2(20)
+);
+
+CREATE TABLE EDITEUR(
+codeAuteur number Primary Key,
+RaisonSociale varchar2(20)
+);
+
+//2
\ No newline at end of file
diff --git a/23BDD/TP7.mdj b/23BDD/TP7.mdj
new file mode 100644
index 0000000..7910021
--- /dev/null
+++ b/23BDD/TP7.mdj
@@ -0,0 +1,3767 @@
+{
+	"_type": "Project",
+	"_id": "AAAAAAFF+h6SjaM2Hec=",
+	"name": "Untitled",
+	"ownedElements": [
+		{
+			"_type": "UMLModel",
+			"_id": "AAAAAAFF+qBWK6M3Z8Y=",
+			"_parent": {
+				"$ref": "AAAAAAFF+h6SjaM2Hec="
+			},
+			"name": "Model",
+			"ownedElements": [
+				{
+					"_type": "UMLClassDiagram",
+					"_id": "AAAAAAFF+qBtyKM79qY=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Main",
+					"defaultDiagram": true,
+					"ownedViews": [
+						{
+							"_type": "UMLClassView",
+							"_id": "AAAAAAGMRJgGUx9Tdns=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMRJgGUR9REFw="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAGMRJgGUx9Ukrg=",
+									"_parent": {
+										"$ref": "AAAAAAGMRJgGUx9Tdns="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRJgGUR9REFw="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMRJgGUx9VJp0=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJgGUx9Ukrg="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 4864,
+											"top": -304,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMRJgGUx9WO08=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJgGUx9Ukrg="
+											},
+											"font": "Arial;13;1",
+											"left": 2629,
+											"top": 7,
+											"width": 69.01806640625,
+											"height": 13,
+											"text": "Client"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMRJgGUx9X9U4=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJgGUx9Ukrg="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 4864,
+											"top": -304,
+											"width": 73.67724609375,
+											"height": 13,
+											"text": "(from Model)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMRJgGVB9Yw8I=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJgGUx9Ukrg="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 4864,
+											"top": -304,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 2624,
+									"width": 79.01806640625,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAGMRJgGUx9VJp0="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAGMRJgGUx9WO08="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAGMRJgGUx9X9U4="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAGMRJgGVB9Yw8I="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAGMRJgGVB9ZZFQ=",
+									"_parent": {
+										"$ref": "AAAAAAGMRJgGUx9Tdns="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRJgGUR9REFw="
+									},
+									"subViews": [
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMRJh64R+pW9Q=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJgGVB9ZZFQ="
+											},
+											"model": {
+												"$ref": "AAAAAAGMRJh6wh+mqiQ="
+											},
+											"font": "Arial;13;0",
+											"left": 2629,
+											"top": 30,
+											"width": 69.01806640625,
+											"height": 13,
+											"text": "+codeClient",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMRJiYMx+wa/8=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJgGVB9ZZFQ="
+											},
+											"model": {
+												"$ref": "AAAAAAGMRJiYLx+ta6I="
+											},
+											"font": "Arial;13;0",
+											"left": 2629,
+											"top": 45,
+											"width": 69.01806640625,
+											"height": 13,
+											"text": "+nom",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMRJixmh+3Dsk=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJgGVB9ZZFQ="
+											},
+											"model": {
+												"$ref": "AAAAAAGMRJixlx+0jo0="
+											},
+											"font": "Arial;13;0",
+											"left": 2629,
+											"top": 60,
+											"width": 69.01806640625,
+											"height": 13,
+											"text": "+adresse",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMRJjPnB++P8E=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJgGVB9ZZFQ="
+											},
+											"model": {
+												"$ref": "AAAAAAGMRJjPiB+7ymQ="
+											},
+											"font": "Arial;13;0",
+											"left": 2629,
+											"top": 75,
+											"width": 69.01806640625,
+											"height": 13,
+											"text": "+ville",
+											"horizontalAlignment": 0
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 2624,
+									"top": 25,
+									"width": 79.01806640625,
+									"height": 68
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAGMRJgGVB9aRTk=",
+									"_parent": {
+										"$ref": "AAAAAAGMRJgGUx9Tdns="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRJgGUR9REFw="
+									},
+									"font": "Arial;13;0",
+									"left": 2624,
+									"top": 93,
+									"width": 79.01806640625,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAGMRJgGVB9b6Vg=",
+									"_parent": {
+										"$ref": "AAAAAAGMRJgGUx9Tdns="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRJgGUR9REFw="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 2432,
+									"top": -152,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAGMRJgGVB9c9tk=",
+									"_parent": {
+										"$ref": "AAAAAAGMRJgGUx9Tdns="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRJgGUR9REFw="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 2432,
+									"top": -152,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 2624,
+							"width": 79.01806640625,
+							"height": 103,
+							"nameCompartment": {
+								"$ref": "AAAAAAGMRJgGUx9Ukrg="
+							},
+							"attributeCompartment": {
+								"$ref": "AAAAAAGMRJgGVB9ZZFQ="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAGMRJgGVB9aRTk="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAGMRJgGVB9b6Vg="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAGMRJgGVB9c9tk="
+							}
+						},
+						{
+							"_type": "UMLClassView",
+							"_id": "AAAAAAGMRJgvmh99zBw=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMRJgvmR97yI8="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAGMRJgvmh9+SkE=",
+									"_parent": {
+										"$ref": "AAAAAAGMRJgvmh99zBw="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRJgvmR97yI8="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMRJgvmh9/TME=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJgvmh9+SkE="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 4544,
+											"top": 2848,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMRJgvmh+AAU4=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJgvmh9+SkE="
+											},
+											"font": "Arial;13;1",
+											"left": 2661,
+											"top": 1671,
+											"width": 64.70166015625,
+											"height": 13,
+											"text": "Agence"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMRJgvmh+Byfo=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJgvmh9+SkE="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 4544,
+											"top": 2848,
+											"width": 73.67724609375,
+											"height": 13,
+											"text": "(from Model)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMRJgvmh+CXU0=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJgvmh9+SkE="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 4544,
+											"top": 2848,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 2656,
+									"top": 1664,
+									"width": 74.70166015625,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAGMRJgvmh9/TME="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAGMRJgvmh+AAU4="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAGMRJgvmh+Byfo="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAGMRJgvmh+CXU0="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAGMRJgvmh+DzfM=",
+									"_parent": {
+										"$ref": "AAAAAAGMRJgvmh99zBw="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRJgvmR97yI8="
+									},
+									"subViews": [
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMRJp89SAwmq4=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJgvmh+DzfM="
+											},
+											"model": {
+												"$ref": "AAAAAAGMRJp87yAttr0="
+											},
+											"font": "Arial;13;0",
+											"left": 2661,
+											"top": 1694,
+											"width": 64.70166015625,
+											"height": 13,
+											"text": "+num",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMRJq+RCA36jQ=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJgvmh+DzfM="
+											},
+											"model": {
+												"$ref": "AAAAAAGMRJq+NyA0fLw="
+											},
+											"font": "Arial;13;0",
+											"left": 2661,
+											"top": 1709,
+											"width": 64.70166015625,
+											"height": 13,
+											"text": "+nom",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMRJrRwCA+VsA=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJgvmh+DzfM="
+											},
+											"model": {
+												"$ref": "AAAAAAGMRJrRtiA7cDs="
+											},
+											"font": "Arial;13;0",
+											"left": 2661,
+											"top": 1724,
+											"width": 64.70166015625,
+											"height": 13,
+											"text": "+adresseA",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMRJsCAyBF4/A=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJgvmh+DzfM="
+											},
+											"model": {
+												"$ref": "AAAAAAGMRJsB9yBCXZE="
+											},
+											"font": "Arial;13;0",
+											"left": 2661,
+											"top": 1739,
+											"width": 64.70166015625,
+											"height": 13,
+											"text": "+téléphone",
+											"horizontalAlignment": 0
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 2656,
+									"top": 1689,
+									"width": 74.70166015625,
+									"height": 68
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAGMRJgvmx+Ew68=",
+									"_parent": {
+										"$ref": "AAAAAAGMRJgvmh99zBw="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRJgvmR97yI8="
+									},
+									"font": "Arial;13;0",
+									"left": 2656,
+									"top": 1757,
+									"width": 74.70166015625,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAGMRJgvmx+FQ4U=",
+									"_parent": {
+										"$ref": "AAAAAAGMRJgvmh99zBw="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRJgvmR97yI8="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 2272,
+									"top": 1424,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAGMRJgvmx+GzgQ=",
+									"_parent": {
+										"$ref": "AAAAAAGMRJgvmh99zBw="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRJgvmR97yI8="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 2272,
+									"top": 1424,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 2656,
+							"top": 1664,
+							"width": 74.70166015625,
+							"height": 103,
+							"nameCompartment": {
+								"$ref": "AAAAAAGMRJgvmh9+SkE="
+							},
+							"attributeCompartment": {
+								"$ref": "AAAAAAGMRJgvmh+DzfM="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAGMRJgvmx+Ew68="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAGMRJgvmx+FQ4U="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAGMRJgvmx+GzgQ="
+							}
+						},
+						{
+							"_type": "UMLClassView",
+							"_id": "AAAAAAGMRJkzSR/EYuI=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMRJkzSB/CT3g="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAGMRJkzSR/FoFc=",
+									"_parent": {
+										"$ref": "AAAAAAGMRJkzSR/EYuI="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRJkzSB/CT3g="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMRJkzSR/G4GA=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJkzSR/FoFc="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 1840,
+											"top": -480,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMRJkzSR/Hxp8=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJkzSR/FoFc="
+											},
+											"font": "Arial;13;1",
+											"left": 1309,
+											"top": 7,
+											"width": 63.2353515625,
+											"height": 13,
+											"text": "Matériel"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMRJkzSR/IsHk=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJkzSR/FoFc="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 1840,
+											"top": -480,
+											"width": 73.67724609375,
+											"height": 13,
+											"text": "(from Model)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMRJkzSh/JgFo=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJkzSR/FoFc="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 1840,
+											"top": -480,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 1304,
+									"width": 73.2353515625,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAGMRJkzSR/G4GA="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAGMRJkzSR/Hxp8="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAGMRJkzSR/IsHk="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAGMRJkzSh/JgFo="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAGMRJkzSh/KXGs=",
+									"_parent": {
+										"$ref": "AAAAAAGMRJkzSR/EYuI="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRJkzSB/CT3g="
+									},
+									"subViews": [
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMRJ5CpSHN6UQ=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJkzSh/KXGs="
+											},
+											"model": {
+												"$ref": "AAAAAAGMRJ5CnSHK1Sk="
+											},
+											"font": "Arial;13;0",
+											"left": 1309,
+											"top": 30,
+											"width": 63.2353515625,
+											"height": 13,
+											"text": "+état",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMRJ5hUiHU8mo=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJkzSh/KXGs="
+											},
+											"model": {
+												"$ref": "AAAAAAGMRJ5hTCHR9Qw="
+											},
+											"font": "Arial;13;0",
+											"left": 1309,
+											"top": 45,
+											"width": 63.2353515625,
+											"height": 13,
+											"text": "+type",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMRJ5/FSHbpdU=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJkzSh/KXGs="
+											},
+											"model": {
+												"$ref": "AAAAAAGMRJ5/EiHYevk="
+											},
+											"font": "Arial;13;0",
+											"left": 1309,
+											"top": 60,
+											"width": 63.2353515625,
+											"height": 13,
+											"text": "+qtte",
+											"horizontalAlignment": 0
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 1304,
+									"top": 25,
+									"width": 73.2353515625,
+									"height": 53
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAGMRJkzSh/L/tQ=",
+									"_parent": {
+										"$ref": "AAAAAAGMRJkzSR/EYuI="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRJkzSB/CT3g="
+									},
+									"font": "Arial;13;0",
+									"left": 1304,
+									"top": 78,
+									"width": 73.2353515625,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAGMRJkzSh/Mdl0=",
+									"_parent": {
+										"$ref": "AAAAAAGMRJkzSR/EYuI="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRJkzSB/CT3g="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 920,
+									"top": -240,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAGMRJkzSh/NHTY=",
+									"_parent": {
+										"$ref": "AAAAAAGMRJkzSR/EYuI="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRJkzSB/CT3g="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 920,
+									"top": -240,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 1304,
+							"width": 73.2353515625,
+							"height": 88,
+							"nameCompartment": {
+								"$ref": "AAAAAAGMRJkzSR/FoFc="
+							},
+							"attributeCompartment": {
+								"$ref": "AAAAAAGMRJkzSh/KXGs="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAGMRJkzSh/L/tQ="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAGMRJkzSh/Mdl0="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAGMRJkzSh/NHTY="
+							}
+						},
+						{
+							"_type": "UMLClassView",
+							"_id": "AAAAAAGMRJyReCB4e70=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMRJyRdyB2Voc="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAGMRJyReCB5eMQ=",
+									"_parent": {
+										"$ref": "AAAAAAGMRJyReCB4e70="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRJyRdyB2Voc="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMRJyReCB6bUE=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJyReCB5eMQ="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -864,
+											"top": -992,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMRJyReCB71BI=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJyReCB5eMQ="
+											},
+											"font": "Arial;13;1",
+											"left": 5,
+											"top": 7,
+											"width": 66.45361328125,
+											"height": 13,
+											"text": "Dimension"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMRJyReCB8+mk=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJyReCB5eMQ="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -864,
+											"top": -992,
+											"width": 73.67724609375,
+											"height": 13,
+											"text": "(from Model)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMRJyReCB9VR4=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJyReCB5eMQ="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -864,
+											"top": -992,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"width": 76.45361328125,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAGMRJyReCB6bUE="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAGMRJyReCB71BI="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAGMRJyReCB8+mk="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAGMRJyReCB9VR4="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAGMRJyReCB+O0o=",
+									"_parent": {
+										"$ref": "AAAAAAGMRJyReCB4e70="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRJyRdyB2Voc="
+									},
+									"subViews": [
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMRKGWuSIpb28=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJyReCB+O0o="
+											},
+											"model": {
+												"$ref": "AAAAAAGMRKGWqiImE8s="
+											},
+											"font": "Arial;13;0",
+											"left": 5,
+											"top": 30,
+											"width": 66.45361328125,
+											"height": 13,
+											"text": "+Poids",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMRKGooSIwIyc=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJyReCB+O0o="
+											},
+											"model": {
+												"$ref": "AAAAAAGMRKGomSItuyI="
+											},
+											"font": "Arial;13;0",
+											"left": 5,
+											"top": 45,
+											"width": 66.45361328125,
+											"height": 13,
+											"text": "+Longueur",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMRKHOVSI3PLY=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJyReCB+O0o="
+											},
+											"model": {
+												"$ref": "AAAAAAGMRKHOSiI03PU="
+											},
+											"font": "Arial;13;0",
+											"left": 5,
+											"top": 60,
+											"width": 66.45361328125,
+											"height": 13,
+											"text": "+Largeur",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMRKHdOyI+Dqk=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJyReCB+O0o="
+											},
+											"model": {
+												"$ref": "AAAAAAGMRKHdOCI77+Q="
+											},
+											"font": "Arial;13;0",
+											"left": 5,
+											"top": 75,
+											"width": 66.45361328125,
+											"height": 13,
+											"text": "+Hauteur",
+											"horizontalAlignment": 0
+										}
+									],
+									"font": "Arial;13;0",
+									"top": 25,
+									"width": 76.45361328125,
+									"height": 68
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAGMRJyReSB/6lA=",
+									"_parent": {
+										"$ref": "AAAAAAGMRJyReCB4e70="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRJyRdyB2Voc="
+									},
+									"font": "Arial;13;0",
+									"top": 93,
+									"width": 76.45361328125,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAGMRJyReSCAses=",
+									"_parent": {
+										"$ref": "AAAAAAGMRJyReCB4e70="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRJyRdyB2Voc="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -432,
+									"top": -496,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAGMRJyReSCBc+o=",
+									"_parent": {
+										"$ref": "AAAAAAGMRJyReCB4e70="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRJyRdyB2Voc="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -432,
+									"top": -496,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"width": 76.45361328125,
+							"height": 103,
+							"nameCompartment": {
+								"$ref": "AAAAAAGMRJyReCB5eMQ="
+							},
+							"attributeCompartment": {
+								"$ref": "AAAAAAGMRJyReCB+O0o="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAGMRJyReSB/6lA="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAGMRJyReSCAses="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAGMRJyReSCBc+o="
+							}
+						},
+						{
+							"_type": "UMLClassView",
+							"_id": "AAAAAAGMRJ0WxyEwL9U=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMRJ0WxyEuCRw="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAGMRJ0WyCExoJ8=",
+									"_parent": {
+										"$ref": "AAAAAAGMRJ0WxyEwL9U="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRJ0WxyEuCRw="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMRJ0WyCEyN5c=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJ0WyCExoJ8="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -256,
+											"top": 704,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMRJ0WyCEz43E=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJ0WyCExoJ8="
+											},
+											"font": "Arial;13;1",
+											"left": 5,
+											"top": 711,
+											"width": 87.572265625,
+											"height": 13,
+											"text": "Location"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMRJ0WyCE0gkE=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJ0WyCExoJ8="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -256,
+											"top": 704,
+											"width": 73.67724609375,
+											"height": 13,
+											"text": "(from Model)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMRJ0WyCE10rc=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJ0WyCExoJ8="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -256,
+											"top": 704,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"top": 704,
+									"width": 97.572265625,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAGMRJ0WyCEyN5c="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAGMRJ0WyCEz43E="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAGMRJ0WyCE0gkE="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAGMRJ0WyCE10rc="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAGMRJ0WyCE2wuM=",
+									"_parent": {
+										"$ref": "AAAAAAGMRJ0WxyEwL9U="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRJ0WxyEuCRw="
+									},
+									"subViews": [
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMRJ7CciHtwt0=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJ0WyCE2wuM="
+											},
+											"model": {
+												"$ref": "AAAAAAGMRJ7CbCHqJ/o="
+											},
+											"font": "Arial;13;0",
+											"left": 5,
+											"top": 734,
+											"width": 87.572265625,
+											"height": 13,
+											"text": "+idAgence",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMRJ7vlSH01uE=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJ0WyCE2wuM="
+											},
+											"model": {
+												"$ref": "AAAAAAGMRJ7vkiHx+Yc="
+											},
+											"font": "Arial;13;0",
+											"left": 5,
+											"top": 749,
+											"width": 87.572265625,
+											"height": 13,
+											"text": "+NumContrat",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMRJ8vKCH7KAY=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJ0WyCE2wuM="
+											},
+											"model": {
+												"$ref": "AAAAAAGMRJ8vJiH4uzc="
+											},
+											"font": "Arial;13;0",
+											"left": 5,
+											"top": 764,
+											"width": 87.572265625,
+											"height": 13,
+											"text": "+dateDébut",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMRKAgnSIDC9I=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJ0WyCE2wuM="
+											},
+											"model": {
+												"$ref": "AAAAAAGMRKAgmSIAxb4="
+											},
+											"font": "Arial;13;0",
+											"left": 5,
+											"top": 779,
+											"width": 87.572265625,
+											"height": 13,
+											"text": "+duréeLoc",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMRKBk9SIK1ns=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJ0WyCE2wuM="
+											},
+											"model": {
+												"$ref": "AAAAAAGMRKBk6iIHJJI="
+											},
+											"font": "Arial;13;0",
+											"left": 5,
+											"top": 794,
+											"width": 87.572265625,
+											"height": 13,
+											"text": "+dateRetourEff",
+											"horizontalAlignment": 0
+										}
+									],
+									"font": "Arial;13;0",
+									"top": 729,
+									"width": 97.572265625,
+									"height": 83
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAGMRJ0WyCE37dY=",
+									"_parent": {
+										"$ref": "AAAAAAGMRJ0WxyEwL9U="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRJ0WxyEuCRw="
+									},
+									"font": "Arial;13;0",
+									"top": 812,
+									"width": 97.572265625,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAGMRJ0WyCE42CA=",
+									"_parent": {
+										"$ref": "AAAAAAGMRJ0WxyEwL9U="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRJ0WxyEuCRw="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -128,
+									"top": 352,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAGMRJ0WySE5vD4=",
+									"_parent": {
+										"$ref": "AAAAAAGMRJ0WxyEwL9U="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRJ0WxyEuCRw="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -128,
+									"top": 352,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"top": 704,
+							"width": 97.572265625,
+							"height": 118,
+							"nameCompartment": {
+								"$ref": "AAAAAAGMRJ0WyCExoJ8="
+							},
+							"attributeCompartment": {
+								"$ref": "AAAAAAGMRJ0WyCE2wuM="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAGMRJ0WyCE37dY="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAGMRJ0WyCE42CA="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAGMRJ0WySE5vD4="
+							}
+						},
+						{
+							"_type": "UMLClassView",
+							"_id": "AAAAAAGMRJ1PTyFaFns=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMRJ1PTyFYlPI="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAGMRJ1PUCFbgNI=",
+									"_parent": {
+										"$ref": "AAAAAAGMRJ1PTyFaFns="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRJ1PTyFYlPI="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMRJ1PUCFcUEc=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJ1PUCFbgNI="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -896,
+											"top": 2688,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMRJ1PUCFdJy4=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJ1PUCFbgNI="
+											},
+											"font": "Arial;13;1",
+											"left": 5,
+											"top": 1687,
+											"width": 81.30078125,
+											"height": 13,
+											"text": "Catalogue"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMRJ1PUCFe7u8=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJ1PUCFbgNI="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -896,
+											"top": 2688,
+											"width": 73.67724609375,
+											"height": 13,
+											"text": "(from Model)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMRJ1PUCFflkI=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJ1PUCFbgNI="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -896,
+											"top": 2688,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"top": 1680,
+									"width": 91.30078125,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAGMRJ1PUCFcUEc="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAGMRJ1PUCFdJy4="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAGMRJ1PUCFe7u8="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAGMRJ1PUCFflkI="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAGMRJ1PUCFgo74=",
+									"_parent": {
+										"$ref": "AAAAAAGMRJ1PTyFaFns="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRJ1PTyFYlPI="
+									},
+									"subViews": [
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMRKELSSITygk=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJ1PUCFgo74="
+											},
+											"model": {
+												"$ref": "AAAAAAGMRKELQiIQ2xY="
+											},
+											"font": "Arial;13;0",
+											"left": 5,
+											"top": 1710,
+											"width": 81.30078125,
+											"height": 13,
+											"text": "+RéférenceM",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMRKE09CIab+o=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJ1PUCFgo74="
+											},
+											"model": {
+												"$ref": "AAAAAAGMRKE08CIXu7c="
+											},
+											"font": "Arial;13;0",
+											"left": 5,
+											"top": 1725,
+											"width": 81.30078125,
+											"height": 13,
+											"text": "+destinationM",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMRKFYdCIhupg=",
+											"_parent": {
+												"$ref": "AAAAAAGMRJ1PUCFgo74="
+											},
+											"model": {
+												"$ref": "AAAAAAGMRKFYcCIeveA="
+											},
+											"font": "Arial;13;0",
+											"left": 5,
+											"top": 1740,
+											"width": 81.30078125,
+											"height": 13,
+											"text": "+PrixLoc",
+											"horizontalAlignment": 0
+										}
+									],
+									"font": "Arial;13;0",
+									"top": 1705,
+									"width": 91.30078125,
+									"height": 53
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAGMRJ1PUCFhXss=",
+									"_parent": {
+										"$ref": "AAAAAAGMRJ1PTyFaFns="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRJ1PTyFYlPI="
+									},
+									"font": "Arial;13;0",
+									"top": 1758,
+									"width": 91.30078125,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAGMRJ1PUCFihtI=",
+									"_parent": {
+										"$ref": "AAAAAAGMRJ1PTyFaFns="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRJ1PTyFYlPI="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -448,
+									"top": 1344,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAGMRJ1PUCFjasU=",
+									"_parent": {
+										"$ref": "AAAAAAGMRJ1PTyFaFns="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRJ1PTyFYlPI="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -448,
+									"top": 1344,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"top": 1680,
+							"width": 91.30078125,
+							"height": 88,
+							"nameCompartment": {
+								"$ref": "AAAAAAGMRJ1PUCFbgNI="
+							},
+							"attributeCompartment": {
+								"$ref": "AAAAAAGMRJ1PUCFgo74="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAGMRJ1PUCFhXss="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAGMRJ1PUCFihtI="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAGMRJ1PUCFjasU="
+							}
+						},
+						{
+							"_type": "UMLAssociationView",
+							"_id": "AAAAAAGMRKM+4iLnQfE=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMRKM+4SLjZ/o="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKM+4iLojaI=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKM+4iLnQfE="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKM+4SLjZ/o="
+									},
+									"font": "Arial;13;0",
+									"left": 1329,
+									"top": 384,
+									"width": 55.05322265625,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKM+4iLnQfE="
+									},
+									"edgePosition": 1,
+									"text": "+Effectue"
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKM+4iLpHUI=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKM+4iLnQfE="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKM+4SLjZ/o="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 1352,
+									"top": 370,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKM+4iLnQfE="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKM+4iLqYVI=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKM+4iLnQfE="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKM+4SLjZ/o="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 1363,
+									"top": 413,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKM+4iLnQfE="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKM+4iLr2jM=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKM+4iLnQfE="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKM+4SLkp0E="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 119,
+									"top": 721,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKM+4iLnQfE="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKM+4iLsbWo=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKM+4iLnQfE="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKM+4SLkp0E="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 117,
+									"top": 708,
+									"height": 13,
+									"alpha": 0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKM+4iLnQfE="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKM+4iLtqRg=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKM+4iLnQfE="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKM+4SLkp0E="
+									},
+									"font": "Arial;13;0",
+									"left": 113,
+									"top": 749,
+									"width": 19.5126953125,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKM+4iLnQfE="
+									},
+									"edgePosition": 2,
+									"text": "1..*"
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKM+4iLuAJY=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKM+4iLnQfE="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKM+4SLltYs="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 2593,
+									"top": 48,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKM+4iLnQfE="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKM+4iLv4f0=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKM+4iLnQfE="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKM+4SLltYs="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 2588,
+									"top": 36,
+									"height": 13,
+									"alpha": -0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKM+4iLnQfE="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKM+4iLwS/w=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKM+4iLnQfE="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKM+4SLltYs="
+									},
+									"font": "Arial;13;0",
+									"left": 2602,
+									"top": 73,
+									"width": 7.22998046875,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKM+4iLnQfE="
+									},
+									"text": "1"
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAGMRKM+4iLxF78=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKM+4iLnQfE="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKM+4SLkp0E="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 216,
+									"top": 48,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAGMRKM+4iLyc7M=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKM+4iLnQfE="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKM+4SLltYs="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 216,
+									"top": 48,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAGMRJgGUx9Tdns="
+							},
+							"tail": {
+								"$ref": "AAAAAAGMRJ0WxyEwL9U="
+							},
+							"lineStyle": 1,
+							"points": "98:749;2623:62",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAGMRKM+4iLojaI="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAGMRKM+4iLpHUI="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAGMRKM+4iLqYVI="
+							},
+							"showEndOrder": "hide",
+							"tailRoleNameLabel": {
+								"$ref": "AAAAAAGMRKM+4iLr2jM="
+							},
+							"tailPropertyLabel": {
+								"$ref": "AAAAAAGMRKM+4iLsbWo="
+							},
+							"tailMultiplicityLabel": {
+								"$ref": "AAAAAAGMRKM+4iLtqRg="
+							},
+							"headRoleNameLabel": {
+								"$ref": "AAAAAAGMRKM+4iLuAJY="
+							},
+							"headPropertyLabel": {
+								"$ref": "AAAAAAGMRKM+4iLv4f0="
+							},
+							"headMultiplicityLabel": {
+								"$ref": "AAAAAAGMRKM+4iLwS/w="
+							},
+							"tailQualifiersCompartment": {
+								"$ref": "AAAAAAGMRKM+4iLxF78="
+							},
+							"headQualifiersCompartment": {
+								"$ref": "AAAAAAGMRKM+4iLyc7M="
+							}
+						},
+						{
+							"_type": "UMLAssociationView",
+							"_id": "AAAAAAGMRKNMtSPMWUI=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMRKNMtSPI8Bc="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKNMtSPN0Wc=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNMtSPMWUI="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNMtSPI8Bc="
+									},
+									"font": "Arial;13;0",
+									"left": 1341,
+									"top": 1249,
+									"width": 58.1826171875,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKNMtSPMWUI="
+									},
+									"edgePosition": 1,
+									"text": "+Possède"
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKNMtSPO148=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNMtSPMWUI="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNMtSPI8Bc="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 1365,
+									"top": 1263,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKNMtSPMWUI="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKNMtSPP42M=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNMtSPMWUI="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNMtSPI8Bc="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 1381,
+									"top": 1220,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKNMtSPMWUI="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKNMtiPQ27w=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNMtSPMWUI="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNMtSPJy94="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 2625,
+									"top": 1701,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKNMtSPMWUI="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKNMtiPRd4o=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNMtSPMWUI="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNMtSPJy94="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 2618,
+									"top": 1713,
+									"height": 13,
+									"alpha": 0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKNMtSPMWUI="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKNMtiPSqf0=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNMtSPMWUI="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNMtSPJy94="
+									},
+									"font": "Arial;13;0",
+									"left": 2635,
+									"top": 1676,
+									"width": 7.22998046875,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKNMtSPMWUI="
+									},
+									"edgePosition": 2,
+									"text": "1"
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKNMtiPT42U=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNMtSPMWUI="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNMtSPKX2w="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 117,
+									"top": 796,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKNMtSPMWUI="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKNMtiPU2zQ=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNMtSPMWUI="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNMtSPKX2w="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 115,
+									"top": 810,
+									"height": 13,
+									"alpha": -0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKNMtSPMWUI="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKNMtiPVAgM=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNMtSPMWUI="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNMtSPKX2w="
+									},
+									"font": "Arial;13;0",
+									"left": 119,
+									"top": 769,
+									"width": 7.22998046875,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKNMtSPMWUI="
+									},
+									"text": "1"
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAGMRKNMtiPWQm0=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNMtSPMWUI="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNMtSPJy94="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 216,
+									"top": 48,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAGMRKNMtiPXUdk=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNMtSPMWUI="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNMtSPKX2w="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 216,
+									"top": 48,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAGMRJ0WxyEwL9U="
+							},
+							"tail": {
+								"$ref": "AAAAAAGMRJgvmh99zBw="
+							},
+							"lineStyle": 1,
+							"points": "2655:1702;98:780",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAGMRKNMtSPN0Wc="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAGMRKNMtSPO148="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAGMRKNMtSPP42M="
+							},
+							"showEndOrder": "hide",
+							"tailRoleNameLabel": {
+								"$ref": "AAAAAAGMRKNMtiPQ27w="
+							},
+							"tailPropertyLabel": {
+								"$ref": "AAAAAAGMRKNMtiPRd4o="
+							},
+							"tailMultiplicityLabel": {
+								"$ref": "AAAAAAGMRKNMtiPSqf0="
+							},
+							"headRoleNameLabel": {
+								"$ref": "AAAAAAGMRKNMtiPT42U="
+							},
+							"headPropertyLabel": {
+								"$ref": "AAAAAAGMRKNMtiPU2zQ="
+							},
+							"headMultiplicityLabel": {
+								"$ref": "AAAAAAGMRKNMtiPVAgM="
+							},
+							"tailQualifiersCompartment": {
+								"$ref": "AAAAAAGMRKNMtiPWQm0="
+							},
+							"headQualifiersCompartment": {
+								"$ref": "AAAAAAGMRKNMtiPXUdk="
+							}
+						},
+						{
+							"_type": "UMLAssociationView",
+							"_id": "AAAAAAGMRKNVVSS06jo=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMRKNVVCSwTCc="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKNVVSS1JRY=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNVVSS06jo="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNVVCSwTCc="
+									},
+									"font": "Arial;13;0",
+									"left": 676,
+									"top": 406,
+									"width": 63.958984375,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKNVVSS06jo="
+									},
+									"edgePosition": 1,
+									"text": "+Concerne"
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKNVVSS25Ss=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNVVSS06jo="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNVVCSwTCc="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 714,
+									"top": 419,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKNVVSS06jo="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKNVVSS33No=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNVVSS06jo="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNVVCSwTCc="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 692,
+									"top": 379,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKNVVSS06jo="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKNVVSS4gRU=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNVVSS06jo="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNVVSSxal8="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 1287,
+									"top": 83,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKNVVSS06jo="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKNVVSS5ckA=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNVVSS06jo="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNVVSSxal8="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 1292,
+									"top": 96,
+									"height": 13,
+									"alpha": 0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKNVVSS06jo="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKNVVSS6yOE=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNVVSS06jo="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNVVSSxal8="
+									},
+									"font": "Arial;13;0",
+									"left": 1269,
+									"top": 57,
+									"width": 19.5126953125,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKNVVSS06jo="
+									},
+									"edgePosition": 2,
+									"text": "1..*"
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKNVVSS7nCE=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNVVSS06jo="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNVVSSySXg="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 127,
+									"top": 728,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKNVVSS06jo="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKNVVSS8ezE=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNVVSS06jo="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNVVSSySXg="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 136,
+									"top": 738,
+									"height": 13,
+									"alpha": -0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKNVVSS06jo="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKNVViS9/DE=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNVVSS06jo="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNVVSSySXg="
+									},
+									"font": "Arial;13;0",
+									"left": 107,
+									"top": 706,
+									"width": 7.22998046875,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKNVVSS06jo="
+									},
+									"text": "1"
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAGMRKNVViS+s+A=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNVVSS06jo="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNVVSSxal8="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 216,
+									"top": 48,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAGMRKNVViS/lKU=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNVVSS06jo="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNVVSSySXg="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 216,
+									"top": 48,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAGMRJ0WxyEwL9U="
+							},
+							"tail": {
+								"$ref": "AAAAAAGMRJkzSR/EYuI="
+							},
+							"lineStyle": 1,
+							"points": "1303:64;98:734",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAGMRKNVVSS1JRY="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAGMRKNVVSS25Ss="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAGMRKNVVSS33No="
+							},
+							"showEndOrder": "hide",
+							"tailRoleNameLabel": {
+								"$ref": "AAAAAAGMRKNVVSS4gRU="
+							},
+							"tailPropertyLabel": {
+								"$ref": "AAAAAAGMRKNVVSS5ckA="
+							},
+							"tailMultiplicityLabel": {
+								"$ref": "AAAAAAGMRKNVVSS6yOE="
+							},
+							"headRoleNameLabel": {
+								"$ref": "AAAAAAGMRKNVVSS7nCE="
+							},
+							"headPropertyLabel": {
+								"$ref": "AAAAAAGMRKNVVSS8ezE="
+							},
+							"headMultiplicityLabel": {
+								"$ref": "AAAAAAGMRKNVViS9/DE="
+							},
+							"tailQualifiersCompartment": {
+								"$ref": "AAAAAAGMRKNVViS+s+A="
+							},
+							"headQualifiersCompartment": {
+								"$ref": "AAAAAAGMRKNVViS/lKU="
+							}
+						},
+						{
+							"_type": "UMLAssociationView",
+							"_id": "AAAAAAGMRKNljSc69vQ=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMRKNljSc2SwQ="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKNljSc7fvU=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNljSc69vQ="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNljSc2SwQ="
+									},
+									"font": "Arial;13;0",
+									"left": 644,
+									"top": 867,
+									"width": 72.6171875,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKNljSc69vQ="
+									},
+									"edgePosition": 1,
+									"text": "+Description"
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKNljSc8500=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNljSc69vQ="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNljSc2SwQ="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 668,
+									"top": 858,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKNljSc69vQ="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKNljSc9X88=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNljSc69vQ="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNljSc2SwQ="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 703,
+									"top": 886,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKNljSc69vQ="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKNljSc+Wj8=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNljSc69vQ="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNljSc37Tg="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 82,
+									"top": 1643,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKNljSc69vQ="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKNljSc/bDE=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNljSc69vQ="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNljSc37Tg="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 73,
+									"top": 1633,
+									"height": 13,
+									"alpha": 0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKNljSc69vQ="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKNljSdAVJY=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNljSc69vQ="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNljSc37Tg="
+									},
+									"font": "Arial;13;0",
+									"left": 93,
+									"top": 1663,
+									"width": 19.5126953125,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKNljSc69vQ="
+									},
+									"edgePosition": 2,
+									"text": "1..*"
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKNljSdBTQM=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNljSc69vQ="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNljSc4mHs="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 1277,
+									"top": 93,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKNljSc69vQ="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKNljSdCCsE=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNljSc69vQ="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNljSc4mHs="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 1265,
+									"top": 87,
+									"height": 13,
+									"alpha": -0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKNljSc69vQ="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKNljSdDITc=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNljSc69vQ="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNljSc4mHs="
+									},
+									"font": "Arial;13;0",
+									"left": 1298,
+									"top": 106,
+									"width": 7.22998046875,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKNljSc69vQ="
+									},
+									"text": "1"
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAGMRKNljSdE+xA=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNljSc69vQ="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNljSc37Tg="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 216,
+									"top": 48,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAGMRKNljSdF6I8=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNljSc69vQ="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNljSc4mHs="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 216,
+									"top": 48,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAGMRJkzSR/EYuI="
+							},
+							"tail": {
+								"$ref": "AAAAAAGMRJ1PTyFaFns="
+							},
+							"lineStyle": 1,
+							"points": "79:1679;1305:88",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAGMRKNljSc7fvU="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAGMRKNljSc8500="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAGMRKNljSc9X88="
+							},
+							"showEndOrder": "hide",
+							"tailRoleNameLabel": {
+								"$ref": "AAAAAAGMRKNljSc+Wj8="
+							},
+							"tailPropertyLabel": {
+								"$ref": "AAAAAAGMRKNljSc/bDE="
+							},
+							"tailMultiplicityLabel": {
+								"$ref": "AAAAAAGMRKNljSdAVJY="
+							},
+							"headRoleNameLabel": {
+								"$ref": "AAAAAAGMRKNljSdBTQM="
+							},
+							"headPropertyLabel": {
+								"$ref": "AAAAAAGMRKNljSdCCsE="
+							},
+							"headMultiplicityLabel": {
+								"$ref": "AAAAAAGMRKNljSdDITc="
+							},
+							"tailQualifiersCompartment": {
+								"$ref": "AAAAAAGMRKNljSdE+xA="
+							},
+							"headQualifiersCompartment": {
+								"$ref": "AAAAAAGMRKNljSdF6I8="
+							}
+						},
+						{
+							"_type": "UMLAssociationView",
+							"_id": "AAAAAAGMRKNs/ikqp7I=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMRKNs/SkmCfM="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKNs/ikr2V8=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNs/ikqp7I="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNs/SkmCfM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 1372,
+									"top": 1698,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKNs/ikqp7I="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKNs/ikshG0=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNs/ikqp7I="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNs/SkmCfM="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 1372,
+									"top": 1683,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKNs/ikqp7I="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKNs/ikt+rU=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNs/ikqp7I="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNs/SkmCfM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 1373,
+									"top": 1727,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKNs/ikqp7I="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKNs/ykuDxw=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNs/ikqp7I="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNs/SknVrs="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 116,
+									"top": 1701,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKNs/ikqp7I="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKNs/ykvvRE=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNs/ikqp7I="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNs/SknVrs="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 119,
+									"top": 1688,
+									"height": 13,
+									"alpha": 0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKNs/ikqp7I="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKNs/ykwB8A=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNs/ikqp7I="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNs/SknVrs="
+									},
+									"font": "Arial;13;0",
+									"left": 103,
+									"top": 1729,
+									"width": 19.5126953125,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKNs/ikqp7I="
+									},
+									"edgePosition": 2,
+									"text": "1..*"
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKNs/ykxn9I=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNs/ikqp7I="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNs/Sko4tY="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 2628,
+									"top": 1694,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKNs/ikqp7I="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKNs/ykyzO8=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNs/ikqp7I="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNs/Sko4tY="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 2626,
+									"top": 1680,
+									"height": 13,
+									"alpha": -0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKNs/ikqp7I="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKNs/ykzgiM=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNs/ikqp7I="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNs/Sko4tY="
+									},
+									"font": "Arial;13;0",
+									"left": 2630,
+									"top": 1721,
+									"width": 7.22998046875,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKNs/ikqp7I="
+									},
+									"text": "1"
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAGMRKNs/yk0fIo=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNs/ikqp7I="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNs/SknVrs="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 216,
+									"top": 48,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAGMRKNs/yk1fhM=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKNs/ikqp7I="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKNs/Sko4tY="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 216,
+									"top": 48,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAGMRJgvmh99zBw="
+							},
+							"tail": {
+								"$ref": "AAAAAAGMRJ1PTyFaFns="
+							},
+							"lineStyle": 1,
+							"points": "91:1723;2655:1715",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAGMRKNs/ikr2V8="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAGMRKNs/ikshG0="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAGMRKNs/ikt+rU="
+							},
+							"showEndOrder": "hide",
+							"tailRoleNameLabel": {
+								"$ref": "AAAAAAGMRKNs/ykuDxw="
+							},
+							"tailPropertyLabel": {
+								"$ref": "AAAAAAGMRKNs/ykvvRE="
+							},
+							"tailMultiplicityLabel": {
+								"$ref": "AAAAAAGMRKNs/ykwB8A="
+							},
+							"headRoleNameLabel": {
+								"$ref": "AAAAAAGMRKNs/ykxn9I="
+							},
+							"headPropertyLabel": {
+								"$ref": "AAAAAAGMRKNs/ykyzO8="
+							},
+							"headMultiplicityLabel": {
+								"$ref": "AAAAAAGMRKNs/ykzgiM="
+							},
+							"tailQualifiersCompartment": {
+								"$ref": "AAAAAAGMRKNs/yk0fIo="
+							},
+							"headQualifiersCompartment": {
+								"$ref": "AAAAAAGMRKNs/yk1fhM="
+							}
+						},
+						{
+							"_type": "UMLGeneralizationView",
+							"_id": "AAAAAAGMRKN99iqm530=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMRKN99iqkr6A="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKN99yqn2UQ=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKN99iqm530="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKN99iqkr6A="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 688,
+									"top": 26,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKN99iqm530="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKN99yqow5M=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKN99iqm530="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKN99iqkr6A="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 688,
+									"top": 11,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKN99iqm530="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMRKN99yqpW2w=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKN99iqm530="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKN99iqkr6A="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 689,
+									"top": 55,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMRKN99iqm530="
+									},
+									"edgePosition": 1
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAGMRJkzSR/EYuI="
+							},
+							"tail": {
+								"$ref": "AAAAAAGMRJyReCB4e70="
+							},
+							"lineStyle": 1,
+							"points": "76:51;1303:43",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAGMRKN99yqn2UQ="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAGMRKN99yqow5M="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAGMRKN99yqpW2w="
+							}
+						},
+						{
+							"_type": "UMLClassView",
+							"_id": "AAAAAAGMRKZTGGlS92w=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMRKZTGGlQO7c="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAGMRKZTGGlTYy4=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKZTGGlS92w="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKZTGGlQO7c="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMRKZTGGlUwNM=",
+											"_parent": {
+												"$ref": "AAAAAAGMRKZTGGlTYy4="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 4592,
+											"top": 1136,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMRKZTGGlVTf4=",
+											"_parent": {
+												"$ref": "AAAAAAGMRKZTGGlTYy4="
+											},
+											"font": "Arial;13;1",
+											"left": 2629,
+											"top": 871,
+											"width": 74.07080078125,
+											"height": 13,
+											"text": "DateLoc"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMRKZTGGlWSAA=",
+											"_parent": {
+												"$ref": "AAAAAAGMRKZTGGlTYy4="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 4592,
+											"top": 1136,
+											"width": 73.67724609375,
+											"height": 13,
+											"text": "(from Model)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMRKZTGGlXPAw=",
+											"_parent": {
+												"$ref": "AAAAAAGMRKZTGGlTYy4="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 4592,
+											"top": 1136,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 2624,
+									"top": 864,
+									"width": 84.07080078125,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAGMRKZTGGlUwNM="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAGMRKZTGGlVTf4="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAGMRKZTGGlWSAA="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAGMRKZTGGlXPAw="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAGMRKZTGGlYAMM=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKZTGGlS92w="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKZTGGlQO7c="
+									},
+									"subViews": [
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMRKZzRGoxwzA=",
+											"_parent": {
+												"$ref": "AAAAAAGMRKZTGGlYAMM="
+											},
+											"model": {
+												"$ref": "AAAAAAGMRKZzJ2ofEa8="
+											},
+											"font": "Arial;13;0",
+											"left": 2629,
+											"top": 894,
+											"width": 74.07080078125,
+											"height": 13,
+											"text": "+DateRetour",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMRKbM1Grd7us=",
+											"_parent": {
+												"$ref": "AAAAAAGMRKZTGGlYAMM="
+											},
+											"model": {
+												"$ref": "AAAAAAGMRKbM0WrLgX8="
+											},
+											"font": "Arial;13;0",
+											"left": 2629,
+											"top": 909,
+											"width": 74.07080078125,
+											"height": 13,
+											"text": "+Durée",
+											"horizontalAlignment": 0
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 2624,
+									"top": 889,
+									"width": 84.07080078125,
+									"height": 38
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAGMRKZTGGlZ8Oo=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKZTGGlS92w="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKZTGGlQO7c="
+									},
+									"font": "Arial;13;0",
+									"left": 2624,
+									"top": 927,
+									"width": 84.07080078125,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAGMRKZTGGlaW/E=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKZTGGlS92w="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKZTGGlQO7c="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 2296,
+									"top": 568,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAGMRKZTGGlbdUU=",
+									"_parent": {
+										"$ref": "AAAAAAGMRKZTGGlS92w="
+									},
+									"model": {
+										"$ref": "AAAAAAGMRKZTGGlQO7c="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 2296,
+									"top": 568,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 2624,
+							"top": 864,
+							"width": 84.07080078125,
+							"height": 73,
+							"nameCompartment": {
+								"$ref": "AAAAAAGMRKZTGGlTYy4="
+							},
+							"attributeCompartment": {
+								"$ref": "AAAAAAGMRKZTGGlYAMM="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAGMRKZTGGlZ8Oo="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAGMRKZTGGlaW/E="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAGMRKZTGGlbdUU="
+							}
+						},
+						{
+							"_type": "UMLAssociationClassLinkView",
+							"_id": "AAAAAAGMRKd6WnizopU=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMRKd6WniyXoA="
+							},
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAGMRKNMtSPMWUI="
+							},
+							"tail": {
+								"$ref": "AAAAAAGMRKZTGGlS92w="
+							},
+							"lineStyle": 1,
+							"points": "2623:911;1376:1241"
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAGMRJgGUR9REFw=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Client",
+					"attributes": [
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMRJh6wh+mqiQ=",
+							"_parent": {
+								"$ref": "AAAAAAGMRJgGUR9REFw="
+							},
+							"name": "codeClient",
+							"type": ""
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMRJiYLx+ta6I=",
+							"_parent": {
+								"$ref": "AAAAAAGMRJgGUR9REFw="
+							},
+							"name": "nom",
+							"type": ""
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMRJixlx+0jo0=",
+							"_parent": {
+								"$ref": "AAAAAAGMRJgGUR9REFw="
+							},
+							"name": "adresse",
+							"type": ""
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMRJjPiB+7ymQ=",
+							"_parent": {
+								"$ref": "AAAAAAGMRJgGUR9REFw="
+							},
+							"name": "ville",
+							"type": ""
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAGMRJgvmR97yI8=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Agence",
+					"ownedElements": [
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAGMRKNMtSPI8Bc=",
+							"_parent": {
+								"$ref": "AAAAAAGMRJgvmR97yI8="
+							},
+							"name": "Possède",
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMRKNMtSPJy94=",
+								"_parent": {
+									"$ref": "AAAAAAGMRKNMtSPI8Bc="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMRJgvmR97yI8="
+								},
+								"multiplicity": "1"
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMRKNMtSPKX2w=",
+								"_parent": {
+									"$ref": "AAAAAAGMRKNMtSPI8Bc="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMRJ0WxyEuCRw="
+								},
+								"multiplicity": "1"
+							}
+						}
+					],
+					"attributes": [
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMRJp87yAttr0=",
+							"_parent": {
+								"$ref": "AAAAAAGMRJgvmR97yI8="
+							},
+							"name": "num",
+							"type": ""
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMRJq+NyA0fLw=",
+							"_parent": {
+								"$ref": "AAAAAAGMRJgvmR97yI8="
+							},
+							"name": "nom",
+							"type": ""
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMRJrRtiA7cDs=",
+							"_parent": {
+								"$ref": "AAAAAAGMRJgvmR97yI8="
+							},
+							"name": "adresseA",
+							"type": ""
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMRJsB9yBCXZE=",
+							"_parent": {
+								"$ref": "AAAAAAGMRJgvmR97yI8="
+							},
+							"name": "téléphone",
+							"type": ""
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAGMRJkzSB/CT3g=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Matériel",
+					"ownedElements": [
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAGMRKNVVCSwTCc=",
+							"_parent": {
+								"$ref": "AAAAAAGMRJkzSB/CT3g="
+							},
+							"name": "Concerne",
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMRKNVVSSxal8=",
+								"_parent": {
+									"$ref": "AAAAAAGMRKNVVCSwTCc="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMRJkzSB/CT3g="
+								},
+								"multiplicity": "1..*"
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMRKNVVSSySXg=",
+								"_parent": {
+									"$ref": "AAAAAAGMRKNVVCSwTCc="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMRJ0WxyEuCRw="
+								},
+								"multiplicity": "1"
+							}
+						}
+					],
+					"attributes": [
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMRJ5CnSHK1Sk=",
+							"_parent": {
+								"$ref": "AAAAAAGMRJkzSB/CT3g="
+							},
+							"name": "état",
+							"type": ""
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMRJ5hTCHR9Qw=",
+							"_parent": {
+								"$ref": "AAAAAAGMRJkzSB/CT3g="
+							},
+							"name": "type",
+							"type": ""
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMRJ5/EiHYevk=",
+							"_parent": {
+								"$ref": "AAAAAAGMRJkzSB/CT3g="
+							},
+							"name": "qtte",
+							"type": ""
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAGMRJnixx/sbD0=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Class1"
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAGMRJyJlyBNibk=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Class2",
+					"ownedElements": [
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAGMRJyeISCfnnI=",
+							"_parent": {
+								"$ref": "AAAAAAGMRJyJlyBNibk="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMRJyeISCgOVU=",
+								"_parent": {
+									"$ref": "AAAAAAGMRJyeISCfnnI="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMRJyJlyBNibk="
+								}
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMRJyeIiChHvY=",
+								"_parent": {
+									"$ref": "AAAAAAGMRJyeISCfnnI="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMRJkzSB/CT3g="
+								},
+								"navigable": "navigable"
+							}
+						},
+						{
+							"_type": "UMLGeneralization",
+							"_id": "AAAAAAGMRJztEyEVy3M=",
+							"_parent": {
+								"$ref": "AAAAAAGMRJyJlyBNibk="
+							},
+							"source": {
+								"$ref": "AAAAAAGMRJyJlyBNibk="
+							},
+							"target": {
+								"$ref": "AAAAAAGMRJkzSB/CT3g="
+							}
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAGMRJyRdyB2Voc=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Dimension",
+					"ownedElements": [
+						{
+							"_type": "UMLGeneralization",
+							"_id": "AAAAAAGMRKN99iqkr6A=",
+							"_parent": {
+								"$ref": "AAAAAAGMRJyRdyB2Voc="
+							},
+							"source": {
+								"$ref": "AAAAAAGMRJyRdyB2Voc="
+							},
+							"target": {
+								"$ref": "AAAAAAGMRJkzSB/CT3g="
+							}
+						}
+					],
+					"attributes": [
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMRKGWqiImE8s=",
+							"_parent": {
+								"$ref": "AAAAAAGMRJyRdyB2Voc="
+							},
+							"name": "Poids",
+							"type": ""
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMRKGomSItuyI=",
+							"_parent": {
+								"$ref": "AAAAAAGMRJyRdyB2Voc="
+							},
+							"name": "Longueur",
+							"type": ""
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMRKHOSiI03PU=",
+							"_parent": {
+								"$ref": "AAAAAAGMRJyRdyB2Voc="
+							},
+							"name": "Largeur",
+							"type": ""
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMRKHdOCI77+Q=",
+							"_parent": {
+								"$ref": "AAAAAAGMRJyRdyB2Voc="
+							},
+							"name": "Hauteur",
+							"type": ""
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAGMRJ0WxyEuCRw=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Location",
+					"ownedElements": [
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAGMRKIV/iJCz0Q=",
+							"_parent": {
+								"$ref": "AAAAAAGMRJ0WxyEuCRw="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMRKIV/iJDAPo=",
+								"_parent": {
+									"$ref": "AAAAAAGMRKIV/iJCz0Q="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMRJ0WxyEuCRw="
+								}
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMRKIV/yJE/Ts=",
+								"_parent": {
+									"$ref": "AAAAAAGMRKIV/iJCz0Q="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMRJgGUR9REFw="
+								}
+							}
+						},
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAGMRKM+4SLjZ/o=",
+							"_parent": {
+								"$ref": "AAAAAAGMRJ0WxyEuCRw="
+							},
+							"name": "Effectue",
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMRKM+4SLkp0E=",
+								"_parent": {
+									"$ref": "AAAAAAGMRKM+4SLjZ/o="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMRJ0WxyEuCRw="
+								},
+								"multiplicity": "1..*"
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMRKM+4SLltYs=",
+								"_parent": {
+									"$ref": "AAAAAAGMRKM+4SLjZ/o="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMRJgGUR9REFw="
+								},
+								"multiplicity": "1"
+							}
+						}
+					],
+					"attributes": [
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMRJ7CbCHqJ/o=",
+							"_parent": {
+								"$ref": "AAAAAAGMRJ0WxyEuCRw="
+							},
+							"name": "idAgence",
+							"type": ""
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMRJ7vkiHx+Yc=",
+							"_parent": {
+								"$ref": "AAAAAAGMRJ0WxyEuCRw="
+							},
+							"name": "NumContrat",
+							"type": ""
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMRJ8vJiH4uzc=",
+							"_parent": {
+								"$ref": "AAAAAAGMRJ0WxyEuCRw="
+							},
+							"name": "dateDébut",
+							"type": ""
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMRKAgmSIAxb4=",
+							"_parent": {
+								"$ref": "AAAAAAGMRJ0WxyEuCRw="
+							},
+							"name": "duréeLoc",
+							"type": ""
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMRKBk6iIHJJI=",
+							"_parent": {
+								"$ref": "AAAAAAGMRJ0WxyEuCRw="
+							},
+							"name": "dateRetourEff",
+							"type": ""
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAGMRJ1PTyFYlPI=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Catalogue",
+					"ownedElements": [
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAGMRKNljSc2SwQ=",
+							"_parent": {
+								"$ref": "AAAAAAGMRJ1PTyFYlPI="
+							},
+							"name": "Description",
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMRKNljSc37Tg=",
+								"_parent": {
+									"$ref": "AAAAAAGMRKNljSc2SwQ="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMRJ1PTyFYlPI="
+								},
+								"multiplicity": "1..*"
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMRKNljSc4mHs=",
+								"_parent": {
+									"$ref": "AAAAAAGMRKNljSc2SwQ="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMRJkzSB/CT3g="
+								},
+								"multiplicity": "1"
+							}
+						},
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAGMRKNs/SkmCfM=",
+							"_parent": {
+								"$ref": "AAAAAAGMRJ1PTyFYlPI="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMRKNs/SknVrs=",
+								"_parent": {
+									"$ref": "AAAAAAGMRKNs/SkmCfM="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMRJ1PTyFYlPI="
+								},
+								"multiplicity": "1..*"
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMRKNs/Sko4tY=",
+								"_parent": {
+									"$ref": "AAAAAAGMRKNs/SkmCfM="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMRJgvmR97yI8="
+								},
+								"multiplicity": "1"
+							}
+						}
+					],
+					"attributes": [
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMRKELQiIQ2xY=",
+							"_parent": {
+								"$ref": "AAAAAAGMRJ1PTyFYlPI="
+							},
+							"name": "RéférenceM",
+							"type": ""
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMRKE08CIXu7c=",
+							"_parent": {
+								"$ref": "AAAAAAGMRJ1PTyFYlPI="
+							},
+							"name": "destinationM",
+							"type": ""
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMRKFYcCIeveA=",
+							"_parent": {
+								"$ref": "AAAAAAGMRJ1PTyFYlPI="
+							},
+							"name": "PrixLoc",
+							"type": ""
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAGMRJ2Q0CGCd8E=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Location"
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAGMRKZTGGlQO7c=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "DateLoc",
+					"ownedElements": [
+						{
+							"_type": "UMLAssociationClassLink",
+							"_id": "AAAAAAGMRKchfG8Lxc4=",
+							"_parent": {
+								"$ref": "AAAAAAGMRKZTGGlQO7c="
+							},
+							"classSide": {
+								"$ref": "AAAAAAGMRKZTGGlQO7c="
+							},
+							"associationSide": {
+								"$ref": "AAAAAAGMRKNVVCSwTCc="
+							}
+						},
+						{
+							"_type": "UMLAssociationClassLink",
+							"_id": "AAAAAAGMRKd6WniyXoA=",
+							"_parent": {
+								"$ref": "AAAAAAGMRKZTGGlQO7c="
+							},
+							"classSide": {
+								"$ref": "AAAAAAGMRKZTGGlQO7c="
+							},
+							"associationSide": {
+								"$ref": "AAAAAAGMRKNMtSPI8Bc="
+							}
+						}
+					],
+					"attributes": [
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMRKZzJ2ofEa8=",
+							"_parent": {
+								"$ref": "AAAAAAGMRKZTGGlQO7c="
+							},
+							"name": "DateRetour",
+							"type": ""
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMRKbM0WrLgX8=",
+							"_parent": {
+								"$ref": "AAAAAAGMRKZTGGlQO7c="
+							},
+							"name": "Durée",
+							"type": ""
+						}
+					]
+				}
+			]
+		}
+	]
+}
\ No newline at end of file
diff --git a/23BDD/TP8.mdj b/23BDD/TP8.mdj
new file mode 100644
index 0000000..f7fd671
--- /dev/null
+++ b/23BDD/TP8.mdj
@@ -0,0 +1,4259 @@
+{
+	"_type": "Project",
+	"_id": "AAAAAAFF+h6SjaM2Hec=",
+	"name": "Untitled",
+	"ownedElements": [
+		{
+			"_type": "UMLModel",
+			"_id": "AAAAAAFF+qBWK6M3Z8Y=",
+			"_parent": {
+				"$ref": "AAAAAAFF+h6SjaM2Hec="
+			},
+			"name": "Model",
+			"ownedElements": [
+				{
+					"_type": "UMLClassDiagram",
+					"_id": "AAAAAAFF+qBtyKM79qY=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Main",
+					"defaultDiagram": true,
+					"ownedViews": [
+						{
+							"_type": "UMLClassView",
+							"_id": "AAAAAAGMaKMcQFULKbU=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMaKMcP1UJdLw="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAGMaKMcQFUMlOI=",
+									"_parent": {
+										"$ref": "AAAAAAGMaKMcQFULKbU="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaKMcP1UJdLw="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMaKMcQFUNiHQ=",
+											"_parent": {
+												"$ref": "AAAAAAGMaKMcQFUMlOI="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -688,
+											"top": -304,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMaKMcQFUOnyk=",
+											"_parent": {
+												"$ref": "AAAAAAGMaKMcQFUMlOI="
+											},
+											"font": "Arial;13;1",
+											"left": 69,
+											"top": 71,
+											"width": 95.748046875,
+											"height": 13,
+											"text": "Personne"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMaKMcQVUPgdA=",
+											"_parent": {
+												"$ref": "AAAAAAGMaKMcQFUMlOI="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -688,
+											"top": -304,
+											"width": 73.67724609375,
+											"height": 13,
+											"text": "(from Model)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMaKMcQVUQi2A=",
+											"_parent": {
+												"$ref": "AAAAAAGMaKMcQFUMlOI="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -688,
+											"top": -304,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 64,
+									"top": 64,
+									"width": 105.748046875,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAGMaKMcQFUNiHQ="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAGMaKMcQFUOnyk="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAGMaKMcQVUPgdA="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAGMaKMcQVUQi2A="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAGMaKMcQVURNQo=",
+									"_parent": {
+										"$ref": "AAAAAAGMaKMcQFULKbU="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaKMcP1UJdLw="
+									},
+									"subViews": [
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMaKNSU1Vfts8=",
+											"_parent": {
+												"$ref": "AAAAAAGMaKMcQVURNQo="
+											},
+											"model": {
+												"$ref": "AAAAAAGMaKNSTVVcNIg="
+											},
+											"font": "Arial;13;0",
+											"left": 69,
+											"top": 94,
+											"width": 95.748046875,
+											"height": 13,
+											"text": "+Nom",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMaKNsCVVm90E=",
+											"_parent": {
+												"$ref": "AAAAAAGMaKMcQVURNQo="
+											},
+											"model": {
+												"$ref": "AAAAAAGMaKNsBVVjn/c="
+											},
+											"font": "Arial;13;0",
+											"left": 69,
+											"top": 109,
+											"width": 95.748046875,
+											"height": 13,
+											"text": "+Prénom",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMaKOgOVVt2Rg=",
+											"_parent": {
+												"$ref": "AAAAAAGMaKMcQVURNQo="
+											},
+											"model": {
+												"$ref": "AAAAAAGMaKOgNVVqJd8="
+											},
+											"font": "Arial;13;0",
+											"left": 69,
+											"top": 124,
+											"width": 95.748046875,
+											"height": 13,
+											"text": "+DateNaissance",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMaKjw8VnfitQ=",
+											"_parent": {
+												"$ref": "AAAAAAGMaKMcQVURNQo="
+											},
+											"model": {
+												"$ref": "AAAAAAGMaKjw3Fncyak="
+											},
+											"font": "Arial;13;0",
+											"left": 69,
+											"top": 139,
+											"width": 95.748046875,
+											"height": 13,
+											"text": "+Adresse",
+											"horizontalAlignment": 0
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 64,
+									"top": 89,
+									"width": 105.748046875,
+									"height": 68
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAGMaKMcQVUSqyg=",
+									"_parent": {
+										"$ref": "AAAAAAGMaKMcQFULKbU="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaKMcP1UJdLw="
+									},
+									"font": "Arial;13;0",
+									"left": 64,
+									"top": 157,
+									"width": 105.748046875,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAGMaKMcQVUTZ5M=",
+									"_parent": {
+										"$ref": "AAAAAAGMaKMcQFULKbU="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaKMcP1UJdLw="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -344,
+									"top": -152,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAGMaKMcQVUUaRw=",
+									"_parent": {
+										"$ref": "AAAAAAGMaKMcQFULKbU="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaKMcP1UJdLw="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -344,
+									"top": -152,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 64,
+							"top": 64,
+							"width": 105.748046875,
+							"height": 103,
+							"nameCompartment": {
+								"$ref": "AAAAAAGMaKMcQFUMlOI="
+							},
+							"attributeCompartment": {
+								"$ref": "AAAAAAGMaKMcQVURNQo="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAGMaKMcQVUSqyg="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAGMaKMcQVUTZ5M="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAGMaKMcQVUUaRw="
+							}
+						},
+						{
+							"_type": "UMLClassView",
+							"_id": "AAAAAAGMaKaMi1abwU8=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMaKaMi1aZKj8="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAGMaKaMjFac2g0=",
+									"_parent": {
+										"$ref": "AAAAAAGMaKaMi1abwU8="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaKaMi1aZKj8="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMaKaMjFadojY=",
+											"_parent": {
+												"$ref": "AAAAAAGMaKaMjFac2g0="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 128,
+											"top": -928,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMaKaMjFaeV/A=",
+											"_parent": {
+												"$ref": "AAAAAAGMaKaMjFac2g0="
+											},
+											"font": "Arial;13;1",
+											"left": 285,
+											"top": 55,
+											"width": 82.01806640625,
+											"height": 13,
+											"text": "Marié"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMaKaMjFafaEk=",
+											"_parent": {
+												"$ref": "AAAAAAGMaKaMjFac2g0="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 128,
+											"top": -928,
+											"width": 73.67724609375,
+											"height": 13,
+											"text": "(from Model)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMaKaMjFaggPo=",
+											"_parent": {
+												"$ref": "AAAAAAGMaKaMjFac2g0="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": 128,
+											"top": -928,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 280,
+									"top": 48,
+									"width": 92.01806640625,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAGMaKaMjFadojY="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAGMaKaMjFaeV/A="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAGMaKaMjFafaEk="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAGMaKaMjFaggPo="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAGMaKaMjFahHME=",
+									"_parent": {
+										"$ref": "AAAAAAGMaKaMi1abwU8="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaKaMi1aZKj8="
+									},
+									"subViews": [
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMaKkVG1ou+Ns=",
+											"_parent": {
+												"$ref": "AAAAAAGMaKaMjFahHME="
+											},
+											"model": {
+												"$ref": "AAAAAAGMaKkVFVorXL4="
+											},
+											"font": "Arial;13;0",
+											"left": 285,
+											"top": 78,
+											"width": 82.01806640625,
+											"height": 13,
+											"text": "+DateMariage",
+											"horizontalAlignment": 0
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 280,
+									"top": 73,
+									"width": 92.01806640625,
+									"height": 23
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAGMaKaMjFailmM=",
+									"_parent": {
+										"$ref": "AAAAAAGMaKaMi1abwU8="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaKaMi1aZKj8="
+									},
+									"font": "Arial;13;0",
+									"left": 280,
+									"top": 96,
+									"width": 92.01806640625,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAGMaKaMjFajsh4=",
+									"_parent": {
+										"$ref": "AAAAAAGMaKaMi1abwU8="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaKaMi1aZKj8="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 64,
+									"top": -464,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAGMaKaMjFakGrA=",
+									"_parent": {
+										"$ref": "AAAAAAGMaKaMi1abwU8="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaKaMi1aZKj8="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 64,
+									"top": -464,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 280,
+							"top": 48,
+							"width": 92.01806640625,
+							"height": 58,
+							"nameCompartment": {
+								"$ref": "AAAAAAGMaKaMjFac2g0="
+							},
+							"attributeCompartment": {
+								"$ref": "AAAAAAGMaKaMjFahHME="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAGMaKaMjFailmM="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAGMaKaMjFajsh4="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAGMaKaMjFakGrA="
+							}
+						},
+						{
+							"_type": "UMLAssociationView",
+							"_id": "AAAAAAGMaKmXqFrjCpo=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMaKmXp1rfycA="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMaKmXqVrk3Bw=",
+									"_parent": {
+										"$ref": "AAAAAAGMaKmXqFrjCpo="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaKmXp1rfycA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 214,
+									"top": 37,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMaKmXqFrjCpo="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMaKmXqVrlhKI=",
+									"_parent": {
+										"$ref": "AAAAAAGMaKmXqFrjCpo="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaKmXp1rfycA="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 229,
+									"top": 37,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMaKmXqFrjCpo="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMaKmXqVrmsj8=",
+									"_parent": {
+										"$ref": "AAAAAAGMaKmXqFrjCpo="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaKmXp1rfycA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 185,
+									"top": 38,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMaKmXqFrjCpo="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMaKmXqVrnCjw=",
+									"_parent": {
+										"$ref": "AAAAAAGMaKmXqFrjCpo="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaKmXqFrgk/A="
+									},
+									"font": "Arial;13;0",
+									"left": 79,
+									"top": 32,
+									"width": 45.17626953125,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMaKmXqFrjCpo="
+									},
+									"edgePosition": 2,
+									"text": "+Enfant"
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMaKmXqVro5Nk=",
+									"_parent": {
+										"$ref": "AAAAAAGMaKmXqFrjCpo="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaKmXqFrgk/A="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 87,
+									"top": 29,
+									"height": 13,
+									"alpha": 0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAGMaKmXqFrjCpo="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMaKmXqVrpWw0=",
+									"_parent": {
+										"$ref": "AAAAAAGMaKmXqFrjCpo="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaKmXqFrgk/A="
+									},
+									"font": "Arial;13;0",
+									"left": 119,
+									"top": 36,
+									"width": 19.5126953125,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAGMaKmXqFrjCpo="
+									},
+									"edgePosition": 2,
+									"text": "0..*"
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMaKmXqVrq99M=",
+									"_parent": {
+										"$ref": "AAAAAAGMaKmXqFrjCpo="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaKmXqFrhZdA="
+									},
+									"font": "Arial;13;0",
+									"left": 172,
+									"top": 123,
+									"width": 45.8935546875,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMaKmXqFrjCpo="
+									},
+									"text": "+Parent"
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMaKmXqVrrWyM=",
+									"_parent": {
+										"$ref": "AAAAAAGMaKmXqFrjCpo="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaKmXqFrhZdA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 197,
+									"top": 137,
+									"height": 13,
+									"alpha": -0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAGMaKmXqFrjCpo="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMaKmXqVrsydQ=",
+									"_parent": {
+										"$ref": "AAAAAAGMaKmXqFrjCpo="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaKmXqFrhZdA="
+									},
+									"font": "Arial;13;0",
+									"left": 180,
+									"top": 96,
+									"width": 21.68359375,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAGMaKmXqFrjCpo="
+									},
+									"text": "1..2"
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAGMaKmXqVrtgBY=",
+									"_parent": {
+										"$ref": "AAAAAAGMaKmXqFrjCpo="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaKmXqFrgk/A="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -344,
+									"top": -152,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAGMaKmXqVrup5o=",
+									"_parent": {
+										"$ref": "AAAAAAGMaKmXqFrjCpo="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaKmXqFrhZdA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -344,
+									"top": -152,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAGMaKMcQFULKbU="
+							},
+							"tail": {
+								"$ref": "AAAAAAGMaKMcQFULKbU="
+							},
+							"points": "116:64;116:44;200:44;200:115;169:115",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAGMaKmXqVrk3Bw="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAGMaKmXqVrlhKI="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAGMaKmXqVrmsj8="
+							},
+							"showEndOrder": "hide",
+							"tailRoleNameLabel": {
+								"$ref": "AAAAAAGMaKmXqVrnCjw="
+							},
+							"tailPropertyLabel": {
+								"$ref": "AAAAAAGMaKmXqVro5Nk="
+							},
+							"tailMultiplicityLabel": {
+								"$ref": "AAAAAAGMaKmXqVrpWw0="
+							},
+							"headRoleNameLabel": {
+								"$ref": "AAAAAAGMaKmXqVrq99M="
+							},
+							"headPropertyLabel": {
+								"$ref": "AAAAAAGMaKmXqVrrWyM="
+							},
+							"headMultiplicityLabel": {
+								"$ref": "AAAAAAGMaKmXqVrsydQ="
+							},
+							"tailQualifiersCompartment": {
+								"$ref": "AAAAAAGMaKmXqVrtgBY="
+							},
+							"headQualifiersCompartment": {
+								"$ref": "AAAAAAGMaKmXqVrup5o="
+							}
+						},
+						{
+							"_type": "UMLAssociationClassLinkView",
+							"_id": "AAAAAAGMaKqF0l5nKK4=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMaKqF0l5mXdM="
+							},
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAGMaKmXqFrjCpo="
+							},
+							"tail": {
+								"$ref": "AAAAAAGMaKaMi1abwU8="
+							},
+							"lineStyle": 1,
+							"points": "279:77;200:79"
+						},
+						{
+							"_type": "UMLClassView",
+							"_id": "AAAAAAGMaKxXRl/QYso=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMaKxXRl/OSMU="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAGMaKxXRl/RXwk=",
+									"_parent": {
+										"$ref": "AAAAAAGMaKxXRl/QYso="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaKxXRl/OSMU="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMaKxXRl/SKkU=",
+											"_parent": {
+												"$ref": "AAAAAAGMaKxXRl/RXwk="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -528,
+											"top": -32,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMaKxXRl/TisM=",
+											"_parent": {
+												"$ref": "AAAAAAGMaKxXRl/RXwk="
+											},
+											"font": "Arial;13;1",
+											"left": 293,
+											"top": 503,
+											"width": 95.748046875,
+											"height": 13,
+											"text": "Personne"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMaKxXRl/UNog=",
+											"_parent": {
+												"$ref": "AAAAAAGMaKxXRl/RXwk="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -528,
+											"top": -32,
+											"width": 73.67724609375,
+											"height": 13,
+											"text": "(from Model)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMaKxXRl/VBWk=",
+											"_parent": {
+												"$ref": "AAAAAAGMaKxXRl/RXwk="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -528,
+											"top": -32,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 288,
+									"top": 496,
+									"width": 105.748046875,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAGMaKxXRl/SKkU="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAGMaKxXRl/TisM="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAGMaKxXRl/UNog="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAGMaKxXRl/VBWk="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAGMaKxXRl/W6bw=",
+									"_parent": {
+										"$ref": "AAAAAAGMaKxXRl/QYso="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaKxXRl/OSMU="
+									},
+									"subViews": [
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMaKyda2BAYcY=",
+											"_parent": {
+												"$ref": "AAAAAAGMaKxXRl/W6bw="
+											},
+											"model": {
+												"$ref": "AAAAAAGMaKydY2A6kqI="
+											},
+											"font": "Arial;13;0",
+											"left": 293,
+											"top": 526,
+											"width": 95.748046875,
+											"height": 13,
+											"text": "+Nom",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMaKy20mBobSk=",
+											"_parent": {
+												"$ref": "AAAAAAGMaKxXRl/W6bw="
+											},
+											"model": {
+												"$ref": "AAAAAAGMaKy2yWBiP9Y="
+											},
+											"font": "Arial;13;0",
+											"left": 293,
+											"top": 541,
+											"width": 95.748046875,
+											"height": 13,
+											"text": "+Prénom",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMaKzGfGCQhP8=",
+											"_parent": {
+												"$ref": "AAAAAAGMaKxXRl/W6bw="
+											},
+											"model": {
+												"$ref": "AAAAAAGMaKzGeWCKzL8="
+											},
+											"font": "Arial;13;0",
+											"left": 293,
+											"top": 556,
+											"width": 95.748046875,
+											"height": 13,
+											"text": "+DateNaissance",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMaKzn8WC4lN8=",
+											"_parent": {
+												"$ref": "AAAAAAGMaKxXRl/W6bw="
+											},
+											"model": {
+												"$ref": "AAAAAAGMaKzn6WCy5G0="
+											},
+											"font": "Arial;13;0",
+											"left": 293,
+											"top": 571,
+											"width": 95.748046875,
+											"height": 13,
+											"text": "+Adresse",
+											"horizontalAlignment": 0
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 288,
+									"top": 521,
+									"width": 105.748046875,
+									"height": 68
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAGMaKxXRl/XfUs=",
+									"_parent": {
+										"$ref": "AAAAAAGMaKxXRl/QYso="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaKxXRl/OSMU="
+									},
+									"font": "Arial;13;0",
+									"left": 288,
+									"top": 589,
+									"width": 105.748046875,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAGMaKxXRl/YAcU=",
+									"_parent": {
+										"$ref": "AAAAAAGMaKxXRl/QYso="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaKxXRl/OSMU="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -264,
+									"top": -16,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAGMaKxXRl/Zn5Y=",
+									"_parent": {
+										"$ref": "AAAAAAGMaKxXRl/QYso="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaKxXRl/OSMU="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -264,
+									"top": -16,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 288,
+							"top": 496,
+							"width": 105.748046875,
+							"height": 103,
+							"nameCompartment": {
+								"$ref": "AAAAAAGMaKxXRl/RXwk="
+							},
+							"attributeCompartment": {
+								"$ref": "AAAAAAGMaKxXRl/W6bw="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAGMaKxXRl/XfUs="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAGMaKxXRl/YAcU="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAGMaKxXRl/Zn5Y="
+							}
+						},
+						{
+							"_type": "UMLClassView",
+							"_id": "AAAAAAGMaK0M1WEiPyU=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMaK0M1WEgWuc="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAGMaK0M1WEjy2Y=",
+									"_parent": {
+										"$ref": "AAAAAAGMaK0M1WEiPyU="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaK0M1WEgWuc="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMaK0M1WEkFs8=",
+											"_parent": {
+												"$ref": "AAAAAAGMaK0M1WEjy2Y="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -496,
+											"top": 112,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMaK0M1WElg/E=",
+											"_parent": {
+												"$ref": "AAAAAAGMaK0M1WEjy2Y="
+											},
+											"font": "Arial;13;1",
+											"left": 69,
+											"top": 759,
+											"width": 47.67724609375,
+											"height": 13,
+											"text": "Homme"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMaK0M1WEmszA=",
+											"_parent": {
+												"$ref": "AAAAAAGMaK0M1WEjy2Y="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -496,
+											"top": 112,
+											"width": 73.67724609375,
+											"height": 13,
+											"text": "(from Model)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMaK0M1WEnRdU=",
+											"_parent": {
+												"$ref": "AAAAAAGMaK0M1WEjy2Y="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -496,
+											"top": 112,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 64,
+									"top": 752,
+									"width": 57.67724609375,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAGMaK0M1WEkFs8="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAGMaK0M1WElg/E="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAGMaK0M1WEmszA="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAGMaK0M1WEnRdU="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAGMaK0M1WEoIq4=",
+									"_parent": {
+										"$ref": "AAAAAAGMaK0M1WEiPyU="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaK0M1WEgWuc="
+									},
+									"font": "Arial;13;0",
+									"left": 64,
+									"top": 777,
+									"width": 57.67724609375,
+									"height": 10
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAGMaK0M1mEp5wE=",
+									"_parent": {
+										"$ref": "AAAAAAGMaK0M1WEiPyU="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaK0M1WEgWuc="
+									},
+									"font": "Arial;13;0",
+									"left": 64,
+									"top": 787,
+									"width": 57.67724609375,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAGMaK0M1mEqsZ8=",
+									"_parent": {
+										"$ref": "AAAAAAGMaK0M1WEiPyU="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaK0M1WEgWuc="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -248,
+									"top": 56,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAGMaK0M1mErhq4=",
+									"_parent": {
+										"$ref": "AAAAAAGMaK0M1WEiPyU="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaK0M1WEgWuc="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -248,
+									"top": 56,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 64,
+							"top": 752,
+							"width": 57.67724609375,
+							"height": 45,
+							"nameCompartment": {
+								"$ref": "AAAAAAGMaK0M1WEjy2Y="
+							},
+							"attributeCompartment": {
+								"$ref": "AAAAAAGMaK0M1WEoIq4="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAGMaK0M1mEp5wE="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAGMaK0M1mEqsZ8="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAGMaK0M1mErhq4="
+							}
+						},
+						{
+							"_type": "UMLClassView",
+							"_id": "AAAAAAGMaK0kdWF2Jqg=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMaK0kdGF0dDM="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAGMaK0kdWF3sqQ=",
+									"_parent": {
+										"$ref": "AAAAAAGMaK0kdWF2Jqg="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaK0kdGF0dDM="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMaK0kdWF47h8=",
+											"_parent": {
+												"$ref": "AAAAAAGMaK0kdWF3sqQ="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -448,
+											"top": 80,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMaK0kdWF58oM=",
+											"_parent": {
+												"$ref": "AAAAAAGMaK0kdWF3sqQ="
+											},
+											"font": "Arial;13;1",
+											"left": 557,
+											"top": 759,
+											"width": 45.51904296875,
+											"height": 13,
+											"text": "Femme"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMaK0kdWF68vQ=",
+											"_parent": {
+												"$ref": "AAAAAAGMaK0kdWF3sqQ="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -448,
+											"top": 80,
+											"width": 73.67724609375,
+											"height": 13,
+											"text": "(from Model)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMaK0kdWF76Ws=",
+											"_parent": {
+												"$ref": "AAAAAAGMaK0kdWF3sqQ="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -448,
+											"top": 80,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 552,
+									"top": 752,
+									"width": 55.51904296875,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAGMaK0kdWF47h8="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAGMaK0kdWF58oM="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAGMaK0kdWF68vQ="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAGMaK0kdWF76Ws="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAGMaK0kdWF80AE=",
+									"_parent": {
+										"$ref": "AAAAAAGMaK0kdWF2Jqg="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaK0kdGF0dDM="
+									},
+									"font": "Arial;13;0",
+									"left": 552,
+									"top": 777,
+									"width": 55.51904296875,
+									"height": 10
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAGMaK0kdWF9c0o=",
+									"_parent": {
+										"$ref": "AAAAAAGMaK0kdWF2Jqg="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaK0kdGF0dDM="
+									},
+									"font": "Arial;13;0",
+									"left": 552,
+									"top": 787,
+									"width": 55.51904296875,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAGMaK0kdWF+h/I=",
+									"_parent": {
+										"$ref": "AAAAAAGMaK0kdWF2Jqg="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaK0kdGF0dDM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -224,
+									"top": 40,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAGMaK0kdWF/hOU=",
+									"_parent": {
+										"$ref": "AAAAAAGMaK0kdWF2Jqg="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaK0kdGF0dDM="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -224,
+									"top": 40,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 552,
+							"top": 752,
+							"width": 55.51904296875,
+							"height": 45,
+							"nameCompartment": {
+								"$ref": "AAAAAAGMaK0kdWF3sqQ="
+							},
+							"attributeCompartment": {
+								"$ref": "AAAAAAGMaK0kdWF80AE="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAGMaK0kdWF9c0o="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAGMaK0kdWF+h/I="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAGMaK0kdWF/hOU="
+							}
+						},
+						{
+							"_type": "UMLGeneralizationView",
+							"_id": "AAAAAAGMaK3Z9mIDTU8=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMaK3Z9WIB3qo="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMaK3Z9mIETeo=",
+									"_parent": {
+										"$ref": "AAAAAAGMaK3Z9mIDTU8="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaK3Z9WIB3qo="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 191,
+									"top": 655,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMaK3Z9mIDTU8="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMaK3Z92IFsrY=",
+									"_parent": {
+										"$ref": "AAAAAAGMaK3Z9mIDTU8="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaK3Z9WIB3qo="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 181,
+									"top": 644,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMaK3Z9mIDTU8="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMaK3Z92IGHdY=",
+									"_parent": {
+										"$ref": "AAAAAAGMaK3Z9mIDTU8="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaK3Z9WIB3qo="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 212,
+									"top": 678,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMaK3Z9mIDTU8="
+									},
+									"edgePosition": 1
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAGMaKxXRl/QYso="
+							},
+							"tail": {
+								"$ref": "AAAAAAGMaK0M1WEiPyU="
+							},
+							"lineStyle": 1,
+							"points": "117:751;287:596",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAGMaK3Z9mIETeo="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAGMaK3Z92IFsrY="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAGMaK3Z92IGHdY="
+							}
+						},
+						{
+							"_type": "UMLGeneralizationView",
+							"_id": "AAAAAAGMaK3wRWK2RqY=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMaK3wRGK0gK4="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMaK3wRWK3kHU=",
+									"_parent": {
+										"$ref": "AAAAAAGMaK3wRWK2RqY="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaK3wRGK0gK4="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 463,
+									"top": 678,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMaK3wRWK2RqY="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMaK3wRWK4om8=",
+									"_parent": {
+										"$ref": "AAAAAAGMaK3wRWK2RqY="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaK3wRGK0gK4="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 453,
+									"top": 689,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMaK3wRWK2RqY="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMaK3wRWK5nuk=",
+									"_parent": {
+										"$ref": "AAAAAAGMaK3wRWK2RqY="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaK3wRGK0gK4="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 484,
+									"top": 657,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMaK3wRWK2RqY="
+									},
+									"edgePosition": 1
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAGMaKxXRl/QYso="
+							},
+							"tail": {
+								"$ref": "AAAAAAGMaK0kdWF2Jqg="
+							},
+							"lineStyle": 1,
+							"points": "555:751;394:598",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAGMaK3wRWK3kHU="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAGMaK3wRWK4om8="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAGMaK3wRWK5nuk="
+							}
+						},
+						{
+							"_type": "UMLClassView",
+							"_id": "AAAAAAGMaK3/7WL0auE=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMaK3/7GLy7NQ="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAGMaK3/7WL1EyU=",
+									"_parent": {
+										"$ref": "AAAAAAGMaK3/7WL0auE="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaK3/7GLy7NQ="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMaK3/7WL23sk=",
+											"_parent": {
+												"$ref": "AAAAAAGMaK3/7WL1EyU="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -560,
+											"top": 96,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMaK3/7WL3+Y0=",
+											"_parent": {
+												"$ref": "AAAAAAGMaK3/7WL1EyU="
+											},
+											"font": "Arial;13;1",
+											"left": 293,
+											"top": 903,
+											"width": 82.01806640625,
+											"height": 13,
+											"text": "Marié"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMaK3/7WL4Z9U=",
+											"_parent": {
+												"$ref": "AAAAAAGMaK3/7WL1EyU="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -560,
+											"top": 96,
+											"width": 73.67724609375,
+											"height": 13,
+											"text": "(from Model)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMaK3/7WL5SlE=",
+											"_parent": {
+												"$ref": "AAAAAAGMaK3/7WL1EyU="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -560,
+											"top": 96,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 288,
+									"top": 896,
+									"width": 92.01806640625,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAGMaK3/7WL23sk="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAGMaK3/7WL3+Y0="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAGMaK3/7WL4Z9U="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAGMaK3/7WL5SlE="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAGMaK3/7WL6OYo=",
+									"_parent": {
+										"$ref": "AAAAAAGMaK3/7WL0auE="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaK3/7GLy7NQ="
+									},
+									"subViews": [
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMaK4es2NqGQs=",
+											"_parent": {
+												"$ref": "AAAAAAGMaK3/7WL6OYo="
+											},
+											"model": {
+												"$ref": "AAAAAAGMaK4eoWNkJVM="
+											},
+											"font": "Arial;13;0",
+											"left": 293,
+											"top": 926,
+											"width": 82.01806640625,
+											"height": 13,
+											"text": "+DateMariage",
+											"horizontalAlignment": 0
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 288,
+									"top": 921,
+									"width": 92.01806640625,
+									"height": 23
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAGMaK3/7WL7rso=",
+									"_parent": {
+										"$ref": "AAAAAAGMaK3/7WL0auE="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaK3/7GLy7NQ="
+									},
+									"font": "Arial;13;0",
+									"left": 288,
+									"top": 944,
+									"width": 92.01806640625,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAGMaK3/7mL82Bk=",
+									"_parent": {
+										"$ref": "AAAAAAGMaK3/7WL0auE="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaK3/7GLy7NQ="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -280,
+									"top": 48,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAGMaK3/7mL9Akg=",
+									"_parent": {
+										"$ref": "AAAAAAGMaK3/7WL0auE="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaK3/7GLy7NQ="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -280,
+									"top": 48,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 288,
+							"top": 896,
+							"width": 92.01806640625,
+							"height": 58,
+							"nameCompartment": {
+								"$ref": "AAAAAAGMaK3/7WL1EyU="
+							},
+							"attributeCompartment": {
+								"$ref": "AAAAAAGMaK3/7WL6OYo="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAGMaK3/7WL7rso="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAGMaK3/7mL82Bk="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAGMaK3/7mL9Akg="
+							}
+						},
+						{
+							"_type": "UMLAssociationView",
+							"_id": "AAAAAAGMaK5NZGQIspg=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMaK5NY2QE49w="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMaK5NZGQJaIE=",
+									"_parent": {
+										"$ref": "AAAAAAGMaK5NZGQIspg="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaK5NY2QE49w="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 336,
+									"top": 753,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMaK5NZGQIspg="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMaK5NZGQKRAE=",
+									"_parent": {
+										"$ref": "AAAAAAGMaK5NZGQIspg="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaK5NY2QE49w="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 336,
+									"top": 738,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMaK5NZGQIspg="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMaK5NZGQLsBs=",
+									"_parent": {
+										"$ref": "AAAAAAGMaK5NZGQIspg="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaK5NY2QE49w="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 336,
+									"top": 783,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMaK5NZGQIspg="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMaK5NZGQMjtA=",
+									"_parent": {
+										"$ref": "AAAAAAGMaK5NZGQIspg="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaK5NY2QF3jc="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 147,
+									"top": 753,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMaK5NZGQIspg="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMaK5NZGQN1Hg=",
+									"_parent": {
+										"$ref": "AAAAAAGMaK5NZGQIspg="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaK5NY2QF3jc="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 150,
+									"top": 739,
+									"height": 13,
+									"alpha": 0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAGMaK5NZGQIspg="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMaK5NZGQOnjQ=",
+									"_parent": {
+										"$ref": "AAAAAAGMaK5NZGQIspg="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaK5NY2QF3jc="
+									},
+									"font": "Arial;13;0",
+									"left": 133,
+									"top": 780,
+									"width": 21.68359375,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAGMaK5NZGQIspg="
+									},
+									"edgePosition": 2,
+									"text": "0..1"
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMaK5NZGQPbkM=",
+									"_parent": {
+										"$ref": "AAAAAAGMaK5NZGQIspg="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaK5NY2QG2FA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 525,
+									"top": 753,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMaK5NZGQIspg="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMaK5NZGQQOac=",
+									"_parent": {
+										"$ref": "AAAAAAGMaK5NZGQIspg="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaK5NY2QG2FA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 522,
+									"top": 739,
+									"height": 13,
+									"alpha": -0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAGMaK5NZGQIspg="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMaK5NZGQRV/E=",
+									"_parent": {
+										"$ref": "AAAAAAGMaK5NZGQIspg="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaK5NY2QG2FA="
+									},
+									"font": "Arial;13;0",
+									"left": 519,
+									"top": 780,
+									"width": 21.68359375,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAGMaK5NZGQIspg="
+									},
+									"text": "0..1"
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAGMaK5NZGQSOAc=",
+									"_parent": {
+										"$ref": "AAAAAAGMaK5NZGQIspg="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaK5NY2QF3jc="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -248,
+									"top": 40,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAGMaK5NZGQTL/g=",
+									"_parent": {
+										"$ref": "AAAAAAGMaK5NZGQIspg="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaK5NY2QG2FA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -248,
+									"top": 40,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAGMaK0kdWF2Jqg="
+							},
+							"tail": {
+								"$ref": "AAAAAAGMaK0M1WEiPyU="
+							},
+							"lineStyle": 1,
+							"points": "122:774;551:774",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAGMaK5NZGQJaIE="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAGMaK5NZGQKRAE="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAGMaK5NZGQLsBs="
+							},
+							"showEndOrder": "hide",
+							"tailRoleNameLabel": {
+								"$ref": "AAAAAAGMaK5NZGQMjtA="
+							},
+							"tailPropertyLabel": {
+								"$ref": "AAAAAAGMaK5NZGQN1Hg="
+							},
+							"tailMultiplicityLabel": {
+								"$ref": "AAAAAAGMaK5NZGQOnjQ="
+							},
+							"headRoleNameLabel": {
+								"$ref": "AAAAAAGMaK5NZGQPbkM="
+							},
+							"headPropertyLabel": {
+								"$ref": "AAAAAAGMaK5NZGQQOac="
+							},
+							"headMultiplicityLabel": {
+								"$ref": "AAAAAAGMaK5NZGQRV/E="
+							},
+							"tailQualifiersCompartment": {
+								"$ref": "AAAAAAGMaK5NZGQSOAc="
+							},
+							"headQualifiersCompartment": {
+								"$ref": "AAAAAAGMaK5NZGQTL/g="
+							}
+						},
+						{
+							"_type": "UMLAssociationClassLinkView",
+							"_id": "AAAAAAGMaK8OXGbRpAA=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMaK8OXGbQ03Y="
+							},
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAGMaK5NZGQIspg="
+							},
+							"tail": {
+								"$ref": "AAAAAAGMaK3/7WL0auE="
+							},
+							"lineStyle": 1,
+							"points": "334:895;336:774"
+						},
+						{
+							"_type": "UMLClassView",
+							"_id": "AAAAAAGMaLNgwmlwFOU=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMaLNgwmlugqs="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAGMaLNgwmlxgLQ=",
+									"_parent": {
+										"$ref": "AAAAAAGMaLNgwmlwFOU="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaLNgwmlugqs="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMaLNgwmlyi/g=",
+											"_parent": {
+												"$ref": "AAAAAAGMaLNgwmlxgLQ="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -640,
+											"top": -144,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMaLNgwmlztDM=",
+											"_parent": {
+												"$ref": "AAAAAAGMaLNgwmlxgLQ="
+											},
+											"font": "Arial;13;1",
+											"left": 645,
+											"top": 239,
+											"width": 85.6298828125,
+											"height": 13,
+											"text": "Film"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMaLNgwml0HGM=",
+											"_parent": {
+												"$ref": "AAAAAAGMaLNgwmlxgLQ="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -640,
+											"top": -144,
+											"width": 73.67724609375,
+											"height": 13,
+											"text": "(from Model)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMaLNgwml13Ro=",
+											"_parent": {
+												"$ref": "AAAAAAGMaLNgwmlxgLQ="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -640,
+											"top": -144,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 640,
+									"top": 232,
+									"width": 95.6298828125,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAGMaLNgwmlyi/g="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAGMaLNgwmlztDM="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAGMaLNgwml0HGM="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAGMaLNgwml13Ro="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAGMaLNgw2l2zXY=",
+									"_parent": {
+										"$ref": "AAAAAAGMaLNgwmlwFOU="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaLNgwmlugqs="
+									},
+									"subViews": [
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMaLOG/Wox35Y=",
+											"_parent": {
+												"$ref": "AAAAAAGMaLNgw2l2zXY="
+											},
+											"model": {
+												"$ref": "AAAAAAGMaLOG7mook7k="
+											},
+											"font": "Arial;13;0",
+											"left": 645,
+											"top": 262,
+											"width": 85.6298828125,
+											"height": 13,
+											"text": "+CodeFilm {id}",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMaLOjTmp6I5k=",
+											"_parent": {
+												"$ref": "AAAAAAGMaLNgw2l2zXY="
+											},
+											"model": {
+												"$ref": "AAAAAAGMaLOjPmpxBvQ="
+											},
+											"font": "Arial;13;0",
+											"left": 645,
+											"top": 277,
+											"width": 85.6298828125,
+											"height": 13,
+											"text": "+Titre",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMaLPEF2rDjnw=",
+											"_parent": {
+												"$ref": "AAAAAAGMaLNgw2l2zXY="
+											},
+											"model": {
+												"$ref": "AAAAAAGMaLPEFGq6uhg="
+											},
+											"font": "Arial;13;0",
+											"left": 645,
+											"top": 292,
+											"width": 85.6298828125,
+											"height": 13,
+											"text": "+acteurs",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMaLPkNmsMiRg=",
+											"_parent": {
+												"$ref": "AAAAAAGMaLNgw2l2zXY="
+											},
+											"model": {
+												"$ref": "AAAAAAGMaLPkM2sDQ1E="
+											},
+											"font": "Arial;13;0",
+											"left": 645,
+											"top": 307,
+											"width": 85.6298828125,
+											"height": 13,
+											"text": "+Realisateur",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMaLP47WtVKlM=",
+											"_parent": {
+												"$ref": "AAAAAAGMaLNgw2l2zXY="
+											},
+											"model": {
+												"$ref": "AAAAAAGMaLP45GtMvm4="
+											},
+											"font": "Arial;13;0",
+											"left": 645,
+											"top": 322,
+											"width": 85.6298828125,
+											"height": 13,
+											"text": "+Genre",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMaLQQN2ueCe0=",
+											"_parent": {
+												"$ref": "AAAAAAGMaLNgw2l2zXY="
+											},
+											"model": {
+												"$ref": "AAAAAAGMaLQQM2uVLCI="
+											},
+											"font": "Arial;13;0",
+											"left": 645,
+											"top": 337,
+											"width": 85.6298828125,
+											"height": 13,
+											"text": "+Durée",
+											"horizontalAlignment": 0
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 640,
+									"top": 257,
+									"width": 95.6298828125,
+									"height": 98
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAGMaLNgw2l3dSI=",
+									"_parent": {
+										"$ref": "AAAAAAGMaLNgwmlwFOU="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaLNgwmlugqs="
+									},
+									"font": "Arial;13;0",
+									"left": 640,
+									"top": 355,
+									"width": 95.6298828125,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAGMaLNgw2l4GF0=",
+									"_parent": {
+										"$ref": "AAAAAAGMaLNgwmlwFOU="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaLNgwmlugqs="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -320,
+									"top": -72,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAGMaLNgw2l5wQw=",
+									"_parent": {
+										"$ref": "AAAAAAGMaLNgwmlwFOU="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaLNgwmlugqs="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -320,
+									"top": -72,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 640,
+							"top": 232,
+							"width": 95.6298828125,
+							"height": 133,
+							"nameCompartment": {
+								"$ref": "AAAAAAGMaLNgwmlxgLQ="
+							},
+							"attributeCompartment": {
+								"$ref": "AAAAAAGMaLNgw2l2zXY="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAGMaLNgw2l3dSI="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAGMaLNgw2l4GF0="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAGMaLNgw2l5wQw="
+							}
+						},
+						{
+							"_type": "UMLClassView",
+							"_id": "AAAAAAGMaLT2UXq9xCY=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMaLT2UXq72HA="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAGMaLT2UXq+U/Y=",
+									"_parent": {
+										"$ref": "AAAAAAGMaLT2UXq9xCY="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaLT2UXq72HA="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMaLT2UXq/dDw=",
+											"_parent": {
+												"$ref": "AAAAAAGMaLT2UXq+U/Y="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -1056,
+											"top": -640,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMaLT2UXrAVoA=",
+											"_parent": {
+												"$ref": "AAAAAAGMaLT2UXq+U/Y="
+											},
+											"font": "Arial;13;1",
+											"left": 997,
+											"top": 143,
+											"width": 84.89990234375,
+											"height": 13,
+											"text": "DVD"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMaLT2UXrBD8Y=",
+											"_parent": {
+												"$ref": "AAAAAAGMaLT2UXq+U/Y="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -1056,
+											"top": -640,
+											"width": 73.67724609375,
+											"height": 13,
+											"text": "(from Model)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMaLT2UXrCicQ=",
+											"_parent": {
+												"$ref": "AAAAAAGMaLT2UXq+U/Y="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -1056,
+											"top": -640,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 992,
+									"top": 136,
+									"width": 94.89990234375,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAGMaLT2UXq/dDw="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAGMaLT2UXrAVoA="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAGMaLT2UXrBD8Y="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAGMaLT2UXrCicQ="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAGMaLT2UXrDTK8=",
+									"_parent": {
+										"$ref": "AAAAAAGMaLT2UXq9xCY="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaLT2UXq72HA="
+									},
+									"subViews": [
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMaLeDjYjBfJA=",
+											"_parent": {
+												"$ref": "AAAAAAGMaLT2UXrDTK8="
+											},
+											"model": {
+												"$ref": "AAAAAAGMaLeDg4i480o="
+											},
+											"font": "Arial;13;0",
+											"left": 997,
+											"top": 166,
+											"width": 84.89990234375,
+											"height": 13,
+											"text": "+NumDVD {id}",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMaLeXjYkrArQ=",
+											"_parent": {
+												"$ref": "AAAAAAGMaLT2UXrDTK8="
+											},
+											"model": {
+												"$ref": "AAAAAAGMaLeXiYkijaI="
+											},
+											"font": "Arial;13;0",
+											"left": 997,
+											"top": 181,
+											"width": 84.89990234375,
+											"height": 13,
+											"text": "+DateService",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMaLfLqImVMAU=",
+											"_parent": {
+												"$ref": "AAAAAAGMaLT2UXrDTK8="
+											},
+											"model": {
+												"$ref": "AAAAAAGMaLfLpImMa+I="
+											},
+											"font": "Arial;13;0",
+											"left": 997,
+											"top": 196,
+											"width": 84.89990234375,
+											"height": 13,
+											"text": "+état",
+											"horizontalAlignment": 0
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 992,
+									"top": 161,
+									"width": 94.89990234375,
+									"height": 53
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAGMaLT2UXrEm6o=",
+									"_parent": {
+										"$ref": "AAAAAAGMaLT2UXq9xCY="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaLT2UXq72HA="
+									},
+									"font": "Arial;13;0",
+									"left": 992,
+									"top": 214,
+									"width": 94.89990234375,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAGMaLT2UXrFnTM=",
+									"_parent": {
+										"$ref": "AAAAAAGMaLT2UXq9xCY="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaLT2UXq72HA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -528,
+									"top": -320,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAGMaLT2UXrG03Q=",
+									"_parent": {
+										"$ref": "AAAAAAGMaLT2UXq9xCY="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaLT2UXq72HA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -528,
+									"top": -320,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 992,
+							"top": 136,
+							"width": 94.89990234375,
+							"height": 88,
+							"nameCompartment": {
+								"$ref": "AAAAAAGMaLT2UXq+U/Y="
+							},
+							"attributeCompartment": {
+								"$ref": "AAAAAAGMaLT2UXrDTK8="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAGMaLT2UXrEm6o="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAGMaLT2UXrFnTM="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAGMaLT2UXrG03Q="
+							}
+						},
+						{
+							"_type": "UMLAssociationView",
+							"_id": "AAAAAAGMaLUlQ3x21tg=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMaLUlQXxyIb0="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMaLUlQ3x3BiI=",
+									"_parent": {
+										"$ref": "AAAAAAGMaLUlQ3x21tg="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaLUlQXxyIb0="
+									},
+									"font": "Arial;13;0",
+									"left": 830,
+									"top": 217,
+									"width": 57.4462890625,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMaLUlQ3x21tg="
+									},
+									"edgePosition": 1,
+									"text": "+Sur"
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMaLUlQ3x4Ntw=",
+									"_parent": {
+										"$ref": "AAAAAAGMaLUlQ3x21tg="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaLUlQXxyIb0="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 853,
+									"top": 203,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMaLUlQ3x21tg="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMaLUlQ3x512w=",
+									"_parent": {
+										"$ref": "AAAAAAGMaLUlQ3x21tg="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaLUlQXxyIb0="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 867,
+									"top": 246,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMaLUlQ3x21tg="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMaLUlQ3x6UW8=",
+									"_parent": {
+										"$ref": "AAAAAAGMaLUlQ3x21tg="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaLUlQnxzQCw="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 755,
+									"top": 253,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMaLUlQ3x21tg="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMaLUlQ3x7oRI=",
+									"_parent": {
+										"$ref": "AAAAAAGMaLUlQ3x21tg="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaLUlQnxzQCw="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 753,
+									"top": 240,
+									"height": 13,
+									"alpha": 0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAGMaLUlQ3x21tg="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMaLUlQ3x8o14=",
+									"_parent": {
+										"$ref": "AAAAAAGMaLUlQ3x21tg="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaLUlQnxzQCw="
+									},
+									"font": "Arial;13;0",
+									"left": 757,
+									"top": 280,
+									"width": 7.22998046875,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAGMaLUlQ3x21tg="
+									},
+									"edgePosition": 2,
+									"text": "1"
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMaLUlQ3x9UEM=",
+									"_parent": {
+										"$ref": "AAAAAAGMaLUlQ3x21tg="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaLUlQnx06Lc="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 961,
+									"top": 183,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMaLUlQ3x21tg="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMaLUlQ3x+Ch8=",
+									"_parent": {
+										"$ref": "AAAAAAGMaLUlQ3x21tg="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaLUlQnx06Lc="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 955,
+									"top": 171,
+									"height": 13,
+									"alpha": -0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAGMaLUlQ3x21tg="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMaLUlRHx/mRU=",
+									"_parent": {
+										"$ref": "AAAAAAGMaLUlQ3x21tg="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaLUlQnx06Lc="
+									},
+									"font": "Arial;13;0",
+									"left": 965,
+									"top": 207,
+									"width": 19.5126953125,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAGMaLUlQ3x21tg="
+									},
+									"text": "1..*"
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAGMaLUlRHyAF24=",
+									"_parent": {
+										"$ref": "AAAAAAGMaLUlQ3x21tg="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaLUlQnxzQCw="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -528,
+									"top": -280,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAGMaLUlRHyBOkA=",
+									"_parent": {
+										"$ref": "AAAAAAGMaLUlQ3x21tg="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaLUlQnx06Lc="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -528,
+									"top": -280,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAGMaLT2UXq9xCY="
+							},
+							"tail": {
+								"$ref": "AAAAAAGMaLNgwmlwFOU="
+							},
+							"lineStyle": 1,
+							"points": "736:282;991:195",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAGMaLUlQ3x3BiI="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAGMaLUlQ3x4Ntw="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAGMaLUlQ3x512w="
+							},
+							"showEndOrder": "hide",
+							"tailRoleNameLabel": {
+								"$ref": "AAAAAAGMaLUlQ3x6UW8="
+							},
+							"tailPropertyLabel": {
+								"$ref": "AAAAAAGMaLUlQ3x7oRI="
+							},
+							"tailMultiplicityLabel": {
+								"$ref": "AAAAAAGMaLUlQ3x8o14="
+							},
+							"headRoleNameLabel": {
+								"$ref": "AAAAAAGMaLUlQ3x9UEM="
+							},
+							"headPropertyLabel": {
+								"$ref": "AAAAAAGMaLUlQ3x+Ch8="
+							},
+							"headMultiplicityLabel": {
+								"$ref": "AAAAAAGMaLUlRHx/mRU="
+							},
+							"tailQualifiersCompartment": {
+								"$ref": "AAAAAAGMaLUlRHyAF24="
+							},
+							"headQualifiersCompartment": {
+								"$ref": "AAAAAAGMaLUlRHyBOkA="
+							}
+						},
+						{
+							"_type": "FreelineEdgeView",
+							"_id": "AAAAAAGMaLZZx4LXn8U=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"font": "Arial;13;0",
+							"lineStyle": 1,
+							"points": "64:624;336:720;624:624",
+							"lineMode": 2
+						},
+						{
+							"_type": "UMLTextView",
+							"_id": "AAAAAAGMaLZ4P4OPUPw=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"font": "Arial;13;0",
+							"left": 80,
+							"top": 608,
+							"width": 132.5478515625,
+							"height": 25,
+							"text": "{Partitionnement}"
+						},
+						{
+							"_type": "UMLClassView",
+							"_id": "AAAAAAGMaLj7/Yr1GcU=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMaLj7/Yrzcco="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAGMaLj7/Yr2ciQ=",
+									"_parent": {
+										"$ref": "AAAAAAGMaLj7/Yr1GcU="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaLj7/Yrzcco="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMaLj7/Yr3ZB0=",
+											"_parent": {
+												"$ref": "AAAAAAGMaLj7/Yr2ciQ="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -800,
+											"top": -352,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMaLj7/Yr4TVE=",
+											"_parent": {
+												"$ref": "AAAAAAGMaLj7/Yr2ciQ="
+											},
+											"font": "Arial;13;1",
+											"left": 1005,
+											"top": 455,
+											"width": 69.03076171875,
+											"height": 13,
+											"text": "Adhérent"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMaLj7/Yr5lvE=",
+											"_parent": {
+												"$ref": "AAAAAAGMaLj7/Yr2ciQ="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -800,
+											"top": -352,
+											"width": 73.67724609375,
+											"height": 13,
+											"text": "(from Model)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMaLj7/Yr6RcY=",
+											"_parent": {
+												"$ref": "AAAAAAGMaLj7/Yr2ciQ="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -800,
+											"top": -352,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 1000,
+									"top": 448,
+									"width": 79.03076171875,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAGMaLj7/Yr3ZB0="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAGMaLj7/Yr4TVE="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAGMaLj7/Yr5lvE="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAGMaLj7/Yr6RcY="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAGMaLj7/Yr7Sn8=",
+									"_parent": {
+										"$ref": "AAAAAAGMaLj7/Yr1GcU="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaLj7/Yrzcco="
+									},
+									"subViews": [
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMaLkWkIvveNo=",
+											"_parent": {
+												"$ref": "AAAAAAGMaLj7/Yr7Sn8="
+											},
+											"model": {
+												"$ref": "AAAAAAGMaLkWiYvj2RA="
+											},
+											"font": "Arial;13;0",
+											"left": 1005,
+											"top": 478,
+											"width": 69.03076171875,
+											"height": 13,
+											"text": "+Nom {id}",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMaLll3IxZAcI=",
+											"_parent": {
+												"$ref": "AAAAAAGMaLj7/Yr7Sn8="
+											},
+											"model": {
+												"$ref": "AAAAAAGMaLll2YxN61A="
+											},
+											"font": "Arial;13;0",
+											"left": 1005,
+											"top": 493,
+											"width": 69.03076171875,
+											"height": 13,
+											"text": "+Prénom",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMaLl1c4zD8b8=",
+											"_parent": {
+												"$ref": "AAAAAAGMaLj7/Yr7Sn8="
+											},
+											"model": {
+												"$ref": "AAAAAAGMaLl1cIy3QkU="
+											},
+											"font": "Arial;13;0",
+											"left": 1005,
+											"top": 508,
+											"width": 69.03076171875,
+											"height": 13,
+											"text": "+Adresse",
+											"horizontalAlignment": 0
+										},
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMaLmZo40tylY=",
+											"_parent": {
+												"$ref": "AAAAAAGMaLj7/Yr7Sn8="
+											},
+											"model": {
+												"$ref": "AAAAAAGMaLmZn40hCDo="
+											},
+											"font": "Arial;13;0",
+											"left": 1005,
+											"top": 523,
+											"width": 69.03076171875,
+											"height": 13,
+											"text": "+Téléphone",
+											"horizontalAlignment": 0
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 1000,
+									"top": 473,
+									"width": 79.03076171875,
+									"height": 68
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAGMaLj7/Yr8yUw=",
+									"_parent": {
+										"$ref": "AAAAAAGMaLj7/Yr1GcU="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaLj7/Yrzcco="
+									},
+									"font": "Arial;13;0",
+									"left": 1000,
+									"top": 541,
+									"width": 79.03076171875,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAGMaLj7/Yr9fLY=",
+									"_parent": {
+										"$ref": "AAAAAAGMaLj7/Yr1GcU="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaLj7/Yrzcco="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -400,
+									"top": -176,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAGMaLj7/or+Krg=",
+									"_parent": {
+										"$ref": "AAAAAAGMaLj7/Yr1GcU="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaLj7/Yrzcco="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -400,
+									"top": -176,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 1000,
+							"top": 448,
+							"width": 79.03076171875,
+							"height": 118,
+							"nameCompartment": {
+								"$ref": "AAAAAAGMaLj7/Yr2ciQ="
+							},
+							"attributeCompartment": {
+								"$ref": "AAAAAAGMaLj7/Yr7Sn8="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAGMaLj7/Yr8yUw="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAGMaLj7/Yr9fLY="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAGMaLj7/or+Krg="
+							}
+						},
+						{
+							"_type": "UMLAssociationView",
+							"_id": "AAAAAAGMaLn5WZCEfDA=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMaLn5WJCAd04="
+							},
+							"subViews": [
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMaLn5WZCFt+8=",
+									"_parent": {
+										"$ref": "AAAAAAGMaLn5WZCEfDA="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaLn5WJCAd04="
+									},
+									"font": "Arial;13;0",
+									"left": 1005,
+									"top": 328,
+									"width": 36.51171875,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMaLn5WZCEfDA="
+									},
+									"edgePosition": 1,
+									"text": "+Loue"
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMaLn5WpCGBcs=",
+									"_parent": {
+										"$ref": "AAAAAAGMaLn5WZCEfDA="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaLn5WJCAd04="
+									},
+									"visible": null,
+									"font": "Arial;13;0",
+									"left": 1008,
+									"top": 328,
+									"height": 13,
+									"alpha": 1.5707963267948966,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMaLn5WZCEfDA="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMaLn5WpCHiv8=",
+									"_parent": {
+										"$ref": "AAAAAAGMaLn5WZCEfDA="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaLn5WJCAd04="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 1053,
+									"top": 329,
+									"height": 13,
+									"alpha": -1.5707963267948966,
+									"distance": 15,
+									"hostEdge": {
+										"$ref": "AAAAAAGMaLn5WZCEfDA="
+									},
+									"edgePosition": 1
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMaLn5WpCIvJw=",
+									"_parent": {
+										"$ref": "AAAAAAGMaLn5WZCEfDA="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaLn5WJCBr24="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 1023,
+									"top": 415,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMaLn5WZCEfDA="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMaLn5WpCJnzU=",
+									"_parent": {
+										"$ref": "AAAAAAGMaLn5WZCEfDA="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaLn5WJCBr24="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 1010,
+									"top": 412,
+									"height": 13,
+									"alpha": 0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAGMaLn5WZCEfDA="
+									},
+									"edgePosition": 2
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMaLn5WpCKc1I=",
+									"_parent": {
+										"$ref": "AAAAAAGMaLn5WZCEfDA="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaLn5WJCBr24="
+									},
+									"font": "Arial;13;0",
+									"left": 1048,
+									"top": 419,
+									"width": 7.22998046875,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAGMaLn5WZCEfDA="
+									},
+									"edgePosition": 2,
+									"text": "1"
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMaLn5WpCL8rw=",
+									"_parent": {
+										"$ref": "AAAAAAGMaLn5WZCEfDA="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaLn5WJCCdWA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 1023,
+									"top": 244,
+									"height": 13,
+									"alpha": -0.5235987755982988,
+									"distance": 30,
+									"hostEdge": {
+										"$ref": "AAAAAAGMaLn5WZCEfDA="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMaLn5WpCMPog=",
+									"_parent": {
+										"$ref": "AAAAAAGMaLn5WZCEfDA="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaLn5WJCCdWA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": 1009,
+									"top": 246,
+									"height": 13,
+									"alpha": -0.7853981633974483,
+									"distance": 40,
+									"hostEdge": {
+										"$ref": "AAAAAAGMaLn5WZCEfDA="
+									}
+								},
+								{
+									"_type": "EdgeLabelView",
+									"_id": "AAAAAAGMaLn5WpCNjHc=",
+									"_parent": {
+										"$ref": "AAAAAAGMaLn5WZCEfDA="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaLn5WJCCdWA="
+									},
+									"font": "Arial;13;0",
+									"left": 1041,
+									"top": 239,
+									"width": 19.5126953125,
+									"height": 13,
+									"alpha": 0.5235987755982988,
+									"distance": 25,
+									"hostEdge": {
+										"$ref": "AAAAAAGMaLn5WZCEfDA="
+									},
+									"text": "1..*"
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAGMaLn5WpCOYKE=",
+									"_parent": {
+										"$ref": "AAAAAAGMaLn5WZCEfDA="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaLn5WJCBr24="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -528,
+									"top": -280,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLQualifierCompartmentView",
+									"_id": "AAAAAAGMaLn5WpCPfS8=",
+									"_parent": {
+										"$ref": "AAAAAAGMaLn5WZCEfDA="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaLn5WJCCdWA="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -528,
+									"top": -280,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAGMaLT2UXq9xCY="
+							},
+							"tail": {
+								"$ref": "AAAAAAGMaLj7/Yr1GcU="
+							},
+							"lineStyle": 1,
+							"points": "1039:447;1038:224",
+							"showVisibility": true,
+							"nameLabel": {
+								"$ref": "AAAAAAGMaLn5WZCFt+8="
+							},
+							"stereotypeLabel": {
+								"$ref": "AAAAAAGMaLn5WpCGBcs="
+							},
+							"propertyLabel": {
+								"$ref": "AAAAAAGMaLn5WpCHiv8="
+							},
+							"showEndOrder": "hide",
+							"tailRoleNameLabel": {
+								"$ref": "AAAAAAGMaLn5WpCIvJw="
+							},
+							"tailPropertyLabel": {
+								"$ref": "AAAAAAGMaLn5WpCJnzU="
+							},
+							"tailMultiplicityLabel": {
+								"$ref": "AAAAAAGMaLn5WpCKc1I="
+							},
+							"headRoleNameLabel": {
+								"$ref": "AAAAAAGMaLn5WpCL8rw="
+							},
+							"headPropertyLabel": {
+								"$ref": "AAAAAAGMaLn5WpCMPog="
+							},
+							"headMultiplicityLabel": {
+								"$ref": "AAAAAAGMaLn5WpCNjHc="
+							},
+							"tailQualifiersCompartment": {
+								"$ref": "AAAAAAGMaLn5WpCOYKE="
+							},
+							"headQualifiersCompartment": {
+								"$ref": "AAAAAAGMaLn5WpCPfS8="
+							}
+						},
+						{
+							"_type": "UMLClassView",
+							"_id": "AAAAAAGMaLt5XZm1zUk=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMaLt5XZmzakc="
+							},
+							"subViews": [
+								{
+									"_type": "UMLNameCompartmentView",
+									"_id": "AAAAAAGMaLt5XZm2oZQ=",
+									"_parent": {
+										"$ref": "AAAAAAGMaLt5XZm1zUk="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaLt5XZmzakc="
+									},
+									"subViews": [
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMaLt5XZm3pkY=",
+											"_parent": {
+												"$ref": "AAAAAAGMaLt5XZm2oZQ="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -1296,
+											"top": -592,
+											"height": 13
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMaLt5XZm4TjE=",
+											"_parent": {
+												"$ref": "AAAAAAGMaLt5XZm2oZQ="
+											},
+											"font": "Arial;13;1",
+											"left": 1061,
+											"top": 303,
+											"width": 63.2353515625,
+											"height": 13,
+											"text": "Location"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMaLt5XZm5gWI=",
+											"_parent": {
+												"$ref": "AAAAAAGMaLt5XZm2oZQ="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -1296,
+											"top": -592,
+											"width": 73.67724609375,
+											"height": 13,
+											"text": "(from Model)"
+										},
+										{
+											"_type": "LabelView",
+											"_id": "AAAAAAGMaLt5XZm6utg=",
+											"_parent": {
+												"$ref": "AAAAAAGMaLt5XZm2oZQ="
+											},
+											"visible": false,
+											"font": "Arial;13;0",
+											"left": -1296,
+											"top": -592,
+											"height": 13,
+											"horizontalAlignment": 1
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 1056,
+									"top": 296,
+									"width": 73.2353515625,
+									"height": 25,
+									"stereotypeLabel": {
+										"$ref": "AAAAAAGMaLt5XZm3pkY="
+									},
+									"nameLabel": {
+										"$ref": "AAAAAAGMaLt5XZm4TjE="
+									},
+									"namespaceLabel": {
+										"$ref": "AAAAAAGMaLt5XZm5gWI="
+									},
+									"propertyLabel": {
+										"$ref": "AAAAAAGMaLt5XZm6utg="
+									}
+								},
+								{
+									"_type": "UMLAttributeCompartmentView",
+									"_id": "AAAAAAGMaLt5XZm7RUg=",
+									"_parent": {
+										"$ref": "AAAAAAGMaLt5XZm1zUk="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaLt5XZmzakc="
+									},
+									"subViews": [
+										{
+											"_type": "UMLAttributeView",
+											"_id": "AAAAAAGMaLuQ35pwGfE=",
+											"_parent": {
+												"$ref": "AAAAAAGMaLt5XZm7RUg="
+											},
+											"model": {
+												"$ref": "AAAAAAGMaLuQ1pphwiE="
+											},
+											"font": "Arial;13;0",
+											"left": 1061,
+											"top": 326,
+											"width": 63.2353515625,
+											"height": 13,
+											"text": "+NbJours",
+											"horizontalAlignment": 0
+										}
+									],
+									"font": "Arial;13;0",
+									"left": 1056,
+									"top": 321,
+									"width": 73.2353515625,
+									"height": 23
+								},
+								{
+									"_type": "UMLOperationCompartmentView",
+									"_id": "AAAAAAGMaLt5XZm8RFk=",
+									"_parent": {
+										"$ref": "AAAAAAGMaLt5XZm1zUk="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaLt5XZmzakc="
+									},
+									"font": "Arial;13;0",
+									"left": 1056,
+									"top": 344,
+									"width": 73.2353515625,
+									"height": 10
+								},
+								{
+									"_type": "UMLReceptionCompartmentView",
+									"_id": "AAAAAAGMaLt5XZm94k4=",
+									"_parent": {
+										"$ref": "AAAAAAGMaLt5XZm1zUk="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaLt5XZmzakc="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -648,
+									"top": -296,
+									"width": 10,
+									"height": 10
+								},
+								{
+									"_type": "UMLTemplateParameterCompartmentView",
+									"_id": "AAAAAAGMaLt5XZm+aKs=",
+									"_parent": {
+										"$ref": "AAAAAAGMaLt5XZm1zUk="
+									},
+									"model": {
+										"$ref": "AAAAAAGMaLt5XZmzakc="
+									},
+									"visible": false,
+									"font": "Arial;13;0",
+									"left": -648,
+									"top": -296,
+									"width": 10,
+									"height": 10
+								}
+							],
+							"font": "Arial;13;0",
+							"containerChangeable": true,
+							"left": 1056,
+							"top": 296,
+							"width": 73.2353515625,
+							"height": 73,
+							"nameCompartment": {
+								"$ref": "AAAAAAGMaLt5XZm2oZQ="
+							},
+							"attributeCompartment": {
+								"$ref": "AAAAAAGMaLt5XZm7RUg="
+							},
+							"operationCompartment": {
+								"$ref": "AAAAAAGMaLt5XZm8RFk="
+							},
+							"receptionCompartment": {
+								"$ref": "AAAAAAGMaLt5XZm94k4="
+							},
+							"templateParameterCompartment": {
+								"$ref": "AAAAAAGMaLt5XZm+aKs="
+							}
+						},
+						{
+							"_type": "UMLAssociationClassLinkView",
+							"_id": "AAAAAAGMaLwEzZ5jyoU=",
+							"_parent": {
+								"$ref": "AAAAAAFF+qBtyKM79qY="
+							},
+							"model": {
+								"$ref": "AAAAAAGMaLwEzZ5ifUQ="
+							},
+							"font": "Arial;13;0",
+							"head": {
+								"$ref": "AAAAAAGMaLn5WZCEfDA="
+							},
+							"tail": {
+								"$ref": "AAAAAAGMaLt5XZm1zUk="
+							},
+							"lineStyle": 1,
+							"points": "1055:334;1038:335"
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAGMaKMcP1UJdLw=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Personne",
+					"ownedElements": [
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAGMaKSo7lWKkVg=",
+							"_parent": {
+								"$ref": "AAAAAAGMaKMcP1UJdLw="
+							},
+							"name": "Engengré",
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMaKSo71WL3qA=",
+								"_parent": {
+									"$ref": "AAAAAAGMaKSo7lWKkVg="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMaKMcP1UJdLw="
+								},
+								"multiplicity": "1"
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMaKSo71WMuKE=",
+								"_parent": {
+									"$ref": "AAAAAAGMaKSo7lWKkVg="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMaKMiaFUybLQ="
+								},
+								"multiplicity": "1..*"
+							}
+						},
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAGMaKmXp1rfycA=",
+							"_parent": {
+								"$ref": "AAAAAAGMaKMcP1UJdLw="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMaKmXqFrgk/A=",
+								"_parent": {
+									"$ref": "AAAAAAGMaKmXp1rfycA="
+								},
+								"name": "Enfant",
+								"reference": {
+									"$ref": "AAAAAAGMaKMcP1UJdLw="
+								},
+								"multiplicity": "0..*"
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMaKmXqFrhZdA=",
+								"_parent": {
+									"$ref": "AAAAAAGMaKmXp1rfycA="
+								},
+								"name": "Parent",
+								"reference": {
+									"$ref": "AAAAAAGMaKMcP1UJdLw="
+								},
+								"multiplicity": "1..2"
+							}
+						}
+					],
+					"attributes": [
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMaKNSTVVcNIg=",
+							"_parent": {
+								"$ref": "AAAAAAGMaKMcP1UJdLw="
+							},
+							"name": "Nom"
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMaKNsBVVjn/c=",
+							"_parent": {
+								"$ref": "AAAAAAGMaKMcP1UJdLw="
+							},
+							"name": "Prénom"
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMaKOgNVVqJd8=",
+							"_parent": {
+								"$ref": "AAAAAAGMaKMcP1UJdLw="
+							},
+							"name": "DateNaissance"
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMaKjw3Fncyak=",
+							"_parent": {
+								"$ref": "AAAAAAGMaKMcP1UJdLw="
+							},
+							"name": "Adresse"
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAGMaKMiaFUybLQ=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Enfants",
+					"attributes": [
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMaKQde1VzK70=",
+							"_parent": {
+								"$ref": "AAAAAAGMaKMiaFUybLQ="
+							},
+							"name": "Nom"
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMaKRKvVV6A6w=",
+							"_parent": {
+								"$ref": "AAAAAAGMaKMiaFUybLQ="
+							},
+							"name": "Prénom"
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMaKRmA1WBoQ0=",
+							"_parent": {
+								"$ref": "AAAAAAGMaKMiaFUybLQ="
+							},
+							"name": "DateNaissance"
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAGMaKaMi1aZKj8=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Marié",
+					"ownedElements": [
+						{
+							"_type": "UMLAssociationClassLink",
+							"_id": "AAAAAAGMaKhzsFiwlbQ=",
+							"_parent": {
+								"$ref": "AAAAAAGMaKaMi1aZKj8="
+							},
+							"classSide": {
+								"$ref": "AAAAAAGMaKaMi1aZKj8="
+							},
+							"associationSide": {
+								"$ref": "AAAAAAGMaKhTiFf+gfA="
+							}
+						},
+						{
+							"_type": "UMLAssociationClassLink",
+							"_id": "AAAAAAGMaKqF0l5mXdM=",
+							"_parent": {
+								"$ref": "AAAAAAGMaKaMi1aZKj8="
+							},
+							"classSide": {
+								"$ref": "AAAAAAGMaKaMi1aZKj8="
+							},
+							"associationSide": {
+								"$ref": "AAAAAAGMaKmXp1rfycA="
+							}
+						}
+					],
+					"attributes": [
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMaKkVFVorXL4=",
+							"_parent": {
+								"$ref": "AAAAAAGMaKaMi1aZKj8="
+							},
+							"name": "DateMariage"
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAGMaKeCP1cyP4o=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Homme",
+					"ownedElements": [
+						{
+							"_type": "UMLGeneralization",
+							"_id": "AAAAAAGMaKgtmVfcO14=",
+							"_parent": {
+								"$ref": "AAAAAAGMaKeCP1cyP4o="
+							},
+							"source": {
+								"$ref": "AAAAAAGMaKeCP1cyP4o="
+							},
+							"target": {
+								"$ref": "AAAAAAGMaKMcP1UJdLw="
+							}
+						},
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAGMaKhTiFf+gfA=",
+							"_parent": {
+								"$ref": "AAAAAAGMaKeCP1cyP4o="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMaKhTiFf/WK0=",
+								"_parent": {
+									"$ref": "AAAAAAGMaKhTiFf+gfA="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMaKeCP1cyP4o="
+								},
+								"multiplicity": "0..1"
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMaKhTiFgAJnE=",
+								"_parent": {
+									"$ref": "AAAAAAGMaKhTiFf+gfA="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMaKfZT1ewTcQ="
+								},
+								"multiplicity": "0..1"
+							}
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAGMaKfZT1ewTcQ=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Femme",
+					"ownedElements": [
+						{
+							"_type": "UMLGeneralization",
+							"_id": "AAAAAAGMaKhJt1fthFU=",
+							"_parent": {
+								"$ref": "AAAAAAGMaKfZT1ewTcQ="
+							},
+							"source": {
+								"$ref": "AAAAAAGMaKfZT1ewTcQ="
+							},
+							"target": {
+								"$ref": "AAAAAAGMaKMcP1UJdLw="
+							}
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAGMaKxXRl/OSMU=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Personne",
+					"attributes": [
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMaKydY2A6kqI=",
+							"_parent": {
+								"$ref": "AAAAAAGMaKxXRl/OSMU="
+							},
+							"name": "Nom"
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMaKy2yWBiP9Y=",
+							"_parent": {
+								"$ref": "AAAAAAGMaKxXRl/OSMU="
+							},
+							"name": "Prénom"
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMaKzGeWCKzL8=",
+							"_parent": {
+								"$ref": "AAAAAAGMaKxXRl/OSMU="
+							},
+							"name": "DateNaissance"
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMaKzn6WCy5G0=",
+							"_parent": {
+								"$ref": "AAAAAAGMaKxXRl/OSMU="
+							},
+							"name": "Adresse"
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAGMaK0M1WEgWuc=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Homme",
+					"ownedElements": [
+						{
+							"_type": "UMLGeneralization",
+							"_id": "AAAAAAGMaK3Z9WIB3qo=",
+							"_parent": {
+								"$ref": "AAAAAAGMaK0M1WEgWuc="
+							},
+							"source": {
+								"$ref": "AAAAAAGMaK0M1WEgWuc="
+							},
+							"target": {
+								"$ref": "AAAAAAGMaKxXRl/OSMU="
+							}
+						},
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAGMaK5NY2QE49w=",
+							"_parent": {
+								"$ref": "AAAAAAGMaK0M1WEgWuc="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMaK5NY2QF3jc=",
+								"_parent": {
+									"$ref": "AAAAAAGMaK5NY2QE49w="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMaK0M1WEgWuc="
+								},
+								"multiplicity": "0..1"
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMaK5NY2QG2FA=",
+								"_parent": {
+									"$ref": "AAAAAAGMaK5NY2QE49w="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMaK0kdGF0dDM="
+								},
+								"multiplicity": "0..1"
+							}
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAGMaK0kdGF0dDM=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Femme",
+					"ownedElements": [
+						{
+							"_type": "UMLGeneralization",
+							"_id": "AAAAAAGMaK3wRGK0gK4=",
+							"_parent": {
+								"$ref": "AAAAAAGMaK0kdGF0dDM="
+							},
+							"source": {
+								"$ref": "AAAAAAGMaK0kdGF0dDM="
+							},
+							"target": {
+								"$ref": "AAAAAAGMaKxXRl/OSMU="
+							}
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAGMaK3/7GLy7NQ=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Marié",
+					"ownedElements": [
+						{
+							"_type": "UMLAssociationClassLink",
+							"_id": "AAAAAAGMaK8OXGbQ03Y=",
+							"_parent": {
+								"$ref": "AAAAAAGMaK3/7GLy7NQ="
+							},
+							"classSide": {
+								"$ref": "AAAAAAGMaK3/7GLy7NQ="
+							},
+							"associationSide": {
+								"$ref": "AAAAAAGMaK5NY2QE49w="
+							}
+						}
+					],
+					"attributes": [
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMaK4eoWNkJVM=",
+							"_parent": {
+								"$ref": "AAAAAAGMaK3/7GLy7NQ="
+							},
+							"name": "DateMariage"
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAGMaLNgwmlugqs=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Film",
+					"ownedElements": [
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAGMaLUlQXxyIb0=",
+							"_parent": {
+								"$ref": "AAAAAAGMaLNgwmlugqs="
+							},
+							"name": "Sur",
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMaLUlQnxzQCw=",
+								"_parent": {
+									"$ref": "AAAAAAGMaLUlQXxyIb0="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMaLNgwmlugqs="
+								},
+								"multiplicity": "1"
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMaLUlQnx06Lc=",
+								"_parent": {
+									"$ref": "AAAAAAGMaLUlQXxyIb0="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMaLT2UXq72HA="
+								},
+								"multiplicity": "1..*"
+							}
+						},
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAGMaLpSSJP/zeY=",
+							"_parent": {
+								"$ref": "AAAAAAGMaLNgwmlugqs="
+							},
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMaLpSSJQAvac=",
+								"_parent": {
+									"$ref": "AAAAAAGMaLpSSJP/zeY="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMaLNgwmlugqs="
+								}
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMaLpSSJQBmFI=",
+								"_parent": {
+									"$ref": "AAAAAAGMaLpSSJP/zeY="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMaLj7/Yrzcco="
+								}
+							}
+						}
+					],
+					"attributes": [
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMaLOG7mook7k=",
+							"_parent": {
+								"$ref": "AAAAAAGMaLNgwmlugqs="
+							},
+							"name": "CodeFilm",
+							"isID": true
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMaLOjPmpxBvQ=",
+							"_parent": {
+								"$ref": "AAAAAAGMaLNgwmlugqs="
+							},
+							"name": "Titre"
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMaLPEFGq6uhg=",
+							"_parent": {
+								"$ref": "AAAAAAGMaLNgwmlugqs="
+							},
+							"name": "acteurs"
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMaLPkM2sDQ1E=",
+							"_parent": {
+								"$ref": "AAAAAAGMaLNgwmlugqs="
+							},
+							"name": "Realisateur"
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMaLP45GtMvm4=",
+							"_parent": {
+								"$ref": "AAAAAAGMaLNgwmlugqs="
+							},
+							"name": "Genre"
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMaLQQM2uVLCI=",
+							"_parent": {
+								"$ref": "AAAAAAGMaLNgwmlugqs="
+							},
+							"name": "Durée"
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAGMaLT2UXq72HA=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "DVD",
+					"attributes": [
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMaLeDg4i480o=",
+							"_parent": {
+								"$ref": "AAAAAAGMaLT2UXq72HA="
+							},
+							"name": "NumDVD",
+							"isID": true
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMaLeXiYkijaI=",
+							"_parent": {
+								"$ref": "AAAAAAGMaLT2UXq72HA="
+							},
+							"name": "DateService"
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMaLfLpImMa+I=",
+							"_parent": {
+								"$ref": "AAAAAAGMaLT2UXq72HA="
+							},
+							"name": "état"
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAGMaLj7/Yrzcco=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Adhérent",
+					"ownedElements": [
+						{
+							"_type": "UMLAssociation",
+							"_id": "AAAAAAGMaLn5WJCAd04=",
+							"_parent": {
+								"$ref": "AAAAAAGMaLj7/Yrzcco="
+							},
+							"name": "Loue",
+							"end1": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMaLn5WJCBr24=",
+								"_parent": {
+									"$ref": "AAAAAAGMaLn5WJCAd04="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMaLj7/Yrzcco="
+								},
+								"multiplicity": "1"
+							},
+							"end2": {
+								"_type": "UMLAssociationEnd",
+								"_id": "AAAAAAGMaLn5WJCCdWA=",
+								"_parent": {
+									"$ref": "AAAAAAGMaLn5WJCAd04="
+								},
+								"reference": {
+									"$ref": "AAAAAAGMaLT2UXq72HA="
+								},
+								"multiplicity": "1..*"
+							}
+						}
+					],
+					"attributes": [
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMaLkWiYvj2RA=",
+							"_parent": {
+								"$ref": "AAAAAAGMaLj7/Yrzcco="
+							},
+							"name": "Nom",
+							"isID": true
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMaLll2YxN61A=",
+							"_parent": {
+								"$ref": "AAAAAAGMaLj7/Yrzcco="
+							},
+							"name": "Prénom"
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMaLl1cIy3QkU=",
+							"_parent": {
+								"$ref": "AAAAAAGMaLj7/Yrzcco="
+							},
+							"name": "Adresse"
+						},
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMaLmZn40hCDo=",
+							"_parent": {
+								"$ref": "AAAAAAGMaLj7/Yrzcco="
+							},
+							"name": "Téléphone"
+						}
+					]
+				},
+				{
+					"_type": "UMLClass",
+					"_id": "AAAAAAGMaLt5XZmzakc=",
+					"_parent": {
+						"$ref": "AAAAAAFF+qBWK6M3Z8Y="
+					},
+					"name": "Location",
+					"ownedElements": [
+						{
+							"_type": "UMLAssociationClassLink",
+							"_id": "AAAAAAGMaLwEzZ5ifUQ=",
+							"_parent": {
+								"$ref": "AAAAAAGMaLt5XZmzakc="
+							},
+							"classSide": {
+								"$ref": "AAAAAAGMaLt5XZmzakc="
+							},
+							"associationSide": {
+								"$ref": "AAAAAAGMaLn5WJCAd04="
+							}
+						}
+					],
+					"attributes": [
+						{
+							"_type": "UMLAttribute",
+							"_id": "AAAAAAGMaLuQ1pphwiE=",
+							"_parent": {
+								"$ref": "AAAAAAGMaLt5XZmzakc="
+							},
+							"name": "NbJours"
+						}
+					]
+				}
+			]
+		}
+	]
+}
\ No newline at end of file
diff --git a/23BDD/Test.sql b/23BDD/Test.sql
new file mode 100644
index 0000000..80958f0
--- /dev/null
+++ b/23BDD/Test.sql
@@ -0,0 +1,12 @@
+CREATE VIEW CommandeBuveur (numCom, dateCom, nomBuveur)
+AS SELECT NumCom, DateCom, Nom
+FROM Commande NATURAL JOIN Buveur;
+
+CREATE VIEW VIN2 (numvin, cru, region)
+AS SELECT NumVin, cru, Region
+FROM Vin;
+
+CREATE VIEW Paris (Numbuveur, nom, prenom)
+AS SELECT NumBuveur,Nom, Prenom
+FROM Buveur
+WHERE Ville = 'PARIS';
\ No newline at end of file