Compare commits

..

No commits in common. "origin" and "V4.4.8" have entirely different histories.

1694 changed files with 43259 additions and 55689 deletions

View File

@ -1,13 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="icons"/>
<classpathentry kind="src" path="Menu"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-19">
<attributes>
<attribute name="module" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="lib" path="C:/Users/pabr6/git/analyseWriter/MEPTL/libs/cXML.jar"/>
<classpathentry kind="lib" path="C:/Users/pabr6/git/analyseWriter/MEPTL/libs/miglayout15-swing.jar"/>
<classpathentry kind="lib" path="C:/Users/pabr6/git/analyseWriter/MEPTL/libs/zip4j-1.2.7.jar"/>
<classpathentry kind="lib" path="C:/Users/pabr6/eclipse-workspace/zip4j-1.2.7.jar"/>
<classpathentry kind="lib" path="C:/Users/pabr6/git/analyseWriter/MEPTL/miglayout15-swing.jar"/>
<classpathentry kind="lib" path="jgoodies-forms-1.8.0.jar" sourcepath="jgoodies-forms-1.8.0-sources.jar"/>
<classpathentry kind="lib" path="C:/Users/pabr6/eclipse-workspace/Exportation documentation analyseWriter/plugins/documentation.analyseWriter_1.0.0.202212032022.jar"/>
<classpathentry kind="lib" path="C:/Users/pabr6/eclipse-workspace/cXML.jar" sourcepath="/cXML"/>
<classpathentry kind="output" path="bin"/>
</classpath>

3
.gitignore vendored
View File

@ -1,3 +0,0 @@
/base_listes_etudiants.xml
/base_evaluations_analyseWriter.xml
/launch4j.log

View File

@ -1,12 +1,7 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate
org.eclipse.jdt.core.compiler.codegen.targetPlatform=19
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=19
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error

View File

@ -1,28 +1,29 @@
package analyseWriter.fenetres.menu.menucontextuel;
package menucontextuel;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import javax.swing.JPopupMenu;
import analyseWriter.action.actAttribut;
import analyseWriter.action.actCoefficient;
import analyseWriter.action.actCopy;
import analyseWriter.action.actDeleteNode;
import analyseWriter.action.actOu;
import analyseWriter.action.actPaste;
import analyseWriter.fenetres.create;
import analyseWriter.fenetres.menu.sousmenuArbre.mnArbre;
import analyseWriter.fenetres.menu.sousmenuEvaluation.mnEvaluer;
import analyseWriter.list.listeDesNodesAEvaluer;
import analyseWriter.list.listeDesNodesAllContent;
import analyseWriter.list.listeDesNodesAvecOU;
import analyseWriter.list.listeDesNodesPourEvaluationEntetePage;
import analyseWriter.list.listeDesNodesPourEvaluerPage;
import analyseWriter.list.listeDesNodesPourEvaluerPiedDePage;
import analyseWriter.list.listeDesNodesRechercheByContenu;
import analyseWriter.list.listeEvalNameNode;
import analyseWriter.list.listeRechercheParAnchorPageNumber;
import action.actAttribut;
import action.actCoefficient;
import action.actCopy;
import action.actDeleteNode;
import action.actOu;
import action.actPaste;
import cXML.node;
import fenetres.create;
import list.listeDesNodesAEvaluer;
import list.listeDesNodesAllContent;
import list.listeDesNodesAvecOU;
import list.listeDesNodesContientEnfant;
import list.listeDesNodesPourEvaluationEntetePage;
import list.listeDesNodesPourEvaluerPage;
import list.listeDesNodesPourEvaluerPiedDePage;
import list.listeDesNodesRechercheByContenu;
import list.listeEvalNameNode;
import list.listeRechercheParAnchorPageNumber;
import sousmenuArbre.mnArbre;
import sousmenuEvaluation.mnEvaluer;
/**
* Le menu contextuel des nodes dans le tree.</br>
@ -37,7 +38,7 @@ public class CreatePopupMenu extends JPopupMenu {
* Création de la popupmenu.</br>
* @param nod
*/
public CreatePopupMenu(node nod ) {
public CreatePopupMenu(node nod) {
if(nod!=null) {
@ -55,8 +56,8 @@ public class CreatePopupMenu extends JPopupMenu {
if(nod.getNomElt().equals("structurepage")) {
mnPopupTree.addSeparator();
mnPopupTree.add( MnGroupeMethodeEvaluer.menu(nod));
// mnPopupTree.addSeparator();
// mnPopupTree.add(MnGroupeMethodeEvaluerMultiple.menu(nod));
mnPopupTree.addSeparator();
mnPopupTree.add(MnGroupeMethodeEvaluerMultiple.menu(nod));
}
}
@ -84,11 +85,11 @@ public class CreatePopupMenu extends JPopupMenu {
mnPopupTree.add(MnGroupeMethodeEvaluer.menu(nod));
}
// // Le groupe méthode évaluer les nodes enfants
// if(listeDesNodesContientEnfant.isContientEnfant(nod) && nod.getNodes().size()>0) {
// mnPopupTree.addSeparator();
// mnPopupTree.add(MnGroupeMethodeEvaluerMultiple.menu(nod));
// }
// Le groupe méthode évaluer les nodes enfants
if(listeDesNodesContientEnfant.isContientEnfant(nod) && nod.getNodes().size()>0) {
mnPopupTree.addSeparator();
mnPopupTree.add(MnGroupeMethodeEvaluerMultiple.menu(nod));
}
// Le groupe accès aux attributs
mnPopupTree.addSeparator();

View File

@ -0,0 +1,173 @@
package menucontextuel;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import action.actAllContent;
import action.actEvalInitialCreator;
import action.actevalNameCreator;
import cXML.node;
import fenetres.create;
import list.listeDesNodesAllContent;
import list.listeDesNodesAnalyseSpan;
import list.listeDesNodesAnalyseStyle;
import list.listeDesNodesAncrable;
import list.listeDesNodesEvalPlacement;
import list.listeDesNodesFormatageDirect;
import list.listeDesNodesPourEvaluationEntetePage;
import list.listeDesNodesPourEvaluerPage;
import list.listeDesNodesPourEvaluerPiedDePage;
import list.listeEvalNameNode;
import sousmenuEvaluation.mnAnalyseSpan;
import sousmenuEvaluation.mnAnalyseStyle;
import sousmenuEvaluation.mnEvalAncrageNumeroAbsoluPage;
import sousmenuEvaluation.mnEvalEnteteActive;
import sousmenuEvaluation.mnEvalEntetePasActive;
import sousmenuEvaluation.mnEvalFormatageDirect;
import sousmenuEvaluation.mnEvalLegacyStyleParentPresent;
import sousmenuEvaluation.mnEvalNameLegacyStyle;
import sousmenuEvaluation.mnEvalNameNode;
import sousmenuEvaluation.mnEvalNamePage;
import sousmenuEvaluation.mnEvalNameSequence;
import sousmenuEvaluation.mnEvalNombreDePageMaxi;
import sousmenuEvaluation.mnEvalNombreDePageMini;
import sousmenuEvaluation.mnEvalNumeroAbsoluePage;
import sousmenuEvaluation.mnEvalNumeroPage;
import sousmenuEvaluation.mnEvalPasParagrapheVide;
import sousmenuEvaluation.mnEvalPiedPageActive;
import sousmenuEvaluation.mnEvalPiedPagePasActive;
import sousmenuEvaluation.mnEvalPlacementParagraphe;
import sousmenuEvaluation.mnEvalSautPageColonne;
import sousmenuEvaluation.mnEvalTextUserDefined;
import sousmenuEvaluation.mnEvaluerATraversAnalyseStyle;
import sousmenuEvaluation.mnEvaluerDernierEnfant;
import sousmenuEvaluation.mnEvaluerPremierEnfant;
public class MnGroupeMethodeEvaluer {
public static JMenu menu(node nod) {
JMenu mnGroupeMethodeEvaluer = new JMenu("Evaluer le node");
//Image pour evaluer le node
mnGroupeMethodeEvaluer.setIcon( new ImageIcon(create.class.getResource("/resources/evaluatemini.png")));
// Pour le node structure
if(nod.getNomElt().equals("structurepage")) {
mnGroupeMethodeEvaluer.addSeparator();
mnGroupeMethodeEvaluer.add(mnEvalNombreDePageMaxi.menu());
mnGroupeMethodeEvaluer.addSeparator();
mnGroupeMethodeEvaluer.add(mnEvalNombreDePageMini.menu());
}
// Pour la méthode AllContent
if(listeDesNodesAllContent.isAllContent(nod) ) {
mnGroupeMethodeEvaluer.addSeparator();
mnGroupeMethodeEvaluer.add(new actAllContent());
}
// Pour la méthode evalAncrageNumeroAbsoluePage
if(listeDesNodesAncrable.isAncrable(nod)) {
mnGroupeMethodeEvaluer.addSeparator();
mnGroupeMethodeEvaluer.add(mnEvalAncrageNumeroAbsoluPage.menu());
}
// Pourla méthode evalFormatageDirect et evalSautPageColonne
if(listeDesNodesFormatageDirect.isFormatageDirect(nod)) {
mnGroupeMethodeEvaluer.addSeparator();
mnGroupeMethodeEvaluer.add(mnEvalFormatageDirect.menu());
mnGroupeMethodeEvaluer.addSeparator();
mnGroupeMethodeEvaluer.add(mnEvalSautPageColonne.menu());
}
// Pour la méthode evalNameNode
if(listeEvalNameNode.isNodeEvalNameNode(nod)) {
mnGroupeMethodeEvaluer.addSeparator();
mnGroupeMethodeEvaluer.add(mnEvalNameNode.menu());
}
// Pour la méthode analyseStyle et evalNameLegacyStyle
if(listeDesNodesAnalyseStyle.isAnalyseStyle(nod)) {
mnGroupeMethodeEvaluer.addSeparator();
mnGroupeMethodeEvaluer.add(mnAnalyseStyle.menu());
mnGroupeMethodeEvaluer.addSeparator();
mnGroupeMethodeEvaluer.add(mnEvalNameLegacyStyle.menu());
}
// Pour la méthode analyseStyle et evalNameLegacyStyle
if(listeDesNodesAnalyseSpan.isAnalyseSpan(nod)) {
mnGroupeMethodeEvaluer.addSeparator();
mnGroupeMethodeEvaluer.add(mnAnalyseSpan.menu());
}
// Pour la méthode evalPlacement, evalLastChild, evalFirstChild
if(listeDesNodesEvalPlacement.isPlacement(nod)) {
if(!nod.getNomElt().equals("page")) {
mnGroupeMethodeEvaluer.addSeparator();
mnGroupeMethodeEvaluer.add(mnEvalPlacementParagraphe.menu());
}
mnGroupeMethodeEvaluer.addSeparator();
mnGroupeMethodeEvaluer.add(mnEvaluerPremierEnfant.menu());
mnGroupeMethodeEvaluer.addSeparator();
mnGroupeMethodeEvaluer.add(mnEvaluerDernierEnfant.menu());
}
// Pour la méthode evalPasParagrapheVide, evalNamePage, evalNumeroPage, evalNumeroAbsoluePage
if(listeDesNodesPourEvaluerPage.isPage(nod)) {
mnGroupeMethodeEvaluer.addSeparator();
mnGroupeMethodeEvaluer.add(mnEvalPasParagrapheVide.menu());
mnGroupeMethodeEvaluer.addSeparator();
mnGroupeMethodeEvaluer.add(mnEvalNamePage.menu());
mnGroupeMethodeEvaluer.addSeparator();
mnGroupeMethodeEvaluer.add(mnEvalNumeroPage.menu());
mnGroupeMethodeEvaluer.addSeparator();
mnGroupeMethodeEvaluer.add(mnEvalNumeroAbsoluePage.menu());
}
// Pour la méthode evalEnteteActive, evalEntetePasActive
if(listeDesNodesPourEvaluationEntetePage.isEntete(nod)) {
mnGroupeMethodeEvaluer.add(mnEvalEnteteActive.menu());
mnGroupeMethodeEvaluer.addSeparator();
mnGroupeMethodeEvaluer.add(mnEvalEntetePasActive.menu());
}
// Pour la méthode evalPiedPageActive, evalPiedPagePasActive
if(listeDesNodesPourEvaluerPiedDePage.isPiedDePage(nod)) {
mnGroupeMethodeEvaluer.addSeparator();
mnGroupeMethodeEvaluer.add(mnEvalPiedPageActive.menu());
mnGroupeMethodeEvaluer.addSeparator();
mnGroupeMethodeEvaluer.add(mnEvalPiedPagePasActive.menu());
}
// Pour la méthode EvaluerATraversAnalyseStyle
if(nod.getNomElt().equals("style:style")) {
mnGroupeMethodeEvaluer.addSeparator();
mnGroupeMethodeEvaluer.add(mnEvaluerATraversAnalyseStyle.menu());
mnGroupeMethodeEvaluer.addSeparator();
mnGroupeMethodeEvaluer.add(mnEvalLegacyStyleParentPresent.menu());
}
if(nod.getNomElt().equals("meta:initial-creator")) {
mnGroupeMethodeEvaluer.addSeparator();
mnGroupeMethodeEvaluer.add(new actEvalInitialCreator());
}
if(nod.getNomElt().equals("dc:creator")) {
mnGroupeMethodeEvaluer.addSeparator();
mnGroupeMethodeEvaluer.add(new actevalNameCreator());
}
if(nod.getNomElt().equals("text:sequence-decl")) {
mnGroupeMethodeEvaluer.addSeparator();
mnGroupeMethodeEvaluer.add(mnEvalNameSequence.menu());
}
if(nod.getNomElt().equals("text:user-defined") ) { //nod.getNomElt().equals("meta:user-defined")
mnGroupeMethodeEvaluer.addSeparator();
mnGroupeMethodeEvaluer.add(mnEvalTextUserDefined.menu());
}
return mnGroupeMethodeEvaluer;
}
}

View File

@ -0,0 +1,79 @@
package menucontextuel;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import action.actAllContentChilds;
import cXML.node;
import fenetres.create;
import list.listeDesNodesPourEvaluerPage;
import sousmenuEvaluation.mnEvalAncrageNumeroAbsoluPageEnfants;
import sousmenuEvaluation.mnEvalNameLegacyStyleTousLesNodes;
import sousmenuEvaluation.mnEvalNameNodeEnfants;
import sousmenuEvaluation.mnEvalNamePage;
import sousmenuEvaluation.mnEvalNumeroAbsoluePage;
import sousmenuEvaluation.mnEvalNumeroPage;
import sousmenuEvaluation.mnEvalPasParagrapheVideTousLesPages;
import sousmenuEvaluation.mnEvalPlacementDesEnfants;
import sousmenuEvaluation.mnEvalPlacementParagraphe;
import sousmenuEvaluation.mnEvalTousParagraphes;
import sousmenuEvaluation.mnEvaluerStylesParagraphes;
/**
* Pour évaluer les nodes enfants.
* @author pabr6
*
*/
public class MnGroupeMethodeEvaluerMultiple {
public static JMenu menu(node nod) {
JMenu mnGroupeMethodeEvaluerMultiple = new JMenu("Evaluer les nodes enfants");
//Image pour evaluer les nodes enfants
mnGroupeMethodeEvaluerMultiple.setIcon( new ImageIcon(create.class.getResource("/resources/evaluatemultiplemini.png")));
if(nod.getNomElt().equals("structurepage")) {
mnGroupeMethodeEvaluerMultiple.addSeparator();
mnGroupeMethodeEvaluerMultiple.add(new actAllContentChilds());
mnGroupeMethodeEvaluerMultiple.addSeparator();
mnGroupeMethodeEvaluerMultiple.add(mnEvalNamePage.menu());
mnGroupeMethodeEvaluerMultiple.addSeparator();
mnGroupeMethodeEvaluerMultiple.add(mnEvalNumeroPage.menu());
mnGroupeMethodeEvaluerMultiple.addSeparator();
mnGroupeMethodeEvaluerMultiple.add(mnEvalNumeroAbsoluePage.menu());
mnGroupeMethodeEvaluerMultiple.addSeparator();
mnGroupeMethodeEvaluerMultiple.add(mnEvalPasParagrapheVideTousLesPages.menu());
mnGroupeMethodeEvaluerMultiple.addSeparator();
mnGroupeMethodeEvaluerMultiple.add(mnEvalTousParagraphes.menu());
}
if(nod.getNomElt().equals("text:p") || nod.getNomElt().equals("text:h") || nod.getNomElt().equals("text:list") || nod.getNomElt().equals("text:list-item")) {
mnGroupeMethodeEvaluerMultiple.addSeparator();
mnGroupeMethodeEvaluerMultiple.add(new actAllContentChilds());
mnGroupeMethodeEvaluerMultiple.addSeparator();
mnGroupeMethodeEvaluerMultiple.add(mnEvalNameNodeEnfants.menu());
mnGroupeMethodeEvaluerMultiple.addSeparator();
mnGroupeMethodeEvaluerMultiple.add(mnEvalPlacementDesEnfants.menu());
}
if(listeDesNodesPourEvaluerPage.isPage(nod)) {
mnGroupeMethodeEvaluerMultiple.addSeparator();
mnGroupeMethodeEvaluerMultiple.add(new actAllContentChilds());
mnGroupeMethodeEvaluerMultiple.addSeparator();
mnGroupeMethodeEvaluerMultiple.add(mnEvalNameNodeEnfants.menu());
mnGroupeMethodeEvaluerMultiple.addSeparator();
mnGroupeMethodeEvaluerMultiple.add(mnEvalAncrageNumeroAbsoluPageEnfants.menu());
mnGroupeMethodeEvaluerMultiple.addSeparator();
mnGroupeMethodeEvaluerMultiple.add(mnEvalPlacementParagraphe.menu());
mnGroupeMethodeEvaluerMultiple.addSeparator();
mnGroupeMethodeEvaluerMultiple.add(mnEvaluerStylesParagraphes.menu());
mnGroupeMethodeEvaluerMultiple.addSeparator();
mnGroupeMethodeEvaluerMultiple.add(mnEvalNameLegacyStyleTousLesNodes.menu());
}
return mnGroupeMethodeEvaluerMultiple;
}
}

View File

@ -1,19 +1,19 @@
package analyseWriter.fenetres.menu.menucontextuel;
package menucontextuel;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import analyseWriter.fenetres.create;
import analyseWriter.fenetres.menu.sousmenuRepresentation.mnAddMenuNiveauSup1;
import analyseWriter.fenetres.menu.sousmenuRepresentation.mnInsereInformation;
import analyseWriter.fenetres.menu.sousmenuRepresentation.mnInsereInformationMultiple;
import analyseWriter.fenetres.menu.sousmenuRepresentation.mnMarqueNode;
import analyseWriter.fenetres.menu.sousmenuRepresentation.mnSaut;
import analyseWriter.fenetres.menu.sousmenuRepresentation.mnSautMultiple;
import analyseWriter.fenetres.menu.sousmenuRepresentation.mnTitre;
import analyseWriter.list.listeDesNodesInfos;
import analyseWriter.list.listeDesNodesPourEvaluerPage;
import cXML.node;
import fenetres.create;
import list.listeDesNodesInfos;
import list.listeDesNodesPourEvaluerPage;
import sousmenuRepresentation.mnAddMenuNiveauSup1;
import sousmenuRepresentation.mnInsereInformation;
import sousmenuRepresentation.mnInsereInformationMultiple;
import sousmenuRepresentation.mnMarqueNode;
import sousmenuRepresentation.mnSaut;
import sousmenuRepresentation.mnSautMultiple;
import sousmenuRepresentation.mnTitre;
/**
* Menu pour la représentation dans les feedbacks des étudiants.</br>

View File

@ -1,14 +1,14 @@
package analyseWriter.fenetres.menu.menucontextuel;
package menucontextuel;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import analyseWriter.fenetres.create;
import analyseWriter.fenetres.menu.sousmenuRepresentation.mnAddMenuNiveau1;
import analyseWriter.fenetres.menu.sousmenuRepresentation.mnSautNiveau1;
import analyseWriter.fenetres.menu.sousmenuRepresentation.mnTitreNiveau1;
import analyseWriter.fenetres.menu.sousmenuRepresentation.mnaddTitreToutesLesPages;
import cXML.node;
import fenetres.create;
import sousmenuRepresentation.mnAddMenuNiveau1;
import sousmenuRepresentation.mnSautNiveau1;
import sousmenuRepresentation.mnTitreNiveau1;
import sousmenuRepresentation.mnaddTitreToutesLesPages;
/**
* Menu pour la représentation des nodes de niveau 1.</br>

View File

@ -1,16 +1,16 @@
package analyseWriter.fenetres.menu.menucontextuel;
package menucontextuel;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import analyseWriter.fenetres.create;
import analyseWriter.fenetres.menu.sousmenuRecherche.mnRechercheContenuExact;
import analyseWriter.fenetres.menu.sousmenuRecherche.mnRechercheContenuPlusProcheVoisin;
import analyseWriter.fenetres.menu.sousmenuRecherche.mnRechercheIndex;
import analyseWriter.fenetres.menu.sousmenuRecherche.mnRechercheParNumeroPageAncrer;
import analyseWriter.list.listeDesNodesRechercheByContenu;
import analyseWriter.list.listeRechercheParAnchorPageNumber;
import cXML.node;
import fenetres.create;
import list.listeDesNodesRechercheByContenu;
import list.listeRechercheParAnchorPageNumber;
import sousmenuRecherche.mnRechercheContenuExact;
import sousmenuRecherche.mnRechercheContenuPlusProcheVoisin;
import sousmenuRecherche.mnRechercheIndex;
import sousmenuRecherche.mnRechercheParNumeroPageAncrer;
/**
* Menu regroupant les menus permettant de recherche un node par son contenu textuel.</br>

View File

@ -1,13 +1,13 @@
package analyseWriter.fenetres.menu.sousmenuArbre;
package sousmenuArbre;
import javax.swing.JMenu;
import analyseWriter.action.actCollapseAll;
import analyseWriter.action.actCollapseNode;
import analyseWriter.action.actDownNode;
import analyseWriter.action.actExpandAll;
import analyseWriter.action.actExpandNode;
import analyseWriter.action.actUpNode;
import action.actCollapseAll;
import action.actCollapseNode;
import action.actDownNode;
import action.actExpandAll;
import action.actExpandNode;
import action.actUpNode;
/**
* Menu Arbre.</br>

View File

@ -0,0 +1,24 @@
package sousmenuEvaluation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import action.actEvaluerStyleFalse;
import action.actEvaluerStyleTrue;
import fenetres.create;
/**
* Menu analyseStyle.</br>
* @author pabr6
*
*/
public class mnAnalyseSpan{
public static JMenu menu() {
JMenu mnAnalyseStyle = new JMenu("Evaluer le formatage direct");
mnAnalyseStyle.setIcon(new ImageIcon(create.class.getResource("/resources/evaluerspanmini.png")));
mnAnalyseStyle.add(new actEvaluerStyleTrue());
mnAnalyseStyle.add( new actEvaluerStyleFalse());
return mnAnalyseStyle;
}
}

View File

@ -0,0 +1,24 @@
package sousmenuEvaluation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import action.actEvaluerStyleFalse;
import action.actEvaluerStyleTrue;
import fenetres.create;
/**
* Menu analyseStyle.</br>
* @author pabr6
*
*/
public class mnAnalyseStyle{
public static JMenu menu() {
JMenu mnAnalyseStyle = new JMenu("Evaluer le style appliqué");
mnAnalyseStyle.setIcon(new ImageIcon(create.class.getResource("/resources/evaluerstylemini.png")));
mnAnalyseStyle.add(new actEvaluerStyleTrue());
mnAnalyseStyle.add( new actEvaluerStyleFalse());
return mnAnalyseStyle;
}
}

View File

@ -1,11 +1,11 @@
package analyseWriter.fenetres.menu.sousmenuEvaluation;
package sousmenuEvaluation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import analyseWriter.action.actEvaluerStyleTousLesNodesTrue;
import analyseWriter.action.actEvaluerStyleTouslesNodesFalse;
import analyseWriter.fenetres.create;
import action.actEvaluerStyleTousLesNodesTrue;
import action.actEvaluerStyleTouslesNodesFalse;
import fenetres.create;
public class mnAnalyseStyleTousLesNodes {
public static JMenu menu() {

View File

@ -0,0 +1,24 @@
package sousmenuEvaluation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import action.actEvalAncrageNumeroAbsoluePageNon;
import action.actEvalAncrageNumeroAbsoluePageOui;
import fenetres.create;
/**
* Evaluation de l'ancrage du node dans la page par son numéro absolue.</br>
* @author pabr6
*
*/
public class mnEvalAncrageNumeroAbsoluPage{
public static JMenu menu(){
JMenu mnEvalAncrageNumeroAbsoluPageAncrage = new JMenu("Numéro absolue de la page");
mnEvalAncrageNumeroAbsoluPageAncrage.setIcon(new ImageIcon(create.class.getResource("/resources/evalnumeropageancragemini.png")));
mnEvalAncrageNumeroAbsoluPageAncrage.add(new actEvalAncrageNumeroAbsoluePageOui());
mnEvalAncrageNumeroAbsoluPageAncrage.add(new actEvalAncrageNumeroAbsoluePageNon());
return mnEvalAncrageNumeroAbsoluPageAncrage;
}
}

View File

@ -1,11 +1,11 @@
package analyseWriter.fenetres.menu.sousmenuEvaluation;
package sousmenuEvaluation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import analyseWriter.action.actEvalAncrageNumeroAbsoluePageEnfantsNon;
import analyseWriter.action.actEvalAncrageNumeroAbsoluePageEnfantsOui;
import analyseWriter.fenetres.create;
import action.actEvalAncrageNumeroAbsoluePageEnfantsNon;
import action.actEvalAncrageNumeroAbsoluePageEnfantsOui;
import fenetres.create;
/**
*

View File

@ -1,10 +1,11 @@
package analyseWriter.fenetres.menu.sousmenuEvaluation;
package sousmenuEvaluation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import analyseWriter.action.actEvalEnteteActive;
import analyseWriter.fenetres.create;
import action.actEvalEnteteActive;
import action.actEvalEnteteActiveNon;
import fenetres.create;
/**
* Menu entête active.</br>
@ -17,6 +18,7 @@ public class mnEvalEnteteActive{
JMenu mnEvalEnteteActive = new JMenu("Entête activé");
mnEvalEnteteActive.setIcon(new ImageIcon(create.class.getResource("/resources/enteteouimini.png")));
mnEvalEnteteActive.add(new actEvalEnteteActive());
mnEvalEnteteActive.add(new actEvalEnteteActiveNon());
return mnEvalEnteteActive;
}

View File

@ -1,10 +1,11 @@
package analyseWriter.fenetres.menu.sousmenuEvaluation;
package sousmenuEvaluation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import analyseWriter.action.actEvalEntetePasActive;
import analyseWriter.fenetres.create;
import action.actEvalEntetePasActive;
import action.actEvalEntetePasActiveNon;
import fenetres.create;
/**
* Menu entête pas active.</br>
@ -17,6 +18,7 @@ public class mnEvalEntetePasActive{
JMenu mnEvalEntetePasActive = new JMenu("Entête pas activé");
mnEvalEntetePasActive.setIcon(new ImageIcon(create.class.getResource("/resources/entetenonmini.png")));
mnEvalEntetePasActive.add(new actEvalEntetePasActive());
mnEvalEntetePasActive.add(new actEvalEntetePasActiveNon());
return mnEvalEntetePasActive;
}

View File

@ -0,0 +1,26 @@
package sousmenuEvaluation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import action.actEvalFormatageDirectNon;
import action.actEvalFormatageDirectOui;
import fenetres.create;
/**
* Evaluer l'absence ou la présence du formatage direct.</br>
* Uniquement présent sur les paragraphes ou les titres.</br>
* @author pabr6
*
*/
public class mnEvalFormatageDirect{
public static JMenu menu() {
JMenu mnEvalFormatageDirect = new JMenu("Evaluer l'absence ou la présence du formatage direct");
mnEvalFormatageDirect.setIcon( new ImageIcon(create.class.getResource("/resources/evalformatagedirectmini.png")));
mnEvalFormatageDirect.add(new actEvalFormatageDirectOui());
mnEvalFormatageDirect.add(new actEvalFormatageDirectNon());
return mnEvalFormatageDirect;
}
}

View File

@ -0,0 +1,24 @@
package sousmenuEvaluation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import action.actEvalFormatageDirectTousLesNodesFalse;
import action.actEvalFormatageDirectTousLesNodesTrue;
import fenetres.create;
/**
* Evaluer l'absence ou la présence du formatage directe.</br>
* De tous les nodes de la structurepage.</br>
* Uniquement présent sur les paragraphes ou les titres.</br>
* @return
*/
public class mnEvalFormatageDirectTousLesNodes {
public static JMenu menu() {
JMenu mnEvalFormatageDirectTousLesNodes = new JMenu("Evaluer l'absence ou la présence du formatage direct");
mnEvalFormatageDirectTousLesNodes.setIcon( new ImageIcon(create.class.getResource("/resources/evalformatagedirectmini.png")));
mnEvalFormatageDirectTousLesNodes.add(new actEvalFormatageDirectTousLesNodesTrue());
mnEvalFormatageDirectTousLesNodes.add( new actEvalFormatageDirectTousLesNodesFalse());
return mnEvalFormatageDirectTousLesNodes;
}
}

View File

@ -1,11 +1,11 @@
package analyseWriter.fenetres.menu.sousmenuEvaluation;
package sousmenuEvaluation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import analyseWriter.action.actEvaluerLegacyStyleParentFalse;
import analyseWriter.action.actEvaluerLegacyStyleParentTrue;
import analyseWriter.fenetres.create;
import action.actEvaluerLegacyStyleParentFalse;
import action.actEvaluerLegacyStyleParentTrue;
import fenetres.create;
public class mnEvalLegacyStyleParentPresent {
public static JMenu menu(){

View File

@ -0,0 +1,25 @@
package sousmenuEvaluation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import action.actEvaluerNomDuStyleHeriteFalse;
import action.actEvaluerNomDuStyleHeriteTrue;
import fenetres.create;
/**
* Menu pour évaluer le nom du style hérité.</br>
* Permet d'évaluer les formatages directs sans utiliser analyseStyle.</br>
* @author pabr6
*
*/
public class mnEvalNameLegacyStyle{
public static JMenu menu(){
JMenu mnEvalNameLegacyStyle = new JMenu("Evaluer le nom du style hérité");
mnEvalNameLegacyStyle.setIcon( new ImageIcon(create.class.getResource("/resources/heritagestylemini.png")));
mnEvalNameLegacyStyle.add(new actEvaluerNomDuStyleHeriteTrue());
mnEvalNameLegacyStyle.add( new actEvaluerNomDuStyleHeriteFalse());
return mnEvalNameLegacyStyle;
}
}

View File

@ -1,11 +1,11 @@
package analyseWriter.fenetres.menu.sousmenuEvaluation;
package sousmenuEvaluation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import analyseWriter.action.actEvaluerNomDuStyleHeriteTousLesNodesFalse;
import analyseWriter.action.actEvaluerNomDuStyleHeriteTousLesNodesTrue;
import analyseWriter.fenetres.create;
import action.actEvaluerNomDuStyleHeriteTousLesNodesFalse;
import action.actEvaluerNomDuStyleHeriteTousLesNodesTrue;
import fenetres.create;
/**
* Menu pour évaluer le nom du style hérité de tous les nodes text:p, text:h, text:span (voir plus tard text:list).</br>

View File

@ -0,0 +1,26 @@
package sousmenuEvaluation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import action.actEvalNameNodeNon;
import action.actEvalNameNodeOui;
import fenetres.create;
/**
* Menu évaluer le nom du node.</br>
* Revient à évaluer la présence du node.</br>
* @author pabr6
*
*/
public class mnEvalNameNode{
public static JMenu menu(){
JMenu mnEvalNameNode = new JMenu("Evaluer la présence du node");
mnEvalNameNode.setIcon(new ImageIcon(create.class.getResource("/resources/evalnodemini.png")));
mnEvalNameNode.add(new actEvalNameNodeOui());
mnEvalNameNode.add(new actEvalNameNodeNon());
return mnEvalNameNode;
}
}

View File

@ -1,11 +1,11 @@
package analyseWriter.fenetres.menu.sousmenuEvaluation;
package sousmenuEvaluation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import analyseWriter.action.actNameNodeEnfantsNon;
import analyseWriter.action.actNameNodeEnfantsOui;
import analyseWriter.fenetres.create;
import action.actNameNodeEnfantsNon;
import action.actNameNodeEnfantsOui;
import fenetres.create;
/**
*

View File

@ -0,0 +1,25 @@
package sousmenuEvaluation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import action.actEvalNamePageNon;
import action.actEvalNamePageOui;
import fenetres.create;
/**
* Menu évaluer le nom de la page.</br>
* @author pabr6
*
*/
public class mnEvalNamePage{
public static JMenu menu(){
JMenu mnEvalNamePage = new JMenu("Evaluer le nom du style de la page");
mnEvalNamePage.setIcon(new ImageIcon(create.class.getResource("/resources/evalnamepagemini.png")));
mnEvalNamePage.add(new actEvalNamePageOui());
mnEvalNamePage.add(new actEvalNamePageNon());
return mnEvalNamePage;
}
}

View File

@ -1,11 +1,11 @@
package analyseWriter.fenetres.menu.sousmenuEvaluation;
package sousmenuEvaluation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import analyseWriter.action.actEvalNameSequenceNon;
import analyseWriter.action.actEvalNameSequenceOui;
import analyseWriter.fenetres.create;
import action.actEvalNameSequenceNon;
import action.actEvalNameSequenceOui;
import fenetres.create;
/**
* Menu évaluer une variable de séquence.</br>

View File

@ -1,11 +1,11 @@
package analyseWriter.fenetres.menu.sousmenuEvaluation;
package sousmenuEvaluation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import analyseWriter.action.actEvalNombreDePageMaxiNon;
import analyseWriter.action.actEvalNombreDePageMaxiOui;
import analyseWriter.fenetres.create;
import action.actEvalNombreDePageMaxiNon;
import action.actEvalNombreDePageMaxiOui;
import fenetres.create;
/**
* Menu pour évaluer le nombre de page maxi.</br>

View File

@ -1,11 +1,11 @@
package analyseWriter.fenetres.menu.sousmenuEvaluation;
package sousmenuEvaluation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import analyseWriter.action.actEvalNombreDePageMiniNon;
import analyseWriter.action.actEvalNombreDePageMiniOui;
import analyseWriter.fenetres.create;
import action.actEvalNombreDePageMiniNon;
import action.actEvalNombreDePageMiniOui;
import fenetres.create;
/**
* Menu pour évaluer le nombre de page mini.</br>

View File

@ -0,0 +1,25 @@
package sousmenuEvaluation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import action.actEvalNumeroAbsoluePageNon;
import action.actEvalNumeroAbsoluePageOui;
import fenetres.create;
/**
* Menu évaluer le numéro absolu de la page.</br>
* @author pabr6
*
*/
public class mnEvalNumeroAbsoluePage{
public static JMenu menu(){
JMenu mnEvalNumeroAbsoluePage = new JMenu("Evaluer le numéro absolue de la page");
mnEvalNumeroAbsoluePage.setIcon(new ImageIcon(create.class.getResource("/resources/evalnumeroabsoluepagemini.png")));
mnEvalNumeroAbsoluePage.add(new actEvalNumeroAbsoluePageOui());
mnEvalNumeroAbsoluePage.add(new actEvalNumeroAbsoluePageNon());
return mnEvalNumeroAbsoluePage;
}
}

View File

@ -0,0 +1,25 @@
package sousmenuEvaluation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import action.actEvalNumeroPageNon;
import action.actEvalNumeroPageOui;
import fenetres.create;
/**
* Menu évaluer le numéro de la page.</br>
* @author pabr6
*
*/
public class mnEvalNumeroPage{
public static JMenu menu(){
JMenu mnEvalNumeroPage = new JMenu("Evaluer le numéro de la page");
mnEvalNumeroPage.setIcon(new ImageIcon(create.class.getResource("/resources/evalnumeropagemini.png")));
mnEvalNumeroPage.add(new actEvalNumeroPageOui());
mnEvalNumeroPage.add(new actEvalNumeroPageNon());
return mnEvalNumeroPage;
}
}

View File

@ -0,0 +1,25 @@
package sousmenuEvaluation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import action.actEvalPasParagrapheVideNon;
import action.actEvalPasParagrapheVideOui;
import fenetres.create;
/**
* Evaluer l'absence de paragraphe vide dans les pages.</br>
* Uniquement présent sur les nodes page.</br>
* @author pabr6
*
*/
public class mnEvalPasParagrapheVide{
public static JMenu menu(){
JMenu mnEvalPasParagrapheVide = new JMenu("Evaluer l'absence de paragraphe vide dans la page");
mnEvalPasParagrapheVide.setIcon( new ImageIcon(create.class.getResource("/resources/evalpasparagraphevidemini.png")));
mnEvalPasParagrapheVide.add(new actEvalPasParagrapheVideOui());
mnEvalPasParagrapheVide.add(new actEvalPasParagrapheVideNon());
return mnEvalPasParagrapheVide;
}
}

View File

@ -0,0 +1,24 @@
package sousmenuEvaluation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import action.actEvalPasParagrapheVideToutesLesPagesNon;
import action.actEvalPasParagrapheVideToutesLesPagesOui;
import fenetres.create;
/**
* Evaluer l'absence de paragraphe vide dans les pages.</br>
* Uniquement présent sur les nodes page.</br>
* @author pabr6
*
*/
public class mnEvalPasParagrapheVideTousLesPages {
public static JMenu menu(){
JMenu mnEvalPasParagrapheVide = new JMenu("Evaluer l'absence de paragraphe vide dans toutes les pages");
mnEvalPasParagrapheVide.setIcon( new ImageIcon(create.class.getResource("/resources/evalpasparagraphevidemini.png")));
mnEvalPasParagrapheVide.add(new actEvalPasParagrapheVideToutesLesPagesOui());
mnEvalPasParagrapheVide.add(new actEvalPasParagrapheVideToutesLesPagesNon());
return mnEvalPasParagrapheVide;
}
}

View File

@ -1,10 +1,11 @@
package analyseWriter.fenetres.menu.sousmenuEvaluation;
package sousmenuEvaluation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import analyseWriter.action.actEvalPiedPageActive;
import analyseWriter.fenetres.create;
import action.actEvalPiedPageActive;
import action.actEvalPiedPageActiveNon;
import fenetres.create;
/**
* Menu pied de page active.</br>
@ -17,6 +18,7 @@ public class mnEvalPiedPageActive{
JMenu mnEvalPiedPageActive = new JMenu("Pied page activé");
mnEvalPiedPageActive.setIcon(new ImageIcon(create.class.getResource("/resources/piedpageouimini.png")));
mnEvalPiedPageActive.add(new actEvalPiedPageActive());
mnEvalPiedPageActive.add(new actEvalPiedPageActiveNon());
return mnEvalPiedPageActive;
}

View File

@ -1,10 +1,11 @@
package analyseWriter.fenetres.menu.sousmenuEvaluation;
package sousmenuEvaluation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import analyseWriter.action.actEvalPiedPagePasActive;
import analyseWriter.fenetres.create;
import action.actEvalPiedPagePasActive;
import action.actEvalPiedPagePasActiveNon;
import fenetres.create;
/**
* Menu pied de page pas active.</br>
@ -17,6 +18,7 @@ public class mnEvalPiedPagePasActive{
JMenu mnEvalPiedPagePasActive = new JMenu("Pied page pas activé");
mnEvalPiedPagePasActive.setIcon(new ImageIcon(create.class.getResource("/resources/piedpagenonmini.png")));
mnEvalPiedPagePasActive.add(new actEvalPiedPagePasActive());
mnEvalPiedPagePasActive.add(new actEvalPiedPagePasActiveNon());
return mnEvalPiedPagePasActive;
}

View File

@ -1,11 +1,11 @@
package analyseWriter.fenetres.menu.sousmenuEvaluation;
package sousmenuEvaluation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import analyseWriter.action.actEvalPlacementEnfantNon;
import analyseWriter.action.actEvalPlacementEnfantOui;
import analyseWriter.fenetres.create;
import action.actEvalPlacementEnfantNon;
import action.actEvalPlacementEnfantOui;
import fenetres.create;
/**
*

View File

@ -0,0 +1,25 @@
package sousmenuEvaluation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import action.actEvalPlacementParagrapheNon;
import action.actEvalPlacementParagrapheOui;
import fenetres.create;
/**
* Menu respecter l'ordre des paragraphes.</br>
* Vérification du placement du node par rapport à la présence node précédent (avant).</br>
* @author pabr6
*
*/
public class mnEvalPlacementParagraphe{
public static JMenu menu(){
JMenu mnPlacementParagraphe = new JMenu("Placement des paragraphes (evaluation du ¶ avant)");
mnPlacementParagraphe.setIcon(new ImageIcon(create.class.getResource("/resources/ordreparagraphemini.png")));
mnPlacementParagraphe.add(new actEvalPlacementParagrapheOui());
mnPlacementParagraphe.add(new actEvalPlacementParagrapheNon());
return mnPlacementParagraphe;
}
}

View File

@ -0,0 +1,25 @@
package sousmenuEvaluation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import action.actEvalSautPageColonneNon;
import action.actEvalSautPageColonneOui;
import fenetres.create;
/**
* Menu permettant d'évaluer la présence d'un saut de page ou un saut de colonne dans un paragraphe.</br>
* @author pabr6
*
*/
public class mnEvalSautPageColonne{
public static JMenu menu() {
JMenu mnEvalSautPageColonne = new JMenu("Evaluer le saut de page ou de colonne");
mnEvalSautPageColonne.setIcon( new ImageIcon(create.class.getResource("/resources/sautpagecolonnemini.png")));
mnEvalSautPageColonne.add(new actEvalSautPageColonneOui());
mnEvalSautPageColonne.add( new actEvalSautPageColonneNon());
return mnEvalSautPageColonne;
}
}

View File

@ -1,11 +1,11 @@
package analyseWriter.fenetres.menu.sousmenuEvaluation;
package sousmenuEvaluation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import analyseWriter.action.actEvalTextUserDefinedNon;
import analyseWriter.action.actEvalTextUserDefinedOui;
import analyseWriter.fenetres.create;
import action.actEvalTextUserDefinedNon;
import action.actEvalTextUserDefinedOui;
import fenetres.create;
/**
* Evaluer la propriété personnalisé.</br>

View File

@ -1,9 +1,10 @@
package analyseWriter.fenetres.menu.sousmenuEvaluation;
package sousmenuEvaluation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import analyseWriter.fenetres.create;
import action.actAllContentChilds;
import fenetres.create;
/**
* menu pour le node structure pour evaluer tous les nodes text:p (paragraphe).
@ -14,8 +15,11 @@ public class mnEvalTousParagraphes {
public static JMenu menu() {
JMenu mnEvalTousParagraphes = new JMenu("Tous les paragraphes de texte");
mnEvalTousParagraphes.setIcon( new ImageIcon(create.class.getResource("/resources/menuEvalTousParagraphemini.png")));
mnEvalTousParagraphes.add(new actAllContentChilds());
mnEvalTousParagraphes.addSeparator();
mnEvalTousParagraphes.add(mnEvalNameLegacyStyleTousLesNodes.menu());
mnEvalTousParagraphes.addSeparator();
mnEvalTousParagraphes.add(mnEvalFormatageDirectTousLesNodes.menu());
mnEvalTousParagraphes.addSeparator();
mnEvalTousParagraphes.add(mnAnalyseStyleTousLesNodes.menu());
return mnEvalTousParagraphes;

View File

@ -1,11 +1,11 @@
package analyseWriter.fenetres.menu.sousmenuEvaluation;
package sousmenuEvaluation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import analyseWriter.action.actEvalueFalse;
import analyseWriter.action.actEvalueTrue;
import analyseWriter.fenetres.create;
import action.actEvalueFalse;
import action.actEvalueTrue;
import fenetres.create;
/**
* Menu Evaluer.</br>

View File

@ -1,10 +1,11 @@
package analyseWriter.fenetres.menu.sousmenuEvaluation;
package sousmenuEvaluation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import analyseWriter.action.actEvaluerATraversAnalyseStyleTrue;
import analyseWriter.fenetres.create;
import action.actEvaluerATraversAnalyseStyleFalse;
import action.actEvaluerATraversAnalyseStyleTrue;
import fenetres.create;
/**
* Menu Evaluer un style dans la structure.</br>
@ -17,6 +18,7 @@ public class mnEvaluerATraversAnalyseStyle{
JMenu mnEvaluerATraversAnalyseStyle = new JMenu("Evaluer le style dans la structure");
mnEvaluerATraversAnalyseStyle.setIcon(new ImageIcon(create.class.getResource("/resources/atraversanalysestylemini.png")));
mnEvaluerATraversAnalyseStyle.add(new actEvaluerATraversAnalyseStyleTrue());
mnEvaluerATraversAnalyseStyle.add( new actEvaluerATraversAnalyseStyleFalse());
return mnEvaluerATraversAnalyseStyle;
}

View File

@ -0,0 +1,24 @@
package sousmenuEvaluation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import action.actEvalLastChildFalse;
import action.actEvalLastChildTrue;
import fenetres.create;
/**
* Menu pour évaluer si le node est le dernier enfant.</br>
* @author pabr6
*
*/
public class mnEvaluerDernierEnfant{
public static JMenu menu(){
JMenu mnEvaluerDernierEnfant = new JMenu("Le node est le dernier enfant");
mnEvaluerDernierEnfant.setIcon(new ImageIcon(create.class.getResource("/resources/dernierenfantmini.png")));
mnEvaluerDernierEnfant.add(new actEvalLastChildTrue());
mnEvaluerDernierEnfant.add(new actEvalLastChildFalse());
return mnEvaluerDernierEnfant;
}
}

View File

@ -0,0 +1,25 @@
package sousmenuEvaluation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import action.actEvalFirstChildFalse;
import action.actEvalFirstChildTrue;
import fenetres.create;
/**
* Menu pour évaluer si le node est le dernier enfant.</br>
* @author pabr6
*
*/
public class mnEvaluerPremierEnfant{
public static JMenu menu(){
JMenu mnEvaluerPremierEnfant = new JMenu("Le node est le premier enfant");
mnEvaluerPremierEnfant.setIcon(new ImageIcon(create.class.getResource("/resources/premierenfantmini.png")));
mnEvaluerPremierEnfant.add(new actEvalFirstChildTrue());
mnEvaluerPremierEnfant.add(new actEvalFirstChildFalse());
return mnEvaluerPremierEnfant;
}
}

View File

@ -1,11 +1,11 @@
package analyseWriter.fenetres.menu.sousmenuEvaluation;
package sousmenuEvaluation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import analyseWriter.action.actEvaluerTousLesStylesParagraphesFalse;
import analyseWriter.action.actEvaluerTousLesStylesParagraphesTrue;
import analyseWriter.fenetres.create;
import action.actEvaluerTousLesStylesParagraphesFalse;
import action.actEvaluerTousLesStylesParagraphesTrue;
import fenetres.create;
/**
* Menu pour évaluer les tous les styles de paragraphe ou de titre.</br>

View File

@ -1,11 +1,11 @@
package analyseWriter.fenetres.menu.sousmenuRecherche;
package sousmenuRecherche;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import analyseWriter.action.actRechercheContenufalse;
import analyseWriter.action.actRechercheContenutrue;
import analyseWriter.fenetres.create;
import action.actRechercheContenufalse;
import action.actRechercheContenutrue;
import fenetres.create;
/**
* Menu rechercher par le contenu exact.</br>

View File

@ -1,11 +1,11 @@
package analyseWriter.fenetres.menu.sousmenuRecherche;
package sousmenuRecherche;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import analyseWriter.action.actRechercheContenuPlusProcheVoisinfalse;
import analyseWriter.action.actRechercheContenuPlusProcheVoisintrue;
import analyseWriter.fenetres.create;
import action.actRechercheContenuPlusProcheVoisinfalse;
import action.actRechercheContenuPlusProcheVoisintrue;
import fenetres.create;
/**
* Menu rechercher par le contenu du plus proche voisin.</br>

View File

@ -1,11 +1,11 @@
package analyseWriter.fenetres.menu.sousmenuRecherche;
package sousmenuRecherche;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import analyseWriter.action.actRechercheIndexfalse;
import analyseWriter.action.actRechercheIndextrue;
import analyseWriter.fenetres.create;
import action.actRechercheIndexfalse;
import action.actRechercheIndextrue;
import fenetres.create;
/**
* Menu rechercher par l'index.</br>

View File

@ -1,11 +1,11 @@
package analyseWriter.fenetres.menu.sousmenuRecherche;
package sousmenuRecherche;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import analyseWriter.action.actRechercheAnchorPageNumberFalse;
import analyseWriter.action.actRechercheAnchorPageNumberTrue;
import analyseWriter.fenetres.create;
import action.actRechercheAnchorPageNumberFalse;
import action.actRechercheAnchorPageNumberTrue;
import fenetres.create;
/**
* Menu rechercher par le numéro de la page ancrer.</br>

View File

@ -1,11 +1,11 @@
package analyseWriter.fenetres.menu.sousmenuRepresentation;
package sousmenuRepresentation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import analyseWriter.action.actAddMenuFalse;
import analyseWriter.action.actAddMenuTrue;
import analyseWriter.fenetres.create;
import action.actAddMenuFalse;
import action.actAddMenuTrue;
import fenetres.create;
/**
* Menu lien de menu vers les niveau 1.</br>

View File

@ -1,11 +1,11 @@
package analyseWriter.fenetres.menu.sousmenuRepresentation;
package sousmenuRepresentation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import analyseWriter.action.actAddMenuFalse;
import analyseWriter.action.actAddMenuTrue;
import analyseWriter.fenetres.create;
import action.actAddMenuFalse;
import action.actAddMenuTrue;
import fenetres.create;
/**
* Menu lien de menu vers les niveau supérieur à 1.</br>

View File

@ -1,11 +1,11 @@
package analyseWriter.fenetres.menu.sousmenuRepresentation;
package sousmenuRepresentation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import analyseWriter.action.actInsereInformationFalse;
import analyseWriter.action.actInsereInformationTrue;
import analyseWriter.fenetres.create;
import action.actInsereInformationFalse;
import action.actInsereInformationTrue;
import fenetres.create;
/**
* Insertion de l'information du node.</br>

View File

@ -1,11 +1,11 @@
package analyseWriter.fenetres.menu.sousmenuRepresentation;
package sousmenuRepresentation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import analyseWriter.action.actInsereInformationMultipleFalse;
import analyseWriter.action.actInsereInformationMultipleTrue;
import analyseWriter.fenetres.create;
import action.actInsereInformationMultipleFalse;
import action.actInsereInformationMultipleTrue;
import fenetres.create;
/**
* Insertion de l'information sur tous les nodes de la page.</br>

View File

@ -1,11 +1,11 @@
package analyseWriter.fenetres.menu.sousmenuRepresentation;
package sousmenuRepresentation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import analyseWriter.action.actmarquenodefalse;
import analyseWriter.action.actmarquenodetrue;
import analyseWriter.fenetres.create;
import action.actmarquenodefalse;
import action.actmarquenodetrue;
import fenetres.create;
/**
* Menu pour marquer les nodes évaluer dans le feedback des étudiants.</br>

View File

@ -1,11 +1,11 @@
package analyseWriter.fenetres.menu.sousmenuRepresentation;
package sousmenuRepresentation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import analyseWriter.action.actsautfalse;
import analyseWriter.action.actsauttrue;
import analyseWriter.fenetres.create;
import action.actsautfalse;
import action.actsauttrue;
import fenetres.create;
/**
* Menu saut de ligne.</br>

View File

@ -1,11 +1,11 @@
package analyseWriter.fenetres.menu.sousmenuRepresentation;
package sousmenuRepresentation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import analyseWriter.action.actsautmultiplefalse;
import analyseWriter.action.actsautmultipletrue;
import analyseWriter.fenetres.create;
import action.actsautmultiplefalse;
import action.actsautmultipletrue;
import fenetres.create;
/**
* Menu saut de ligne entre les nodes.

View File

@ -1,11 +1,11 @@
package analyseWriter.fenetres.menu.sousmenuRepresentation;
package sousmenuRepresentation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import analyseWriter.action.actsautfalse;
import analyseWriter.action.actsauttrue;
import analyseWriter.fenetres.create;
import action.actsautfalse;
import action.actsauttrue;
import fenetres.create;
/**
* Menu saut de ligne pour les niveau 1.</br>

View File

@ -1,14 +1,14 @@
package analyseWriter.fenetres.menu.sousmenuRepresentation;
package sousmenuRepresentation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import analyseWriter.action.actSupprimeTitre;
import analyseWriter.action.actTitre1;
import analyseWriter.action.actTitre2;
import analyseWriter.action.actTitre3;
import analyseWriter.action.actTitrePrincipal;
import analyseWriter.fenetres.create;
import action.actSupprimeTitre;
import action.actTitre1;
import action.actTitre2;
import action.actTitre3;
import action.actTitrePrincipal;
import fenetres.create;
/**
* Menu Titre.</br>

View File

@ -1,14 +1,14 @@
package analyseWriter.fenetres.menu.sousmenuRepresentation;
package sousmenuRepresentation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import analyseWriter.action.actSupprimeTitre;
import analyseWriter.action.actTitre1;
import analyseWriter.action.actTitre2;
import analyseWriter.action.actTitre3;
import analyseWriter.action.actTitrePrincipal;
import analyseWriter.fenetres.create;
import action.actSupprimeTitre;
import action.actTitre1;
import action.actTitre2;
import action.actTitre3;
import action.actTitrePrincipal;
import fenetres.create;
/**
* Menu Titre pour le niveau 1.</br>

View File

@ -1,11 +1,11 @@
package analyseWriter.fenetres.menu.sousmenuRepresentation;
package sousmenuRepresentation;
import javax.swing.ImageIcon;
import javax.swing.JMenu;
import analyseWriter.action.addTitreToutesLesPagesFalse;
import analyseWriter.action.addTitreToutesLesPagesTrue;
import analyseWriter.fenetres.create;
import action.addTitreToutesLesPagesFalse;
import action.addTitreToutesLesPagesTrue;
import fenetres.create;
/**
* Menu permettant ajouter des titre1 à toutes les pages.</br>

29
aW.xml Normal file
View File

@ -0,0 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>
<launch4jConfig>
<dontWrapJar>false</dontWrapJar>
<headerType>gui</headerType>
<jar>C:\Users\pabr6\git\analyseWriter\MEPTL\analyseWriter.jar</jar>
<outfile>C:\Users\pabr6\git\analyseWriter\MEPTL\analyseWriter.exe</outfile>
<errTitle>Erreur</errTitle>
<cmdLine></cmdLine>
<chdir></chdir>
<priority>normal</priority>
<downloadUrl>http://java.com/download</downloadUrl>
<supportUrl></supportUrl>
<stayAlive>false</stayAlive>
<restartOnCrash>false</restartOnCrash>
<manifest></manifest>
<icon>C:\Users\pabr6\git\analyseWriter\MEPTL\icons\analyseWriter.ico</icon>
<classPath>
<mainClass>fenetres.mainApp</mainClass>
</classPath>
<jre>
<path></path>
<bundledJre64Bit>false</bundledJre64Bit>
<bundledJreAsFallback>false</bundledJreAsFallback>
<minVersion>16</minVersion>
<maxVersion></maxVersion>
<jdkPreference>preferJre</jdkPreference>
<runtimeBits>64/32</runtimeBits>
</jre>
</launch4jConfig>

43
aW2.xml Normal file
View File

@ -0,0 +1,43 @@
<?xml version="1.0" encoding="UTF-8"?>
<launch4jConfig>
<dontWrapJar>false</dontWrapJar>
<headerType>gui</headerType>
<jar>C:\Users\pabr6\git\analyseWriter\MEPTL\analyseWriter.jar</jar>
<outfile>C:\Users\pabr6\git\analyseWriter\MEPTL\analyseWriter.exe</outfile>
<errTitle>Erreur</errTitle>
<cmdLine></cmdLine>
<chdir></chdir>
<priority>normal</priority>
<downloadUrl>http://java.com/download</downloadUrl>
<supportUrl></supportUrl>
<stayAlive>false</stayAlive>
<restartOnCrash>false</restartOnCrash>
<manifest></manifest>
<icon>C:\Users\pabr6\git\analyseWriter\MEPTL\icons\analyseWriter.ico</icon>
<classPath>
<mainClass>fenetres.mainApp</mainClass>
</classPath>
<jre>
<path></path>
<bundledJre64Bit>false</bundledJre64Bit>
<bundledJreAsFallback>false</bundledJreAsFallback>
<minVersion>16</minVersion>
<maxVersion></maxVersion>
<jdkPreference>preferJre</jdkPreference>
<runtimeBits>64/32</runtimeBits>
</jre>
<versionInfo>
<fileVersion>4.4.0.0</fileVersion>
<txtFileVersion>analyseWriter</txtFileVersion>
<fileDescription>évaluer les mise en forme des fichiers au format ODF.</fileDescription>
<copyright>GNU GLP 3.0</copyright>
<productVersion>4.3.2.0</productVersion>
<txtProductVersion>analyseWriter</txtProductVersion>
<productName>analyseWriter</productName>
<companyName>pablo rodriguez</companyName>
<internalName>pablo rodriguez</internalName>
<originalFilename>analyseWriter.exe</originalFilename>
<trademarks>pablo rodriguez</trademarks>
<language>FRENCH</language>
</versionInfo>
</launch4jConfig>

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

29
bW.xml Normal file
View File

@ -0,0 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>
<launch4jConfig>
<dontWrapJar>false</dontWrapJar>
<headerType>gui</headerType>
<jar>C:\Users\pabr6\git\analyseWriter\analyseWriter.jar</jar>
<outfile>C:\Users\pabr6\git\analyseWriter\MEPTL\analyseWriter.exe</outfile>
<errTitle>Erreur</errTitle>
<cmdLine></cmdLine>
<chdir></chdir>
<priority>normal</priority>
<downloadUrl>http://java.com/download</downloadUrl>
<supportUrl></supportUrl>
<stayAlive>false</stayAlive>
<restartOnCrash>false</restartOnCrash>
<manifest></manifest>
<icon>C:\Users\pabr6\git\analyseWriter\MEPTL\icons\analyseWriter.ico</icon>
<classPath>
<mainClass>fenetres.mainApp</mainClass>
</classPath>
<jre>
<path></path>
<bundledJre64Bit>false</bundledJre64Bit>
<bundledJreAsFallback>false</bundledJreAsFallback>
<minVersion>16</minVersion>
<maxVersion></maxVersion>
<jdkPreference>preferJre</jdkPreference>
<runtimeBits>64/32</runtimeBits>
</jre>
</launch4jConfig>

File diff suppressed because one or more lines are too long

View File

@ -1,905 +0,0 @@
<ListesEtudiants date="2024-04-26T21:48:15" version="V4.5.0">
<fileCSV nameListStudent="llcer-s2" email="adresse" name="nom" year="2024" encoding="UTF-8" firstname="prenom" separator=";" id="identification">
<student nom="Abdelli" adresse="imane_abdelli@ens.univ-artois.fr" identification="22102604" prenom="Imane"/>
<student nom="Abdoul--Masella" adresse="lina_abdoul--masella@ens.univ-artois.fr" identification="22311084" prenom="Lina"/>
<student nom="Abrassart" adresse="maelle_abrassart@ens.univ-artois.fr" identification="22302146" prenom="Maelle"/>
<student nom="Afrakh" adresse="mounir_afrakh@ens.univ-artois.fr" identification="22204002" prenom="Mounir"/>
<student nom="Akhraz" adresse="anissa_akhraz@ens.univ-artois.fr" identification="22201821" prenom="Anissa"/>
<student nom="Alaimo" adresse="giulianna_alaimo@ens.univ-artois.fr" identification="22302041" prenom="Giulianna"/>
<student nom="Alessandra" adresse="carla_alessandra@ens.univ-artois.fr" identification="22301422" prenom="Carla"/>
<student nom="Allard" adresse="ange_allard@ens.univ-artois.fr" identification="22300409" prenom="Ange"/>
<student nom="Andre" adresse="chloe_andre@ens.univ-artois.fr" identification="22300833" prenom="Chloe"/>
<student nom="Avronsart" adresse="lena_avronsart@ens.univ-artois.fr" identification="22300512" prenom="Lena"/>
<student nom="Bacquet" adresse="noemie_bacquet@ens.univ-artois.fr" identification="22304423" prenom="Noemie"/>
<student nom="Bafuka Idioto" adresse="monica_bafukaidioto@ens.univ-artois.fr" identification="22205008" prenom="Monica"/>
<student nom="Bajeux" adresse="lou-ann_bajeux@ens.univ-artois.fr" identification="22302061" prenom="Lou-Ann"/>
<student nom="Bajonczak" adresse="laureline_bajonczak@ens.univ-artois.fr" identification="22302387" prenom="Laureline"/>
<student nom="Bastien Flanquart" adresse="alicia_bastienflanquart@ens.univ-artois.fr" identification="22300527" prenom="Alicia"/>
<student nom="Baxiu" adresse="flore_baxiu@ens.univ-artois.fr" identification="22310932" prenom="Flore"/>
<student nom="Beaucourt" adresse="clemence_beaucourt@ens.univ-artois.fr" identification="22203191" prenom="Clemence"/>
<student nom="Becquet" adresse="victorine_becquet@ens.univ-artois.fr" identification="22303294" prenom="Victorine"/>
<student nom="Bednarek" adresse="nathan_bednarek@ens.univ-artois.fr" identification="22201745" prenom="Nathan"/>
<student nom="Begot" adresse="britanny_begot@ens.univ-artois.fr" identification="22300897" prenom="Britanny"/>
<student nom="Belghoul" adresse="sarah_belghoul@ens.univ-artois.fr" identification="22303911" prenom="Sarah"/>
<student nom="Belhadji" adresse="lolita_belhadji@ens.univ-artois.fr" identification="22303533" prenom="Lolita"/>
<student nom="Ben" adresse="eileen_ben@ens.univ-artois.fr" identification="22302468" prenom="Eileen"/>
<student nom="Ben Smida" adresse="sofiane_bensmida@ens.univ-artois.fr" identification="22302657" prenom="Sofiane"/>
<student nom="Berger" adresse="adele_berger@ens.univ-artois.fr" identification="22301644" prenom="Adele"/>
<student nom="Berrabah" adresse="sofia_berrabah@ens.univ-artois.fr" identification="22302929" prenom="Sofia"/>
<student nom="Berrier" adresse="nolann_berrier@ens.univ-artois.fr" identification="22310425" prenom="Nolann"/>
<student nom="Bertelet" adresse="camille_bertelet@ens.univ-artois.fr" identification="22301136" prenom="Camille"/>
<student nom="Bertot" adresse="wendy_bertot@ens.univ-artois.fr" identification="22303658" prenom="Wendy"/>
<student nom="Bettayeb" adresse="chirine_bettayeb@ens.univ-artois.fr" identification="22204014" prenom="Chirine"/>
<student nom="Biausque" adresse="louise_biausque@ens.univ-artois.fr" identification="22300745" prenom="Louise"/>
<student nom="Bied" adresse="noa_bied@ens.univ-artois.fr" identification="22313901" prenom="Noa"/>
<student nom="Binet" adresse="capucine_binet@ens.univ-artois.fr" identification="22300966" prenom="Capucine"/>
<student nom="Blanchart" adresse="berenice_blanchart@ens.univ-artois.fr" identification="22301969" prenom="Berenice"/>
<student nom="Blin" adresse="kylian_blin@ens.univ-artois.fr" identification="22200843" prenom="Kylian"/>
<student nom="Boniface" adresse="emmy_boniface@ens.univ-artois.fr" identification="22319000" prenom="Emmy"/>
<student nom="Bonvarlet" adresse="tom_bonvarlet@ens.univ-artois.fr" identification="22303704" prenom="Tom"/>
<student nom="Bouhaik" adresse="sofiane_bouhaik@ens.univ-artois.fr" identification="22311762" prenom="Sofiane"/>
<student nom="Boukhtouchen" adresse="kilia_boukhtouchen@ens.univ-artois.fr" identification="22303222" prenom="Kilia"/>
<student nom="Bourdeaud'Hui" adresse="lou_bourdeaudhui@ens.univ-artois.fr" identification="22301300" prenom="Lou"/>
<student nom="Bouslimi" adresse="meline_bouslimi@ens.univ-artois.fr" identification="22304751" prenom="Meline"/>
<student nom="Bouzebiba" adresse="maena_bouzebiba@ens.univ-artois.fr" identification="22301682" prenom="Maena"/>
<student nom="Brassart" adresse="lucas_brassart@ens.univ-artois.fr" identification="22303109" prenom="Lucas"/>
<student nom="Brasseur" adresse="leo_brasseur@ens.univ-artois.fr" identification="22301038" prenom="Leo"/>
<student nom="Bricotte" adresse="angele_bricotte@ens.univ-artois.fr" identification="22304089" prenom="Angele"/>
<student nom="Broutin" adresse="lilou_broutin@ens.univ-artois.fr" identification="22300585" prenom="Lilou"/>
<student nom="Burhan" adresse="selin_burhan@ens.univ-artois.fr" identification="22302377" prenom="Selin"/>
<student nom="Burhan" adresse="sibel_burhan@ens.univ-artois.fr" identification="22302403" prenom="Sibel"/>
<student nom="Callaux" adresse="paule_callaux@ens.univ-artois.fr" identification="22303260" prenom="Paule"/>
<student nom="Camus" adresse="lola_camus@ens.univ-artois.fr" identification="22301365" prenom="Lola"/>
<student nom="Canniere" adresse="raphaelle_canniere@ens.univ-artois.fr" identification="22300797" prenom="Raphaelle"/>
<student nom="Canonne" adresse="louna_canonne@ens.univ-artois.fr" identification="22300922" prenom="Louna"/>
<student nom="Caron" adresse="lallie_caron@ens.univ-artois.fr" identification="22311090" prenom="Lallie"/>
<student nom="Cathelain" adresse="adrien_cathelain@ens.univ-artois.fr" identification="22304120" prenom="Adrien"/>
<student nom="Cayet" adresse="celia_cayet@ens.univ-artois.fr" identification="22304087" prenom="Celia"/>
<student nom="Cerf" adresse="wendy_cerf@ens.univ-artois.fr" identification="22304261" prenom="Wendy"/>
<student nom="Charles" adresse="ysthea_charles@ens.univ-artois.fr" identification="22307800" prenom="Ysthea"/>
<student nom="Charlet" adresse="amelie_charlet1@ens.univ-artois.fr" identification="22300330" prenom="Amelie"/>
<student nom="Chatelain" adresse="lou_chatelain@ens.univ-artois.fr" identification="22202984" prenom="Lou"/>
<student nom="Chen" adresse="patrick_chen@ens.univ-artois.fr" identification="22304985" prenom="Patrick"/>
<student nom="Chwastyniak" adresse="katarina_chwastyniak@ens.univ-artois.fr" identification="22300474" prenom="Katarina"/>
<student nom="Cilliez" adresse="lise_cilliez@ens.univ-artois.fr" identification="22301456" prenom="Lise"/>
<student nom="Clement" adresse="lilou_clement@ens.univ-artois.fr" identification="22302576" prenom="Lilou"/>
<student nom="Clement" adresse="lysa_clement@ens.univ-artois.fr" identification="22300542" prenom="Lysa"/>
<student nom="Cocco" adresse="fiorella_cocco@ens.univ-artois.fr" identification="22301957" prenom="Fiorella"/>
<student nom="Coleau" adresse="celine_coleau@ens.univ-artois.fr" identification="22300510" prenom="Celine"/>
<student nom="Coppin" adresse="oceane_coppin@ens.univ-artois.fr" identification="22300567" prenom="Oceane"/>
<student nom="Coquerelle" adresse="valentine_coquerelle@ens.univ-artois.fr" identification="22300349" prenom="Valentine"/>
<student nom="Cousin" adresse="alice_cousin1@ens.univ-artois.fr" identification="22303560" prenom="Alice"/>
<student nom="Cousin Peroy" adresse="lea_cousinperoy@ens.univ-artois.fr" identification="22301701" prenom="Lea"/>
<student nom="Cras" adresse="nathanaelle_cras@ens.univ-artois.fr" identification="22300882" prenom="Nathanaelle"/>
<student nom="Crepin" adresse="luna_crepin@ens.univ-artois.fr" identification="22303587" prenom="Luna"/>
<student nom="Crombez" adresse="clovis_crombez@ens.univ-artois.fr" identification="22312122" prenom="Clovis"/>
<student nom="Cuisinier" adresse="zoe_cuisinier@ens.univ-artois.fr" identification="22300743" prenom="Zoe"/>
<student nom="Dacquin" adresse="charlotte_dacquin@ens.univ-artois.fr" identification="22303363" prenom="Charlotte"/>
<student nom="De Lavergne" adresse="nathan_delavergne@ens.univ-artois.fr" identification="22301523" prenom="Nathan"/>
<student nom="De Pourcq" adresse="margot_depourcq@ens.univ-artois.fr" identification="22204500" prenom="Margot"/>
<student nom="Declerck" adresse="yann_declerck@ens.univ-artois.fr" identification="22303263" prenom="Yann"/>
<student nom="Dehay" adresse="elisa_dehay@ens.univ-artois.fr" identification="22303000" prenom="Elisa"/>
<student nom="Dejonckheere" adresse="margo_dejonckheere@ens.univ-artois.fr" identification="22307962" prenom="Margo"/>
<student nom="Dekeuster" adresse="gaulthier_dekeuster@ens.univ-artois.fr" identification="22201770" prenom="Gaulthier"/>
<student nom="Delaire" adresse="clara_delaire@ens.univ-artois.fr" identification="22301157" prenom="Clara"/>
<student nom="Delajugie" adresse="mathis_delajugie@ens.univ-artois.fr" identification="22300801" prenom="Mathis"/>
<student nom="Delecroix" adresse="cassandre_delecroix@ens.univ-artois.fr" identification="22302347" prenom="Cassandre"/>
<student nom="Deleigne" adresse="maddalena_deleigne@ens.univ-artois.fr" identification="22106154" prenom="Maddalena"/>
<student nom="Deletre" adresse="chloe_deletre@ens.univ-artois.fr" identification="22307741" prenom="Chloe"/>
<student nom="Deleval" adresse="theo_deleval@ens.univ-artois.fr" identification="22300374" prenom="Theo"/>
<student nom="Delire" adresse="justine_delire@ens.univ-artois.fr" identification="22301465" prenom="Justine"/>
<student nom="Delissenne" adresse="antoine_delissenne@ens.univ-artois.fr" identification="20184427" prenom="Antoine"/>
<student nom="Deltour" adresse="matteo_deltour@ens.univ-artois.fr" identification="22301345" prenom="Matteo"/>
<student nom="Delville" adresse="alexandra_delville@ens.univ-artois.fr" identification="22300606" prenom="Alexandra"/>
<student nom="Demarest" adresse="lysa_demarest@ens.univ-artois.fr" identification="22304056" prenom="Lysa"/>
<student nom="Demaret" adresse="alexis_demaret1@ens.univ-artois.fr" identification="22300614" prenom="Alexis"/>
<student nom="Demey" adresse="jade_demey@ens.univ-artois.fr" identification="22310240" prenom="Jade"/>
<student nom="Demolin" adresse="naomi_demolin@ens.univ-artois.fr" identification="22200561" prenom="Naomi"/>
<student nom="Demonchy" adresse="loane_demonchy@ens.univ-artois.fr" identification="22301815" prenom="Loane"/>
<student nom="Denimal" adresse="lauryne_denimal@ens.univ-artois.fr" identification="22300990" prenom="Lauryne"/>
<student nom="Deplanque" adresse="candice_deplanque@ens.univ-artois.fr" identification="22300979" prenom="Candice"/>
<student nom="Depretz" adresse="alexis_depretz@ens.univ-artois.fr" identification="22301032" prenom="Alexis"/>
<student nom="Deregnaucourt" adresse="clementine_deregnaucourt@ens.univ-artois.fr" identification="22301153" prenom="Clementine"/>
<student nom="Derenoncourt" adresse="adrien_derenoncourt@ens.univ-artois.fr" identification="22201226" prenom="Adrien"/>
<student nom="Descamps" adresse="maxime_descamps1@ens.univ-artois.fr" identification="20162000" prenom="Maxime"/>
<student nom="Descaudin" adresse="kiara_descaudin@ens.univ-artois.fr" identification="22303303" prenom="Kiara"/>
<student nom="Desloges" adresse="vivien_desloges@ens.univ-artois.fr" identification="22101914" prenom="Vivien"/>
<student nom="Desprez" adresse="noemie_desprez@ens.univ-artois.fr" identification="22203407" prenom="Noemie"/>
<student nom="Diard" adresse="oceane_diard@ens.univ-artois.fr" identification="22302930" prenom="Oceane"/>
<student nom="Dillerin" adresse="mae_dillerin@ens.univ-artois.fr" identification="22303810" prenom="Mae"/>
<student nom="Dolige" adresse="tom_dolige@ens.univ-artois.fr" identification="22303012" prenom="Tom"/>
<student nom="Domain" adresse="jeanne_domain@ens.univ-artois.fr" identification="22306741" prenom="Jeanne"/>
<student nom="Douce" adresse="erwin_douce@ens.univ-artois.fr" identification="22304930" prenom="Erwin"/>
<student nom="Douche" adresse="mahira_douche@ens.univ-artois.fr" identification="22305899" prenom="Mahira"/>
<student nom="Doumbia" adresse="rabi_doumbia@ens.univ-artois.fr" identification="22105036" prenom="Rabi"/>
<student nom="Drelon" adresse="anais_drelon@ens.univ-artois.fr" identification="22312441" prenom="Anais"/>
<student nom="Drelon" adresse="emeric_drelon@ens.univ-artois.fr" identification="22313063" prenom="Emeric"/>
<student nom="Dubois" adresse="olivia_dubois1@ens.univ-artois.fr" identification="22302268" prenom="Olivia"/>
<student nom="Dubois" adresse="thomas_dubois5@ens.univ-artois.fr" identification="22300991" prenom="Thomas"/>
<student nom="Dubuche" adresse="laure_dubuche@ens.univ-artois.fr" identification="22301385" prenom="Laure"/>
<student nom="Dulompont" adresse="antoine_dulompont@ens.univ-artois.fr" identification="22301527" prenom="Antoine"/>
<student nom="Dumont" adresse="lucie_dumont3@ens.univ-artois.fr" identification="22306208" prenom="Lucie"/>
<student nom="Dumoulin" adresse="marie-loue_dumoulin@ens.univ-artois.fr" identification="22301159" prenom="Marie-Loue"/>
<student nom="Duplouy" adresse="lana_duplouy@ens.univ-artois.fr" identification="22304092" prenom="Lana"/>
<student nom="Duprot" adresse="maelle_duprot@ens.univ-artois.fr" identification="22302002" prenom="Maelle"/>
<student nom="Duval" adresse="anthony_duval@ens.univ-artois.fr" identification="22202794" prenom="Anthony"/>
<student nom="Dykcik" adresse="pauline_dykcik@ens.univ-artois.fr" identification="22305383" prenom="Pauline"/>
<student nom="Erraich" adresse="sarah_erraich@ens.univ-artois.fr" identification="22305340" prenom="Sarah"/>
<student nom="Fardel" adresse="josephine_fardel@ens.univ-artois.fr" identification="22103374" prenom="Josephine"/>
<student nom="Fardel" adresse="louise_fardel@ens.univ-artois.fr" identification="22208712" prenom="Louise"/>
<student nom="Faugeras" adresse="valentine_faugeras@ens.univ-artois.fr" identification="22304898" prenom="Valentine"/>
<student nom="Fava" adresse="clara_fava@ens.univ-artois.fr" identification="22310200" prenom="Clara"/>
<student nom="Faye" adresse="chloe_faye@ens.univ-artois.fr" identification="22303966" prenom="Chloe"/>
<student nom="Fevrier" adresse="mathilde_fevrier1@ens.univ-artois.fr" identification="22320882" prenom="Mathilde"/>
<student nom="Fiba" adresse="marie_fiba@ens.univ-artois.fr" identification="22303202" prenom="Marie"/>
<student nom="Fischer" adresse="myriem_fischer@ens.univ-artois.fr" identification="22320800" prenom="Myriem"/>
<student nom="Fisteberg" adresse="gratien_fisteberg@ens.univ-artois.fr" identification="22303693" prenom="Gratien"/>
<student nom="Flament" adresse="clea_flament@ens.univ-artois.fr" identification="22301732" prenom="Clea"/>
<student nom="Flament" adresse="eloise_flament@ens.univ-artois.fr" identification="22307482" prenom="Eloise"/>
<student nom="Fontaine" adresse="emma_fontaine2@ens.univ-artois.fr" identification="22301809" prenom="Emma"/>
<student nom="Fouquet-Pamart" adresse="alyssa_fouquet-pamart@ens.univ-artois.fr" identification="22300831" prenom="Alyssa"/>
<student nom="Francois" adresse="chloe_francois@ens.univ-artois.fr" identification="22301535" prenom="Chloe"/>
<student nom="Francois" adresse="louis_francois1@ens.univ-artois.fr" identification="22300475" prenom="Louis"/>
<student nom="Francois" adresse="nicolas_francois4@ens.univ-artois.fr" identification="22207846" prenom="Nicolas"/>
<student nom="Frappart" adresse="marion_frappart@ens.univ-artois.fr" identification="22303368" prenom="Marion"/>
<student nom="Frey" adresse="justine_frey@ens.univ-artois.fr" identification="22303529" prenom="Justine"/>
<student nom="Froment" adresse="lola_froment@ens.univ-artois.fr" identification="22300781" prenom="Lola"/>
<student nom="Gallet" adresse="ottilie_gallet@ens.univ-artois.fr" identification="22301018" prenom="Ottilie"/>
<student nom="Galliot--Danjoux" adresse="zoe_galliot--danjoux@ens.univ-artois.fr" identification="22300426" prenom="Zoe"/>
<student nom="Gallois" adresse="nicolas_gallois@ens.univ-artois.fr" identification="22302296" prenom="Nicolas"/>
<student nom="Ganoo" adresse="laura_ganoo@ens.univ-artois.fr" identification="22301663" prenom="Laura"/>
<student nom="Gautrelet" adresse="victoria_gautrelet@ens.univ-artois.fr" identification="22303120" prenom="Victoria"/>
<student nom="Gelernter" adresse="maud_gelernter@ens.univ-artois.fr" identification="22300413" prenom="Maud"/>
<student nom="Gelez" adresse="oceane_gelez@ens.univ-artois.fr" identification="22304937" prenom="Oceane"/>
<student nom="Geudin" adresse="lukas_geudin@ens.univ-artois.fr" identification="22302417" prenom="Lukas"/>
<student nom="Ghrib" adresse="nourelhouda_ghrib@ens.univ-artois.fr" identification="22314460" prenom="Nour El Houda"/>
<student nom="Gil" adresse="clement_gil@ens.univ-artois.fr" identification="22300750" prenom="Clement"/>
<student nom="Glacon" adresse="flavie_glacon@ens.univ-artois.fr" identification="22317101" prenom="Flavie"/>
<student nom="Golaz" adresse="laure_golaz@ens.univ-artois.fr" identification="22301201" prenom="Laure"/>
<student nom="Grimonprez" adresse="noemie_grimonprez@ens.univ-artois.fr" identification="22303335" prenom="Noemie"/>
<student nom="Guitton" adresse="eloi_guitton@ens.univ-artois.fr" identification="22300793" prenom="Eloi"/>
<student nom="Halberda" adresse="laly_halberda@ens.univ-artois.fr" identification="22302761" prenom="Laly"/>
<student nom="Hamelin" adresse="eva_hamelin@ens.univ-artois.fr" identification="22302554" prenom="Eva"/>
<student nom="Hamidou" adresse="chaima_hamidou@ens.univ-artois.fr" identification="22302581" prenom="Chaima"/>
<student nom="Havez" adresse="robin_havez@ens.univ-artois.fr" identification="22313182" prenom="Robin"/>
<student nom="Heinrich" adresse="mauryne_heinrich@ens.univ-artois.fr" identification="22303265" prenom="Mauryne"/>
<student nom="Hennache" adresse="raphaelle_hennache@ens.univ-artois.fr" identification="22302467" prenom="Raphaelle"/>
<student nom="Hennebicq" adresse="axelle_hennebicq@ens.univ-artois.fr" identification="22310422" prenom="Axelle"/>
<student nom="Henriques" adresse="justine_henriques@ens.univ-artois.fr" identification="22303162" prenom="Justine"/>
<student nom="Hochart" adresse="maelise_hochart@ens.univ-artois.fr" identification="22302446" prenom="Maelise"/>
<student nom="Hoffmann" adresse="alex_hoffmann@ens.univ-artois.fr" identification="22301670" prenom="Alex"/>
<student nom="Hooghe" adresse="oceane_hooghe@ens.univ-artois.fr" identification="22302553" prenom="Oceane"/>
<student nom="Hoornaert" adresse="camille_hoornaert@ens.univ-artois.fr" identification="22303500" prenom="Camille"/>
<student nom="Houdant" adresse="mathilde_houdant@ens.univ-artois.fr" identification="22303240" prenom="Mathilde"/>
<student nom="Houillon" adresse="gaelle_houillon@ens.univ-artois.fr" identification="22208744" prenom="Gaelle"/>
<student nom="Hu" adresse="guillaume_hu@ens.univ-artois.fr" identification="22102897" prenom="Guillaume"/>
<student nom="Huleux" adresse="clemence_huleux@ens.univ-artois.fr" identification="22308261" prenom="Clemence"/>
<student nom="Ijaz" adresse="robina_ijaz@ens.univ-artois.fr" identification="22301926" prenom="Robina"/>
<student nom="Jakubowski" adresse="lena_jakubowski@ens.univ-artois.fr" identification="22304320" prenom="Lena"/>
<student nom="Jouini" adresse="louisa_jouini@ens.univ-artois.fr" identification="22206083" prenom="Louisa"/>
<student nom="Jucobin" adresse="agathe_jucobin@ens.univ-artois.fr" identification="22303900" prenom="Agathe"/>
<student nom="Kapitza Mellinas" adresse="clea_kapitzamellinas@ens.univ-artois.fr" identification="22203788" prenom="Clea"/>
<student nom="Konelebouet" adresse="cameron_konelebouet1@ens.univ-artois.fr" identification="22205042" prenom="Cameron"/>
<student nom="Krim" adresse="sofiane_krim@ens.univ-artois.fr" identification="22311363" prenom="Sofiane"/>
<student nom="Labalette" adresse="pauline_labalette@ens.univ-artois.fr" identification="22302027" prenom="Pauline"/>
<student nom="Lagast" adresse="dauryne_lagast@ens.univ-artois.fr" identification="22304786" prenom="Dauryne"/>
<student nom="Lamotte" adresse="leonie_lamotte@ens.univ-artois.fr" identification="22300590" prenom="Leonie"/>
<student nom="Lampin" adresse="andjy_lampin@ens.univ-artois.fr" identification="22303606" prenom="Andjy"/>
<student nom="Lampin" adresse="elodie_lampin1@ens.univ-artois.fr" identification="22310929" prenom="Elodie"/>
<student nom="Lancry" adresse="sarah_lancry@ens.univ-artois.fr" identification="22300578" prenom="Sarah"/>
<student nom="Lang" adresse="maelle_lang@ens.univ-artois.fr" identification="22302563" prenom="Maelle"/>
<student nom="Lange- Anot" adresse="cecile_lange-anot@ens.univ-artois.fr" identification="22301486" prenom="Cecile"/>
<student nom="Lanier" adresse="claire_lanier@ens.univ-artois.fr" identification="22304785" prenom="Claire"/>
<student nom="Lannoote" adresse="pierre_lannoote@ens.univ-artois.fr" identification="22301230" prenom="Pierre"/>
<student nom="Largillet" adresse="camille_largillet@ens.univ-artois.fr" identification="22009771" prenom="Camille"/>
<student nom="Laurent Grandisson" adresse="anne-marine_laurentgrandisson@ens.univ-artois.fr" identification="22303816" prenom="Anne-Marine"/>
<student nom="Lebreton-Lagache" adresse="leevann_lebreton-lagache@ens.univ-artois.fr" identification="22203082" prenom="Leevann"/>
<student nom="Lecas" adresse="manon_lecas1@ens.univ-artois.fr" identification="22300495" prenom="Manon"/>
<student nom="Leclercq" adresse="amandine_leclercq2@ens.univ-artois.fr" identification="22304002" prenom="Amandine"/>
<student nom="Lefebvre" adresse="anais_lefebvre2@ens.univ-artois.fr" identification="22303598" prenom="Anais"/>
<student nom="Lefebvre" adresse="celia_lefebvre1@ens.univ-artois.fr" identification="22310520" prenom="Celia"/>
<student nom="Lefebvre" adresse="loane_lefebvre@ens.univ-artois.fr" identification="22311068" prenom="Loane"/>
<student nom="Leflon-Cordier" adresse="chloe_leflon-cordier@ens.univ-artois.fr" identification="22304058" prenom="Chloe"/>
<student nom="Lefort" adresse="geraldine_lefort@ens.univ-artois.fr" identification="22301350" prenom="Geraldine"/>
<student nom="Legay" adresse="benjamin_legay1@ens.univ-artois.fr" identification="22300995" prenom="Benjamin"/>
<student nom="Lemaire" adresse="manon_lemaire2@ens.univ-artois.fr" identification="22301209" prenom="Manon"/>
<student nom="Leporcq" adresse="stacy_leporcq@ens.univ-artois.fr" identification="22300811" prenom="Stacy"/>
<student nom="Lepretre" adresse="alexandre_lepretre@ens.univ-artois.fr" identification="22302099" prenom="Alexandre"/>
<student nom="Lepreux" adresse="alicia_lepreux@ens.univ-artois.fr" identification="22301200" prenom="Alicia"/>
<student nom="Lequeux" adresse="lana_lequeux@ens.univ-artois.fr" identification="22303274" prenom="Lana"/>
<student nom="Lescornez" adresse="sacha_lescornez@ens.univ-artois.fr" identification="22300752" prenom="Sacha"/>
<student nom="Leste" adresse="luka_leste@ens.univ-artois.fr" identification="22204125" prenom="Luka"/>
<student nom="Levant" adresse="lea_levant@ens.univ-artois.fr" identification="22301003" prenom="Lea"/>
<student nom="Limare" adresse="jeanne_limare1@ens.univ-artois.fr" identification="22308968" prenom="Jeanne"/>
<student nom="Locqueneux" adresse="luan_locqueneux@ens.univ-artois.fr" identification="22301525" prenom="Luan"/>
<student nom="Locquet" adresse="alyssa_locquet@ens.univ-artois.fr" identification="22319120" prenom="Alyssa"/>
<student nom="Logez" adresse="alexi_logez@ens.univ-artois.fr" identification="22303930" prenom="Alexi"/>
<student nom="Loriot" adresse="alison_loriot@ens.univ-artois.fr" identification="22311620" prenom="Alison"/>
<student nom="Louis" adresse="lisa_louis@ens.univ-artois.fr" identification="22306620" prenom="Lisa"/>
<student nom="Luc" adresse="buithaonhi_luc@ens.univ-artois.fr" identification="22307720" prenom="Bui Thao Nhi"/>
<student nom="Lucas" adresse="alexis_lucas@ens.univ-artois.fr" identification="22306422" prenom="Alexis"/>
<student nom="Maarouf" adresse="sarah_maarouf@ens.univ-artois.fr" identification="22301351" prenom="Sarah"/>
<student nom="Maciag" adresse="svetlana_maciag@ens.univ-artois.fr" identification="22300568" prenom="Svetlana"/>
<student nom="Malo" adresse="elisa_malo@ens.univ-artois.fr" identification="22204223" prenom="Elisa"/>
<student nom="Mandeville" adresse="antonin_mandeville@ens.univ-artois.fr" identification="22302823" prenom="Antonin"/>
<student nom="Manouvrier" adresse="kimberley_manouvrier@ens.univ-artois.fr" identification="22300860" prenom="Kimberley"/>
<student nom="Mansour" adresse="myriam_mansour@ens.univ-artois.fr" identification="22300396" prenom="Myriam"/>
<student nom="Margris" adresse="anais_margris@ens.univ-artois.fr" identification="22305733" prenom="Anais"/>
<student nom="Marini" adresse="elisa_marini@ens.univ-artois.fr" identification="22300459" prenom="Elisa"/>
<student nom="Mathias" adresse="emmanuel_mathias@ens.univ-artois.fr" identification="22303713" prenom="Emmanuel"/>
<student nom="Meilliez" adresse="tatiana_meilliez@ens.univ-artois.fr" identification="22305980" prenom="Tatiana"/>
<student nom="Melin" adresse="camille_melin1@ens.univ-artois.fr" identification="22300930" prenom="Camille"/>
<student nom="Melon" adresse="colyne_melon@ens.univ-artois.fr" identification="22304241" prenom="Colyne"/>
<student nom="Mely" adresse="coline_mely@ens.univ-artois.fr" identification="22305604" prenom="Coline"/>
<student nom="Menery" adresse="ombeline_menery@ens.univ-artois.fr" identification="22301160" prenom="Ombeline"/>
<student nom="Meurillon" adresse="emeline_meurillon@ens.univ-artois.fr" identification="22301377" prenom="Emeline"/>
<student nom="Michel" adresse="arthur_michel2@ens.univ-artois.fr" identification="22311203" prenom="Arthur"/>
<student nom="Michel" adresse="celine_michel@ens.univ-artois.fr" identification="22300624" prenom="Celine"/>
<student nom="Milia" adresse="carla_milia@ens.univ-artois.fr" identification="22301733" prenom="Carla"/>
<student nom="Millan" adresse="anaele_millan@ens.univ-artois.fr" identification="22301009" prenom="Anaele"/>
<student nom="Milson" adresse="kilian_milson@ens.univ-artois.fr" identification="22304708" prenom="Kilian"/>
<student nom="Mirland" adresse="lucie_mirland@ens.univ-artois.fr" identification="22320060" prenom="Lucie"/>
<student nom="Monpays" adresse="anais_monpays@ens.univ-artois.fr" identification="22303894" prenom="Anais"/>
<student nom="Montraisin" adresse="justine_montraisin@ens.univ-artois.fr" identification="22305520" prenom="Justine"/>
<student nom="Mordaque" adresse="lea_mordaque@ens.univ-artois.fr" identification="22302311" prenom="Lea"/>
<student nom="Morel" adresse="lizea_morel@ens.univ-artois.fr" identification="22301975" prenom="Lizea"/>
<student nom="Mouton" adresse="canelle_mouton@ens.univ-artois.fr" identification="22308012" prenom="Canelle"/>
<student nom="Nabigha" adresse="rayane_nabigha@ens.univ-artois.fr" identification="22301256" prenom="Rayane"/>
<student nom="Necendre" adresse="candice_necendre@ens.univ-artois.fr" identification="22301138" prenom="Candice"/>
<student nom="Noury" adresse="jules_noury@ens.univ-artois.fr" identification="22304470" prenom="Jules"/>
<student nom="Orban" adresse="elona_orban@ens.univ-artois.fr" identification="22301067" prenom="Elona"/>
<student nom="Ouaziz" adresse="nawel_ouaziz@ens.univ-artois.fr" identification="22301533" prenom="Nawel"/>
<student nom="Patyk" adresse="chloe_patyk@ens.univ-artois.fr" identification="22304441" prenom="Chloe"/>
<student nom="Perrin" adresse="alexis_perrin@ens.univ-artois.fr" identification="22302147" prenom="Alexis"/>
<student nom="Petit" adresse="thomas_petit5@ens.univ-artois.fr" identification="22004788" prenom="Thomas"/>
<student nom="Pichot" adresse="emma_pichot@ens.univ-artois.fr" identification="22305776" prenom="Emma"/>
<student nom="Picquet" adresse="margot_picquet@ens.univ-artois.fr" identification="22307820" prenom="Margot"/>
<student nom="Piquet" adresse="julia_piquet@ens.univ-artois.fr" identification="22301605" prenom="Julia"/>
<student nom="Plancart" adresse="emmy_plancart@ens.univ-artois.fr" identification="22302436" prenom="Emmy"/>
<student nom="Poirier" adresse="nina_poirier@ens.univ-artois.fr" identification="22300891" prenom="Nina"/>
<student nom="Pomart" adresse="candice_pomart@ens.univ-artois.fr" identification="22302414" prenom="Candice"/>
<student nom="Pouly" adresse="emilie_pouly@ens.univ-artois.fr" identification="22303895" prenom="Emilie"/>
<student nom="Pressac" adresse="emilie_pressac@ens.univ-artois.fr" identification="22303952" prenom="Emilie"/>
<student nom="Pronnier" adresse="manon_pronnier@ens.univ-artois.fr" identification="22300469" prenom="Manon"/>
<student nom="Pruvost" adresse="margaux_pruvost1@ens.univ-artois.fr" identification="22204667" prenom="Margaux"/>
<student nom="Pruvot" adresse="manon_pruvot@ens.univ-artois.fr" identification="22300326" prenom="Manon"/>
<student nom="Queant" adresse="alexis_queant@ens.univ-artois.fr" identification="22300460" prenom="Alexis"/>
<student nom="Quillet" adresse="julien_quillet@ens.univ-artois.fr" identification="22301622" prenom="Julien"/>
<student nom="Rabzane" adresse="ehnia_rabzane@ens.univ-artois.fr" identification="22303592" prenom="Ehnia"/>
<student nom="Ransson" adresse="hugo_ransson@ens.univ-artois.fr" identification="22301054" prenom="Hugo"/>
<student nom="Rezigat" adresse="shymen_rezigat@ens.univ-artois.fr" identification="22203254" prenom="Shymen"/>
<student nom="Richard" adresse="elina_richard@ens.univ-artois.fr" identification="22301277" prenom="Elina"/>
<student nom="Ringard" adresse="noah_ringard@ens.univ-artois.fr" identification="22301935" prenom="Noah"/>
<student nom="Rosiaux" adresse="chloe_rosiaux@ens.univ-artois.fr" identification="22300515" prenom="Chloe"/>
<student nom="Ruggiu" adresse="lorenza_ruggiu@ens.univ-artois.fr" identification="22300494" prenom="Lorenza"/>
<student nom="Salmon" adresse="fantine_salmon@ens.univ-artois.fr" identification="22301024" prenom="Fantine"/>
<student nom="Sangolo" adresse="cyprien_sangolo@ens.univ-artois.fr" identification="22302434" prenom="Cyprien"/>
<student nom="Sebert" adresse="ines_sebert@ens.univ-artois.fr" identification="22203908" prenom="Ines"/>
<student nom="Sellier" adresse="thibaut_sellier@ens.univ-artois.fr" identification="22301211" prenom="Thibaut"/>
<student nom="Sergeant" adresse="lilou_sergeant@ens.univ-artois.fr" identification="22304001" prenom="Lilou"/>
<student nom="Seulin" adresse="jeanne_seulin@ens.univ-artois.fr" identification="22303400" prenom="Jeanne"/>
<student nom="Sevin" adresse="maelle_sevin@ens.univ-artois.fr" identification="22203663" prenom="Maelle"/>
<student nom="Smessaert" adresse="carla_smessaert@ens.univ-artois.fr" identification="22200585" prenom="Carla"/>
<student nom="Soude" adresse="ilana_soude@ens.univ-artois.fr" identification="22303226" prenom="Ilana"/>
<student nom="Stordeur" adresse="ophelie_stordeur@ens.univ-artois.fr" identification="22301870" prenom="Ophelie"/>
<student nom="Swynghedauwe" adresse="oceane_swynghedauwe@ens.univ-artois.fr" identification="22200986" prenom="Oceane"/>
<student nom="Szasz" adresse="bianca_szasz@ens.univ-artois.fr" identification="22300407" prenom="Bianca"/>
<student nom="Talbi" adresse="mariam_talbi@ens.univ-artois.fr" identification="22304876" prenom="Mariam"/>
<student nom="Taleb" adresse="sofia_taleb@ens.univ-artois.fr" identification="22204365" prenom="Sofia"/>
<student nom="Talleu" adresse="ambre_talleu@ens.univ-artois.fr" identification="22201117" prenom="Ambre"/>
<student nom="Tartare" adresse="lea_tartare@ens.univ-artois.fr" identification="22300313" prenom="Lea"/>
<student nom="Teilhet" adresse="lucile_teilhet@ens.univ-artois.fr" identification="22303555" prenom="Lucile"/>
<student nom="Tellier" adresse="lea_tellier1@ens.univ-artois.fr" identification="22306632" prenom="Lea"/>
<student nom="Therouanne" adresse="renaud_therouanne@ens.univ-artois.fr" identification="22301212" prenom="Renaud"/>
<student nom="Tirel" adresse="morgane_tirel@ens.univ-artois.fr" identification="22300757" prenom="Morgane"/>
<student nom="Toulouse" adresse="matheo_toulouse@ens.univ-artois.fr" identification="22103878" prenom="Matheo"/>
<student nom="Trinel" adresse="evan_trinel@ens.univ-artois.fr" identification="22304026" prenom="Evan"/>
<student nom="Trolle" adresse="laurine_trolle@ens.univ-artois.fr" identification="22302531" prenom="Laurine"/>
<student nom="Troubat" adresse="romane_troubat@ens.univ-artois.fr" identification="22300416" prenom="Romane"/>
<student nom="Tshibangu Kabongo" adresse="sabah_tshibangukabongo@ens.univ-artois.fr" identification="22303968" prenom="Sabah"/>
<student nom="Ulinecz" adresse="mathis_ulinecz@ens.univ-artois.fr" identification="22305376" prenom="Mathis"/>
<student nom="Vaesken" adresse="elodie_vaesken@ens.univ-artois.fr" identification="22007289" prenom="Elodie"/>
<student nom="Valding" adresse="victoria_valding@ens.univ-artois.fr" identification="22301402" prenom="Victoria"/>
<student nom="Vasseur" adresse="iona_vasseur@ens.univ-artois.fr" identification="22203203" prenom="Iona"/>
<student nom="Vastra" adresse="lauryne_vastra@ens.univ-artois.fr" identification="22303107" prenom="Lauryne"/>
<student nom="Vercucque" adresse="valentine_vercucque@ens.univ-artois.fr" identification="22304949" prenom="Valentine"/>
<student nom="Verdin" adresse="ines_verdin@ens.univ-artois.fr" identification="22304740" prenom="Ines"/>
<student nom="Verheyde" adresse="lalie_verheyde@ens.univ-artois.fr" identification="22300435" prenom="Lalie"/>
<student nom="Vetz" adresse="lila_vetz@ens.univ-artois.fr" identification="22300415" prenom="Lila"/>
<student nom="Vigouroux" adresse="fanny_vigouroux@ens.univ-artois.fr" identification="22300393" prenom="Fanny"/>
<student nom="Vikarnyy" adresse="danylo_vikarnyy@ens.univ-artois.fr" identification="22312960" prenom="Danylo"/>
<student nom="Vilches" adresse="nolann_vilches@ens.univ-artois.fr" identification="22316320" prenom="Nolann"/>
<student nom="Viseux" adresse="cassandre_viseux@ens.univ-artois.fr" identification="22204912" prenom="Cassandre"/>
<student nom="Vogue" adresse="antonio_vogue@ens.univ-artois.fr" identification="22318703" prenom="Antonio"/>
<student nom="Vrau" adresse="ambre_vrau@ens.univ-artois.fr" identification="22302385" prenom="Ambre"/>
<student nom="Vrau" adresse="astrid_vrau@ens.univ-artois.fr" identification="22208370" prenom="Astrid"/>
<student nom="Wadoux-Vaquette" adresse="lubin_wadoux-vaquette@ens.univ-artois.fr" identification="22300876" prenom="Lubin"/>
<student nom="Waekens" adresse="loic_waekens@ens.univ-artois.fr" identification="22207345" prenom="Loic"/>
<student nom="Wallaert" adresse="lilian_wallaert@ens.univ-artois.fr" identification="22308015" prenom="Lilian"/>
<student nom="Wallerand" adresse="claire_wallerand@ens.univ-artois.fr" identification="22301308" prenom="Claire"/>
<student nom="Warembourg" adresse="laurine_warembourg@ens.univ-artois.fr" identification="22323841" prenom="Laurine"/>
<student nom="Warlouzet" adresse="rayan_warlouzet@ens.univ-artois.fr" identification="22304745" prenom="Rayan"/>
<student nom="Wassouf" adresse="rony_wassouf@ens.univ-artois.fr" identification="22313220" prenom="Rony"/>
<student nom="Watrin" adresse="enzo_watrin@ens.univ-artois.fr" identification="22203268" prenom="Enzo"/>
<student nom="Weppe" adresse="merrick_weppe@ens.univ-artois.fr" identification="22202817" prenom="Merrick"/>
<student nom="Wojkiewicz" adresse="marianne_wojkiewicz@ens.univ-artois.fr" identification="22301685" prenom="Marianne"/>
<student nom="Wypiorzik" adresse="camille_wypiorzik@ens.univ-artois.fr" identification="22303992" prenom="Camille"/>
<student nom="Yvonnou" adresse="theo_yvonnou@ens.univ-artois.fr" identification="22300746" prenom="Theo"/>
<student nom="Zeggai" adresse="fatimazohra_zeggai@ens.univ-artois.fr" identification="22300610" prenom="Fatima Zohra"/>
</fileCSV>
<fileCSV nameListStudent="l1hg-s2" name="nom" email="adresse" year="2024" encoding="UTF-8" separator=";" firstname="prenom" id="identification">
<student nom="Adjal" adresse="helene_adjal@ens.univ-artois.fr" identification="22302374" prenom="Helene"/>
<student nom="Alexandre" adresse="louis_alexandre1@ens.univ-artois.fr" identification="22303957" prenom="Louis"/>
<student nom="Annebicque" adresse="ethann_annebicque@ens.univ-artois.fr" identification="22301096" prenom="Ethann"/>
<student nom="Anselot" adresse="timothe_anselot@ens.univ-artois.fr" identification="22301489" prenom="Timothe"/>
<student nom="Aoumat" adresse="axel_aoumat@ens.univ-artois.fr" identification="22304664" prenom="Axel"/>
<student nom="Aoumat" adresse="lucas_aoumat@ens.univ-artois.fr" identification="22202361" prenom="Lucas"/>
<student nom="Aubier" adresse="ines_aubier@ens.univ-artois.fr" identification="22302822" prenom="Ines"/>
<student nom="Baran" adresse="lisa_baran@ens.univ-artois.fr" identification="22305780" prenom="Lisa"/>
<student nom="Bastien" adresse="benjamin_bastien@ens.univ-artois.fr" identification="22003972" prenom="Benjamin"/>
<student nom="Becque" adresse="camille_becque@ens.univ-artois.fr" identification="22305773" prenom="Camille"/>
<student nom="Belaiche" adresse="imen_belaiche@ens.univ-artois.fr" identification="22301493" prenom="Imen"/>
<student nom="Benoit" adresse="anais_benoit1@ens.univ-artois.fr" identification="22104173" prenom="Anais"/>
<student nom="Benzemra--Petit" adresse="issam_benzemra--petit@ens.univ-artois.fr" identification="22302582" prenom="Issam"/>
<student nom="Berdal" adresse="lou-anne_berdal@ens.univ-artois.fr" identification="22302400" prenom="Lou-Anne"/>
<student nom="Bernard" adresse="doriane_bernard@ens.univ-artois.fr" identification="22301225" prenom="Doriane"/>
<student nom="Bertin" adresse="justine_bertin@ens.univ-artois.fr" identification="22301866" prenom="Justine"/>
<student nom="Binsse" adresse="orlane_binsse@ens.univ-artois.fr" identification="22306655" prenom="Orlane"/>
<student nom="Bissagnet--Vincent" adresse="clemence_bissagnet--vincent@ens.univ-artois.fr" identification="22300932" prenom="Clemence"/>
<student nom="Blondel" adresse="anais_blondel@ens.univ-artois.fr" identification="22302390" prenom="Anais"/>
<student nom="Bonaventure" adresse="mario_bonaventure@ens.univ-artois.fr" identification="22305770" prenom="Mario"/>
<student nom="Bouchoir" adresse="melanie_bouchoir@ens.univ-artois.fr" identification="22301945" prenom="Melanie"/>
<student nom="Boulogne" adresse="othilie_boulogne@ens.univ-artois.fr" identification="22300496" prenom="Othilie"/>
<student nom="Bourdrel" adresse="ronan_bourdrel@ens.univ-artois.fr" identification="22306341" prenom="Ronan"/>
<student nom="Brogniez" adresse="arthur_brogniez@ens.univ-artois.fr" identification="22202503" prenom="Arthur"/>
<student nom="Bruniaux" adresse="amelie_bruniaux@ens.univ-artois.fr" identification="22302200" prenom="Amelie"/>
<student nom="Buns" adresse="aurelie_buns@ens.univ-artois.fr" identification="22305390" prenom="Aurelie"/>
<student nom="Cadart" adresse="axel_cadart@ens.univ-artois.fr" identification="22301645" prenom="Axel"/>
<student nom="Calesse" adresse="mathys_calesse@ens.univ-artois.fr" identification="22300721" prenom="Mathys"/>
<student nom="Canon" adresse="lucas_canon@ens.univ-artois.fr" identification="22001356" prenom="Lucas"/>
<student nom="Carlier" adresse="mathis_carlier@ens.univ-artois.fr" identification="22310601" prenom="Mathis"/>
<student nom="Carrette" adresse="hugo_carrette@ens.univ-artois.fr" identification="22300419" prenom="Hugo"/>
<student nom="Catteaux" adresse="maelia_catteaux@ens.univ-artois.fr" identification="22302565" prenom="Maelia"/>
<student nom="Cheddad" adresse="douaa_cheddad@ens.univ-artois.fr" identification="22306900" prenom="Douaa"/>
<student nom="Chutsch" adresse="benjamin_chutsch@ens.univ-artois.fr" identification="22301827" prenom="Benjamin"/>
<student nom="Collier" adresse="romain_collier@ens.univ-artois.fr" identification="22304701" prenom="Romain"/>
<student nom="Cornu" adresse="camille_cornu@ens.univ-artois.fr" identification="22304053" prenom="Camille"/>
<student nom="Crespel" adresse="theo_crespel@ens.univ-artois.fr" identification="22301976" prenom="Theo"/>
<student nom="Cuvillier" adresse="leo_cuvillier@ens.univ-artois.fr" identification="22304838" prenom="Leo"/>
<student nom="Daise-Gaucher" adresse="louis_daise-gaucher@ens.univ-artois.fr" identification="22311123" prenom="Louis"/>
<student nom="Dambrine" adresse="thomas_dambrine@ens.univ-artois.fr" identification="22302321" prenom="Thomas"/>
<student nom="Darras" adresse="mateo_darras@ens.univ-artois.fr" identification="22100579" prenom="Mateo"/>
<student nom="Davroux" adresse="lucas_davroux@ens.univ-artois.fr" identification="22300937" prenom="Lucas"/>
<student nom="De Macedo" adresse="adelino_demacedo@ens.univ-artois.fr" identification="22305201" prenom="Adelino"/>
<student nom="De Vidts" adresse="romain_devidts@ens.univ-artois.fr" identification="22300913" prenom="Romain"/>
<student nom="Debarge-Marchand" adresse="elea_debarge-marchand@ens.univ-artois.fr" identification="22303532" prenom="Elea"/>
<student nom="Decroix" adresse="oceane_decroix1@ens.univ-artois.fr" identification="22300572" prenom="Oceane"/>
<student nom="Delahaye" adresse="lucas_delahaye@ens.univ-artois.fr" identification="22303443" prenom="Lucas"/>
<student nom="Delannoy" adresse="tom_delannoy1@ens.univ-artois.fr" identification="22307220" prenom="Tom"/>
<student nom="Delaval" adresse="remi_delaval@ens.univ-artois.fr" identification="22301813" prenom="Remi"/>
<student nom="Delavier" adresse="tanguy_delavier@ens.univ-artois.fr" identification="22302297" prenom="Tanguy"/>
<student nom="Delcourt" adresse="anthony_delcourt1@ens.univ-artois.fr" identification="22305240" prenom="Anthony"/>
<student nom="Delplace" adresse="lysa_delplace@ens.univ-artois.fr" identification="22305884" prenom="Lysa"/>
<student nom="Delrue" adresse="romain_delrue3@ens.univ-artois.fr" identification="22202920" prenom="Romain"/>
<student nom="Delvalle" adresse="remi_delvalle@ens.univ-artois.fr" identification="22304047" prenom="Remi"/>
<student nom="Delvallez" adresse="angela_delvallez@ens.univ-artois.fr" identification="22300911" prenom="Angela"/>
<student nom="Delville" adresse="lucile_delville@ens.univ-artois.fr" identification="22301060" prenom="Lucile"/>
<student nom="Denis" adresse="aurelien_denis@ens.univ-artois.fr" identification="22303292" prenom="Aurelien"/>
<student nom="Denys" adresse="lea_denys@ens.univ-artois.fr" identification="22303621" prenom="Lea"/>
<student nom="Deplanque" adresse="enora-lou_deplanque@ens.univ-artois.fr" identification="22303544" prenom="Enora-Lou"/>
<student nom="Desfachelles" adresse="noah_desfachelles@ens.univ-artois.fr" identification="22303554" prenom="Noah"/>
<student nom="Devienne" adresse="clara_devienne@ens.univ-artois.fr" identification="22302386" prenom="Clara"/>
<student nom="Deville" adresse="cloe_deville@ens.univ-artois.fr" identification="22304667" prenom="Cloe"/>
<student nom="Devos Devulder" adresse="esteban_devosdevulder@ens.univ-artois.fr" identification="22302343" prenom="Esteban"/>
<student nom="Drandic" adresse="andrei_drandic@ens.univ-artois.fr" identification="21905573" prenom="Andrei"/>
<student nom="Dubois" adresse="mathis_dubois@ens.univ-artois.fr" identification="22302167" prenom="Mathis"/>
<student nom="Ducrocq" adresse="simon_ducrocq@ens.univ-artois.fr" identification="22302556" prenom="Simon"/>
<student nom="Dupire" adresse="yvana_dupire@ens.univ-artois.fr" identification="22304800" prenom="Yvana"/>
<student nom="Duponchel" adresse="louna_duponchel@ens.univ-artois.fr" identification="22104296" prenom="Louna"/>
<student nom="Duponchelle" adresse="antoine_duponchelle@ens.univ-artois.fr" identification="22311124" prenom="Antoine"/>
<student nom="Duprez" adresse="theo_duprez@ens.univ-artois.fr" identification="22308640" prenom="Theo"/>
<student nom="Faye" adresse="mouhamed_faye@ens.univ-artois.fr" identification="22326702" prenom="Mouhamed"/>
<student nom="Fynnaert" adresse="baptiste_fynnaert@ens.univ-artois.fr" identification="22300316" prenom="Baptiste"/>
<student nom="Gamez" adresse="antonin_gamez@ens.univ-artois.fr" identification="22305940" prenom="Antonin"/>
<student nom="Gaudin" adresse="stefan_gaudin@ens.univ-artois.fr" identification="22305366" prenom="Stefan"/>
<student nom="Ghilain" adresse="lucie_ghilain@ens.univ-artois.fr" identification="22305588" prenom="Lucie"/>
<student nom="Gilbert" adresse="yoann_gilbert@ens.univ-artois.fr" identification="22313602" prenom="Yoann"/>
<student nom="Godalier" adresse="nathan_godalier@ens.univ-artois.fr" identification="22300688" prenom="Nathan"/>
<student nom="Gosset" adresse="jane_gosset@ens.univ-artois.fr" identification="22300516" prenom="Jane"/>
<student nom="Graveleine" adresse="fabien_graveleine@ens.univ-artois.fr" identification="22001983" prenom="Fabien"/>
<student nom="Guffroy" adresse="hugo_guffroy@ens.univ-artois.fr" identification="22302528" prenom="Hugo"/>
<student nom="Halluin" adresse="noah_halluin@ens.univ-artois.fr" identification="22310280" prenom="Noah"/>
<student nom="Hamil" adresse="hacene_hamil@ens.univ-artois.fr" identification="22317500" prenom="Hacene"/>
<student nom="Hellemans" adresse="leo_hellemans@ens.univ-artois.fr" identification="22301293" prenom="Leo"/>
<student nom="Hemery" adresse="luna_hemery@ens.univ-artois.fr" identification="22303859" prenom="Luna"/>
<student nom="Heneuche" adresse="marie-louise_heneuche@ens.univ-artois.fr" identification="22303817" prenom="Marie-Louise"/>
<student nom="Henneton - - Hecquet" adresse="camille_henneton--hecquet@ens.univ-artois.fr" identification="22303341" prenom="Camille"/>
<student nom="Henon" adresse="loane_henon@ens.univ-artois.fr" identification="22304714" prenom="Loane"/>
<student nom="Hounzouken-Akue" adresse="adotepreevel_hounzouken-akue@ens.univ-artois.fr" identification="22322661" prenom="Adote Preevel"/>
<student nom="Humain" adresse="gabriel_humain@ens.univ-artois.fr" identification="22300511" prenom="Gabriel"/>
<student nom="Humez" adresse="maeline_humez@ens.univ-artois.fr" identification="22303586" prenom="Maeline"/>
<student nom="Huret" adresse="enzo_huret@ens.univ-artois.fr" identification="22203907" prenom="Enzo"/>
<student nom="Justin" adresse="theo_justin@ens.univ-artois.fr" identification="22303888" prenom="Theo"/>
<student nom="Kedzierski" adresse="laura_kedzierski@ens.univ-artois.fr" identification="22204897" prenom="Laura"/>
<student nom="Konury" adresse="mathilde_konury@ens.univ-artois.fr" identification="22300996" prenom="Mathilde"/>
<student nom="Lagneau" adresse="candice_lagneau@ens.univ-artois.fr" identification="22201332" prenom="Candice"/>
<student nom="Lefebvre" adresse="alexy_lefebvre@ens.univ-artois.fr" identification="22302287" prenom="Alexy"/>
<student nom="Legrand" adresse="alexis_legrand2@ens.univ-artois.fr" identification="22301381" prenom="Alexis"/>
<student nom="Legrand" adresse="clement_legrand2@ens.univ-artois.fr" identification="22303599" prenom="Clement"/>
<student nom="Legros" adresse="jeremy_legros2@ens.univ-artois.fr" identification="99000398" prenom="Jeremy"/>
<student nom="Lempereur" adresse="julien_lempereur@ens.univ-artois.fr" identification="22303123" prenom="Julien"/>
<student nom="Lenclud" adresse="mickael_lenclud@ens.univ-artois.fr" identification="22206882" prenom="Mickael"/>
<student nom="Lenfle" adresse="marie-lou_lenfle@ens.univ-artois.fr" identification="22301167" prenom="Marie-Lou"/>
<student nom="Lenglet" adresse="amelie_lenglet@ens.univ-artois.fr" identification="22304042" prenom="Amelie"/>
<student nom="Lesage" adresse="hugo_lesage@ens.univ-artois.fr" identification="22300447" prenom="Hugo"/>
<student nom="Letombe" adresse="ethan_letombe@ens.univ-artois.fr" identification="22313880" prenom="Ethan"/>
<student nom="Levis" adresse="yvonnick_levis@ens.univ-artois.fr" identification="22303986" prenom="Yvonnick"/>
<student nom="Maalmi" adresse="fatima_maalmi@ens.univ-artois.fr" identification="22316781" prenom="Fatima"/>
<student nom="Macquet" adresse="matheo_macquet@ens.univ-artois.fr" identification="22301714" prenom="Matheo"/>
<student nom="Maeght" adresse="remy_maeght@ens.univ-artois.fr" identification="22109600" prenom="Remy"/>
<student nom="Makour" adresse="maissa_makour@ens.univ-artois.fr" identification="22304934" prenom="Maissa"/>
<student nom="Marechal" adresse="alex_marechal@ens.univ-artois.fr" identification="22303696" prenom="Alex"/>
<student nom="Marien" adresse="solene_marien@ens.univ-artois.fr" identification="22301433" prenom="Solene"/>
<student nom="Marin" adresse="leo_marin@ens.univ-artois.fr" identification="22311800" prenom="Leo"/>
<student nom="Massart" adresse="cyril_massart1@ens.univ-artois.fr" identification="22317023" prenom="Cyril"/>
<student nom="Mayelle" adresse="cassandre_mayelle@ens.univ-artois.fr" identification="22311261" prenom="Cassandre"/>
<student nom="Melin" adresse="matt_melin@ens.univ-artois.fr" identification="22309200" prenom="Matt"/>
<student nom="Meloni" adresse="enzo_meloni@ens.univ-artois.fr" identification="22301239" prenom="Enzo"/>
<student nom="Michel" adresse="apolline_michel@ens.univ-artois.fr" identification="22203553" prenom="Apolline"/>
<student nom="Mikolajczak" adresse="justine_mikolajczak@ens.univ-artois.fr" identification="22302021" prenom="Justine"/>
<student nom="Miletti" adresse="melusine_miletti@ens.univ-artois.fr" identification="22300553" prenom="Melusine"/>
<student nom="Moularde" adresse="tom_moularde@ens.univ-artois.fr" identification="22305460" prenom="Tom"/>
<student nom="Najdecki" adresse="anais_najdecki@ens.univ-artois.fr" identification="22302551" prenom="Anais"/>
<student nom="Normand" adresse="quentin_normand@ens.univ-artois.fr" identification="22302428" prenom="Quentin"/>
<student nom="Odjinga Ogandaga" adresse="chimene_odjingaogandaga@ens.univ-artois.fr" identification="22317781" prenom="Chimene"/>
<student nom="Ost" adresse="valentin_ost@ens.univ-artois.fr" identification="22301730" prenom="Valentin"/>
<student nom="Petit" adresse="lola_petit@ens.univ-artois.fr" identification="22301252" prenom="Lola"/>
<student nom="Pilawa" adresse="elliot_pilawa@ens.univ-artois.fr" identification="22304148" prenom="Elliot"/>
<student nom="Pilot" adresse="martin_pilot@ens.univ-artois.fr" identification="22303595" prenom="Martin"/>
<student nom="Plouviez" adresse="esteban_plouviez@ens.univ-artois.fr" identification="22304124" prenom="Esteban"/>
<student nom="Pluquin" adresse="jade_pluquin@ens.univ-artois.fr" identification="22315502" prenom="Jade"/>
<student nom="Polan" adresse="paul_polan@ens.univ-artois.fr" identification="22304065" prenom="Paul"/>
<student nom="Ponchel" adresse="antoine_ponchel@ens.univ-artois.fr" identification="22009901" prenom="Antoine"/>
<student nom="Poux" adresse="thibaut_poux@ens.univ-artois.fr" identification="22202818" prenom="Thibaut"/>
<student nom="Pruvost" adresse="adele_pruvost@ens.univ-artois.fr" identification="22308003" prenom="Adele"/>
<student nom="Pruvost" adresse="gabin_pruvost@ens.univ-artois.fr" identification="22303925" prenom="Gabin"/>
<student nom="Renard" adresse="thomas_renard@ens.univ-artois.fr" identification="22305801" prenom="Thomas"/>
<student nom="Renard" adresse="valentin_renard1@ens.univ-artois.fr" identification="22302961" prenom="Valentin"/>
<student nom="Retaux" adresse="guillaume_retaux@ens.univ-artois.fr" identification="22301333" prenom="Guillaume"/>
<student nom="Richez" adresse="leo_richez@ens.univ-artois.fr" identification="22319080" prenom="Leo"/>
<student nom="Rivaux" adresse="raphael_rivaux@ens.univ-artois.fr" identification="22301501" prenom="Raphael"/>
<student nom="Rogerer" adresse="lana_rogerer@ens.univ-artois.fr" identification="22308210" prenom="Lana"/>
<student nom="Rohart" adresse="julie_rohart@ens.univ-artois.fr" identification="22301258" prenom="Julie"/>
<student nom="Ruthmann" adresse="lenaick_ruthmann@ens.univ-artois.fr" identification="22303183" prenom="Lenaick"/>
<student nom="Sauvoux" adresse="ophelie_sauvoux@ens.univ-artois.fr" identification="22304693" prenom="Ophelie"/>
<student nom="Scilironi" adresse="vytto_scilironi@ens.univ-artois.fr" identification="22303553" prenom="Vytto"/>
<student nom="Semienczuk" adresse="clement_semienczuk@ens.univ-artois.fr" identification="22301526" prenom="Clement"/>
<student nom="Stautemas" adresse="quentin_stautemas@ens.univ-artois.fr" identification="20157405" prenom="Quentin"/>
<student nom="Sylla" adresse="elhadjiballa_sylla@ens.univ-artois.fr" identification="22327541" prenom="Elhadji Balla"/>
<student nom="Thorez" adresse="alicia_thorez@ens.univ-artois.fr" identification="22300480" prenom="Alicia"/>
<student nom="Tilliez" adresse="noa_tilliez@ens.univ-artois.fr" identification="22304097" prenom="Noa"/>
<student nom="Topart" adresse="nicolas_topart@ens.univ-artois.fr" identification="22305405" prenom="Nicolas"/>
<student nom="Valcke" adresse="jessica_valcke@ens.univ-artois.fr" identification="22303557" prenom="Jessica"/>
<student nom="Vasseur" adresse="fabien_vasseur3@ens.univ-artois.fr" identification="22002709" prenom="Fabien"/>
<student nom="Verlet" adresse="theo_verlet@ens.univ-artois.fr" identification="22004560" prenom="Theo"/>
<student nom="Verstraete" adresse="ilhan_verstraete@ens.univ-artois.fr" identification="22302381" prenom="Ilhan"/>
<student nom="Vin" adresse="lali_vin@ens.univ-artois.fr" identification="22310844" prenom="Lali"/>
<student nom="Walbecq" adresse="sarah_walbecq@ens.univ-artois.fr" identification="22316793" prenom="Sarah"/>
<student nom="Watbled" adresse="theo_watbled@ens.univ-artois.fr" identification="22303631" prenom="Theo"/>
<student nom="Willaume" adresse="leonie_willaume@ens.univ-artois.fr" identification="22300780" prenom="Leonie"/>
<student nom="Carron" adresse="charles_carron@ens.univ-artois.fr" identification="22303711" prenom="Charles"/>
<student nom="Gauduin" adresse="alexis_gauduin1@ens.univ-artois.fr" identification="22203286" prenom="Alexis"/>
<student nom="Adamczyk" adresse="djason_adamczyk@ens.univ-artois.fr" identification="22000762" prenom="Djason"/>
<student nom="Asamoah Baafi" adresse="jonathan_asamoahbaafi@ens.univ-artois.fr" identification="22104729" prenom="Jonathan"/>
<student nom="Bahtijarevic" adresse="paolo_bahtijarevic@ens.univ-artois.fr" identification="22106465" prenom="Paolo"/>
<student nom="Baillieux" adresse="ari_baillieux@ens.univ-artois.fr" identification="22104048" prenom="Ari"/>
<student nom="Birebent" adresse="mila_birebent@ens.univ-artois.fr" identification="22101246" prenom="Mila"/>
<student nom="Borowiak" adresse="wendy_borowiak@ens.univ-artois.fr" identification="22102182" prenom="Wendy"/>
<student nom="Boudoux" adresse="pauline_boudoux@ens.univ-artois.fr" identification="22101993" prenom="Pauline"/>
<student nom="Boulet" adresse="morgane_boulet1@ens.univ-artois.fr" identification="22101705" prenom="Morgane"/>
<student nom="Breuvart" adresse="morgane_breuvart@ens.univ-artois.fr" identification="22101739" prenom="Morgane"/>
<student nom="Brouez" adresse="emeline_brouez@ens.univ-artois.fr" identification="22003324" prenom="Emeline"/>
<student nom="Broux" adresse="sandy_broux@ens.univ-artois.fr" identification="21901762" prenom="Sandy"/>
<student nom="Canlers" adresse="marie_canlers@ens.univ-artois.fr" identification="22002936" prenom="Marie"/>
<student nom="Caria Czubala" adresse="louka_cariaczubala@ens.univ-artois.fr" identification="22102433" prenom="Louka"/>
<student nom="Chamart" adresse="lucas_chamart@ens.univ-artois.fr" identification="22106612" prenom="Lucas"/>
<student nom="Coudeville Carbonnier" adresse="lena_coudevillecarbonnier@ens.univ-artois.fr" identification="22102562" prenom="Lena"/>
<student nom="Crampon" adresse="valerie_crampon@ens.univ-artois.fr" identification="22102351" prenom="Valerie"/>
<student nom="Dablemont" adresse="mady_dablemont@ens.univ-artois.fr" identification="22101277" prenom="Mady"/>
<student nom="De Santiago" adresse="lea_desantiago@ens.univ-artois.fr" identification="22102252" prenom="Lea"/>
<student nom="Deberre" adresse="alice_deberre@ens.univ-artois.fr" identification="22101079" prenom="Alice"/>
<student nom="Decayeux" adresse="chloe_decayeux@ens.univ-artois.fr" identification="22202425" prenom="Chloe"/>
<student nom="Defontaine" adresse="maureen_defontaine@ens.univ-artois.fr" identification="22100820" prenom="Maureen"/>
<student nom="Delabre" adresse="lucas_delabre@ens.univ-artois.fr" identification="22001947" prenom="Lucas"/>
<student nom="Delalee" adresse="eline_delalee@ens.univ-artois.fr" identification="22100672" prenom="Eline"/>
<student nom="Delrue" adresse="lea_delrue@ens.univ-artois.fr" identification="22102312" prenom="Lea"/>
<student nom="Delval" adresse="clara_delval@ens.univ-artois.fr" identification="22104049" prenom="Clara"/>
<student nom="Denis" adresse="hugo_denis@ens.univ-artois.fr" identification="22101239" prenom="Hugo"/>
<student nom="Dericq" adresse="rosalie_dericq@ens.univ-artois.fr" identification="22101504" prenom="Rosalie"/>
<student nom="Djo" adresse="tahi_djo@ens.univ-artois.fr" identification="22003378" prenom="Tahi"/>
<student nom="Dourdent" adresse="axel_dourdent@ens.univ-artois.fr" identification="22101005" prenom="Axel"/>
<student nom="Dournel" adresse="marie_dournel@ens.univ-artois.fr" identification="22100995" prenom="Marie"/>
<student nom="Druvent" adresse="pauline_druvent@ens.univ-artois.fr" identification="20186236" prenom="Pauline"/>
<student nom="Dufour" adresse="noemie_dufour@ens.univ-artois.fr" identification="22101775" prenom="Noemie"/>
<student nom="Dujardin" adresse="thibault_dujardin@ens.univ-artois.fr" identification="22102425" prenom="Thibault"/>
<student nom="Dupont" adresse="cyprien_dupont@ens.univ-artois.fr" identification="22104069" prenom="Cyprien"/>
<student nom="Dupuis" adresse="melanie_dupuis@ens.univ-artois.fr" identification="22101426" prenom="Melanie"/>
<student nom="Engrand" adresse="audrey_engrand@ens.univ-artois.fr" identification="22101208" prenom="Audrey"/>
<student nom="Evrard" adresse="manon_evrard@ens.univ-artois.fr" identification="22100259" prenom="Manon"/>
<student nom="Fardel" adresse="angele_fardel@ens.univ-artois.fr" identification="22101973" prenom="Angele"/>
<student nom="Ferreira" adresse="mathilde_ferreira@ens.univ-artois.fr" identification="22104254" prenom="Mathilde"/>
<student nom="Fredeveaux" adresse="mathieu_fredeveaux@ens.univ-artois.fr" identification="22003303" prenom="Mathieu"/>
<student nom="Fristot" adresse="nicolas_fristot@ens.univ-artois.fr" identification="22102560" prenom="Nicolas"/>
<student nom="Gettvert" adresse="julie_gettvert@ens.univ-artois.fr" identification="22205496" prenom="Julie"/>
<student nom="Hermant" adresse="ines_hermant@ens.univ-artois.fr" identification="22103139" prenom="Ines"/>
<student nom="Jayet" adresse="lola_jayet@ens.univ-artois.fr" identification="22100609" prenom="Lola"/>
<student nom="Jonville" adresse="clarie_jonville@ens.univ-artois.fr" identification="22100211" prenom="Clarie"/>
<student nom="Klosowska" adresse="karolina_klosowska@ens.univ-artois.fr" identification="22100648" prenom="Karolina"/>
<student nom="Kmieciak" adresse="william_kmieciak@ens.univ-artois.fr" identification="22105549" prenom="William"/>
<student nom="Kozak" adresse="elise_kozak@ens.univ-artois.fr" identification="22002179" prenom="Elise"/>
<student nom="Lariviere" adresse="amandine_lariviere@ens.univ-artois.fr" identification="22103712" prenom="Amandine"/>
<student nom="Lecerf" adresse="hugo_lecerf@ens.univ-artois.fr" identification="22101852" prenom="Hugo"/>
<student nom="Lefebvre" adresse="amelie_lefebvre1@ens.univ-artois.fr" identification="22203738" prenom="Amelie"/>
<student nom="Lefebvre" adresse="josephine_lefebvre1@ens.univ-artois.fr" identification="22100461" prenom="Josephine"/>
<student nom="Leleux" adresse="fleurine_leleux@ens.univ-artois.fr" identification="22204699" prenom="Fleurine"/>
<student nom="Lesot" adresse="meg_lesot@ens.univ-artois.fr" identification="22101932" prenom="Meg"/>
<student nom="Lourme" adresse="simon_lourme@ens.univ-artois.fr" identification="22003464" prenom="Simon"/>
<student nom="Mahamat" adresse="salehboy_mahamat@ens.univ-artois.fr" identification="22001638" prenom="Saleh Boy"/>
<student nom="Maleika" adresse="cecilia_maleika@ens.univ-artois.fr" identification="22105752" prenom="Cecilia"/>
<student nom="Motte" adresse="theo_motte@ens.univ-artois.fr" identification="22102423" prenom="Theo"/>
<student nom="Moudio Ebosse Timba" adresse="aurelien_moudioebossetimba@ens.univ-artois.fr" identification="22006997" prenom="Aurelien"/>
<student nom="Ogrodowczyk" adresse="tom_ogrodowczyk@ens.univ-artois.fr" identification="22103456" prenom="Tom"/>
<student nom="Olivier" adresse="anelyne_olivier@ens.univ-artois.fr" identification="20176927" prenom="Anelyne"/>
<student nom="Ouahrir" adresse="nacyma_ouahrir@ens.univ-artois.fr" identification="22102184" prenom="Nacyma"/>
<student nom="Oudin" adresse="leane_oudin@ens.univ-artois.fr" identification="22101563" prenom="Leane"/>
<student nom="Palmieri" adresse="lisa_palmieri@ens.univ-artois.fr" identification="22102711" prenom="Lisa"/>
<student nom="Passigny" adresse="priscilia_passigny@ens.univ-artois.fr" identification="22100974" prenom="Priscilia"/>
<student nom="Pierron" adresse="wendie_pierron@ens.univ-artois.fr" identification="22109477" prenom="Wendie"/>
<student nom="Pouchain" adresse="maurine_pouchain@ens.univ-artois.fr" identification="22101671" prenom="Maurine"/>
<student nom="Prein" adresse="lucas_prein@ens.univ-artois.fr" identification="22102692" prenom="Lucas"/>
<student nom="Pruvot" adresse="aubin_pruvot@ens.univ-artois.fr" identification="22100879" prenom="Aubin"/>
<student nom="Robreau-Carouge" adresse="lea_robreau-carouge@ens.univ-artois.fr" identification="22103877" prenom="Lea"/>
<student nom="Rombeaut" adresse="chloe_rombeaut@ens.univ-artois.fr" identification="22105472" prenom="Chloe"/>
<student nom="Rouze" adresse="marie_rouze@ens.univ-artois.fr" identification="22005056" prenom="Marie"/>
<student nom="Ruthmann" adresse="kendrick_ruthmann@ens.univ-artois.fr" identification="22102212" prenom="Kendrick"/>
<student nom="Smiatek" adresse="lena_smiatek@ens.univ-artois.fr" identification="22103055" prenom="Lena"/>
<student nom="Smits" adresse="valentine_smits@ens.univ-artois.fr" identification="22100589" prenom="Valentine"/>
<student nom="Szczesny" adresse="lea_szczesny@ens.univ-artois.fr" identification="22101016" prenom="Lea"/>
<student nom="Tallout" adresse="manelle_tallout@ens.univ-artois.fr" identification="22105238" prenom="Manelle"/>
<student nom="Tambla" adresse="kady_tambla@ens.univ-artois.fr" identification="22104211" prenom="Kady"/>
<student nom="Thilliez" adresse="margaux_thilliez@ens.univ-artois.fr" identification="22105104" prenom="Margaux"/>
<student nom="Thumerelle" adresse="perrine_thumerelle@ens.univ-artois.fr" identification="22102564" prenom="Perrine"/>
<student nom="Trinez" adresse="lisa_trinez@ens.univ-artois.fr" identification="22101525" prenom="Lisa"/>
<student nom="Van Wambeke" adresse="moise_vanwambeke@ens.univ-artois.fr" identification="22101268" prenom="Moise"/>
<student nom="Verheylesonne" adresse="lea_verheylesonne@ens.univ-artois.fr" identification="22104805" prenom="Lea"/>
<student nom="Vitse" adresse="yacine_vitse@ens.univ-artois.fr" identification="22101583" prenom="Yacine"/>
<student nom="Watrelot" adresse="chloe_watrelot@ens.univ-artois.fr" identification="22101785" prenom="Chloe"/>
<student nom="Willot" adresse="victorine_willot@ens.univ-artois.fr" identification="20173468" prenom="Victorine"/>
<student nom="Abdelli" adresse="imane_abdelli@ens.univ-artois.fr" identification="22102604" prenom="Imane"/>
<student nom="Abdoul--Masella" adresse="lina_abdoul--masella@ens.univ-artois.fr" identification="22311084" prenom="Lina"/>
<student nom="Abrassart" adresse="maelle_abrassart@ens.univ-artois.fr" identification="22302146" prenom="Maelle"/>
<student nom="Afrakh" adresse="mounir_afrakh@ens.univ-artois.fr" identification="22204002" prenom="Mounir"/>
<student nom="Akhraz" adresse="anissa_akhraz@ens.univ-artois.fr" identification="22201821" prenom="Anissa"/>
<student nom="Alaimo" adresse="giulianna_alaimo@ens.univ-artois.fr" identification="22302041" prenom="Giulianna"/>
<student nom="Alessandra" adresse="carla_alessandra@ens.univ-artois.fr" identification="22301422" prenom="Carla"/>
<student nom="Allard" adresse="ange_allard@ens.univ-artois.fr" identification="22300409" prenom="Ange"/>
<student nom="Andre" adresse="chloe_andre@ens.univ-artois.fr" identification="22300833" prenom="Chloe"/>
<student nom="Avronsart" adresse="lena_avronsart@ens.univ-artois.fr" identification="22300512" prenom="Lena"/>
<student nom="Bacquet" adresse="noemie_bacquet@ens.univ-artois.fr" identification="22304423" prenom="Noemie"/>
<student nom="Bafuka Idioto" adresse="monica_bafukaidioto@ens.univ-artois.fr" identification="22205008" prenom="Monica"/>
<student nom="Bajeux" adresse="lou-ann_bajeux@ens.univ-artois.fr" identification="22302061" prenom="Lou-Ann"/>
<student nom="Bajonczak" adresse="laureline_bajonczak@ens.univ-artois.fr" identification="22302387" prenom="Laureline"/>
<student nom="Bastien Flanquart" adresse="alicia_bastienflanquart@ens.univ-artois.fr" identification="22300527" prenom="Alicia"/>
<student nom="Baxiu" adresse="flore_baxiu@ens.univ-artois.fr" identification="22310932" prenom="Flore"/>
<student nom="Beaucourt" adresse="clemence_beaucourt@ens.univ-artois.fr" identification="22203191" prenom="Clemence"/>
<student nom="Becquet" adresse="victorine_becquet@ens.univ-artois.fr" identification="22303294" prenom="Victorine"/>
<student nom="Bednarek" adresse="nathan_bednarek@ens.univ-artois.fr" identification="22201745" prenom="Nathan"/>
<student nom="Begot" adresse="britanny_begot@ens.univ-artois.fr" identification="22300897" prenom="Britanny"/>
<student nom="Belghoul" adresse="sarah_belghoul@ens.univ-artois.fr" identification="22303911" prenom="Sarah"/>
<student nom="Belhadji" adresse="lolita_belhadji@ens.univ-artois.fr" identification="22303533" prenom="Lolita"/>
<student nom="Ben" adresse="eileen_ben@ens.univ-artois.fr" identification="22302468" prenom="Eileen"/>
<student nom="Ben Smida" adresse="sofiane_bensmida@ens.univ-artois.fr" identification="22302657" prenom="Sofiane"/>
<student nom="Berger" adresse="adele_berger@ens.univ-artois.fr" identification="22301644" prenom="Adele"/>
<student nom="Berrabah" adresse="sofia_berrabah@ens.univ-artois.fr" identification="22302929" prenom="Sofia"/>
<student nom="Berrier" adresse="nolann_berrier@ens.univ-artois.fr" identification="22310425" prenom="Nolann"/>
<student nom="Bertelet" adresse="camille_bertelet@ens.univ-artois.fr" identification="22301136" prenom="Camille"/>
<student nom="Bertot" adresse="wendy_bertot@ens.univ-artois.fr" identification="22303658" prenom="Wendy"/>
<student nom="Bettayeb" adresse="chirine_bettayeb@ens.univ-artois.fr" identification="22204014" prenom="Chirine"/>
<student nom="Biausque" adresse="louise_biausque@ens.univ-artois.fr" identification="22300745" prenom="Louise"/>
<student nom="Bied" adresse="noa_bied@ens.univ-artois.fr" identification="22313901" prenom="Noa"/>
<student nom="Binet" adresse="capucine_binet@ens.univ-artois.fr" identification="22300966" prenom="Capucine"/>
<student nom="Blanchart" adresse="berenice_blanchart@ens.univ-artois.fr" identification="22301969" prenom="Berenice"/>
<student nom="Blin" adresse="kylian_blin@ens.univ-artois.fr" identification="22200843" prenom="Kylian"/>
<student nom="Boniface" adresse="emmy_boniface@ens.univ-artois.fr" identification="22319000" prenom="Emmy"/>
<student nom="Bonvarlet" adresse="tom_bonvarlet@ens.univ-artois.fr" identification="22303704" prenom="Tom"/>
<student nom="Bouhaik" adresse="sofiane_bouhaik@ens.univ-artois.fr" identification="22311762" prenom="Sofiane"/>
<student nom="Boukhtouchen" adresse="kilia_boukhtouchen@ens.univ-artois.fr" identification="22303222" prenom="Kilia"/>
<student nom="Bourdeaud'Hui" adresse="lou_bourdeaudhui@ens.univ-artois.fr" identification="22301300" prenom="Lou"/>
<student nom="Bouslimi" adresse="meline_bouslimi@ens.univ-artois.fr" identification="22304751" prenom="Meline"/>
<student nom="Bouzebiba" adresse="maena_bouzebiba@ens.univ-artois.fr" identification="22301682" prenom="Maena"/>
<student nom="Brassart" adresse="lucas_brassart@ens.univ-artois.fr" identification="22303109" prenom="Lucas"/>
<student nom="Brasseur" adresse="leo_brasseur@ens.univ-artois.fr" identification="22301038" prenom="Leo"/>
<student nom="Bricotte" adresse="angele_bricotte@ens.univ-artois.fr" identification="22304089" prenom="Angele"/>
<student nom="Broutin" adresse="lilou_broutin@ens.univ-artois.fr" identification="22300585" prenom="Lilou"/>
<student nom="Burhan" adresse="selin_burhan@ens.univ-artois.fr" identification="22302377" prenom="Selin"/>
<student nom="Burhan" adresse="sibel_burhan@ens.univ-artois.fr" identification="22302403" prenom="Sibel"/>
<student nom="Callaux" adresse="paule_callaux@ens.univ-artois.fr" identification="22303260" prenom="Paule"/>
<student nom="Camus" adresse="lola_camus@ens.univ-artois.fr" identification="22301365" prenom="Lola"/>
<student nom="Canniere" adresse="raphaelle_canniere@ens.univ-artois.fr" identification="22300797" prenom="Raphaelle"/>
<student nom="Canonne" adresse="louna_canonne@ens.univ-artois.fr" identification="22300922" prenom="Louna"/>
<student nom="Caron" adresse="lallie_caron@ens.univ-artois.fr" identification="22311090" prenom="Lallie"/>
<student nom="Cathelain" adresse="adrien_cathelain@ens.univ-artois.fr" identification="22304120" prenom="Adrien"/>
<student nom="Cayet" adresse="celia_cayet@ens.univ-artois.fr" identification="22304087" prenom="Celia"/>
<student nom="Cerf" adresse="wendy_cerf@ens.univ-artois.fr" identification="22304261" prenom="Wendy"/>
<student nom="Charles" adresse="ysthea_charles@ens.univ-artois.fr" identification="22307800" prenom="Ysthea"/>
<student nom="Charlet" adresse="amelie_charlet1@ens.univ-artois.fr" identification="22300330" prenom="Amelie"/>
<student nom="Chatelain" adresse="lou_chatelain@ens.univ-artois.fr" identification="22202984" prenom="Lou"/>
<student nom="Chen" adresse="patrick_chen@ens.univ-artois.fr" identification="22304985" prenom="Patrick"/>
<student nom="Chwastyniak" adresse="katarina_chwastyniak@ens.univ-artois.fr" identification="22300474" prenom="Katarina"/>
<student nom="Cilliez" adresse="lise_cilliez@ens.univ-artois.fr" identification="22301456" prenom="Lise"/>
<student nom="Clement" adresse="lilou_clement@ens.univ-artois.fr" identification="22302576" prenom="Lilou"/>
<student nom="Clement" adresse="lysa_clement@ens.univ-artois.fr" identification="22300542" prenom="Lysa"/>
<student nom="Cocco" adresse="fiorella_cocco@ens.univ-artois.fr" identification="22301957" prenom="Fiorella"/>
<student nom="Coleau" adresse="celine_coleau@ens.univ-artois.fr" identification="22300510" prenom="Celine"/>
<student nom="Coppin" adresse="oceane_coppin@ens.univ-artois.fr" identification="22300567" prenom="Oceane"/>
<student nom="Coquerelle" adresse="valentine_coquerelle@ens.univ-artois.fr" identification="22300349" prenom="Valentine"/>
<student nom="Cousin" adresse="alice_cousin1@ens.univ-artois.fr" identification="22303560" prenom="Alice"/>
<student nom="Cousin Peroy" adresse="lea_cousinperoy@ens.univ-artois.fr" identification="22301701" prenom="Lea"/>
<student nom="Cras" adresse="nathanaelle_cras@ens.univ-artois.fr" identification="22300882" prenom="Nathanaelle"/>
<student nom="Crepin" adresse="luna_crepin@ens.univ-artois.fr" identification="22303587" prenom="Luna"/>
<student nom="Crombez" adresse="clovis_crombez@ens.univ-artois.fr" identification="22312122" prenom="Clovis"/>
<student nom="Cuisinier" adresse="zoe_cuisinier@ens.univ-artois.fr" identification="22300743" prenom="Zoe"/>
<student nom="Dacquin" adresse="charlotte_dacquin@ens.univ-artois.fr" identification="22303363" prenom="Charlotte"/>
<student nom="De Lavergne" adresse="nathan_delavergne@ens.univ-artois.fr" identification="22301523" prenom="Nathan"/>
<student nom="De Pourcq" adresse="margot_depourcq@ens.univ-artois.fr" identification="22204500" prenom="Margot"/>
<student nom="Declerck" adresse="yann_declerck@ens.univ-artois.fr" identification="22303263" prenom="Yann"/>
<student nom="Dehay" adresse="elisa_dehay@ens.univ-artois.fr" identification="22303000" prenom="Elisa"/>
<student nom="Dejonckheere" adresse="margo_dejonckheere@ens.univ-artois.fr" identification="22307962" prenom="Margo"/>
<student nom="Dekeuster" adresse="gaulthier_dekeuster@ens.univ-artois.fr" identification="22201770" prenom="Gaulthier"/>
<student nom="Delaire" adresse="clara_delaire@ens.univ-artois.fr" identification="22301157" prenom="Clara"/>
<student nom="Delajugie" adresse="mathis_delajugie@ens.univ-artois.fr" identification="22300801" prenom="Mathis"/>
<student nom="Delecroix" adresse="cassandre_delecroix@ens.univ-artois.fr" identification="22302347" prenom="Cassandre"/>
<student nom="Deleigne" adresse="maddalena_deleigne@ens.univ-artois.fr" identification="22106154" prenom="Maddalena"/>
<student nom="Deletre" adresse="chloe_deletre@ens.univ-artois.fr" identification="22307741" prenom="Chloe"/>
<student nom="Deleval" adresse="theo_deleval@ens.univ-artois.fr" identification="22300374" prenom="Theo"/>
<student nom="Delire" adresse="justine_delire@ens.univ-artois.fr" identification="22301465" prenom="Justine"/>
<student nom="Delissenne" adresse="antoine_delissenne@ens.univ-artois.fr" identification="20184427" prenom="Antoine"/>
<student nom="Deltour" adresse="matteo_deltour@ens.univ-artois.fr" identification="22301345" prenom="Matteo"/>
<student nom="Delville" adresse="alexandra_delville@ens.univ-artois.fr" identification="22300606" prenom="Alexandra"/>
<student nom="Demarest" adresse="lysa_demarest@ens.univ-artois.fr" identification="22304056" prenom="Lysa"/>
<student nom="Demaret" adresse="alexis_demaret1@ens.univ-artois.fr" identification="22300614" prenom="Alexis"/>
<student nom="Demey" adresse="jade_demey@ens.univ-artois.fr" identification="22310240" prenom="Jade"/>
<student nom="Demolin" adresse="naomi_demolin@ens.univ-artois.fr" identification="22200561" prenom="Naomi"/>
<student nom="Demonchy" adresse="loane_demonchy@ens.univ-artois.fr" identification="22301815" prenom="Loane"/>
<student nom="Denimal" adresse="lauryne_denimal@ens.univ-artois.fr" identification="22300990" prenom="Lauryne"/>
<student nom="Deplanque" adresse="candice_deplanque@ens.univ-artois.fr" identification="22300979" prenom="Candice"/>
<student nom="Depretz" adresse="alexis_depretz@ens.univ-artois.fr" identification="22301032" prenom="Alexis"/>
<student nom="Deregnaucourt" adresse="clementine_deregnaucourt@ens.univ-artois.fr" identification="22301153" prenom="Clementine"/>
<student nom="Derenoncourt" adresse="adrien_derenoncourt@ens.univ-artois.fr" identification="22201226" prenom="Adrien"/>
<student nom="Descamps" adresse="maxime_descamps1@ens.univ-artois.fr" identification="20162000" prenom="Maxime"/>
<student nom="Descaudin" adresse="kiara_descaudin@ens.univ-artois.fr" identification="22303303" prenom="Kiara"/>
<student nom="Desloges" adresse="vivien_desloges@ens.univ-artois.fr" identification="22101914" prenom="Vivien"/>
<student nom="Desprez" adresse="noemie_desprez@ens.univ-artois.fr" identification="22203407" prenom="Noemie"/>
<student nom="Diard" adresse="oceane_diard@ens.univ-artois.fr" identification="22302930" prenom="Oceane"/>
<student nom="Dillerin" adresse="mae_dillerin@ens.univ-artois.fr" identification="22303810" prenom="Mae"/>
<student nom="Dolige" adresse="tom_dolige@ens.univ-artois.fr" identification="22303012" prenom="Tom"/>
<student nom="Domain" adresse="jeanne_domain@ens.univ-artois.fr" identification="22306741" prenom="Jeanne"/>
<student nom="Douce" adresse="erwin_douce@ens.univ-artois.fr" identification="22304930" prenom="Erwin"/>
<student nom="Douche" adresse="mahira_douche@ens.univ-artois.fr" identification="22305899" prenom="Mahira"/>
<student nom="Doumbia" adresse="rabi_doumbia@ens.univ-artois.fr" identification="22105036" prenom="Rabi"/>
<student nom="Drelon" adresse="anais_drelon@ens.univ-artois.fr" identification="22312441" prenom="Anais"/>
<student nom="Drelon" adresse="emeric_drelon@ens.univ-artois.fr" identification="22313063" prenom="Emeric"/>
<student nom="Dubois" adresse="olivia_dubois1@ens.univ-artois.fr" identification="22302268" prenom="Olivia"/>
<student nom="Dubois" adresse="thomas_dubois5@ens.univ-artois.fr" identification="22300991" prenom="Thomas"/>
<student nom="Dubuche" adresse="laure_dubuche@ens.univ-artois.fr" identification="22301385" prenom="Laure"/>
<student nom="Dulompont" adresse="antoine_dulompont@ens.univ-artois.fr" identification="22301527" prenom="Antoine"/>
<student nom="Dumont" adresse="lucie_dumont3@ens.univ-artois.fr" identification="22306208" prenom="Lucie"/>
<student nom="Dumoulin" adresse="marie-loue_dumoulin@ens.univ-artois.fr" identification="22301159" prenom="Marie-Loue"/>
<student nom="Duplouy" adresse="lana_duplouy@ens.univ-artois.fr" identification="22304092" prenom="Lana"/>
<student nom="Duprot" adresse="maelle_duprot@ens.univ-artois.fr" identification="22302002" prenom="Maelle"/>
<student nom="Duval" adresse="anthony_duval@ens.univ-artois.fr" identification="22202794" prenom="Anthony"/>
<student nom="Dykcik" adresse="pauline_dykcik@ens.univ-artois.fr" identification="22305383" prenom="Pauline"/>
<student nom="Erraich" adresse="sarah_erraich@ens.univ-artois.fr" identification="22305340" prenom="Sarah"/>
<student nom="Fardel" adresse="josephine_fardel@ens.univ-artois.fr" identification="22103374" prenom="Josephine"/>
<student nom="Fardel" adresse="louise_fardel@ens.univ-artois.fr" identification="22208712" prenom="Louise"/>
<student nom="Faugeras" adresse="valentine_faugeras@ens.univ-artois.fr" identification="22304898" prenom="Valentine"/>
<student nom="Fava" adresse="clara_fava@ens.univ-artois.fr" identification="22310200" prenom="Clara"/>
<student nom="Faye" adresse="chloe_faye@ens.univ-artois.fr" identification="22303966" prenom="Chloe"/>
<student nom="Fevrier" adresse="mathilde_fevrier1@ens.univ-artois.fr" identification="22320882" prenom="Mathilde"/>
<student nom="Fiba" adresse="marie_fiba@ens.univ-artois.fr" identification="22303202" prenom="Marie"/>
<student nom="Fischer" adresse="myriem_fischer@ens.univ-artois.fr" identification="22320800" prenom="Myriem"/>
<student nom="Fisteberg" adresse="gratien_fisteberg@ens.univ-artois.fr" identification="22303693" prenom="Gratien"/>
<student nom="Flament" adresse="clea_flament@ens.univ-artois.fr" identification="22301732" prenom="Clea"/>
<student nom="Flament" adresse="eloise_flament@ens.univ-artois.fr" identification="22307482" prenom="Eloise"/>
<student nom="Fontaine" adresse="emma_fontaine2@ens.univ-artois.fr" identification="22301809" prenom="Emma"/>
<student nom="Fouquet-Pamart" adresse="alyssa_fouquet-pamart@ens.univ-artois.fr" identification="22300831" prenom="Alyssa"/>
<student nom="Francois" adresse="chloe_francois@ens.univ-artois.fr" identification="22301535" prenom="Chloe"/>
<student nom="Francois" adresse="louis_francois1@ens.univ-artois.fr" identification="22300475" prenom="Louis"/>
<student nom="Francois" adresse="nicolas_francois4@ens.univ-artois.fr" identification="22207846" prenom="Nicolas"/>
<student nom="Frappart" adresse="marion_frappart@ens.univ-artois.fr" identification="22303368" prenom="Marion"/>
<student nom="Frey" adresse="justine_frey@ens.univ-artois.fr" identification="22303529" prenom="Justine"/>
<student nom="Froment" adresse="lola_froment@ens.univ-artois.fr" identification="22300781" prenom="Lola"/>
<student nom="Gallet" adresse="ottilie_gallet@ens.univ-artois.fr" identification="22301018" prenom="Ottilie"/>
<student nom="Galliot--Danjoux" adresse="zoe_galliot--danjoux@ens.univ-artois.fr" identification="22300426" prenom="Zoe"/>
<student nom="Gallois" adresse="nicolas_gallois@ens.univ-artois.fr" identification="22302296" prenom="Nicolas"/>
<student nom="Ganoo" adresse="laura_ganoo@ens.univ-artois.fr" identification="22301663" prenom="Laura"/>
<student nom="Gautrelet" adresse="victoria_gautrelet@ens.univ-artois.fr" identification="22303120" prenom="Victoria"/>
<student nom="Gelernter" adresse="maud_gelernter@ens.univ-artois.fr" identification="22300413" prenom="Maud"/>
<student nom="Gelez" adresse="oceane_gelez@ens.univ-artois.fr" identification="22304937" prenom="Oceane"/>
<student nom="Geudin" adresse="lukas_geudin@ens.univ-artois.fr" identification="22302417" prenom="Lukas"/>
<student nom="Ghrib" adresse="nourelhouda_ghrib@ens.univ-artois.fr" identification="22314460" prenom="Nour El Houda"/>
<student nom="Gil" adresse="clement_gil@ens.univ-artois.fr" identification="22300750" prenom="Clement"/>
<student nom="Glacon" adresse="flavie_glacon@ens.univ-artois.fr" identification="22317101" prenom="Flavie"/>
<student nom="Golaz" adresse="laure_golaz@ens.univ-artois.fr" identification="22301201" prenom="Laure"/>
<student nom="Grimonprez" adresse="noemie_grimonprez@ens.univ-artois.fr" identification="22303335" prenom="Noemie"/>
<student nom="Guitton" adresse="eloi_guitton@ens.univ-artois.fr" identification="22300793" prenom="Eloi"/>
<student nom="Halberda" adresse="laly_halberda@ens.univ-artois.fr" identification="22302761" prenom="Laly"/>
<student nom="Hamelin" adresse="eva_hamelin@ens.univ-artois.fr" identification="22302554" prenom="Eva"/>
<student nom="Hamidou" adresse="chaima_hamidou@ens.univ-artois.fr" identification="22302581" prenom="Chaima"/>
<student nom="Havez" adresse="robin_havez@ens.univ-artois.fr" identification="22313182" prenom="Robin"/>
<student nom="Heinrich" adresse="mauryne_heinrich@ens.univ-artois.fr" identification="22303265" prenom="Mauryne"/>
<student nom="Hennache" adresse="raphaelle_hennache@ens.univ-artois.fr" identification="22302467" prenom="Raphaelle"/>
<student nom="Hennebicq" adresse="axelle_hennebicq@ens.univ-artois.fr" identification="22310422" prenom="Axelle"/>
<student nom="Henriques" adresse="justine_henriques@ens.univ-artois.fr" identification="22303162" prenom="Justine"/>
<student nom="Hochart" adresse="maelise_hochart@ens.univ-artois.fr" identification="22302446" prenom="Maelise"/>
<student nom="Hoffmann" adresse="alex_hoffmann@ens.univ-artois.fr" identification="22301670" prenom="Alex"/>
<student nom="Hooghe" adresse="oceane_hooghe@ens.univ-artois.fr" identification="22302553" prenom="Oceane"/>
<student nom="Hoornaert" adresse="camille_hoornaert@ens.univ-artois.fr" identification="22303500" prenom="Camille"/>
<student nom="Houdant" adresse="mathilde_houdant@ens.univ-artois.fr" identification="22303240" prenom="Mathilde"/>
<student nom="Houillon" adresse="gaelle_houillon@ens.univ-artois.fr" identification="22208744" prenom="Gaelle"/>
<student nom="Hu" adresse="guillaume_hu@ens.univ-artois.fr" identification="22102897" prenom="Guillaume"/>
<student nom="Huleux" adresse="clemence_huleux@ens.univ-artois.fr" identification="22308261" prenom="Clemence"/>
<student nom="Ijaz" adresse="robina_ijaz@ens.univ-artois.fr" identification="22301926" prenom="Robina"/>
<student nom="Jakubowski" adresse="lena_jakubowski@ens.univ-artois.fr" identification="22304320" prenom="Lena"/>
<student nom="Jouini" adresse="louisa_jouini@ens.univ-artois.fr" identification="22206083" prenom="Louisa"/>
<student nom="Jucobin" adresse="agathe_jucobin@ens.univ-artois.fr" identification="22303900" prenom="Agathe"/>
<student nom="Kapitza Mellinas" adresse="clea_kapitzamellinas@ens.univ-artois.fr" identification="22203788" prenom="Clea"/>
<student nom="Konelebouet" adresse="cameron_konelebouet1@ens.univ-artois.fr" identification="22205042" prenom="Cameron"/>
<student nom="Krim" adresse="sofiane_krim@ens.univ-artois.fr" identification="22311363" prenom="Sofiane"/>
<student nom="Labalette" adresse="pauline_labalette@ens.univ-artois.fr" identification="22302027" prenom="Pauline"/>
<student nom="Lagast" adresse="dauryne_lagast@ens.univ-artois.fr" identification="22304786" prenom="Dauryne"/>
<student nom="Lamotte" adresse="leonie_lamotte@ens.univ-artois.fr" identification="22300590" prenom="Leonie"/>
<student nom="Lampin" adresse="andjy_lampin@ens.univ-artois.fr" identification="22303606" prenom="Andjy"/>
<student nom="Lampin" adresse="elodie_lampin1@ens.univ-artois.fr" identification="22310929" prenom="Elodie"/>
<student nom="Lancry" adresse="sarah_lancry@ens.univ-artois.fr" identification="22300578" prenom="Sarah"/>
<student nom="Lang" adresse="maelle_lang@ens.univ-artois.fr" identification="22302563" prenom="Maelle"/>
<student nom="Lange- Anot" adresse="cecile_lange-anot@ens.univ-artois.fr" identification="22301486" prenom="Cecile"/>
<student nom="Lanier" adresse="claire_lanier@ens.univ-artois.fr" identification="22304785" prenom="Claire"/>
<student nom="Lannoote" adresse="pierre_lannoote@ens.univ-artois.fr" identification="22301230" prenom="Pierre"/>
<student nom="Largillet" adresse="camille_largillet@ens.univ-artois.fr" identification="22009771" prenom="Camille"/>
<student nom="Laurent Grandisson" adresse="anne-marine_laurentgrandisson@ens.univ-artois.fr" identification="22303816" prenom="Anne-Marine"/>
<student nom="Lebreton-Lagache" adresse="leevann_lebreton-lagache@ens.univ-artois.fr" identification="22203082" prenom="Leevann"/>
<student nom="Lecas" adresse="manon_lecas1@ens.univ-artois.fr" identification="22300495" prenom="Manon"/>
<student nom="Leclercq" adresse="amandine_leclercq2@ens.univ-artois.fr" identification="22304002" prenom="Amandine"/>
<student nom="Lefebvre" adresse="anais_lefebvre2@ens.univ-artois.fr" identification="22303598" prenom="Anais"/>
<student nom="Lefebvre" adresse="celia_lefebvre1@ens.univ-artois.fr" identification="22310520" prenom="Celia"/>
<student nom="Lefebvre" adresse="loane_lefebvre@ens.univ-artois.fr" identification="22311068" prenom="Loane"/>
<student nom="Leflon-Cordier" adresse="chloe_leflon-cordier@ens.univ-artois.fr" identification="22304058" prenom="Chloe"/>
<student nom="Lefort" adresse="geraldine_lefort@ens.univ-artois.fr" identification="22301350" prenom="Geraldine"/>
<student nom="Legay" adresse="benjamin_legay1@ens.univ-artois.fr" identification="22300995" prenom="Benjamin"/>
<student nom="Lemaire" adresse="manon_lemaire2@ens.univ-artois.fr" identification="22301209" prenom="Manon"/>
<student nom="Leporcq" adresse="stacy_leporcq@ens.univ-artois.fr" identification="22300811" prenom="Stacy"/>
<student nom="Lepretre" adresse="alexandre_lepretre@ens.univ-artois.fr" identification="22302099" prenom="Alexandre"/>
<student nom="Lepreux" adresse="alicia_lepreux@ens.univ-artois.fr" identification="22301200" prenom="Alicia"/>
<student nom="Lequeux" adresse="lana_lequeux@ens.univ-artois.fr" identification="22303274" prenom="Lana"/>
<student nom="Lescornez" adresse="sacha_lescornez@ens.univ-artois.fr" identification="22300752" prenom="Sacha"/>
<student nom="Leste" adresse="luka_leste@ens.univ-artois.fr" identification="22204125" prenom="Luka"/>
<student nom="Levant" adresse="lea_levant@ens.univ-artois.fr" identification="22301003" prenom="Lea"/>
<student nom="Limare" adresse="jeanne_limare1@ens.univ-artois.fr" identification="22308968" prenom="Jeanne"/>
<student nom="Locqueneux" adresse="luan_locqueneux@ens.univ-artois.fr" identification="22301525" prenom="Luan"/>
<student nom="Locquet" adresse="alyssa_locquet@ens.univ-artois.fr" identification="22319120" prenom="Alyssa"/>
<student nom="Logez" adresse="alexi_logez@ens.univ-artois.fr" identification="22303930" prenom="Alexi"/>
<student nom="Loriot" adresse="alison_loriot@ens.univ-artois.fr" identification="22311620" prenom="Alison"/>
<student nom="Louis" adresse="lisa_louis@ens.univ-artois.fr" identification="22306620" prenom="Lisa"/>
<student nom="Luc" adresse="buithaonhi_luc@ens.univ-artois.fr" identification="22307720" prenom="Bui Thao Nhi"/>
<student nom="Lucas" adresse="alexis_lucas@ens.univ-artois.fr" identification="22306422" prenom="Alexis"/>
<student nom="Maarouf" adresse="sarah_maarouf@ens.univ-artois.fr" identification="22301351" prenom="Sarah"/>
<student nom="Maciag" adresse="svetlana_maciag@ens.univ-artois.fr" identification="22300568" prenom="Svetlana"/>
<student nom="Malo" adresse="elisa_malo@ens.univ-artois.fr" identification="22204223" prenom="Elisa"/>
<student nom="Mandeville" adresse="antonin_mandeville@ens.univ-artois.fr" identification="22302823" prenom="Antonin"/>
<student nom="Manouvrier" adresse="kimberley_manouvrier@ens.univ-artois.fr" identification="22300860" prenom="Kimberley"/>
<student nom="Mansour" adresse="myriam_mansour@ens.univ-artois.fr" identification="22300396" prenom="Myriam"/>
<student nom="Margris" adresse="anais_margris@ens.univ-artois.fr" identification="22305733" prenom="Anais"/>
<student nom="Marini" adresse="elisa_marini@ens.univ-artois.fr" identification="22300459" prenom="Elisa"/>
<student nom="Mathias" adresse="emmanuel_mathias@ens.univ-artois.fr" identification="22303713" prenom="Emmanuel"/>
<student nom="Meilliez" adresse="tatiana_meilliez@ens.univ-artois.fr" identification="22305980" prenom="Tatiana"/>
<student nom="Melin" adresse="camille_melin1@ens.univ-artois.fr" identification="22300930" prenom="Camille"/>
<student nom="Melon" adresse="colyne_melon@ens.univ-artois.fr" identification="22304241" prenom="Colyne"/>
<student nom="Mely" adresse="coline_mely@ens.univ-artois.fr" identification="22305604" prenom="Coline"/>
<student nom="Menery" adresse="ombeline_menery@ens.univ-artois.fr" identification="22301160" prenom="Ombeline"/>
<student nom="Meurillon" adresse="emeline_meurillon@ens.univ-artois.fr" identification="22301377" prenom="Emeline"/>
<student nom="Michel" adresse="arthur_michel2@ens.univ-artois.fr" identification="22311203" prenom="Arthur"/>
<student nom="Michel" adresse="celine_michel@ens.univ-artois.fr" identification="22300624" prenom="Celine"/>
<student nom="Milia" adresse="carla_milia@ens.univ-artois.fr" identification="22301733" prenom="Carla"/>
<student nom="Millan" adresse="anaele_millan@ens.univ-artois.fr" identification="22301009" prenom="Anaele"/>
<student nom="Milson" adresse="kilian_milson@ens.univ-artois.fr" identification="22304708" prenom="Kilian"/>
<student nom="Mirland" adresse="lucie_mirland@ens.univ-artois.fr" identification="22320060" prenom="Lucie"/>
<student nom="Monpays" adresse="anais_monpays@ens.univ-artois.fr" identification="22303894" prenom="Anais"/>
<student nom="Montraisin" adresse="justine_montraisin@ens.univ-artois.fr" identification="22305520" prenom="Justine"/>
<student nom="Mordaque" adresse="lea_mordaque@ens.univ-artois.fr" identification="22302311" prenom="Lea"/>
<student nom="Morel" adresse="lizea_morel@ens.univ-artois.fr" identification="22301975" prenom="Lizea"/>
<student nom="Mouton" adresse="canelle_mouton@ens.univ-artois.fr" identification="22308012" prenom="Canelle"/>
<student nom="Nabigha" adresse="rayane_nabigha@ens.univ-artois.fr" identification="22301256" prenom="Rayane"/>
<student nom="Necendre" adresse="candice_necendre@ens.univ-artois.fr" identification="22301138" prenom="Candice"/>
<student nom="Noury" adresse="jules_noury@ens.univ-artois.fr" identification="22304470" prenom="Jules"/>
<student nom="Orban" adresse="elona_orban@ens.univ-artois.fr" identification="22301067" prenom="Elona"/>
<student nom="Ouaziz" adresse="nawel_ouaziz@ens.univ-artois.fr" identification="22301533" prenom="Nawel"/>
<student nom="Patyk" adresse="chloe_patyk@ens.univ-artois.fr" identification="22304441" prenom="Chloe"/>
<student nom="Perrin" adresse="alexis_perrin@ens.univ-artois.fr" identification="22302147" prenom="Alexis"/>
<student nom="Petit" adresse="thomas_petit5@ens.univ-artois.fr" identification="22004788" prenom="Thomas"/>
<student nom="Pichot" adresse="emma_pichot@ens.univ-artois.fr" identification="22305776" prenom="Emma"/>
<student nom="Picquet" adresse="margot_picquet@ens.univ-artois.fr" identification="22307820" prenom="Margot"/>
<student nom="Piquet" adresse="julia_piquet@ens.univ-artois.fr" identification="22301605" prenom="Julia"/>
<student nom="Plancart" adresse="emmy_plancart@ens.univ-artois.fr" identification="22302436" prenom="Emmy"/>
<student nom="Poirier" adresse="nina_poirier@ens.univ-artois.fr" identification="22300891" prenom="Nina"/>
<student nom="Pomart" adresse="candice_pomart@ens.univ-artois.fr" identification="22302414" prenom="Candice"/>
<student nom="Pouly" adresse="emilie_pouly@ens.univ-artois.fr" identification="22303895" prenom="Emilie"/>
<student nom="Pressac" adresse="emilie_pressac@ens.univ-artois.fr" identification="22303952" prenom="Emilie"/>
<student nom="Pronnier" adresse="manon_pronnier@ens.univ-artois.fr" identification="22300469" prenom="Manon"/>
<student nom="Pruvost" adresse="margaux_pruvost1@ens.univ-artois.fr" identification="22204667" prenom="Margaux"/>
<student nom="Pruvot" adresse="manon_pruvot@ens.univ-artois.fr" identification="22300326" prenom="Manon"/>
<student nom="Queant" adresse="alexis_queant@ens.univ-artois.fr" identification="22300460" prenom="Alexis"/>
<student nom="Quillet" adresse="julien_quillet@ens.univ-artois.fr" identification="22301622" prenom="Julien"/>
<student nom="Rabzane" adresse="ehnia_rabzane@ens.univ-artois.fr" identification="22303592" prenom="Ehnia"/>
<student nom="Ransson" adresse="hugo_ransson@ens.univ-artois.fr" identification="22301054" prenom="Hugo"/>
<student nom="Rezigat" adresse="shymen_rezigat@ens.univ-artois.fr" identification="22203254" prenom="Shymen"/>
<student nom="Richard" adresse="elina_richard@ens.univ-artois.fr" identification="22301277" prenom="Elina"/>
<student nom="Ringard" adresse="noah_ringard@ens.univ-artois.fr" identification="22301935" prenom="Noah"/>
<student nom="Rosiaux" adresse="chloe_rosiaux@ens.univ-artois.fr" identification="22300515" prenom="Chloe"/>
<student nom="Ruggiu" adresse="lorenza_ruggiu@ens.univ-artois.fr" identification="22300494" prenom="Lorenza"/>
<student nom="Salmon" adresse="fantine_salmon@ens.univ-artois.fr" identification="22301024" prenom="Fantine"/>
<student nom="Sangolo" adresse="cyprien_sangolo@ens.univ-artois.fr" identification="22302434" prenom="Cyprien"/>
<student nom="Sebert" adresse="ines_sebert@ens.univ-artois.fr" identification="22203908" prenom="Ines"/>
<student nom="Sellier" adresse="thibaut_sellier@ens.univ-artois.fr" identification="22301211" prenom="Thibaut"/>
<student nom="Sergeant" adresse="lilou_sergeant@ens.univ-artois.fr" identification="22304001" prenom="Lilou"/>
<student nom="Seulin" adresse="jeanne_seulin@ens.univ-artois.fr" identification="22303400" prenom="Jeanne"/>
<student nom="Sevin" adresse="maelle_sevin@ens.univ-artois.fr" identification="22203663" prenom="Maelle"/>
<student nom="Smessaert" adresse="carla_smessaert@ens.univ-artois.fr" identification="22200585" prenom="Carla"/>
<student nom="Soude" adresse="ilana_soude@ens.univ-artois.fr" identification="22303226" prenom="Ilana"/>
<student nom="Stordeur" adresse="ophelie_stordeur@ens.univ-artois.fr" identification="22301870" prenom="Ophelie"/>
<student nom="Swynghedauwe" adresse="oceane_swynghedauwe@ens.univ-artois.fr" identification="22200986" prenom="Oceane"/>
<student nom="Szasz" adresse="bianca_szasz@ens.univ-artois.fr" identification="22300407" prenom="Bianca"/>
<student nom="Talbi" adresse="mariam_talbi@ens.univ-artois.fr" identification="22304876" prenom="Mariam"/>
<student nom="Taleb" adresse="sofia_taleb@ens.univ-artois.fr" identification="22204365" prenom="Sofia"/>
<student nom="Talleu" adresse="ambre_talleu@ens.univ-artois.fr" identification="22201117" prenom="Ambre"/>
<student nom="Tartare" adresse="lea_tartare@ens.univ-artois.fr" identification="22300313" prenom="Lea"/>
<student nom="Teilhet" adresse="lucile_teilhet@ens.univ-artois.fr" identification="22303555" prenom="Lucile"/>
<student nom="Tellier" adresse="lea_tellier1@ens.univ-artois.fr" identification="22306632" prenom="Lea"/>
<student nom="Therouanne" adresse="renaud_therouanne@ens.univ-artois.fr" identification="22301212" prenom="Renaud"/>
<student nom="Tirel" adresse="morgane_tirel@ens.univ-artois.fr" identification="22300757" prenom="Morgane"/>
<student nom="Toulouse" adresse="matheo_toulouse@ens.univ-artois.fr" identification="22103878" prenom="Matheo"/>
<student nom="Trinel" adresse="evan_trinel@ens.univ-artois.fr" identification="22304026" prenom="Evan"/>
<student nom="Trolle" adresse="laurine_trolle@ens.univ-artois.fr" identification="22302531" prenom="Laurine"/>
<student nom="Troubat" adresse="romane_troubat@ens.univ-artois.fr" identification="22300416" prenom="Romane"/>
<student nom="Tshibangu Kabongo" adresse="sabah_tshibangukabongo@ens.univ-artois.fr" identification="22303968" prenom="Sabah"/>
<student nom="Ulinecz" adresse="mathis_ulinecz@ens.univ-artois.fr" identification="22305376" prenom="Mathis"/>
<student nom="Vaesken" adresse="elodie_vaesken@ens.univ-artois.fr" identification="22007289" prenom="Elodie"/>
<student nom="Valding" adresse="victoria_valding@ens.univ-artois.fr" identification="22301402" prenom="Victoria"/>
<student nom="Vasseur" adresse="iona_vasseur@ens.univ-artois.fr" identification="22203203" prenom="Iona"/>
<student nom="Vastra" adresse="lauryne_vastra@ens.univ-artois.fr" identification="22303107" prenom="Lauryne"/>
<student nom="Vercucque" adresse="valentine_vercucque@ens.univ-artois.fr" identification="22304949" prenom="Valentine"/>
<student nom="Verdin" adresse="ines_verdin@ens.univ-artois.fr" identification="22304740" prenom="Ines"/>
<student nom="Verheyde" adresse="lalie_verheyde@ens.univ-artois.fr" identification="22300435" prenom="Lalie"/>
<student nom="Vetz" adresse="lila_vetz@ens.univ-artois.fr" identification="22300415" prenom="Lila"/>
<student nom="Vigouroux" adresse="fanny_vigouroux@ens.univ-artois.fr" identification="22300393" prenom="Fanny"/>
<student nom="Vikarnyy" adresse="danylo_vikarnyy@ens.univ-artois.fr" identification="22312960" prenom="Danylo"/>
<student nom="Vilches" adresse="nolann_vilches@ens.univ-artois.fr" identification="22316320" prenom="Nolann"/>
<student nom="Viseux" adresse="cassandre_viseux@ens.univ-artois.fr" identification="22204912" prenom="Cassandre"/>
<student nom="Vogue" adresse="antonio_vogue@ens.univ-artois.fr" identification="22318703" prenom="Antonio"/>
<student nom="Vrau" adresse="ambre_vrau@ens.univ-artois.fr" identification="22302385" prenom="Ambre"/>
<student nom="Vrau" adresse="astrid_vrau@ens.univ-artois.fr" identification="22208370" prenom="Astrid"/>
<student nom="Wadoux-Vaquette" adresse="lubin_wadoux-vaquette@ens.univ-artois.fr" identification="22300876" prenom="Lubin"/>
<student nom="Waekens" adresse="loic_waekens@ens.univ-artois.fr" identification="22207345" prenom="Loic"/>
<student nom="Wallaert" adresse="lilian_wallaert@ens.univ-artois.fr" identification="22308015" prenom="Lilian"/>
<student nom="Wallerand" adresse="claire_wallerand@ens.univ-artois.fr" identification="22301308" prenom="Claire"/>
<student nom="Warembourg" adresse="laurine_warembourg@ens.univ-artois.fr" identification="22323841" prenom="Laurine"/>
<student nom="Warlouzet" adresse="rayan_warlouzet@ens.univ-artois.fr" identification="22304745" prenom="Rayan"/>
<student nom="Wassouf" adresse="rony_wassouf@ens.univ-artois.fr" identification="22313220" prenom="Rony"/>
<student nom="Watrin" adresse="enzo_watrin@ens.univ-artois.fr" identification="22203268" prenom="Enzo"/>
<student nom="Weppe" adresse="merrick_weppe@ens.univ-artois.fr" identification="22202817" prenom="Merrick"/>
<student nom="Wojkiewicz" adresse="marianne_wojkiewicz@ens.univ-artois.fr" identification="22301685" prenom="Marianne"/>
<student nom="Wypiorzik" adresse="camille_wypiorzik@ens.univ-artois.fr" identification="22303992" prenom="Camille"/>
<student nom="Yvonnou" adresse="theo_yvonnou@ens.univ-artois.fr" identification="22300746" prenom="Theo"/>
<student nom="Zeggai" adresse="fatimazohra_zeggai@ens.univ-artois.fr" identification="22300610" prenom="Fatima Zohra"/>
</fileCSV>
</ListesEtudiants>

492
bin/.gitignore vendored
View File

@ -1,2 +1,492 @@
/analyseWriter/
/MEPTL/
/OU.svg
/Verifhistorique.svg
/about.png
/accueil evaluation.png
/accueil fichier anlyse.png
/accueil.png
/accueilChargeEvaluation.png
/accueilanalyseCalcl.svg
/accueilanalysecalc.png
/accueill evaluation étudiant.svg
/accueill fichier analyset.svg
/accueill.svg
/accueillChargeEvaluation.svg
/action/
/addmenu.png
/addmenu.svg
/addmenumini.png
/ajoutetitretouteslespages.png
/ajoutetitretouteslespages.svg
/ajoutetitretouteslespagesmini.png
/allContent.svg
/allContentChild.svg
/allcontent.png
/allcontentchilds.png
/allcontentchildsmini.png
/allcontentmini.png
/analyseWriter.bmp
/analyseWriter.ico
/apropos.png
/apropos.svg
/aproposmax.png
/aproposmini.png
/atraversanalysestyle.png
/atraversanalysestyle.svg
/atraversanalysestylemini.png
/attribut.png
/attribut.svg
/attributanalysewriter.png
/attributanalysewriter.svg
/attributanalysewritermini.png
/attributmini.png
/auteurcreateur.png
/auteurcreateur.svg
/auteurcreateurmini.png
/auteurediteur.png
/auteurediteur.svg
/auteurediteurmini.png
/baseEvaluations/
/biblio.png
/biblio.svg
/calcul/
/chargehistoriqueevaluation.png
/chargehistoriqueevaluationmini.png
/collapseAll.svg
/collapseNode.svg
/collapseallmini.png
/collapsenodemini.png
/configuration.png
/configuration.svg
/content.png
/content.svg
/copy.png
/couleur.png
/couleur.svg
/couleurmini.png
/csvstudent.png
/csvstudent.svg
/csvstudentmini.png
/cut.png
/dernierenfant.png
/dernierenfant.svg
/dernierenfantmini.png
/dessin.svgparamètres évaluation et feedback.svg
/detailfeedback.png
/detailfeedbackmini.png
/documentation.pdf
/documentation.png
/documentation.svg
/documentationmax.png
/documentationmini.png
/dossieretudiant.png
/dossieretudiant.svg
/dossieretudiantmin.png
/dossieretudiantmini.png
/downnode.png
/downnode.svg
/downnodemini.png
/entetenon.png
/entetenon.svg
/entetenonmini.png
/enteteoui.png
/enteteoui.svg
/enteteouimini.png
/et.png
/et.svg
/etmini.png
/evalcalc.png
/evalformatagedirect.png
/evalformatagedirect.svg
/evalformatagedirectmini.png
/evalnamepage.png
/evalnamepage.svg
/evalnamepagemini.png
/evalnamesequence.png
/evalnamesequence.svg
/evalnamesequencemini.png
/evalnode.svg
/evalnodemini.png
/evalnombredepagemaxi.png
/evalnombredepagemaxi.svg
/evalnombredepagemaximini.png
/evalnombredepagemini.png
/evalnombredepageminimini.png
/evalnumeroabsoluepage.png
/evalnumeroabsoluepage.svg
/evalnumeroabsoluepagemini.png
/evalnumeropage.png
/evalnumeropage.svg
/evalnumeropageancrage.png
/evalnumeropageancrage.svg
/evalnumeropageancragemini.png
/evalnumeropagemini.png
/evalpasparagraphevide.png
/evalpasparagraphevide.svg
/evalpasparagraphevidemini.png
/evaltextuserdefined.png
/evaltextuserdefined.svg
/evaltextuserdefinedmini.png
/evaluate.png
/evaluate.svg
/evaluatemax.png
/evaluatemini.png
/evaluatemultiple.png
/evaluatemultiple.svg
/evaluatemultiplemax.png
/evaluatemultiplemini.png
/evaluer.png
/evaluer.svg
/evaluer/
/evaluerFalse.svg
/evaluerTrue.svg
/evaluerfalse.png
/evaluerfalsemini.png
/evaluermini.png
/evaluerstyle.png
/evaluerstyle.svg
/evaluerstylemini.png
/evaluertouslesenfants.png
/evaluertouslesenfants.svg
/evaluertouslesenfantsfaux.png
/evaluertouslesenfantsfaux.svg
/evaluertouslesenfantsfauxmini.png
/evaluertouslesenfantsmaxi.png
/evaluertouslesenfantsmini.png
/evaluertouslesstylesparagraphes.png
/evaluertouslesstylesparagraphes.svg
/evaluertouslesstylesparagraphesmini.png
/evaluertrue.png
/evaluertruemini.png
/evalwriter.ico
/evalwriter.png
/evalwriter.svg
/evalwriter32.png
/exit.png
/exit.svg
/exitmini.png
/expandAll.svg
/expandNode.svg
/expandall.png
/expandallmini.png
/expandnode.png
/expandnodemini.png
/extraireFichierAnalyse.png
/extraireFichierAnalyseXML.svg
/extraireFichierAnalysemini.png
/false.png
/false.svg
/falsemini.png
/feedback.png
/feedback.svg
/feedbackmini.png
/feedbackstudent.png
/feedbackstudentmini.png
/fenetres/
/fichierAnalyse.png
/fichierAnalyseInfo.png
/fichierAnalyseInfo2.png
/fichierAnalyseInfo2max.png
/fichierAnalyseInfo2mini.png
/fichierAnalyseInfomax.png
/fichierAnalyseInfomini.png
/fichierAnalyseModif.png
/fichierAnalyseModifmax.png
/fichierAnalyseModifmini.png
/fichierAnalyseRenomme.png
/fichierAnalyseRenommemini.png
/fichierAnalysemax.png
/fichierAnalysemini.png
/fichierCSV.png
/fichierCSVInfo.png
/fichierCSVInfoXML.png
/fichierCSVInfoXMLmax.png
/fichierCSVInfoXMLmini.png
/fichierCSVInfomax.png
/fichierCSVInfomini.png
/fichierCSVmax.png
/fichierCSVmini.png
/fichierODF.png
/fichierODFmax.png
/fichierODFmini.png
/fichierSVG.png
/fichierSVGmax.png
/fichierSVGmini.png
/fichier_analyse.svg
/fichier_analyseXML info.svg
/fichier_analyseXML info1.svg
/fichier_analyseXML.svg
/fichier_analyse_ODF.svg
/fichier_csv_student.svg
/fichier_csv_student_info.svg
/fichier_csv_student_xml.svg
/fichier_svg.svg
/fichieretudiant.png
/fichieretudiant.svg
/fichieretudiantmini.png
/fichiergestion.png
/fichiergestion.svg
/fusionneBaseEvaluation.png
/fusionneBaseEvaluation.svg
/fusionneBaseEvaluationmini.png
/heritagestyle.png
/heritagestyle.svg
/heritagestylemini.png
/heritagestyletouslesnodes.png
/heritagestyletouslesnodes.svg
/heritagestyletouslesnodesmini.png
/indexfigure.png
/indexfigure.svg
/indexmatiere.png
/indexmatiere.svg
/information.png
/information.svg
/informationmaxi.png
/informationmini.png
/informationmultiple.png
/informationmultiple.svg
/informationmultiplemini.png
/intervalle.png
/intervalle.svg
/intervallemini.png
/legacystyleparentpresent.svg
/lesnodesevaluer.png
/lesnodesevaluer.svg
/lesnodesevaluermaxi.png
/lesnodesevaluermini.png
/list/
/loadpreference.svg
/loadpreferencemini.png
/loadpreferences.png
/logo.png
/logo.svg
/marquenode.png
/marquenode.svg
/marquenodemini.png
/menuEvalTousParagraphe.png
/menuEvalTousParagraphe.svg
/menuEvalTousParagraphemini.png
/menucontextuel/
/menulegacystyleparentpresent.png
/menulegacystyleparentpresentmini.png
/meta.png
/meta.svg
/new.png
/newlogo.png
/newlogo.svg
/newlogomini.png
/nocsvstudent.png
/nocsvstudentmini.png
/nodeFichier.png
/nodeFichier_FichierAnalyse.svg
/nodeFichiermax.png
/nodeFichiermini.png
/nodetail.png
/nodetail.svg
/nodetailfeedback.png
/nodetailfeedbackmini.png
/nodetailmini.png
/nofeedback.png
/nofeedbackmini.png
/nofeedbackstudent.png
/nofeedbackstudent.svg
/nofeedbackstudentmini.png
/nologo.png
/nonewlogo.png
/nonewlogomini.png
/nonotestudent.png
/nonotestudentl.svg
/nonotestudentmini.png
/notestudent.png
/notestudentmini.png
/noverifhistoriquestudent.png
/noverifhistoriquestudentmini.png
/nozipstudent.png
/nozipstudentmini.png
/numerotationchapitre.png
/numerotationchapitre.svg
/objet.png
/objet.svg
/odreparagraphe.png
/odreparagraphemini.png
/open.png
/open.svg
/open2.png
/openmax.png
/openmini.png
/ordreparagraphe.svg
/ou.png
/ouenviron.png
/ouenviron.svg
/ouenvironmini.png
/ouenvironsimilitude.png
/ouenvironsimilitude.svg
/ouenvironsimilitudemini.png
/oumini.png
/oustrict.png
/oustrict.svg
/oustrictmini.png
/oustrictseps.png
/oustrictseps.svg
/oustrictsepsmini.png
/paragraphe_source.svg
/paste.png
/piedpagenon.png
/piedpagenon.svg
/piedpagenonmini.png
/piedpageoui.png
/piedpageoui.svg
/piedpageouimini.png
/poids.svg
/poidsmini.png
/premierenfant.png
/premierenfant.svg
/premierenfantmini.png
/property.png
/property.svg
/quitteEvaluation.png
/quitteEvaluation.svg
/quitteEvaluationmini.png
/recherche.png
/recherche.svg
/rechercheDoublon.png
/rechercheDoublon.svg
/rechercheDoublonmini.png
/rechercheancragepage.png
/rechercheancragepage.svg
/rechercheancragepagemini.png
/recherchecontenu.png
/recherchecontenu.svg
/recherchecontenumini.png
/recherchecontenuplusprochevoisin.png
/recherchecontenuplusprochevoisin.svg
/recherchecontenuplusprochevoisinmini.png
/rechercheindex.png
/rechercheindex.svg
/rechercheindexmini.png
/recherchemini.png
/redo.png
/removeEvaluation.svg
/removeEvaluaton.png
/removeEvaluatonmini.png
/renommeEvaluation.svg
/renommeEvaluaton.png
/renommeEvaluatonmini.png
/renommeFichierAnalyse.svg
/resources/
/saut.svg
/sautmini.png
/sautmultiple.png
/sautmultiple.svg
/sautmultiplemini.png
/sautpageColonne.svg
/sautpagecolonne.png
/sautpagecolonnemini.png
/sauvegardeHistoriqueEvaluation.svg
/sauvegardehistoriqueevaluation.png
/sauvegardehistoriqueevaluationmini.png
/save.png
/save.svg
/saveEvaluation.png
/saveEvaluation.svg
/saveEvaluationmini.png
/saveZipEvaluation.png
/saveZipEvaluation.svg
/saveZipEvaluationmini.png
/save_as.png
/saveas.svg
/saveasmini.png
/savemini.png
/savepreference.png
/savepreference.svg
/savepreferencemini.png
/section.png
/section.svg
/sequence.png
/sequence.svg
/setting.png
/setting.svg
/settingmini.png
/similitude.png
/similitude.svg
/similitudemini.png
/sousmenuArbre/
/sousmenuEvaluation/
/sousmenuRecherche/
/sousmenuRepresentation/
/structurepage.png
/structurepage.svg
/stylepage.png
/stylepage.svg
/styleparagraphe.png
/styleparagraphe.svg
/supprime.svg
/supprimemini.png
/textclean.png
/textclean.svg
/textcleanmini.png
/titre.svg
/titremini.png
/totalpoint.png
/totalpoint.svg
/totalpointmini.png
/totalpointnode.png
/totalpointnode.svg
/totalpointnodemini.png
/touslesnodes.png
/touslesnodes.svg
/touslesnodesmini.png
/toutext.png
/toutext.svg
/toutextmini.png
/traduction.png
/traduction.svg
/traductionmini.png
/treeClose.png
/treeClose.svg
/treeLeaf.png
/treeLeaf.svg
/treeOpen.png
/treeOpen.svg
/triche.png
/triche.svg
/trichemini.png
/true.png
/true.svg
/truemini.png
/tutoriel.png
/tutoriel.svg
/tutorielmini.png
/undo.png
/upnode.png
/upnode.svg
/upnodemini.png
/verifhistorique.png
/verifhistoriquemax.png
/verifhistoriquemini.png
/verifhistoriquestudent.png
/verifhistoriquestudent.svg
/verifhistoriquestudentmini.png
/versevaluate.png
/versevaluate.svg
/versevaluatemini.png
/versfichierAnalyse.png
/versfichierAnalyseModifmax.svg
/voir.svg
/voirmini.png
/voirtouteslescolonnes.png
/what.svg
/whatmini.png
/zip.png
/zip.svg
/zipmini.png
/zipstudent.png
/zipstudent.svg
/zipstudentmini.png
/evaluerspan.png
/evaluerspan.svg
/evaluerspanmini.png
/fichierCSV_delete.png
/fichierCSV_deletemini.png
/fichier_csv_studen_delete.svg
/fichier_csv_studen_suppr.svg

BIN
bin/MEPTL/HTML.class Normal file

Binary file not shown.

Binary file not shown.

BIN
bin/MEPTL/commandes.class Normal file

Binary file not shown.

Binary file not shown.

BIN
bin/MEPTL/feedbacks.class Normal file

Binary file not shown.

BIN
bin/MEPTL/meptl.class Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

116
bin/OU.svg Normal file
View File

@ -0,0 +1,116 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
inkscape:export-ydpi="96"
inkscape:export-xdpi="96"
inkscape:export-filename="ou.png"
sodipodi:docname="OU.svg"
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
id="svg8"
version="1.1"
viewBox="0 0 11.90625 11.90625"
height="45"
width="45"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<defs
id="defs2">
<pattern
id="EMFhbasepattern"
patternUnits="userSpaceOnUse"
width="6"
height="6"
x="0"
y="0" />
</defs>
<sodipodi:namedview
inkscape:window-maximized="1"
inkscape:window-y="-8"
inkscape:window-x="-8"
inkscape:window-height="1009"
inkscape:window-width="1920"
units="px"
inkscape:guide-bbox="true"
showguides="true"
showgrid="false"
inkscape:document-rotation="0"
inkscape:current-layer="layer1"
inkscape:document-units="mm"
inkscape:cy="32.065537"
inkscape:cx="13.349994"
inkscape:zoom="7.8277187"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
inkscape:pagecheckerboard="0"
inkscape:showpageshadow="2"
inkscape:deskcolor="#d1d1d1">
<sodipodi:guide
id="guide25"
orientation="0,-1"
position="94.049365,180.07197"
inkscape:locked="false" />
<sodipodi:guide
position="8.9572181,11.534441"
orientation="0,-1"
id="guide4043"
inkscape:locked="false" />
<sodipodi:guide
position="-4.2589037,4.1320607"
orientation="0,-1"
id="guide315"
inkscape:locked="false" />
<sodipodi:guide
position="1.0787715,2.8911402"
orientation="0,-1"
id="guide373"
inkscape:locked="false" />
<sodipodi:guide
position="11.558135,1.7718565"
orientation="1,0"
id="guide428"
inkscape:locked="false" />
</sodipodi:namedview>
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Calque 1">
<ellipse
style="fill:#800000;stroke:#00ff02;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
id="path485"
cx="5.953125"
cy="5.953125"
rx="5.1546254"
ry="4.9349198" />
<text
xml:space="preserve"
style="font-size:8.24782px;line-height:1.2;font-family:arial;-inkscape-font-specification:arial;fill:#ffffff;stroke:#000000;stroke-width:0.25"
x="0.73846942"
y="8.1826782"
id="text327"
transform="scale(0.87864777,1.1381125)"><tspan
sodipodi:role="line"
id="tspan325"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:arial;-inkscape-font-specification:'arial Bold';fill:#ffffff;stroke:#000000;stroke-width:0.25"
x="0.73846942"
y="8.1826782">OU</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

334
bin/Verifhistorique.svg Normal file
View File

@ -0,0 +1,334 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
inkscape:export-ydpi="184"
inkscape:export-xdpi="184"
inkscape:export-filename="C:\Users\pabr6\git\analyseWriter\MEPTL\icons\verifhistoriquemax.png"
sodipodi:docname="Verifhistorique.svg"
inkscape:version="1.1.2 (b8e25be833, 2022-02-05)"
id="svg8"
version="1.1"
viewBox="0 0 12.7 12.7"
height="48"
width="48"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<defs
id="defs2">
<linearGradient
id="k"
gradientTransform="matrix(7.1445318,0,0,7.1427803,-768.64762,-6969.2737)"
gradientUnits="userSpaceOnUse"
x1="122.75008"
x2="111.74973"
xlink:href="#b"
y1="991.62115"
y2="977.11713" />
<linearGradient
id="b">
<stop
offset="0"
stop-color="#0369a3"
id="stop7" />
<stop
offset="1"
stop-color="#1c99e0"
id="stop9" />
</linearGradient>
<linearGradient
id="j"
gradientUnits="userSpaceOnUse"
x1="108.00134"
x2="20.001341"
y1="122"
y2="6"
gradientTransform="matrix(0.89309547,0,0,0.89309547,11.888703,4.7007092)">
<stop
offset="0"
stop-color="#e6e6e6"
id="stop35" />
<stop
offset="1"
stop-color="#fff"
id="stop37" />
</linearGradient>
<linearGradient
id="i"
gradientUnits="userSpaceOnUse"
x1="108.00134"
x2="20.001341"
xlink:href="#b"
y1="130"
y2="14"
gradientTransform="matrix(0.89309547,0,0,0.89309547,11.888703,4.7007092)" />
<linearGradient
id="h"
gradientTransform="matrix(4.0188402,0,0,3.2746684,-830.28017,1969.2037)"
gradientUnits="userSpaceOnUse"
x2="0"
y1="-581.63782"
y2="-578.63782">
<stop
offset="0"
stop-color="#63bbee"
id="stop29" />
<stop
offset="1"
stop-color="#aadcf7"
id="stop31" />
</linearGradient>
<linearGradient
id="g"
gradientTransform="matrix(-3.750849,0,0,3.4929856,1388.0957,-4034.9161)"
gradientUnits="userSpaceOnUse"
x2="0"
xlink:href="#a"
y1="1173"
y2="1178" />
<linearGradient
id="a">
<stop
offset="0"
stop-color="#666"
id="stop2" />
<stop
offset="1"
stop-color="#333"
id="stop4" />
</linearGradient>
<linearGradient
id="f"
gradientTransform="matrix(3.750849,0,0,3.4929856,-1232.1391,-4033.8265)"
gradientUnits="userSpaceOnUse"
x2="0"
xlink:href="#a"
y1="1173"
y2="1178" />
<linearGradient
id="e"
gradientTransform="matrix(1.0716877,0,0,1.0915592,-239.24225,771.47081)"
gradientUnits="userSpaceOnUse"
x2="0"
y1="-629.66907"
y2="-635.54944">
<stop
offset="0"
stop-color="#18a303"
id="stop22" />
<stop
offset="1"
stop-color="#106802"
id="stop24" />
</linearGradient>
<linearGradient
id="d"
gradientTransform="matrix(3.750849,0,0,3.4929856,-1232.1391,-4029.4592)"
gradientUnits="userSpaceOnUse"
x2="0"
y1="1173"
y2="1178">
<stop
offset="0"
stop-color="#0369a3"
id="stop17" />
<stop
offset="1"
stop-color="#023f62"
id="stop19" />
</linearGradient>
<linearGradient
id="c"
gradientTransform="matrix(0,0.70651344,-1.1431621,0,1351.1749,-247.16436)"
gradientUnits="userSpaceOnUse"
x1="445.69522"
x2="441.38797"
y1="1103.5776"
y2="1099.8198">
<stop
offset="0"
stop-color="#e9b913"
id="stop12" />
<stop
offset="1"
stop-color="#ff0"
id="stop14" />
</linearGradient>
</defs>
<sodipodi:namedview
inkscape:window-maximized="1"
inkscape:window-y="-8"
inkscape:window-x="-8"
inkscape:window-height="1009"
inkscape:window-width="1920"
inkscape:guide-bbox="true"
showguides="true"
units="px"
showgrid="false"
inkscape:document-rotation="0"
inkscape:current-layer="layer1"
inkscape:document-units="mm"
inkscape:cy="50.980954"
inkscape:cx="16.845881"
inkscape:zoom="4.5114887"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
inkscape:pagecheckerboard="0"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:snap-bbox="true"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true"
inkscape:snap-midpoints="true"
inkscape:object-paths="true"
inkscape:snap-global="false">
<sodipodi:guide
id="guide14"
orientation="1,0"
position="-2.471617e-08,4.4381936" />
<sodipodi:guide
position="6.6200247,5.8336321"
orientation="0.70860014,0.70561026"
id="guide2079" />
<sodipodi:guide
position="6.6200247,5.8336321"
orientation="-0.71816555,0.69587229"
id="guide5772" />
</sodipodi:namedview>
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Calque 1"
transform="translate(-0.92013353,-0.34176359)">
<g
id="g854"
transform="matrix(0.61396232,0,0,0.61394722,0.96296226,1.3836619)"
style="stroke-width:1.62879">
<g
id="g919"
transform="matrix(2.0256057,0,0,2.085527,-1.3000641,-0.03746209)"
style="stroke:#000000;stroke-width:0.14819;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
<rect
ry="0.91766816"
y="4.3255968"
x="0.92013353"
height="3.7594025"
width="3.8382711"
id="rect12"
style="fill:#de0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.0689442;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
rx="0.9447912" />
<path
style="fill:#ffffff;stroke:#ffffff;stroke-width:0.465175;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 1.6159,5.0384659 3.9724208,7.4062084"
id="path841" />
<path
id="path843"
d="M 3.9724208,5.0384659 1.6159,7.4062084"
style="fill:none;stroke:#ffffff;stroke-width:0.465175;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g923"
transform="matrix(1.9487365,0,0,2.0063839,-0.94890875,0.30061757)"
style="stroke-width:1.25787">
<rect
style="fill:#00bf00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.0817613;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
id="rect10"
width="3.8382711"
height="3.7594025"
x="0.92013353"
y="0.34176376"
ry="0.91766816"
rx="0.9447912" />
<path
style="fill:#ffffff;stroke:none;stroke-width:0.332809px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 1.4619106,1.7500935 C 1.3627577,2.4034195 1.7869697,2.7038331 2.3820759,3.4752278 2.7236407,3.2105071 3.8437643,1.6082077 4.3539528,0.68451321 3.7444013,1.2569625 3.3467309,1.6796751 2.3752981,2.7432214 1.891109,2.378332 1.7782083,2.0571129 1.4619106,1.7500935 Z"
id="path16"
sodipodi:nodetypes="ccccc" />
</g>
</g>
<g
id="g12403"
transform="matrix(0.10395053,0,0,0.10426752,0.77412489,5.7097119)"
style="stroke-width:9.60537">
<rect
style="fill:#8d6e63;fill-opacity:1;stroke:none;stroke-width:1.01656;stroke-linecap:round;stroke-linejoin:round;paint-order:fill markers stroke;stop-color:#000000"
id="rect1304"
width="85.204666"
height="11.782095"
x="30.375374"
y="-48.079773" />
<rect
style="fill:#6d4c41;fill-opacity:1;stroke:none;stroke-width:1.01656;stroke-linecap:round;stroke-linejoin:round;paint-order:fill markers stroke;stop-color:#000000"
id="rect1306"
width="62.071529"
height="11.638412"
x="41.94194"
y="-36.297676" />
<g
id="g11590"
transform="translate(60.634687,-1.0057836)"
style="stroke-width:9.60537">
<path
style="fill:#cfd8dc;fill-opacity:1;stroke:none;stroke-width:2.54141px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -18.692747,-23.65348 h 62.071531 c 0.02564,16.6176689 -21.324817,33.839838 -27.946557,33.765762 l -5.9075023,0.11403 C -0.80407561,10.198531 -19.001285,-6.3706399 -18.692747,-23.65348 Z"
id="path7072"
sodipodi:nodetypes="ccccc" />
<path
style="fill:#f57c00;fill-opacity:1;stroke:none;stroke-width:2.54141px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 9.9722309,5.9454432 C -6.1903441,-0.13235888 -7.197756,-8.8259604 -13.160907,-15.607171 3.591327,-7.6143104 20.568135,-8.379844 37.703262,-15.319802 31.407908,-8.5034381 28.51282,0.33644442 13.708018,6.0891273 Z"
id="path7434"
sodipodi:nodetypes="ccccc" />
</g>
<g
id="g11596"
transform="matrix(1,0,0,-1,60.634687,19.33281)"
style="stroke-width:9.60537">
<path
style="fill:#cfd8dc;fill-opacity:1;stroke:none;stroke-width:2.54141px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -18.692747,-23.65348 h 62.071531 c 0.02564,16.6176689 -21.324817,33.839838 -27.946557,33.765762 l -5.9075023,0.11403 C -0.80407561,10.198531 -19.001285,-6.3706399 -18.692747,-23.65348 Z"
id="path11592"
sodipodi:nodetypes="ccccc" />
<path
style="fill:#f57c00;fill-opacity:1;stroke:none;stroke-width:2.54141px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 10.259599,-3.3940228 C -2.0299459,-15.727729 -9.5341742,-17.258592 -13.735643,-23.65348 c 16.4648691,0.05374 34.01641,0 52.588378,0 -2.867509,6.405771 -13.069913,7.035201 -24.857349,20.4031413 z"
id="path11594"
sodipodi:nodetypes="ccccc" />
</g>
<rect
style="fill:#6d4c41;fill-opacity:1;stroke:none;stroke-width:1.01656;stroke-linecap:round;stroke-linejoin:round;paint-order:fill markers stroke;stop-color:#000000"
id="rect11678"
width="62.071529"
height="11.638412"
x="41.94194"
y="42.98629" />
<rect
style="fill:#8d6e63;fill-opacity:1;stroke:none;stroke-width:1.01656;stroke-linecap:round;stroke-linejoin:round;paint-order:fill markers stroke;stop-color:#000000"
id="rect11680"
width="85.204666"
height="11.782095"
x="30.375374"
y="54.624702" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

BIN
bin/about.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

BIN
bin/accueil evaluation.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

BIN
bin/accueil.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

540
bin/accueilanalyseCalcl.svg Normal file
View File

@ -0,0 +1,540 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
inkscape:export-ydpi="128"
inkscape:export-xdpi="128"
inkscape:export-filename="C:\Users\pabr6\git\analyseWriter\MEPTL\icons\accueilanalysecalc.png"
sodipodi:docname="accueilanalyseCalcl.svg"
inkscape:version="1.1.2 (b8e25be833, 2022-02-05)"
id="svg8"
version="1.1"
viewBox="0 0 67.230724 17.388617"
height="65.720757"
width="254.10037"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<defs
id="defs2">
<linearGradient
id="k"
gradientTransform="matrix(7.99974,0,0,7.9977797,-873.96742,-7808.7674)"
gradientUnits="userSpaceOnUse"
x1="122.75008"
x2="111.74973"
xlink:href="#b"
y1="991.62115"
y2="977.11713" />
<linearGradient
id="b">
<stop
offset="0"
stop-color="#0369a3"
id="stop7" />
<stop
offset="1"
stop-color="#1c99e0"
id="stop9" />
</linearGradient>
<linearGradient
id="j"
gradientUnits="userSpaceOnUse"
x1="108.00134"
x2="20.001341"
y1="122"
y2="6">
<stop
offset="0"
stop-color="#e6e6e6"
id="stop35" />
<stop
offset="1"
stop-color="#fff"
id="stop37" />
</linearGradient>
<linearGradient
id="i"
gradientUnits="userSpaceOnUse"
x1="108.00134"
x2="20.001341"
xlink:href="#b"
y1="130"
y2="14" />
<linearGradient
id="h"
gradientTransform="matrix(4.4999,0,0,3.66665,-942.97741,2199.6564)"
gradientUnits="userSpaceOnUse"
x2="0"
y1="-581.63782"
y2="-578.63782">
<stop
offset="0"
stop-color="#63bbee"
id="stop29" />
<stop
offset="1"
stop-color="#aadcf7"
id="stop31" />
</linearGradient>
<linearGradient
id="g"
gradientTransform="matrix(-4.19983,0,0,3.9111,1540.9405,-4523.1636)"
gradientUnits="userSpaceOnUse"
x2="0"
xlink:href="#a"
y1="1173"
y2="1178" />
<linearGradient
id="a">
<stop
offset="0"
stop-color="#666"
id="stop2" />
<stop
offset="1"
stop-color="#333"
id="stop4" />
</linearGradient>
<linearGradient
id="f"
gradientTransform="matrix(4.19983,0,0,3.9111,-1392.9394,-4521.9436)"
gradientUnits="userSpaceOnUse"
x2="0"
xlink:href="#a"
y1="1173"
y2="1178" />
<linearGradient
id="e"
gradientTransform="matrix(1.19997,0,0,1.22222,-281.19161,858.5534)"
gradientUnits="userSpaceOnUse"
x2="0"
y1="-629.66907"
y2="-635.54944">
<stop
offset="0"
stop-color="#18a303"
id="stop22" />
<stop
offset="1"
stop-color="#106802"
id="stop24" />
</linearGradient>
<linearGradient
id="d"
gradientTransform="matrix(4.19983,0,0,3.9111,-1392.9394,-4517.0536)"
gradientUnits="userSpaceOnUse"
x2="0"
y1="1173"
y2="1178">
<stop
offset="0"
stop-color="#0369a3"
id="stop17" />
<stop
offset="1"
stop-color="#023f62"
id="stop19" />
</linearGradient>
<linearGradient
id="c"
gradientTransform="matrix(0,0.791084,-1.28,0,1499.6005,-282.0136)"
gradientUnits="userSpaceOnUse"
x1="445.69522"
x2="441.38797"
y1="1103.5776"
y2="1099.8198">
<stop
offset="0"
stop-color="#e9b913"
id="stop12" />
<stop
offset="1"
stop-color="#ff0"
id="stop14" />
</linearGradient>
<linearGradient
id="k-1"
gradientTransform="matrix(7.99974,0,0,7.9977797,-873.96742,-7808.7674)"
gradientUnits="userSpaceOnUse"
x1="122.75008"
x2="111.74973"
xlink:href="#a-1"
y1="991.62115"
y2="977.11713" />
<linearGradient
id="a-1">
<stop
offset="0"
stop-color="#18a303"
id="stop2-6" />
<stop
offset="1"
stop-color="#43c330"
id="stop4-4" />
</linearGradient>
<linearGradient
id="b-8"
gradientUnits="userSpaceOnUse"
x1="546"
x2="458"
xlink:href="#a-1"
y1="121.99995"
y2="5.9999499" />
<linearGradient
id="c-0"
gradientUnits="userSpaceOnUse"
x1="508.06174"
x2="508.06174"
y1="109.9985"
y2="83.998497">
<stop
offset="0"
stop-color="#727272"
id="stop8" />
<stop
offset="1"
stop-color="#9a9a9a"
id="stop10" />
</linearGradient>
<linearGradient
id="d-8"
gradientTransform="matrix(0.948718,0,0,1.3,-288.38576,1491.7273)"
gradientUnits="userSpaceOnUse"
x1="829.36053"
x2="829.36053"
y1="-1064.7994"
y2="-1082.3413">
<stop
offset="0"
stop-color="#e4e4e4"
id="stop13" />
<stop
offset="1"
stop-color="#f9f9f9"
id="stop15" />
</linearGradient>
<linearGradient
id="e-7"
gradientTransform="matrix(0.714286,0,0,-1.55555,125.07024,-1571.1037)"
gradientUnits="userSpaceOnUse"
x1="525.63947"
x2="525.63947"
y1="-1078.6444"
y2="-1068.7872">
<stop
offset="0"
stop-color="#63bbee"
id="stop18" />
<stop
offset="1"
stop-color="#aadcf7"
id="stop20" />
</linearGradient>
<linearGradient
id="f-2"
gradientUnits="userSpaceOnUse"
x1="512.65552"
x2="512.65552"
y1="95.0298"
y2="85.998596">
<stop
offset="0"
stop-color="#a33e03"
id="stop23" />
<stop
offset="1"
stop-color="#c15414"
id="stop25" />
</linearGradient>
<linearGradient
id="g-8"
gradientTransform="matrix(0.714286,0,0,-2.11111,133.07024,-2170.0637)"
gradientUnits="userSpaceOnUse"
x1="525.63947"
x2="525.63947"
y1="-1078.6444"
y2="-1068.7872">
<stop
offset="0"
stop-color="#f09e6f"
id="stop28" />
<stop
offset="1"
stop-color="#f9cfb5"
id="stop30" />
</linearGradient>
<linearGradient
id="h-0"
gradientTransform="matrix(0.714286,0,0,-0.888884,141.07024,-852.34365)"
gradientUnits="userSpaceOnUse"
x1="525.63947"
x2="525.63947"
y1="-1078.6444"
y2="-1068.7872">
<stop
offset="0"
stop-color="#f5ce53"
id="stop33" />
<stop
offset="1"
stop-color="#fde9a9"
id="stop35-8" />
</linearGradient>
<linearGradient
id="i-0"
gradientTransform="matrix(0.714286,0,0,-1.33333,149.07024,-1331.5137)"
gradientUnits="userSpaceOnUse"
x1="525.63947"
x2="525.63947"
y1="-1078.6444"
y2="-1068.7872">
<stop
offset="0"
stop-color="#8ee780"
id="stop38" />
<stop
offset="1"
stop-color="#ccf4c6"
id="stop40" />
</linearGradient>
</defs>
<sodipodi:namedview
inkscape:window-maximized="1"
inkscape:window-y="-8"
inkscape:window-x="-8"
inkscape:window-height="1009"
inkscape:window-width="1920"
lock-margins="true"
units="px"
fit-margin-bottom="2"
fit-margin-right="2"
fit-margin-left="2"
fit-margin-top="2"
inkscape:guide-bbox="true"
showguides="true"
inkscape:snap-global="false"
showgrid="false"
inkscape:document-rotation="0"
inkscape:current-layer="layer1"
inkscape:document-units="mm"
inkscape:cy="36.86866"
inkscape:cx="88.149615"
inkscape:zoom="2.9835638"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
inkscape:pagecheckerboard="0"
inkscape:snap-midpoints="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:object-paths="true"
inkscape:snap-page="true">
<sodipodi:guide
id="guide1680"
orientation="0,-1"
position="36.945035,2.9637157" />
<sodipodi:guide
position="-0.1773606,32.641629"
orientation="-0.71102562,0.7031661"
id="guide2372" />
</sodipodi:namedview>
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(-31.383969,-46.222139)"
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Calque 1">
<rect
style="fill:none;stroke:none;stroke-width:0.148;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
id="rect4845"
width="66.024391"
height="16.182283"
x="31.987135"
y="46.825306" />
<text
xml:space="preserve"
style="font-size:9.39836px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;stroke-width:0.220273"
x="46.949982"
y="58.574177"
id="text835"
transform="scale(1.0129328,0.9872323)"><tspan
sodipodi:role="line"
id="tspan833"
x="46.949982"
y="58.574177"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.39836px;font-family:Pacifico;-inkscape-font-specification:Pacifico;stroke-width:0.220273">analyseCalc</tspan></text>
<g
id="g964"
transform="matrix(0.09985784,0,0,0.09985784,33.336642,47.886163)">
<path
d="m 17.253295,0 c -0.25037,0 -0.50072,0.011156 -0.75,0.035156 -3.66708,0.6998 -4.56576,2.2662469 -4.5,5.9980468 V 122.00195 c 4e-4,4.1875 1.81149,5.99765 6,5.99805 h 91.998055 c 4.1885,-4e-4 5.99764,-1.81055 5.99804,-5.99805 V 50.183594 c 0.048,-2.1119 -0.78004,-4.230247 -2.25,-5.748047 L 71.589245,2.2851562 c -1.51819,-1.4691999 -3.63759,-2.2988999 -5.75,-2.25 H 18.003295 C 17.754105,0.0111562 17.503675,0 17.253295,0 Z m 70.00978,0.013672 c -0.20997,0 -0.41948,0.016828 -0.62695,0.048828 -2.66247,0.8528 -3.55843,4.904547 -1.50586,6.810547 L 109.22596,31.09375 c 2.22593,2.1217 6.6581,0.306209 6.77538,-2.775391 V 4.097656 C 116.0011,1.9839562 114.08836,0.0628 111.98573,0.0625 H 87.891975 c -0.20758,-0.032 -0.41894,-0.048828 -0.6289,-0.048828 z"
fill="url(#k)"
id="path49"
style="fill:url(#k-1)" />
<path
d="M 18.001355,6 V 122 H 110.00137 V 50 L 66.001375,6 Z"
fill="url(#j)"
id="path51"
style="fill:url(#j)" />
<g
transform="translate(-437.99866,2)"
id="g105">
<path
d="m 469,53.998 v 2 8 2 8 2 8 2 8 2 8 2 h 60 v -2 -50 h -58 z"
fill="url(#b)"
id="path53"
style="fill:url(#b-8)" />
<g
fill="#92e285"
id="g61">
<path
d="m 470.99924,55.99855 h 17 v 8 h -17 z"
id="path55" />
<path
d="m 489.99748,55.99855 h 17.99994 v 8 h -17.99994 z"
id="path57" />
<path
d="m 509.99924,55.99855 h 17 v 8 h -17 z"
id="path59" />
</g>
<g
fill="#ccf4c6"
id="g81">
<path
d="m 470.99924,65.99855 h 17 v 8 h -17 z"
id="path63" />
<path
d="m 509.99924,65.99855 h 17 v 8 h -17 z"
id="path65" />
<path
d="m 489.99748,75.99855 h 17.99994 v 8 h -17.99994 z"
id="path67" />
<path
d="m 509.99924,75.99855 h 17 v 8 h -17 z"
id="path69" />
<path
d="m 470.99924,75.99855 h 17 v 8 h -17 z"
id="path71" />
<path
d="m 489.99748,85.99855 h 17.99994 v 8 h -17.99994 z"
id="path73" />
<path
d="m 470.99924,85.99855 h 17 v 8 h -17 z"
id="path75" />
<path
d="m 489.99748,95.99855 h 17.99994 v 8 h -17.99994 z"
id="path77" />
<path
d="m 470.99924,95.99855 h 17 v 8 h -17 z"
id="path79" />
</g>
<path
d="m 493.99924,81.99855 h 39 v 28 h -39 z"
fill="url(#c)"
id="path83"
style="fill:url(#c-0)" />
<path
d="m 495.99924,83.99855 h 35 v 24 h -35 z"
fill="url(#d)"
id="path85"
style="fill:url(#d-8)" />
<path
d="m 497.99924,90.99855 h 7 v 15.9999 h -7 z"
fill="#18a303"
id="path87" />
<path
d="m 498.99924,105.99855 h 5 v -14 h -5 z"
fill="url(#e)"
id="path89"
style="fill:url(#e-7)" />
<path
d="m 505.99924,85.99855 h 7 v 20.9999 h -7 z"
fill="url(#f)"
id="path91"
style="fill:url(#f-2)" />
<path
d="m 506.99924,105.99855 h 5 v -19 h -5 z"
fill="url(#g)"
id="path93"
style="fill:url(#g-8)" />
<path
d="m 513.99924,96.99855 h 7 v 9.9999 h -7 z"
fill="#c99c00"
id="path95" />
<path
d="m 514.99924,105.99855 h 5 v -8 h -5 z"
fill="url(#h)"
id="path97"
style="fill:url(#h-0)" />
<path
d="m 521.99924,92.99855 h 7 v 14 h -7 z"
fill="#43c330"
id="path99" />
<path
d="m 522.99924,105.99855 h 5 v -12 h -5 z"
fill="url(#i)"
id="path101"
style="fill:url(#i-0)" />
<path
d="m 489.99748,65.99855 h 17.99994 v 8 h -17.99994 z"
fill="#ccf4c6"
id="path103" />
</g>
</g>
<g
id="g3176"
transform="translate(-28.909778,18.622862)">
<path
style="fill:#ffaaaa;stroke:#ffaaaa;stroke-width:0.257397px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 64.782774,30.389036 -0.734025,-0.804561 c -0.261592,-0.0028 -0.488807,-0.05918 -0.892393,0.159352 -0.447603,0.343499 -0.662658,0.633003 -0.85336,0.916853 -0.171891,0.333921 -0.135917,0.570072 -0.09736,0.805004 l 0.779691,0.740884 z"
id="path1605"
sodipodi:nodetypes="ccccccc" />
<path
id="path903"
d="m 65.185528,30.771366 0.962387,-0.638019 c 0.838489,1.245007 0.419423,1.619401 2.562142,3.767338"
style="fill:none;stroke:#686868;stroke-width:0.480582;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="ccc" />
<g
id="g901"
style="stroke-width:1.20245;stroke-miterlimit:4;stroke-dasharray:none"
transform="matrix(0.10789957,-0.05670569,0.05420981,0.11191121,44.387897,27.140948)">
<path
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.20245;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 165.60421,210.25518 -16.67346,-14.97786 19.49947,-6.49982 z"
id="path886" />
<path
style="fill:#ffcc00;stroke:#000000;stroke-width:1.20245;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 148.93075,195.27732 -29.6731,-89.58453 19.78207,-6.217222 29.3905,89.301932 z"
id="path888"
sodipodi:nodetypes="ccccc" />
<path
style="fill:#cccccc;stroke:#000000;stroke-width:1.20245;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 119.25765,105.69279 19.78206,-6.217223 5.18467,15.184943 -20.19347,6.3466 z"
id="path896"
sodipodi:nodetypes="ccccc" />
<path
style="fill:#000000;stroke:none;stroke-width:1.20245;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 165.60421,210.25518 1.82913,-13.90142 c -1.86721,0.41019 -1.24071,5.14178 -2.26609,5.73964 -0.90416,0.52717 -2.9307,-2.35026 -4.06786,-2.12548 -1.70014,0.33605 2.39156,6.64425 -1.96215,4.47795 z"
id="path1247"
sodipodi:nodetypes="ccsscc" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 17 KiB

BIN
bin/accueilanalysecalc.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -0,0 +1,352 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
inkscape:export-ydpi="128"
inkscape:export-xdpi="128"
inkscape:export-filename="accueil evaluation.png"
sodipodi:docname="accueill evaluation étudiant.svg"
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
id="svg8"
version="1.1"
viewBox="0 0 47.823838 7.3994096"
height="27.966272"
width="180.75151"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<defs
id="defs2">
<linearGradient
id="k"
gradientTransform="matrix(7.99974,0,0,7.9977797,-873.96742,-7808.7674)"
gradientUnits="userSpaceOnUse"
x1="122.75008"
x2="111.74973"
xlink:href="#b"
y1="991.62115"
y2="977.11713" />
<linearGradient
id="b">
<stop
offset="0"
stop-color="#0369a3"
id="stop7" />
<stop
offset="1"
stop-color="#1c99e0"
id="stop9" />
</linearGradient>
<linearGradient
id="j"
gradientUnits="userSpaceOnUse"
x1="108.00134"
x2="20.001341"
y1="122"
y2="6">
<stop
offset="0"
stop-color="#e6e6e6"
id="stop35" />
<stop
offset="1"
stop-color="#fff"
id="stop37" />
</linearGradient>
<linearGradient
id="i"
gradientUnits="userSpaceOnUse"
x1="108.00134"
x2="20.001341"
xlink:href="#b"
y1="130"
y2="14" />
<linearGradient
id="h"
gradientTransform="matrix(4.4999,0,0,3.66665,-942.97741,2199.6564)"
gradientUnits="userSpaceOnUse"
x2="0"
y1="-581.63782"
y2="-578.63782">
<stop
offset="0"
stop-color="#63bbee"
id="stop29" />
<stop
offset="1"
stop-color="#aadcf7"
id="stop31" />
</linearGradient>
<linearGradient
id="g"
gradientTransform="matrix(-4.19983,0,0,3.9111,1540.9405,-4523.1636)"
gradientUnits="userSpaceOnUse"
x2="0"
xlink:href="#a"
y1="1173"
y2="1178" />
<linearGradient
id="a">
<stop
offset="0"
stop-color="#666"
id="stop2" />
<stop
offset="1"
stop-color="#333"
id="stop4" />
</linearGradient>
<linearGradient
id="f"
gradientTransform="matrix(4.19983,0,0,3.9111,-1392.9394,-4521.9436)"
gradientUnits="userSpaceOnUse"
x2="0"
xlink:href="#a"
y1="1173"
y2="1178" />
<linearGradient
id="e"
gradientTransform="matrix(1.19997,0,0,1.22222,-281.19161,858.5534)"
gradientUnits="userSpaceOnUse"
x2="0"
y1="-629.66907"
y2="-635.54944">
<stop
offset="0"
stop-color="#18a303"
id="stop22" />
<stop
offset="1"
stop-color="#106802"
id="stop24" />
</linearGradient>
<linearGradient
id="d"
gradientTransform="matrix(4.19983,0,0,3.9111,-1392.9394,-4517.0536)"
gradientUnits="userSpaceOnUse"
x2="0"
y1="1173"
y2="1178">
<stop
offset="0"
stop-color="#0369a3"
id="stop17" />
<stop
offset="1"
stop-color="#023f62"
id="stop19" />
</linearGradient>
<linearGradient
id="c"
gradientTransform="matrix(0,0.791084,-1.28,0,1499.6005,-282.0136)"
gradientUnits="userSpaceOnUse"
x1="445.69522"
x2="441.38797"
y1="1103.5776"
y2="1099.8198">
<stop
offset="0"
stop-color="#e9b913"
id="stop12" />
<stop
offset="1"
stop-color="#ff0"
id="stop14" />
</linearGradient>
</defs>
<sodipodi:namedview
inkscape:window-maximized="1"
inkscape:window-y="-8"
inkscape:window-x="-8"
inkscape:window-height="1009"
inkscape:window-width="1920"
lock-margins="true"
units="px"
fit-margin-bottom="2"
fit-margin-right="2"
fit-margin-left="2"
fit-margin-top="2"
inkscape:guide-bbox="true"
showguides="true"
inkscape:snap-global="true"
showgrid="false"
inkscape:document-rotation="0"
inkscape:current-layer="layer1"
inkscape:document-units="mm"
inkscape:cy="16.8952"
inkscape:cx="84.229352"
inkscape:zoom="4.0544061"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
inkscape:pagecheckerboard="0"
inkscape:snap-midpoints="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:object-paths="true"
inkscape:snap-page="true"
inkscape:showpageshadow="2"
inkscape:deskcolor="#d1d1d1">
<sodipodi:guide
id="guide1680"
orientation="0,-1"
position="38.054425,-6.5034259"
inkscape:locked="false" />
<sodipodi:guide
position="4.5254264,2.5804595"
orientation="-0.71102562,0.7031661"
id="guide2372"
inkscape:locked="false" />
<sodipodi:guide
position="11.159156,1.069362"
orientation="0,-1"
id="guide946"
inkscape:locked="false" />
</sodipodi:namedview>
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(-30.274579,-46.744205)"
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Calque 1">
<rect
style="fill:none;stroke:none;stroke-width:0.148;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
id="rect4845"
width="66.024391"
height="16.182283"
x="31.987135"
y="46.825306" />
<text
xml:space="preserve"
style="font-size:3.88056px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;stroke-width:0.192132"
x="38.17931"
y="52.831486"
id="text835"><tspan
sodipodi:role="line"
id="tspan833"
x="38.17931"
y="52.831486"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.88056px;font-family:Pacifico;-inkscape-font-specification:Pacifico;stroke-width:0.192132">Évaluation des étudiants</tspan></text>
<g
id="g1624"
transform="matrix(0.03996486,0,0,0.03996514,30.373862,44.265476)"
style="stroke-width:1.47177">
<g
transform="matrix(3.4017825,0,0,3.4017825,-95.08183,-189.09441)"
id="g884"
style="stroke-width:2.06726;stroke-miterlimit:4;stroke-dasharray:none">
<rect
style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:2.06726;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
id="rect880"
width="38.433739"
height="35.890331"
x="37.868542"
y="83.64991"
ry="2.5985754"
rx="2.5985754" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:8.26885;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
d="M 71.512572,88.41099 60.11298,113.78783 43.185151,105.76978 55.59032,107.11953 Z"
id="path882"
sodipodi:nodetypes="ccccc" />
</g>
<path
style="fill:#ffaaaa;stroke:#ffaaaa;stroke-width:4.73435px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 62.421182,83.450948 53.247834,73.396095 c -3.269201,-0.03495 -6.108773,-0.739553 -11.152516,1.99147 -5.59384,4.292817 -8.281453,7.910846 -10.664708,11.458206 -2.148177,4.173122 -1.698608,7.124368 -1.216677,10.060391 l 9.74404,9.259068 z"
id="path1605"
sodipodi:nodetypes="ccccccc" />
<path
transform="matrix(1.315503,-0.76811157,0.73918702,1.366979,-196.76404,56.095615)"
id="path903"
d="m 142.61305,103.6418 9.43978,-0.5287 c 1.19321,12.05269 -3.29434,12.95393 3.79047,36.57198"
style="fill:none;stroke:#686868;stroke-width:5.74665;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="ccc" />
<g
id="g901"
style="stroke-width:1.76973;stroke-miterlimit:4;stroke-dasharray:none"
transform="matrix(1.3484552,-0.70866904,0.67747724,1.3985899,-192.46008,42.858566)">
<path
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.76973;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 165.60421,210.25518 -16.67346,-14.97786 19.49947,-6.49982 z"
id="path886" />
<path
style="fill:#ffcc00;stroke:#000000;stroke-width:1.76973;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 148.93075,195.27732 -29.6731,-89.58453 19.78207,-6.217222 29.3905,89.301932 z"
id="path888"
sodipodi:nodetypes="ccccc" />
<path
style="fill:#cccccc;stroke:#000000;stroke-width:1.76973;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 119.25765,105.69279 19.78206,-6.217223 5.18467,15.184943 -20.19347,6.3466 z"
id="path896"
sodipodi:nodetypes="ccccc" />
<path
style="fill:#000000;stroke:none;stroke-width:1.76973;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 165.60421,210.25518 1.82913,-13.90142 c -1.86721,0.41019 -1.24071,5.14178 -2.26609,5.73964 -0.90416,0.52717 -2.9307,-2.35026 -4.06786,-2.12548 -1.70014,0.33605 2.39156,6.64425 -1.96215,4.47795 z"
id="path1247"
sodipodi:nodetypes="ccsscc" />
</g>
</g>
<g
id="g854"
transform="matrix(0.46962342,0,0,0.46954938,31.944644,36.646967)"
style="stroke-width:1.56539">
<g
id="g919"
transform="matrix(2.0256057,0,0,2.085527,3.858094,-3.9539377)"
style="stroke:#000000;stroke-width:1.20891;stroke-opacity:1">
<rect
ry="0.56339979"
y="4.3255968"
x="0.92013353"
height="3.7594025"
width="3.8382711"
id="rect12"
style="fill:#de0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.078579;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
rx="0.5800662" />
<path
style="fill:#ffffff;stroke:#ffffff;stroke-width:0.683033;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 1.6159,5.0384659 3.9724208,7.4062084"
id="path841" />
<path
id="path843"
d="M 3.9724208,5.0384659 1.6159,7.4062084"
style="fill:none;stroke:#ffffff;stroke-width:0.683033;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g923"
transform="matrix(1.9487365,0,0,2.0063839,-0.66234441,-0.08147761)"
style="stroke-width:1.20891">
<rect
style="fill:#00bf00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.078579;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
id="rect10"
width="3.8382711"
height="3.7594025"
x="0.92013353"
y="0.34176376"
ry="0.56339979"
rx="0.5800662" />
<path
style="fill:#ffffff;stroke:none;stroke-width:0.319856px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 1.4619106,1.7500935 C 1.3627577,2.4034195 1.7869697,2.7038331 2.3820759,3.4752278 2.7236407,3.2105071 3.8437643,1.6082077 4.3539528,0.68451321 3.7444013,1.2569625 3.3467309,1.6796751 2.3752981,2.7432214 1.891109,2.378332 1.7782083,2.0571129 1.4619106,1.7500935 Z"
id="path16"
sodipodi:nodetypes="ccccc" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -0,0 +1,352 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
inkscape:export-ydpi="128"
inkscape:export-xdpi="128"
inkscape:export-filename="accueil fichier anlyse.png"
sodipodi:docname="accueill fichier analyset.svg"
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
id="svg8"
version="1.1"
viewBox="0 0 46.257642 8.2477666"
height="31.172661"
width="174.83203"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<defs
id="defs2">
<linearGradient
id="k"
gradientTransform="matrix(7.99974,0,0,7.9977797,-873.96742,-7808.7674)"
gradientUnits="userSpaceOnUse"
x1="122.75008"
x2="111.74973"
xlink:href="#b"
y1="991.62115"
y2="977.11713" />
<linearGradient
id="b">
<stop
offset="0"
stop-color="#0369a3"
id="stop7" />
<stop
offset="1"
stop-color="#1c99e0"
id="stop9" />
</linearGradient>
<linearGradient
id="j"
gradientUnits="userSpaceOnUse"
x1="108.00134"
x2="20.001341"
y1="122"
y2="6">
<stop
offset="0"
stop-color="#e6e6e6"
id="stop35" />
<stop
offset="1"
stop-color="#fff"
id="stop37" />
</linearGradient>
<linearGradient
id="i"
gradientUnits="userSpaceOnUse"
x1="108.00134"
x2="20.001341"
xlink:href="#b"
y1="130"
y2="14" />
<linearGradient
id="h"
gradientTransform="matrix(4.4999,0,0,3.66665,-942.97741,2199.6564)"
gradientUnits="userSpaceOnUse"
x2="0"
y1="-581.63782"
y2="-578.63782">
<stop
offset="0"
stop-color="#63bbee"
id="stop29" />
<stop
offset="1"
stop-color="#aadcf7"
id="stop31" />
</linearGradient>
<linearGradient
id="g"
gradientTransform="matrix(-4.19983,0,0,3.9111,1540.9405,-4523.1636)"
gradientUnits="userSpaceOnUse"
x2="0"
xlink:href="#a"
y1="1173"
y2="1178" />
<linearGradient
id="a">
<stop
offset="0"
stop-color="#666"
id="stop2" />
<stop
offset="1"
stop-color="#333"
id="stop4" />
</linearGradient>
<linearGradient
id="f"
gradientTransform="matrix(4.19983,0,0,3.9111,-1392.9394,-4521.9436)"
gradientUnits="userSpaceOnUse"
x2="0"
xlink:href="#a"
y1="1173"
y2="1178" />
<linearGradient
id="e"
gradientTransform="matrix(1.19997,0,0,1.22222,-281.19161,858.5534)"
gradientUnits="userSpaceOnUse"
x2="0"
y1="-629.66907"
y2="-635.54944">
<stop
offset="0"
stop-color="#18a303"
id="stop22" />
<stop
offset="1"
stop-color="#106802"
id="stop24" />
</linearGradient>
<linearGradient
id="d"
gradientTransform="matrix(4.19983,0,0,3.9111,-1392.9394,-4517.0536)"
gradientUnits="userSpaceOnUse"
x2="0"
y1="1173"
y2="1178">
<stop
offset="0"
stop-color="#0369a3"
id="stop17" />
<stop
offset="1"
stop-color="#023f62"
id="stop19" />
</linearGradient>
<linearGradient
id="c"
gradientTransform="matrix(0,0.791084,-1.28,0,1499.6005,-282.0136)"
gradientUnits="userSpaceOnUse"
x1="445.69522"
x2="441.38797"
y1="1103.5776"
y2="1099.8198">
<stop
offset="0"
stop-color="#e9b913"
id="stop12" />
<stop
offset="1"
stop-color="#ff0"
id="stop14" />
</linearGradient>
</defs>
<sodipodi:namedview
inkscape:window-maximized="1"
inkscape:window-y="-8"
inkscape:window-x="-8"
inkscape:window-height="1009"
inkscape:window-width="1920"
lock-margins="true"
units="px"
fit-margin-bottom="2"
fit-margin-right="2"
fit-margin-left="2"
fit-margin-top="2"
inkscape:guide-bbox="true"
showguides="true"
inkscape:snap-global="true"
showgrid="false"
inkscape:document-rotation="0"
inkscape:current-layer="layer1"
inkscape:document-units="mm"
inkscape:cy="17.141845"
inkscape:cx="61.537989"
inkscape:zoom="4.0544061"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
inkscape:pagecheckerboard="0"
inkscape:snap-midpoints="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:object-paths="true"
inkscape:snap-page="true"
inkscape:showpageshadow="2"
inkscape:deskcolor="#d1d1d1">
<sodipodi:guide
id="guide1680"
orientation="0,-1"
position="38.054425,-5.6550689"
inkscape:locked="false" />
<sodipodi:guide
position="4.5254264,3.4288165"
orientation="-0.71102562,0.7031661"
id="guide2372"
inkscape:locked="false" />
<sodipodi:guide
position="11.159156,1.917719"
orientation="0,-1"
id="guide946"
inkscape:locked="false" />
</sodipodi:namedview>
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(-30.274579,-46.744205)"
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Calque 1">
<rect
style="fill:none;stroke:none;stroke-width:0.148;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
id="rect4845"
width="66.024391"
height="16.182283"
x="31.987135"
y="46.825306" />
<text
xml:space="preserve"
style="font-size:3.88056px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;stroke-width:0.192132"
x="38.17931"
y="52.831486"
id="text835"><tspan
sodipodi:role="line"
id="tspan833"
x="38.17931"
y="52.831486"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.88056px;font-family:Pacifico;-inkscape-font-specification:Pacifico;stroke-width:0.192132">Fichier d'analyse</tspan></text>
<g
id="g1624"
transform="matrix(0.03996486,0,0,0.03996514,30.373862,44.265476)"
style="stroke-width:1.47177">
<g
transform="matrix(3.4017825,0,0,3.4017825,-95.08183,-189.09441)"
id="g884"
style="stroke-width:2.06726;stroke-miterlimit:4;stroke-dasharray:none">
<rect
style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:2.06726;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
id="rect880"
width="38.433739"
height="35.890331"
x="37.868542"
y="83.64991"
ry="2.5985754"
rx="2.5985754" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:8.26885;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
d="M 71.512572,88.41099 60.11298,113.78783 43.185151,105.76978 55.59032,107.11953 Z"
id="path882"
sodipodi:nodetypes="ccccc" />
</g>
<path
style="fill:#ffaaaa;stroke:#ffaaaa;stroke-width:4.73435px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 62.421182,83.450948 53.247834,73.396095 c -3.269201,-0.03495 -6.108773,-0.739553 -11.152516,1.99147 -5.59384,4.292817 -8.281453,7.910846 -10.664708,11.458206 -2.148177,4.173122 -1.698608,7.124368 -1.216677,10.060391 l 9.74404,9.259068 z"
id="path1605"
sodipodi:nodetypes="ccccccc" />
<path
transform="matrix(1.315503,-0.76811157,0.73918702,1.366979,-196.76404,56.095615)"
id="path903"
d="m 142.61305,103.6418 9.43978,-0.5287 c 1.19321,12.05269 -3.29434,12.95393 3.79047,36.57198"
style="fill:none;stroke:#686868;stroke-width:5.74665;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="ccc" />
<g
id="g901"
style="stroke-width:1.76973;stroke-miterlimit:4;stroke-dasharray:none"
transform="matrix(1.3484552,-0.70866904,0.67747724,1.3985899,-192.46008,42.858566)">
<path
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.76973;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 165.60421,210.25518 -16.67346,-14.97786 19.49947,-6.49982 z"
id="path886" />
<path
style="fill:#ffcc00;stroke:#000000;stroke-width:1.76973;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 148.93075,195.27732 -29.6731,-89.58453 19.78207,-6.217222 29.3905,89.301932 z"
id="path888"
sodipodi:nodetypes="ccccc" />
<path
style="fill:#cccccc;stroke:#000000;stroke-width:1.76973;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 119.25765,105.69279 19.78206,-6.217223 5.18467,15.184943 -20.19347,6.3466 z"
id="path896"
sodipodi:nodetypes="ccccc" />
<path
style="fill:#000000;stroke:none;stroke-width:1.76973;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 165.60421,210.25518 1.82913,-13.90142 c -1.86721,0.41019 -1.24071,5.14178 -2.26609,5.73964 -0.90416,0.52717 -2.9307,-2.35026 -4.06786,-2.12548 -1.70014,0.33605 2.39156,6.64425 -1.96215,4.47795 z"
id="path1247"
sodipodi:nodetypes="ccsscc" />
</g>
</g>
<g
id="g854"
transform="matrix(0.46962342,0,0,0.46954938,31.944644,36.646967)"
style="stroke-width:1.56539">
<g
id="g919"
transform="matrix(2.0256057,0,0,2.085527,3.858094,-3.9539377)"
style="stroke:#000000;stroke-width:1.20891;stroke-opacity:1">
<rect
ry="0.56339979"
y="4.3255968"
x="0.92013353"
height="3.7594025"
width="3.8382711"
id="rect12"
style="fill:#de0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.078579;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
rx="0.5800662" />
<path
style="fill:#ffffff;stroke:#ffffff;stroke-width:0.683033;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 1.6159,5.0384659 3.9724208,7.4062084"
id="path841" />
<path
id="path843"
d="M 3.9724208,5.0384659 1.6159,7.4062084"
style="fill:none;stroke:#ffffff;stroke-width:0.683033;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g923"
transform="matrix(1.9487365,0,0,2.0063839,-0.66234441,-0.08147761)"
style="stroke-width:1.20891">
<rect
style="fill:#00bf00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.078579;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
id="rect10"
width="3.8382711"
height="3.7594025"
x="0.92013353"
y="0.34176376"
ry="0.56339979"
rx="0.5800662" />
<path
style="fill:#ffffff;stroke:none;stroke-width:0.319856px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 1.4619106,1.7500935 C 1.3627577,2.4034195 1.7869697,2.7038331 2.3820759,3.4752278 2.7236407,3.2105071 3.8437643,1.6082077 4.3539528,0.68451321 3.7444013,1.2569625 3.3467309,1.6796751 2.3752981,2.7432214 1.891109,2.378332 1.7782083,2.0571129 1.4619106,1.7500935 Z"
id="path16"
sodipodi:nodetypes="ccccc" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

296
bin/accueill.svg Normal file
View File

@ -0,0 +1,296 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
inkscape:export-ydpi="128"
inkscape:export-xdpi="128"
inkscape:export-filename="C:\Users\pabr6\git\analyseWriter\MEPTL\icons\accueil.png"
sodipodi:docname="accueill.svg"
inkscape:version="1.1.2 (b8e25be833, 2022-02-05)"
id="svg8"
version="1.1"
viewBox="0 0 67.230724 17.388617"
height="65.720757"
width="254.10037"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<defs
id="defs2">
<linearGradient
id="k"
gradientTransform="matrix(7.99974,0,0,7.9977797,-873.96742,-7808.7674)"
gradientUnits="userSpaceOnUse"
x1="122.75008"
x2="111.74973"
xlink:href="#b"
y1="991.62115"
y2="977.11713" />
<linearGradient
id="b">
<stop
offset="0"
stop-color="#0369a3"
id="stop7" />
<stop
offset="1"
stop-color="#1c99e0"
id="stop9" />
</linearGradient>
<linearGradient
id="j"
gradientUnits="userSpaceOnUse"
x1="108.00134"
x2="20.001341"
y1="122"
y2="6">
<stop
offset="0"
stop-color="#e6e6e6"
id="stop35" />
<stop
offset="1"
stop-color="#fff"
id="stop37" />
</linearGradient>
<linearGradient
id="i"
gradientUnits="userSpaceOnUse"
x1="108.00134"
x2="20.001341"
xlink:href="#b"
y1="130"
y2="14" />
<linearGradient
id="h"
gradientTransform="matrix(4.4999,0,0,3.66665,-942.97741,2199.6564)"
gradientUnits="userSpaceOnUse"
x2="0"
y1="-581.63782"
y2="-578.63782">
<stop
offset="0"
stop-color="#63bbee"
id="stop29" />
<stop
offset="1"
stop-color="#aadcf7"
id="stop31" />
</linearGradient>
<linearGradient
id="g"
gradientTransform="matrix(-4.19983,0,0,3.9111,1540.9405,-4523.1636)"
gradientUnits="userSpaceOnUse"
x2="0"
xlink:href="#a"
y1="1173"
y2="1178" />
<linearGradient
id="a">
<stop
offset="0"
stop-color="#666"
id="stop2" />
<stop
offset="1"
stop-color="#333"
id="stop4" />
</linearGradient>
<linearGradient
id="f"
gradientTransform="matrix(4.19983,0,0,3.9111,-1392.9394,-4521.9436)"
gradientUnits="userSpaceOnUse"
x2="0"
xlink:href="#a"
y1="1173"
y2="1178" />
<linearGradient
id="e"
gradientTransform="matrix(1.19997,0,0,1.22222,-281.19161,858.5534)"
gradientUnits="userSpaceOnUse"
x2="0"
y1="-629.66907"
y2="-635.54944">
<stop
offset="0"
stop-color="#18a303"
id="stop22" />
<stop
offset="1"
stop-color="#106802"
id="stop24" />
</linearGradient>
<linearGradient
id="d"
gradientTransform="matrix(4.19983,0,0,3.9111,-1392.9394,-4517.0536)"
gradientUnits="userSpaceOnUse"
x2="0"
y1="1173"
y2="1178">
<stop
offset="0"
stop-color="#0369a3"
id="stop17" />
<stop
offset="1"
stop-color="#023f62"
id="stop19" />
</linearGradient>
<linearGradient
id="c"
gradientTransform="matrix(0,0.791084,-1.28,0,1499.6005,-282.0136)"
gradientUnits="userSpaceOnUse"
x1="445.69522"
x2="441.38797"
y1="1103.5776"
y2="1099.8198">
<stop
offset="0"
stop-color="#e9b913"
id="stop12" />
<stop
offset="1"
stop-color="#ff0"
id="stop14" />
</linearGradient>
</defs>
<sodipodi:namedview
inkscape:window-maximized="1"
inkscape:window-y="-8"
inkscape:window-x="-8"
inkscape:window-height="1009"
inkscape:window-width="1920"
lock-margins="true"
units="px"
fit-margin-bottom="2"
fit-margin-right="2"
fit-margin-left="2"
fit-margin-top="2"
inkscape:guide-bbox="true"
showguides="true"
inkscape:snap-global="true"
showgrid="false"
inkscape:document-rotation="0"
inkscape:current-layer="layer1"
inkscape:document-units="mm"
inkscape:cy="36.868661"
inkscape:cx="109.93564"
inkscape:zoom="2.9835638"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
inkscape:pagecheckerboard="0"
inkscape:snap-midpoints="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:object-paths="true"
inkscape:snap-page="true">
<sodipodi:guide
id="guide1680"
orientation="0,-1"
position="36.945035,2.9637157" />
<sodipodi:guide
position="3.4160366,12.047601"
orientation="-0.71102562,0.7031661"
id="guide2372" />
</sodipodi:namedview>
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(-31.383969,-46.222139)"
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Calque 1">
<rect
style="fill:none;stroke:none;stroke-width:0.148;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
id="rect4845"
width="66.024391"
height="16.182283"
x="31.987135"
y="46.825306" />
<text
xml:space="preserve"
style="font-size:8.19767px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;stroke-width:0.192132"
x="45.652493"
y="58.318031"
id="text835"><tspan
sodipodi:role="line"
id="tspan833"
x="45.652493"
y="58.318031"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.19767px;font-family:Pacifico;-inkscape-font-specification:Pacifico;stroke-width:0.192132">analyseWriter</tspan></text>
<g
id="g1624"
transform="matrix(0.08001717,0,0,0.08001717,30.257468,41.624948)">
<g
transform="matrix(3.4017825,0,0,3.4017825,-95.08183,-189.09441)"
id="g884"
style="stroke-width:1.4046;stroke-miterlimit:4;stroke-dasharray:none">
<rect
style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1.4046;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
id="rect880"
width="38.433739"
height="35.890331"
x="37.868542"
y="83.64991"
ry="2.5985754"
rx="2.5985754" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:5.61829;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
d="M 71.512572,88.41099 60.11298,113.78783 43.185151,105.76978 55.59032,107.11953 Z"
id="path882"
sodipodi:nodetypes="ccccc" />
</g>
<path
style="fill:#ffaaaa;stroke:#ffaaaa;stroke-width:3.21677px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 62.421182,83.450948 53.247834,73.396095 c -3.269201,-0.03495 -6.108773,-0.739553 -11.152516,1.99147 -5.59384,4.292817 -8.281453,7.910846 -10.664708,11.458206 -2.148177,4.173122 -1.698608,7.124368 -1.216677,10.060391 l 9.74404,9.259068 z"
id="path1605"
sodipodi:nodetypes="ccccccc" />
<path
transform="matrix(1.315503,-0.76811157,0.73918702,1.366979,-196.76404,56.095615)"
id="path903"
d="m 142.61305,103.6418 9.43978,-0.5287 c 1.19321,12.05269 -3.29434,12.95393 3.79047,36.57198"
style="fill:none;stroke:#686868;stroke-width:3.90457;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="ccc" />
<g
id="g901"
style="stroke-width:1.20245;stroke-miterlimit:4;stroke-dasharray:none"
transform="matrix(1.3484552,-0.70866904,0.67747724,1.3985899,-192.46008,42.858566)">
<path
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.20245;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 165.60421,210.25518 -16.67346,-14.97786 19.49947,-6.49982 z"
id="path886" />
<path
style="fill:#ffcc00;stroke:#000000;stroke-width:1.20245;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 148.93075,195.27732 -29.6731,-89.58453 19.78207,-6.217222 29.3905,89.301932 z"
id="path888"
sodipodi:nodetypes="ccccc" />
<path
style="fill:#cccccc;stroke:#000000;stroke-width:1.20245;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 119.25765,105.69279 19.78206,-6.217223 5.18467,15.184943 -20.19347,6.3466 z"
id="path896"
sodipodi:nodetypes="ccccc" />
<path
style="fill:#000000;stroke:none;stroke-width:1.20245;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 165.60421,210.25518 1.82913,-13.90142 c -1.86721,0.41019 -1.24071,5.14178 -2.26609,5.73964 -0.90416,0.52717 -2.9307,-2.35026 -4.06786,-2.12548 -1.70014,0.33605 2.39156,6.64425 -1.96215,4.47795 z"
id="path1247"
sodipodi:nodetypes="ccsscc" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

View File

@ -0,0 +1,311 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
inkscape:export-ydpi="128"
inkscape:export-xdpi="128"
inkscape:export-filename="accueilChargeEvaluation.png"
sodipodi:docname="accueillChargeEvaluation.svg"
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
id="svg8"
version="1.1"
viewBox="0 0 120.85411 19.422661"
height="73.408485"
width="456.77145"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<defs
id="defs2">
<linearGradient
id="k"
gradientTransform="matrix(7.99974,0,0,7.9977797,-873.96742,-7808.7674)"
gradientUnits="userSpaceOnUse"
x1="122.75008"
x2="111.74973"
xlink:href="#b"
y1="991.62115"
y2="977.11713" />
<linearGradient
id="b">
<stop
offset="0"
stop-color="#0369a3"
id="stop7" />
<stop
offset="1"
stop-color="#1c99e0"
id="stop9" />
</linearGradient>
<linearGradient
id="j"
gradientUnits="userSpaceOnUse"
x1="108.00134"
x2="20.001341"
y1="122"
y2="6">
<stop
offset="0"
stop-color="#e6e6e6"
id="stop35" />
<stop
offset="1"
stop-color="#fff"
id="stop37" />
</linearGradient>
<linearGradient
id="i"
gradientUnits="userSpaceOnUse"
x1="108.00134"
x2="20.001341"
xlink:href="#b"
y1="130"
y2="14" />
<linearGradient
id="h"
gradientTransform="matrix(4.4999,0,0,3.66665,-942.97741,2199.6564)"
gradientUnits="userSpaceOnUse"
x2="0"
y1="-581.63782"
y2="-578.63782">
<stop
offset="0"
stop-color="#63bbee"
id="stop29" />
<stop
offset="1"
stop-color="#aadcf7"
id="stop31" />
</linearGradient>
<linearGradient
id="g"
gradientTransform="matrix(-4.19983,0,0,3.9111,1540.9405,-4523.1636)"
gradientUnits="userSpaceOnUse"
x2="0"
xlink:href="#a"
y1="1173"
y2="1178" />
<linearGradient
id="a">
<stop
offset="0"
stop-color="#666"
id="stop2" />
<stop
offset="1"
stop-color="#333"
id="stop4" />
</linearGradient>
<linearGradient
id="f"
gradientTransform="matrix(4.19983,0,0,3.9111,-1392.9394,-4521.9436)"
gradientUnits="userSpaceOnUse"
x2="0"
xlink:href="#a"
y1="1173"
y2="1178" />
<linearGradient
id="e"
gradientTransform="matrix(1.19997,0,0,1.22222,-281.19161,858.5534)"
gradientUnits="userSpaceOnUse"
x2="0"
y1="-629.66907"
y2="-635.54944">
<stop
offset="0"
stop-color="#18a303"
id="stop22" />
<stop
offset="1"
stop-color="#106802"
id="stop24" />
</linearGradient>
<linearGradient
id="d"
gradientTransform="matrix(4.19983,0,0,3.9111,-1392.9394,-4517.0536)"
gradientUnits="userSpaceOnUse"
x2="0"
y1="1173"
y2="1178">
<stop
offset="0"
stop-color="#0369a3"
id="stop17" />
<stop
offset="1"
stop-color="#023f62"
id="stop19" />
</linearGradient>
<linearGradient
id="c"
gradientTransform="matrix(0,0.791084,-1.28,0,1499.6005,-282.0136)"
gradientUnits="userSpaceOnUse"
x1="445.69522"
x2="441.38797"
y1="1103.5776"
y2="1099.8198">
<stop
offset="0"
stop-color="#e9b913"
id="stop12" />
<stop
offset="1"
stop-color="#ff0"
id="stop14" />
</linearGradient>
</defs>
<sodipodi:namedview
inkscape:window-maximized="1"
inkscape:window-y="-8"
inkscape:window-x="-8"
inkscape:window-height="1009"
inkscape:window-width="1920"
lock-margins="true"
units="px"
fit-margin-bottom="2"
fit-margin-right="2"
fit-margin-left="2"
fit-margin-top="2"
inkscape:guide-bbox="true"
showguides="true"
inkscape:snap-global="true"
showgrid="false"
inkscape:document-rotation="0"
inkscape:current-layer="layer1"
inkscape:document-units="mm"
inkscape:cy="38.94859"
inkscape:cx="133.9906"
inkscape:zoom="2.683024"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
inkscape:pagecheckerboard="0"
inkscape:snap-midpoints="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:object-paths="true"
inkscape:snap-page="true"
inkscape:showpageshadow="2"
inkscape:deskcolor="#d1d1d1">
<sodipodi:guide
id="guide1680"
orientation="0,-1"
position="13.656766,8.3376239"
inkscape:locked="false" />
</sodipodi:namedview>
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(-32.182092,-47.463663)"
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Calque 1">
<rect
style="fill:none;stroke:none;stroke-width:0.148;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
id="rect4845"
width="66.024391"
height="16.182283"
x="31.987135"
y="46.825306" />
<g
id="g2452"
transform="translate(6.6556701)">
<text
xml:space="preserve"
style="font-size:7.05556px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;stroke-width:0.192132"
x="45.652493"
y="58.318031"
id="text835"><tspan
sodipodi:role="line"
id="tspan833"
x="45.652493"
y="58.318031"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05556px;font-family:Pacifico;-inkscape-font-specification:Pacifico;stroke-width:0.192132">Base de données des évaluations</tspan></text>
<g
id="g1624"
transform="matrix(0.06830722,0,0,0.06834751,32.178819,43.679325)"
style="stroke-width:1.17108">
<g
transform="matrix(3.4017825,0,0,3.4017825,-95.08183,-189.09441)"
id="g884"
style="stroke-width:1.64491;stroke-miterlimit:4;stroke-dasharray:none">
<rect
style="fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1.64491;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
id="rect880"
width="38.433739"
height="35.890331"
x="37.868542"
y="83.64991"
ry="2.5985754"
rx="2.5985754" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:6.57951;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
d="M 71.512572,88.41099 60.11298,113.78783 43.185151,105.76978 55.59032,107.11953 Z"
id="path882"
sodipodi:nodetypes="ccccc" />
</g>
<path
style="fill:#ffaaaa;stroke:#ffaaaa;stroke-width:3.76712px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 62.421182,83.450948 53.247834,73.396095 c -3.269201,-0.03495 -6.108773,-0.739553 -11.152516,1.99147 -5.59384,4.292817 -8.281453,7.910846 -10.664708,11.458206 -2.148177,4.173122 -1.698608,7.124368 -1.216677,10.060391 l 9.74404,9.259068 z"
id="path1605"
sodipodi:nodetypes="ccccccc" />
<path
transform="matrix(1.315503,-0.76811157,0.73918702,1.366979,-196.76404,56.095615)"
id="path903"
d="m 142.61305,103.6418 9.43978,-0.5287 c 1.19321,12.05269 -3.29434,12.95393 3.79047,36.57198"
style="fill:none;stroke:#686868;stroke-width:4.57259;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="ccc" />
<g
id="g901"
style="stroke-width:1.40817;stroke-miterlimit:4;stroke-dasharray:none"
transform="matrix(1.3484552,-0.70866904,0.67747724,1.3985899,-192.46008,42.858566)">
<path
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.40817;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 165.60421,210.25518 -16.67346,-14.97786 19.49947,-6.49982 z"
id="path886" />
<path
style="fill:#ffcc00;stroke:#000000;stroke-width:1.40817;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 148.93075,195.27732 -29.6731,-89.58453 19.78207,-6.217222 29.3905,89.301932 z"
id="path888"
sodipodi:nodetypes="ccccc" />
<path
style="fill:#cccccc;stroke:#000000;stroke-width:1.40817;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 119.25765,105.69279 19.78206,-6.217223 5.18467,15.184943 -20.19347,6.3466 z"
id="path896"
sodipodi:nodetypes="ccccc" />
<path
style="fill:#000000;stroke:none;stroke-width:1.40817;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 165.60421,210.25518 1.82913,-13.90142 c -1.86721,0.41019 -1.24071,5.14178 -2.26609,5.73964 -0.90416,0.52717 -2.9307,-2.35026 -4.06786,-2.12548 -1.70014,0.33605 2.39156,6.64425 -1.96215,4.47795 z"
id="path1247"
sodipodi:nodetypes="ccsscc" />
</g>
</g>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.88056px;line-height:1.2;font-family:Pacifico;-inkscape-font-specification:Pacifico;stroke-width:0.264583"
x="33.046391"
y="63.859547"
id="text2437"><tspan
sodipodi:role="line"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.88056px;font-family:Pacifico;-inkscape-font-specification:Pacifico;stroke-width:0.264583"
x="33.046391"
y="63.859547"
id="tspan2649">Double cliquer sur une évaluation pour la charger en mémoire et l'utiliser. </tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

BIN
bin/action/actAPropos.class Normal file

Binary file not shown.

BIN
bin/action/actAbout.class Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More