diff --git a/algorithmes/avances/README.md b/algorithmes/avances/README.md
new file mode 100644
index 0000000..9a930e1
--- /dev/null
+++ b/algorithmes/avances/README.md
@@ -0,0 +1,109 @@
+> En informatique, on retrouve fréquemment des problèmes d'optimisation comme par exemple le problème du **rendu de monnaie**. Les algorithmes gloutons sont utilisés pour résoudre ce type de problème.
+
+### Le Programme
+
+
+
+
+
+--------
+
+### Définition
+
+**Problème d'optimisation** : problème dont on cherche à maximiser (ou minimiser) un résultat.
+
+Un ***algorithme glouton*** est un algorithme qui vise à optimiser la résolution d'un problème en utilisant une approche particulière :
+
+- On procède par étapes, en effectuant à chaque fois le meilleur choix possible.
+- On ne revient jamais sur un choix déjà fait.
+
+Selon le problème on utilise une méthode pour résoudre ce dernier. Il peut exister plusieurs instances qui donneront lieu à des résultats différents.
+
+À un problème d'optimisation, on associe une fonction objective.
+
+Prenons un exemple simple : la liste des 23 joueurs selectionnés pour la coupe du monde :
+
+```
+Didier Desvilles est bien embêté : il doit choisir 23 joueurs pour aller jouer au Kotor.
+Dans cette optique, il décide d'utiliser une méthode simple: choisir le meilleur joueur possible pour chaque poste, puis le deuxième meilleur comme remplaçant.
+
+Peu importe si les joueurs selectionnés ne s'entendent pas forcément très bien, comme Olivier Gibrun et Karim Bamazette, l'important c'est de faire le meilleur choix à chaque étape.
+```
+
+Un algorithme glouton ne renvoie pas obligatoirement un résultat optimal, dans ce cas la, on parle ***d'heuristique.*** Il renverra un résultat optimal pour chacun des sous-problèmes.
+
+Un algorithme glouton ne revient pas sur un sous-problème déjà traité.
+
+---------
+
+### Exemple de problème d'optimisation : rendu de monnaie
+
+> Le problème du rendu de monnaie s'énonce de la façon suivante : étant donné un système de monnaie (pièces et billets), comment rendre une somme donnée de façon optimale, c'est-à-dire avec le nombre minimal de pièces et billets ?
+
+On veut programmer une caisse automatique qui rend de façon optimal la monnaie (le moins de pièces/billets) :
+
+#### **Des exemples**
+
+```
+Système de monnaie : ```{1, 2, 5, 10}```
+
+Recherché : ```14```
+
+Résultat optimal : 10 + 2 + 2
+```
+
+Système de monnaie : ```{1, 2, 5, 7, 10}```
+
+Recherché : ```14```
+
+Résultat optimal : 7 + 7
+
+#### **Algorithme**
+
+```python
+system_1 = [1, 2, 5, 10]
+system_2 = [1, 2, 5, 7, 10]
+
+pass
+
+rendu(SYSTEM_1, 14) # >>> [10, 1, 1] -> Optimal
+rendu(SYSTEM_2, 14) # >>> [10, 1, 1] -> Non optimal car [7, 7] mieux
+```
+
+Force brute avec le ```system_2``` pour ```14```:
+
+On cherche **toute** les solutions possibles :
+- \[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1\]
+- \[2, 2, 2, 2, 2, 2, 2\]
+- \[5, 5, 2, 2\]
+- \[7, 7\]
+- \[10, 1, 1, 1, 1\]
+- \[10, 2, 2]
+- ...
+
+On parcours la liste des solutions pour garder la solution la plus optimal (la plus courte) : **\[7, 7\]**.
+
+### Exemples de problèmes que l'on peut résoudre par algorithme glouton
+
+- **Sac à dos**
+- **Rendu de monnaie**
+- [Gestion d'organisation de classe](https://info.blaisepascal.fr/nsi-algorithmes-gloutons#Un_algorithme_glouton-2)
+- **Voyageur de commerce**.
+
+### **Sac à dos**
+
+2 systemes : \[(valeur, poids)\]
+
+- ```[(22, 11), (5, 5), (1, 1)]``` ;
+- ```[(12, 11), (10, 5), (10, 4), (1, 1)]```.
+
+Pour un poids max de ```12```.
+
+Plusieurs stratégies : **valeur/poids**, **le + de valeur** ou **le poids le plus gros**.
+
+La fonction (et donc le résultat optimal) dépendra de la stratégie choisie.
+
+### **Voyageur de commerce**
+
+Le problème du **voyageur de commerce**, est un problème d'optimisation qui, étant donné une liste de villes, et des distances entre toutes les paires de villes, détermine un plus court circuit qui visite chaque ville une et une seule fois.
+
diff --git a/algorithmes/avances/assets/bo_glouton.png b/algorithmes/avances/assets/bo_glouton.png
new file mode 100644
index 0000000..78c6abb
Binary files /dev/null and b/algorithmes/avances/assets/bo_glouton.png differ
diff --git a/algorithmes/avances/assets/bo_knn.png b/algorithmes/avances/assets/bo_knn.png
new file mode 100644
index 0000000..e4113c6
Binary files /dev/null and b/algorithmes/avances/assets/bo_knn.png differ
diff --git a/reseau/filius/filius-1.12.5/Changelog.md b/reseau/filius/filius-1.12.5/Changelog.md
new file mode 100644
index 0000000..6dd69e8
--- /dev/null
+++ b/reseau/filius/filius-1.12.5/Changelog.md
@@ -0,0 +1,373 @@
+# Changelog Filius
+
+## [1.12.5] - 2021-09-01
+### Fixed
+ * Templates for new applications work now with the new log framework
+
+## [1.12.4] - 2021-05-01
+### Changed
+ * Log can now be enabled for stdout
+
+### Fixed
+ * Z layer of components in design mode fixed.
+ * Vhosts for web server will be persisted again.
+
+## [1.12.3] - 2021-05-01
+### Changed
+ * Use now SLF4J and Logback for logging
+
+### Fixed
+ * Error when reading old Filius files because of non-compliant version strings fixed
+ * Fixed wrong data in data exchange detail section caused be shallow frame copies
+
+## [1.12.2] - 2021-04-26
+### Fixed
+* Fix exception after one node was deleted
+
+## [1.12.1] - 2021-04-25
+### Fixed
+* Fix command line arg handling (some combinations were not possible)
+* Fix spaces in filename when starting via command line under linux
+* Ensure that during visual alignment of components in design mode, the dragged component is always in foreground
+
+## [1.12.0] - 2021-04-10
+### Added
+ * Detailed license information added
+ * Report contains now the forwarding table of network nodes and - if available - DNS server configuration
+ * Provide an installer with bundled JRE for Windows
+
+### Changed
+ * IP addresses for router config as well as forwarding table entries are now validated after input
+ * SEQ and ACK numbers are now initialized with trailing zeros and formatted as decimal numbers for better readability
+
+### Fixed
+ * Version comparison (only visible in log output)
+ * Filius can know be installed in directories that contain '+' or '$'
+ * SEQ number is now incremented after FIN reception
+ * Help contents are now available from the start
+
+## [1.11.0] - 2021-01-23
+### Added
+ * The personal firewall supports now filtering of UDP traffic.
+ * Build and Code Signing with AppVeyor and SignPath.
+
+### Changed
+ * The default behavior of the firewall is activated UDP traffic filtering, i.e., UDP packets (e.g. DNS) will be discarded.
+ * Windows/dialogs are mostly resizable, e.g. application windows on the virtual desktops.
+ * Added readme file to be shown at Gitlab.
+
+### Fixed
+ * When Filius was opened on a secondary monitor that is not available any more, the Filius window will be located onto a visible monitor when starting next time.
+ * Within the terminal application the cd command could be used with a file. Now it is only available for directories.
+ * Use URI encode and decode for URLs.
+ * Do not allow domain names that start with digits.
+
+## [1.10.4] - 2020-11-29
+### Fixed
+* There was an incompatibility within Report generation on Java 8.
+* It was not possible to generate a report of unsaved scenarios.
+* The contents of the help dialog were editable.
+
+## [1.10.3] - 2020-08-16
+### Fixed
+* Manually configured DHCP settings for gateway and dns server were not persisted if they were equal to the os settings.
+
+## [1.10.2] - 2020-07-29
+### Fixed
+ * Fix bug when loading old project files with documentation elements
+
+### Changed
+ * Reduce corner radius of document elements
+ * Use secured Filius homepage URL (https)
+
+## [1.10.1] - 2020-07-18
+### Fixed
+ * Silent Uninstall for Windows
+ * Use secured Filius homepage URL (https)
+
+### Changed
+ * Default install folder under Windows is now C:\Program Files\Filius
+
+## [1.10.0] - 2020-06-14
+### Fixed
+ * Uebersetzung zur Simulationsgeschwindigkeit korrigiert
+ * Falsche Nummerierung Abschnittsueberschriften im Report behoben
+ * Fehlerbehebung zur Erstellung von Kabelverbindungen
+ * Korrektur Rechtschreibung in franzoesischer Uebersetzung
+ * Korrektur der kaputten Anzeige fuer Terminal-Anwendung
+ * Fehlerbehebung im Einfachen Client: Immer auf eingehende Nachrichten warten (auch ohne Versand einer Nachricht)
+
+### Changed
+ * Abschnitt zum Nachrichtenaustausch im Report nur, wenn Inhalte vorliegen
+ * Redaktionelle Ueberarbeitung der Hilfeseiten
+ * Grundlegende Ueberarbeitung Dokumentationsmodus mit Formatierungsmoeglichkeiten
+
+### Added
+ * Möglichkeit, Reiter zum Nachrichtenaustausch zu schliessen
+ * Wiederherstellen der angezeigten Fenster bei Wechsel zwischen Anwendungsmodi
+ * Hilfeseite für Dokumentationsmodus hinzugefügt
+
+## [1.9.0] - 2020-05-02
+### Fixed
+ * Fehlerbehebung im Einfachen Client: Auf Serverantworten erst nach Versand einer Nachricht warten
+ * Fehlerbehebung TCP-Server: Sockets beim anhalten des Servers gemaess Spezifikation zum Verbindungsabbau schliessen
+ * Fehlerbehebung: Sockets im Zustand CLOSED immer aus Socket-Liste entfernen
+ * Fehlerbehebung: Versand leerer Nachrichten ermoeglichen (war die Nachricht leer, wurde nichts gesendet)
+ * Fehlerbehebung: Netstat zeigt jetzt auch serverseitig die Verbindungen an
+ * Fehlerbehebung: Der Befehl cat fuer eine nicht vorhandene Datei fuehrte zu einem Fehler
+ * Fehlerbehebung: TCP-Socket-Zeitueberschreitungen wurden nicht korrekt verarbeitet
+ * Fehlerbehebung: Die Sequenznummern in TCP wurden falsch hochgezaehlt
+
+### Changed
+ * Verbesserung Source Address Table (SAT): Fenster mit SAT werden nicht mehr mehrfach geoeffnet und automatisch aktualisiert
+ * Verbesserung: Netstat zeigt jetzt lokale und entfernte Adresse mit IP-Adresse und Port an
+
+### Added
+ * Verbesserung: Gnutella ermoeglicht jetzt das Zuruecksetzen der bekannten Peers
+ * Export der Konfiguration und des Datenaustauschs als PDF-Datei
+
+## [1.8.2] - 2020-04-21
+ * Fehlerbehebung Modem: Verklemmung, wenn beide verbundenen Modems in gleicher Filius-Instanz laufen
+
+## [1.8.1] - 2020-02-01
+ * Korrekturen zur franzoesischen Typographie
+ * Internationalisierung "Netzwerk" in Gnutella
+
+## [1.8.0] - 2020-01-20
+ * Export aus Dokumentationsmodus als SVG moeglich (zusaetzlich zu PNG)
+ * Hinweis/Tooltip zur Einstellung der Simulationsgeschwindigkeit
+ * Fehlerbehebung zur Anzeige/Aktualisierung des Modemnamens
+ * Verschiedene Fehler im Dokumentationsmodus behoben
+ * Korrektur zum Verschieben von mehreren Elementen im Entwurfsmodus
+
+## [1.7.4] - 2019-01-08
+ * Sprache Franzoesisch hinzugefuegt (Uebersetzung durch Patrice Treton)
+ * Fehlerkorrekturen I18n
+ * Software-Assistent wird in Vorgabeeinstellung immer angezeigt
+
+## [1.7.3] - 2018-08-21
+ * Abhängigkeit zu Java 8 in Windows-Version korrigiert
+
+## [1.7.2] - 2016-02-07
+ * Konfigurierbare Groesse der Arbeitsflaeche zum Aufbau der Rechnernetze (konfigurierbar in filius.ini)
+ * Fehlerbehebung: Fenstergroesse fuer E-Mail Verfassen so angepasst, dass es auch unter Mac OS funktioniert
+ * Fehlerbehebung: Anhalten einer Server-Anwendung gibt den Port frei, der fuer den Serversocket verwendet wurde
+
+## [1.7.1] - 2016-02-03
+ * Fehlerbehebung: Sprachselektion bei erstmaligem Starten wieder aktiviert
+
+## [1.7.0] - 2016-01-30
+ * Neues Windowsinstallationsprogramm
+ * Systemvoraussetzung Java 8
+ * Aufrufparameter 'verbose' ergaenzt
+ * Grundlegende Ueberarbeitung DHCP
+ * DHCP unterstuetzt jetzt statisch zugewiesene IP-Adressen
+ * Der Software-Assistent steht jetzt nicht mehr zwingend zur Verfuegung (abhaengig von JDK/JRE und Konfiguration)
+ * Im Dateidialog zum Oeffnen eines neuen Projekts ist jetzt das zuletzt verwendete Verzeichnis vorselektiert
+ * Webserver erlaubt jetzt auch unbekannte Dateiendungen (Versand als text/plain) und erkennt Endung .htm auch als HTML
+ * Fehlerbehebung: Anwendung fuer Dateiaustausch (P2P) und Webserver funktioniert jetzt auch mit Leerzeichen in Dateinamen
+ * Fehlerbehebung: Mehrere DHCP-Server können jetzt im gleichen Rechnernetz vorhanden sein
+ * Fehlerbehebung: Selektion bei Löschen vorhandener Kabel korrigiert
+ * Fehlerbehebung: Validierung E-Mail-Adressen korrigiert (Reg. Ausdruck angepasst)
+ * Fehlerbehebung: DHCP funktioniert jetzt auch, wenn zwischendurch das Projekt gewechselt wurde
+ * Fehlerbehebung: Wenn ein Projekt ohne Dateiendung gespeichert wird, werden jetzt auch die Textelemente mit gespeichert
+
+## [1.6.1]
+ * Fehlerbehebung: Fehlerhafte Bestimmung von IP-Adressen als Broadcast behoben
+ * Fehlerbehebung: TTL wird jetzt nicht mehr fuer lokal adressierte Pakete dekrementiert
+ * Verbesserung des Datenaustauschprotokolls als Textdatei
+
+## [1.6]
+ * Fehlerbehebung: Robustere Eingabe der Rechnerkonfiguration
+ * Fehlerbehebung: Verbindungsherstellung/-trennung mit Modem stabiler realisiert
+ * Ausgabe einer Fehlermeldung, wenn ein Broadcast-Ping ausgefuehrt werden soll
+ * Fehlerbehebung: Knoten konnten u.U. nicht mehr selektiert werden, wenn sie durch Beschreibungselemente ueberlagert wurden
+ * Fehlerbehebung: Ping-Fehler behoben
+ * Konfiguration der Knoten als Tooltip in der Netzwerkansicht
+ * Export des Nachrichtenaustauschs als einfache Textdatei
+ * Maximale Anzahl von Verbindungen zu Switch (von 8) auf 24 erhoeht
+ * Fehlerbehebung: TTL wird jetzt korrekt inkrementiert
+
+## [1.5.4]
+ * Fehlerbehebung: Inkompatibilität beim Oeffnen von Projektdateien, die mit aelterer Version erstellt wurden, behoben
+ * Fehlerbehebung: Kabelwerkzeug wurde an falscher Position angezeigt, wenn Arbeitsbereich per Schieber verschoben wurde
+ * Fehlerbehebung: Absender und Empfaenger einer Mail wurde nicht in Projektdatei gespeichert
+ * Fehlerbehebung: ARP-Anfrage wurde mehrfach versendet
+ * Fehlerbehebung: Dokumentationselemente wurden bei Oeffnen eines neuen Projekts (erstellt mit aelterer Version) nicht immer entfernt
+ * Fehlerbehebung: Loeschen gesendeter Mails war nicht mehr moeglich
+ * Fehlerbehebung: POP3-Server hat nicht immer geantwortet
+
+## [1.5.3] - 2013-11-07
+ * Moeglichkeit, Textfelder und Strukturierungsfelder einzufuegen
+ * Exportieren der Netzansicht als PNG moeglich
+ * Bounce-Mails bei nicht erreichbaren Empfaengern
+ * Reduzierung der Schnittstellen eines Vermittlungsrechners ist jetzt moeglich
+ * IP-Adresse der Vermittlungsrechner-Schnittstellen werden jetzt als Reitertitel verwendet
+ * Fehlerbehebung: leere Ordner-/Dateinamen möglich -> Datei-Explorer Fehlfunktion
+ * Fehlerbehebung: Linux-Startskript ohne 'realpath'
+ * Fehlerbehebung: mehrere E-Mail-Benutzerkonten in E-Mail-Anwendung möglich
+ * Fehlerbehebung: einzelne Nachrichten wurden bei Wechsel zwischen Entwurfs- und Aktionsmodus wiederholt verarbeitet
+
+## [1.5.2] - 2013-07-05
+ * Umbenennung "Terminal" zu "Befehlszeile"/"Command line"
+ * Neue Befehlszeilenwerkzeuge: arp, cat
+ * Synchronisation von Dateiinhalten mit Anzeige im Texteditor (insbesondere für E-Mail- und DNS-Server)
+ * Validierung von DNS-Server-Konfigurationseingaben und Hinweise bei falscher Eingabe
+ * DNS-Server-Konfiguration in Tabellen editierbar
+
+## [1.5.1] - 2013-02-13
+ * Kleine Fehlerbehebungen
+
+## [1.5] - 2013-02-03
+ * Firewall grundlegend ueberarbeitet (Firewall-Konfiguration in Projektdateien nicht kompatibel mit aelteren Versionen)
+ * Neuer Nachrichtendialog (alter Nachrichtendialog in filius.ini aktivierbar)
+ * Im Entwurfsmodus: erstellen mehrerer Kabelverbindungen mit einmaliger Selektion des Kabelwerkzeugs moeglich
+ * Anzahl der Pings ueber Kommandozeile wieder auf vier reduziert (Anpassung ueber filius.ini moeglich)
+ * Fehlerhafte Anzeige des Icons eines Vermittlungsrechners in Abhaengigkeit des Verbindungsstatus behoben
+
+## [1.4.5.3] - 2012-11-25
+ * Fehler zu DNS-Server bei schnellem Wechsel Starten/Beenden
+ * Fehler zu ICMP (ping/traceroute) behoben
+
+## [1.4.5.2] - 2012-11-12
+ * Fehlerbehebung: Ping zu Vermittlungsrechner funktionierte nicht fuer alle Schnittstellen
+
+## [1.4.5.1] - 2012-11-11
+ * Fehlerbehebung: Fortschrittsanzeige bei Mail-Abruf wurde nicht mehr ausgeblendet und Mails nicht vollstaendig angezeigt
+ * Fehlerbehebung: Durch die rekursive DNS-Namensaufloesung muss die zeitliche Begrenzung des Resolvers auf ein vielfaches der maximalen Round-Trip-Time betragen
+
+## [1.4.5] - 2012-11-04
+ * Domainserver unterstuetzen als Option rekursive Domainnamensaufloesung.
+ * Re-Integration eines Forks (Dank an pyropeter)
+ - erweitertes ICMP
+ - im Terminal: Befehlshistorie, Traceroute, Abbruch mit +C
+ - Vermittlungsrechner koennen jetzt automatisch konfiguriert werden (mit RIP als Routing-Protokoll)
+ - Modem: automatischer Wiederaufbau einer unterbrochenen Verbindung
+ * Der Webserver des Vermittlungsrechner ermöglicht die Abfrage der aktuellen Weiterleitungstabelle.
+ * Vermittlungsrechner-Firewall:
+ - kann jetzt alle Versuche eines TCP-Verbindungsaufbaus ablehnen.
+ - Absender- und Empfaenger-Regeln gelten nur noch fuer TCP (nicht mehr fuer UPD)
+ * Als Rechnername kann jetzt die IP-Adresse verwendet werden.
+
+## [1.4.4] - 2012-03-13
+ * Domain Name System: Jetzt kann auch ein Resource Record fuer einen Wurzel-Name-Server konfiguriert werden.
+ * Web-Server: Ueberarbeitung des Designs der Vorgabe-Webseite
+ * Kleinere Anpassungen der Darstellungen (u.a. Umbenennung des "Echo-Client" zu "Einfacher Client")
+ * Programmkonfiguration:
+ - Grundlegende Einstellungen zur Anzeige und Ausfuehrung koennen jetzt als Aufrufparameter oder mit einer Ini-Datei konfiguriert werden.
+ - RTT kann jetzt nicht mehr ueber Menue sondern nur noch als Aufrufparameter bzw. per Ini-Datei geaendert werden.
+ * Fehlerbehebungen:
+ - Nachrichten des POP3-Servers werden im Log-Fenster angezeigt
+ - Flag fuer manuelle Einstellungen des DHCP-Servers wird persistiert
+ - Schnittstellenverwaltung der Vermittlungsrechner bei angeschlossenem Switch fuehrte zum Programmabbruch
+ - Anzeige des Kontextmenue fuer Kabel im Aktionsmodus wurde nicht unterdrueckt
+
+## [1.4.3] - 2011-11-10
+ * Domain Name System: Das DNS erlaubt jetzt rekursive Abfragen zur Aufloesung eines Domainnamens.
+ * Webserver: Die optionale Konfiguration der virtuellen Hosts kann jetzt ausgeblendet werden.
+ * Firewall: Die Firewall der Vermittlungsrechner kann jetzt dezidiert fuer die Netzwerkschnittstellen aktiviert werden.
+ * Kommandozeile: Hier steht jetzt zusaetzlich der Befehl netstat zur Anzeige aktiver Verbindungen zur Verfuegung.
+ * In Textfeldern steht jetzt die Tastenfunktion +a zur Verfuegung.
+ * Fehlerbehebung:
+ - Netzwerkschnittstellenkonfiguration Vermittlungsrechner: Jetzt wird die richtige IP-Adresse eines verbundenen Vermittlungsrechners angezeigt.
+ - Datenaustausch ueber Vermittlungsrechner: Wenn Standardgateway nicht gesetzt wurde, erfolgt jetzt korrekte Ausnahmebehandlung.
+
+## [1.4.2] - 2011-09-15
+ * Fehler bei Aufruf mit Parameter "-wd" zur expliziten Auswahl des Arbeitsverzeichnisses behoben
+
+## [1.4.1] - 2011-09-01
+ * Fehler bei Aenderung des Aufbaus behoben
+ * TCP-Timeout-Fehlermeldung erfolgt nicht mehr im Konfigurationsmodus
+ * Fehlerhafte Modemfunktionalität korrigiert
+
+## [1.4] - 2011-08-07
+ * Fehlerbehebung:
+ - Bildbetrachter: Anzeige von Bildern wieder möglich
+ - E-Mail-Programm: Platzhaltergrafik für Nachrichten wird wieder angezeigt
+ - Webserver: Anzeige leerer Eingabefelder in Oberfläche (statt "null")
+ - DNS-Server: Synchronisation zwischen Oberfläche und Konfigurationstextdatei
+ - Gnutella: Fehler bei Dateiübertragung behoben
+ - E-Mail-Server: Robustere Verarbeitung von E-Mails durch SMTP-Server
+ - Switch: Die Darstellung als Wolke kann auch wieder rückgängig gemacht werden
+ - Programmstart: Fehler bei Prüfung der Schreibrechte auf Benutzerverzeichnis unter Windows behoben
+ - Info-Dialog: Alle Angaben werden wieder vollständig angezeigt (unter Linux)
+ - Nachrichtenansicht: Löschen der Tabelleninhalte korrigiert
+ * Echo-Client: Jetzt können hierüber E-Mails versendet (SMTP) und abgerufen (POP3) werden.
+ * Rechnerkonfiguration: Jetzt können Gateway- und DNS-Server-Adressen wieder entfernt werden.
+ * Nachrichtenansicht: Jetzt steht eine Option "automatisches Scrollen" über Kontextmenü zur Verfügung und das Dialogfenster bleibt immer im Vordergrund.
+
+## [1.3.1.4] - 2011-04-30
+ * Verwendung von Java Native Access zur korrekten Ermittlung von Benutzerverzeichnissen unter MS Windows (vgl. Java Bug #4787931: http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4787931
+ * Kontrolle bei Programmstart, ob Arbeitspfad schreibbar ist. Schreibrechte sind notwendig für Dateioperationen wie Speichern/Laden von Szenarien)
+ * bei fehlenden Schreibrechten wird sofort Dialog angezeigt zur manuellen Korrektur durch den Benutzer, d.h. Auswahl eines anderen Verzeichnisses
+
+## [1.3.1.3] - 2011-01-30
+ * kleine Bugfixes
+ * Problem bei Ping-Nachrichten (v.a. Modem betroffen) behoben
+ * Darstellungsmöglichkeit von Switches als Netzwerkwolken (identische Funktionalität wie Switch, lediglich Erscheinung aus didaktischen Gründen verändert!) [Rücknahme: - fehlerhaftes Verhalten bei Problemen mit Log-Datei behoben]
+
+## [1.3.1.2] - 2010-11-08
+ * kleinere Bugfixes
+ * verbesserte Log-Daten-Aufzeichnung (aussagekräftigere Auflistung der relevanten hashCodes zur Verfolgung von Aktivitäten)
+ * Platzieren der Log-Datei in Arbeitsverzeichnis (.filius) statt in Ort des Startens der Anwendung wegen Rechteproblemen bei Betriebssystem
+
+## [1.3.1.1] - 2010-09-20
+ * Bugfix bei IP Adressevaluation; Zahlenbereich war begrenzt durch Fehler in Regulärem Ausdruck
+
+## [1.3.1] - 2010-08-04
+ * E-Mail-System überarbeitet; bessere Darstellung im Mailprogramm
+ * Antwortfunktion bei Mailprogramm korrigiert
+ * Fehler bei Mailverwaltung im Server korrigiert, u.a. beim Löschen abgerufener Mails
+ * Scrollpane eingefügt in Mailprogramm (Mailbetrachter) und TextEditor
+ * variable Einstellungen für maximale RTT (NOTE: die Simulation wird dadurch nicht verlangsamt, sondern lediglich die Toleranz bzgl. Timeouts wird vergrößert; das ist sinnvoll für langsamere Systeme)
+ * Erweiterung des Webservers um virtuelle Hosts
+ * Bugfixes z.B. bei Graphikeinbindung
+ * Startup-Skript für Mac OS X hinzugefügt; Tests auf Mac OS X erfolgreich
+
+## [1.3.0.4] - 2010-07-07
+ * Hinzufügen eines Startup-Skripts für UNIX-basierte Systeme (Filius.sh)
+ * Parameterunterstützung zur Verlegung des Arbeitsverzeichnisses ".filius": '-wd '
+ * Überprüfung der DNS-Einträge; falls URL leer wird Eintrag nicht übernommen/gespeichert
+ * Fehlplatzierung bei Kabel behoben
+ * Kontextmenü zum Löschen von Kabeln an engeren Kollisionsbereich gebunden
+ * Kontextmenü zum Löschen von Kabeln nur angezeigt, falls keine Kabelvorschau aktiv
+
+## [1.3.0.3] - 2010-04-19
+ * Fehler bei der direkten Bearbeitung von DNS-Einträgen in der Tabelle korrigiert
+ * Daten werden nun getrennt nach A bzw. MX Einträgen verarbeitet (JTableEditable)
+ * Pfadunstimmigkeiten bei Hilfe-Dateien (bei Aufruf der Jar-Datei aus anderem Verzeichnis) beseitigt
+
+## [1.3.0.2] - 2010-04-15
+ * Bilder in JAR-Datei integriert
+ * Korrektur der Pfadzuweisungen, um Dateien innerhalb der JAR-Datei zu finden
+ * Fehler bei Suche von FLS-Datei als Parameter beseitigt
+ * Fehler bei Pfadbestimmung korrigiert, damit Filius von beliebiger Stelle aus aufgerufen werden kann (betrifft JAR und EXE!)
+
+## [1.3.0.1] - 2010-04-09
+ * Datei-Explorer importiert beliebige Dateien bis zu einer Größe von 150KB
+ * bei fehlgeschlagener DHCP-Anfrage werden Zeroconf-Adressen zugewiesen (169.254.x.x)
+ * ping-Befehl wurde in Befehlsliste bei Terminal aufgenommen
+ * Überschrift für Tabellenausgabe bei route-Befehl
+
+## [1.3.0] - 2010-03-31
+ * Terminal-Funktionen implementiert (move, copy, dir, help, ...)
+ * Hilfeseite zur Auflistung aller unterstützter Terminal-Befehle
+ * Ping-Befehl implementiert in Terminal
+ * Tool zur Namensauflösung direkt über Terminal ('host')
+ * Tastenkombinationen zur Steurung der Menüfunktionen (Strg+>) + Auswahl Kabel (Alt-1)
+ * konsequentes Loggen in Datei möglich für Fehlersuche; Debug-Ausgaben vereinheitlicht
+ * DHCP kann DNS/Gateway abweichend von Server-Einstellungen vergeben
+ * DNS-Einträge auch änderbar in DNS-Server (statt nur Löschen/Neuanlegen)
+ * einzelne Kabel können entfernt werden
+ * Fehler durch sich blockierende nebenläufige Prozesse beseitigt (Threads haben aufeinander gewartet; Race Conditions bei Prüfung von Queues)
+ * deutliche Reduktion von Ausnahmefehlern (Exceptions oftmals für Testzwecke auf mögliche Probleme genutzt. Lässt sich jedoch durch vorherige Prüfung fast durchgängig vermeiden!)
+ * Terminal-Funktionen waren nur angedeutet, jedoch nicht implementiert
+ * Knoten können nun nicht mehr aus Arbeitsfläche herausgezogen werden (war vorher möglich; leider dann aber keine Möglichkeit mehr, diese in den Sichtbereich zurückzuholen)
+ * manche Dialoge wurden zu Singleton umfunktioniert (nur noch ein Dialog)
+ * Darstellung/Einsehen der MAC-Adressen einfacher möglich
+ * MX Eintrag bei DNS-Server unterstützt nun auch IP-Adressen, statt nur URLs
+ * Ethernet akzeptiert nun nur noch Pakete, wenn Kabel physisch mit betrachteter Netzwerkkarte verbunden ist (vorher: bei Vermittlungsrechner Pakete aller NICs verarbeitet)
+ * warten auf DHCP Server bei Wechsel zu Simulationsmodus, erst dann DHCP Anfragen möglich
+ * Überschriften in diversen Dialogen zur besseren Usability
+ * fehlerhafte Pattern für IP-Adressen korrigiert
+ * Sprache bei Buttons in Dialogen korrigiert
\ No newline at end of file
diff --git a/reseau/filius/filius-1.12.5/Einfuehrung_Filius.pdf b/reseau/filius/filius-1.12.5/Einfuehrung_Filius.pdf
new file mode 100644
index 0000000..19eae2b
Binary files /dev/null and b/reseau/filius/filius-1.12.5/Einfuehrung_Filius.pdf differ
diff --git a/reseau/filius/filius-1.12.5/Filius.command b/reseau/filius/filius-1.12.5/Filius.command
new file mode 100644
index 0000000..c929444
--- /dev/null
+++ b/reseau/filius/filius-1.12.5/Filius.command
@@ -0,0 +1,19 @@
+#!/bin/bash
+#
+# This script is meant as supportive start script for
+# UNIX-like systems, e.g., Linux or Mac OS X
+#
+echo "Possible parameters:"
+echo -e "\t-l\t\twrite log file 'filius.log'"
+echo -e "\t-wd \tchange base directory for working directory '.filius'"
+echo
+
+# change to directory where filius is installed
+relpath=$0
+cd ${relpath%`basename $0`}
+
+# start filius
+java -jar filius.jar $@
+
+# change back to former directory
+cd - > /dev/null
diff --git a/reseau/filius/filius-1.12.5/Filius.exe b/reseau/filius/filius-1.12.5/Filius.exe
new file mode 100644
index 0000000..ad47358
Binary files /dev/null and b/reseau/filius/filius-1.12.5/Filius.exe differ
diff --git a/reseau/filius/filius-1.12.5/GPLv2.txt b/reseau/filius/filius-1.12.5/GPLv2.txt
new file mode 100644
index 0000000..d159169
--- /dev/null
+++ b/reseau/filius/filius-1.12.5/GPLv2.txt
@@ -0,0 +1,339 @@
+ GNU GENERAL PUBLIC LICENSE
+ Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+ Preamble
+
+ The licenses for most software are designed to take away your
+freedom to share and change it. By contrast, the GNU General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users. This
+General Public License applies to most of the Free Software
+Foundation's software and to any other program whose authors commit to
+using it. (Some other Free Software Foundation software is covered by
+the GNU Lesser General Public License instead.) You can apply it to
+your programs, too.
+
+ When we speak of free software, we are referring to freedom, not
+price. Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+this service if you wish), that you receive source code or can get it
+if you want it, that you can change the software or use pieces of it
+in new free programs; and that you know you can do these things.
+
+ To protect your rights, we need to make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+
+ For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have. You must make sure that they, too, receive or can get the
+source code. And you must show them these terms so they know their
+rights.
+
+ We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+
+ Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software. If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+ Finally, any free program is threatened constantly by software
+patents. We wish to avoid the danger that redistributors of a free
+program will individually obtain patent licenses, in effect making the
+program proprietary. To prevent this, we have made it clear that any
+patent must be licensed for everyone's free use or not licensed at all.
+
+ The precise terms and conditions for copying, distribution and
+modification follow.
+
+ GNU GENERAL PUBLIC LICENSE
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+ 0. This License applies to any program or other work which contains
+a notice placed by the copyright holder saying it may be distributed
+under the terms of this General Public License. The "Program", below,
+refers to any such program or work, and a "work based on the Program"
+means either the Program or any derivative work under copyright law:
+that is to say, a work containing the Program or a portion of it,
+either verbatim or with modifications and/or translated into another
+language. (Hereinafter, translation is included without limitation in
+the term "modification".) Each licensee is addressed as "you".
+
+Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope. The act of
+running the Program is not restricted, and the output from the Program
+is covered only if its contents constitute a work based on the
+Program (independent of having been made by running the Program).
+Whether that is true depends on what the Program does.
+
+ 1. You may copy and distribute verbatim copies of the Program's
+source code as you receive it, in any medium, provided that you
+conspicuously and appropriately publish on each copy an appropriate
+copyright notice and disclaimer of warranty; keep intact all the
+notices that refer to this License and to the absence of any warranty;
+and give any other recipients of the Program a copy of this License
+along with the Program.
+
+You may charge a fee for the physical act of transferring a copy, and
+you may at your option offer warranty protection in exchange for a fee.
+
+ 2. You may modify your copy or copies of the Program or any portion
+of it, thus forming a work based on the Program, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+ a) You must cause the modified files to carry prominent notices
+ stating that you changed the files and the date of any change.
+
+ b) You must cause any work that you distribute or publish, that in
+ whole or in part contains or is derived from the Program or any
+ part thereof, to be licensed as a whole at no charge to all third
+ parties under the terms of this License.
+
+ c) If the modified program normally reads commands interactively
+ when run, you must cause it, when started running for such
+ interactive use in the most ordinary way, to print or display an
+ announcement including an appropriate copyright notice and a
+ notice that there is no warranty (or else, saying that you provide
+ a warranty) and that users may redistribute the program under
+ these conditions, and telling the user how to view a copy of this
+ License. (Exception: if the Program itself is interactive but
+ does not normally print such an announcement, your work based on
+ the Program is not required to print an announcement.)
+
+These requirements apply to the modified work as a whole. If
+identifiable sections of that work are not derived from the Program,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works. But when you
+distribute the same sections as part of a whole which is a work based
+on the Program, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Program.
+
+In addition, mere aggregation of another work not based on the Program
+with the Program (or with a work based on the Program) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+ 3. You may copy and distribute the Program (or a work based on it,
+under Section 2) in object code or executable form under the terms of
+Sections 1 and 2 above provided that you also do one of the following:
+
+ a) Accompany it with the complete corresponding machine-readable
+ source code, which must be distributed under the terms of Sections
+ 1 and 2 above on a medium customarily used for software interchange; or,
+
+ b) Accompany it with a written offer, valid for at least three
+ years, to give any third party, for a charge no more than your
+ cost of physically performing source distribution, a complete
+ machine-readable copy of the corresponding source code, to be
+ distributed under the terms of Sections 1 and 2 above on a medium
+ customarily used for software interchange; or,
+
+ c) Accompany it with the information you received as to the offer
+ to distribute corresponding source code. (This alternative is
+ allowed only for noncommercial distribution and only if you
+ received the program in object code or executable form with such
+ an offer, in accord with Subsection b above.)
+
+The source code for a work means the preferred form of the work for
+making modifications to it. For an executable work, complete source
+code means all the source code for all modules it contains, plus any
+associated interface definition files, plus the scripts used to
+control compilation and installation of the executable. However, as a
+special exception, the source code distributed need not include
+anything that is normally distributed (in either source or binary
+form) with the major components (compiler, kernel, and so on) of the
+operating system on which the executable runs, unless that component
+itself accompanies the executable.
+
+If distribution of executable or object code is made by offering
+access to copy from a designated place, then offering equivalent
+access to copy the source code from the same place counts as
+distribution of the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+ 4. You may not copy, modify, sublicense, or distribute the Program
+except as expressly provided under this License. Any attempt
+otherwise to copy, modify, sublicense or distribute the Program is
+void, and will automatically terminate your rights under this License.
+However, parties who have received copies, or rights, from you under
+this License will not have their licenses terminated so long as such
+parties remain in full compliance.
+
+ 5. You are not required to accept this License, since you have not
+signed it. However, nothing else grants you permission to modify or
+distribute the Program or its derivative works. These actions are
+prohibited by law if you do not accept this License. Therefore, by
+modifying or distributing the Program (or any work based on the
+Program), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Program or works based on it.
+
+ 6. Each time you redistribute the Program (or any work based on the
+Program), the recipient automatically receives a license from the
+original licensor to copy, distribute or modify the Program subject to
+these terms and conditions. You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties to
+this License.
+
+ 7. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Program at all. For example, if a patent
+license would not permit royalty-free redistribution of the Program by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Program.
+
+If any portion of this section is held invalid or unenforceable under
+any particular circumstance, the balance of the section is intended to
+apply and the section as a whole is intended to apply in other
+circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system, which is
+implemented by public license practices. Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+ 8. If the distribution and/or use of the Program is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Program under this License
+may add an explicit geographical distribution limitation excluding
+those countries, so that distribution is permitted only in or among
+countries not thus excluded. In such case, this License incorporates
+the limitation as if written in the body of this License.
+
+ 9. The Free Software Foundation may publish revised and/or new versions
+of the General Public License from time to time. Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+Each version is given a distinguishing version number. If the Program
+specifies a version number of this License which applies to it and "any
+later version", you have the option of following the terms and conditions
+either of that version or of any later version published by the Free
+Software Foundation. If the Program does not specify a version number of
+this License, you may choose any version ever published by the Free Software
+Foundation.
+
+ 10. If you wish to incorporate parts of the Program into other free
+programs whose distribution conditions are different, write to the author
+to ask for permission. For software which is copyrighted by the Free
+Software Foundation, write to the Free Software Foundation; we sometimes
+make exceptions for this. Our decision will be guided by the two goals
+of preserving the free status of all derivatives of our free software and
+of promoting the sharing and reuse of software generally.
+
+ NO WARRANTY
+
+ 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
+FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
+OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
+PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
+OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
+TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
+PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
+REPAIR OR CORRECTION.
+
+ 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
+REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
+INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
+OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
+TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
+YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
+PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGES.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Programs
+
+ If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+ To do so, attach the following notices to the program. It is safest
+to attach them to the start of each source file to most effectively
+convey the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+
+ Copyright (C)
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along
+ with this program; if not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+Also add information on how to contact you by electronic and paper mail.
+
+If the program is interactive, make it output a short notice like this
+when it starts in an interactive mode:
+
+ Gnomovision version 69, Copyright (C) year name of author
+ Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+ This is free software, and you are welcome to redistribute it
+ under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License. Of course, the commands you use may
+be called something other than `show w' and `show c'; they could even be
+mouse-clicks or menu items--whatever suits your program.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the program, if
+necessary. Here is a sample; alter the names:
+
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the program
+ `Gnomovision' (which makes passes at compilers) written by James Hacker.
+
+ , 1 April 1989
+ Ty Coon, President of Vice
+
+This General Public License does not permit incorporating your program into
+proprietary programs. If your program is a subroutine library, you may
+consider it more useful to permit linking proprietary applications with the
+library. If this is what you want to do, use the GNU Lesser General
+Public License instead of this License.
diff --git a/reseau/filius/filius-1.12.5/GPLv3.txt b/reseau/filius/filius-1.12.5/GPLv3.txt
new file mode 100644
index 0000000..94a9ed0
--- /dev/null
+++ b/reseau/filius/filius-1.12.5/GPLv3.txt
@@ -0,0 +1,674 @@
+ GNU GENERAL PUBLIC LICENSE
+ Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc.
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+ Preamble
+
+ The GNU General Public License is a free, copyleft license for
+software and other kinds of works.
+
+ The licenses for most software and other practical works are designed
+to take away your freedom to share and change the works. By contrast,
+the GNU General Public License is intended to guarantee your freedom to
+share and change all versions of a program--to make sure it remains free
+software for all its users. We, the Free Software Foundation, use the
+GNU General Public License for most of our software; it applies also to
+any other work released this way by its authors. You can apply it to
+your programs, too.
+
+ When we speak of free software, we are referring to freedom, not
+price. Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+them if you wish), that you receive source code or can get it if you
+want it, that you can change the software or use pieces of it in new
+free programs, and that you know you can do these things.
+
+ To protect your rights, we need to prevent others from denying you
+these rights or asking you to surrender the rights. Therefore, you have
+certain responsibilities if you distribute copies of the software, or if
+you modify it: responsibilities to respect the freedom of others.
+
+ For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must pass on to the recipients the same
+freedoms that you received. You must make sure that they, too, receive
+or can get the source code. And you must show them these terms so they
+know their rights.
+
+ Developers that use the GNU GPL protect your rights with two steps:
+(1) assert copyright on the software, and (2) offer you this License
+giving you legal permission to copy, distribute and/or modify it.
+
+ For the developers' and authors' protection, the GPL clearly explains
+that there is no warranty for this free software. For both users' and
+authors' sake, the GPL requires that modified versions be marked as
+changed, so that their problems will not be attributed erroneously to
+authors of previous versions.
+
+ Some devices are designed to deny users access to install or run
+modified versions of the software inside them, although the manufacturer
+can do so. This is fundamentally incompatible with the aim of
+protecting users' freedom to change the software. The systematic
+pattern of such abuse occurs in the area of products for individuals to
+use, which is precisely where it is most unacceptable. Therefore, we
+have designed this version of the GPL to prohibit the practice for those
+products. If such problems arise substantially in other domains, we
+stand ready to extend this provision to those domains in future versions
+of the GPL, as needed to protect the freedom of users.
+
+ Finally, every program is threatened constantly by software patents.
+States should not allow patents to restrict development and use of
+software on general-purpose computers, but in those that do, we wish to
+avoid the special danger that patents applied to a free program could
+make it effectively proprietary. To prevent this, the GPL assures that
+patents cannot be used to render the program non-free.
+
+ The precise terms and conditions for copying, distribution and
+modification follow.
+
+ TERMS AND CONDITIONS
+
+ 0. Definitions.
+
+ "This License" refers to version 3 of the GNU General Public License.
+
+ "Copyright" also means copyright-like laws that apply to other kinds of
+works, such as semiconductor masks.
+
+ "The Program" refers to any copyrightable work licensed under this
+License. Each licensee is addressed as "you". "Licensees" and
+"recipients" may be individuals or organizations.
+
+ To "modify" a work means to copy from or adapt all or part of the work
+in a fashion requiring copyright permission, other than the making of an
+exact copy. The resulting work is called a "modified version" of the
+earlier work or a work "based on" the earlier work.
+
+ A "covered work" means either the unmodified Program or a work based
+on the Program.
+
+ To "propagate" a work means to do anything with it that, without
+permission, would make you directly or secondarily liable for
+infringement under applicable copyright law, except executing it on a
+computer or modifying a private copy. Propagation includes copying,
+distribution (with or without modification), making available to the
+public, and in some countries other activities as well.
+
+ To "convey" a work means any kind of propagation that enables other
+parties to make or receive copies. Mere interaction with a user through
+a computer network, with no transfer of a copy, is not conveying.
+
+ An interactive user interface displays "Appropriate Legal Notices"
+to the extent that it includes a convenient and prominently visible
+feature that (1) displays an appropriate copyright notice, and (2)
+tells the user that there is no warranty for the work (except to the
+extent that warranties are provided), that licensees may convey the
+work under this License, and how to view a copy of this License. If
+the interface presents a list of user commands or options, such as a
+menu, a prominent item in the list meets this criterion.
+
+ 1. Source Code.
+
+ The "source code" for a work means the preferred form of the work
+for making modifications to it. "Object code" means any non-source
+form of a work.
+
+ A "Standard Interface" means an interface that either is an official
+standard defined by a recognized standards body, or, in the case of
+interfaces specified for a particular programming language, one that
+is widely used among developers working in that language.
+
+ The "System Libraries" of an executable work include anything, other
+than the work as a whole, that (a) is included in the normal form of
+packaging a Major Component, but which is not part of that Major
+Component, and (b) serves only to enable use of the work with that
+Major Component, or to implement a Standard Interface for which an
+implementation is available to the public in source code form. A
+"Major Component", in this context, means a major essential component
+(kernel, window system, and so on) of the specific operating system
+(if any) on which the executable work runs, or a compiler used to
+produce the work, or an object code interpreter used to run it.
+
+ The "Corresponding Source" for a work in object code form means all
+the source code needed to generate, install, and (for an executable
+work) run the object code and to modify the work, including scripts to
+control those activities. However, it does not include the work's
+System Libraries, or general-purpose tools or generally available free
+programs which are used unmodified in performing those activities but
+which are not part of the work. For example, Corresponding Source
+includes interface definition files associated with source files for
+the work, and the source code for shared libraries and dynamically
+linked subprograms that the work is specifically designed to require,
+such as by intimate data communication or control flow between those
+subprograms and other parts of the work.
+
+ The Corresponding Source need not include anything that users
+can regenerate automatically from other parts of the Corresponding
+Source.
+
+ The Corresponding Source for a work in source code form is that
+same work.
+
+ 2. Basic Permissions.
+
+ All rights granted under this License are granted for the term of
+copyright on the Program, and are irrevocable provided the stated
+conditions are met. This License explicitly affirms your unlimited
+permission to run the unmodified Program. The output from running a
+covered work is covered by this License only if the output, given its
+content, constitutes a covered work. This License acknowledges your
+rights of fair use or other equivalent, as provided by copyright law.
+
+ You may make, run and propagate covered works that you do not
+convey, without conditions so long as your license otherwise remains
+in force. You may convey covered works to others for the sole purpose
+of having them make modifications exclusively for you, or provide you
+with facilities for running those works, provided that you comply with
+the terms of this License in conveying all material for which you do
+not control copyright. Those thus making or running the covered works
+for you must do so exclusively on your behalf, under your direction
+and control, on terms that prohibit them from making any copies of
+your copyrighted material outside their relationship with you.
+
+ Conveying under any other circumstances is permitted solely under
+the conditions stated below. Sublicensing is not allowed; section 10
+makes it unnecessary.
+
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+
+ No covered work shall be deemed part of an effective technological
+measure under any applicable law fulfilling obligations under article
+11 of the WIPO copyright treaty adopted on 20 December 1996, or
+similar laws prohibiting or restricting circumvention of such
+measures.
+
+ When you convey a covered work, you waive any legal power to forbid
+circumvention of technological measures to the extent such circumvention
+is effected by exercising rights under this License with respect to
+the covered work, and you disclaim any intention to limit operation or
+modification of the work as a means of enforcing, against the work's
+users, your or third parties' legal rights to forbid circumvention of
+technological measures.
+
+ 4. Conveying Verbatim Copies.
+
+ You may convey verbatim copies of the Program's source code as you
+receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice;
+keep intact all notices stating that this License and any
+non-permissive terms added in accord with section 7 apply to the code;
+keep intact all notices of the absence of any warranty; and give all
+recipients a copy of this License along with the Program.
+
+ You may charge any price or no price for each copy that you convey,
+and you may offer support or warranty protection for a fee.
+
+ 5. Conveying Modified Source Versions.
+
+ You may convey a work based on the Program, or the modifications to
+produce it from the Program, in the form of source code under the
+terms of section 4, provided that you also meet all of these conditions:
+
+ a) The work must carry prominent notices stating that you modified
+ it, and giving a relevant date.
+
+ b) The work must carry prominent notices stating that it is
+ released under this License and any conditions added under section
+ 7. This requirement modifies the requirement in section 4 to
+ "keep intact all notices".
+
+ c) You must license the entire work, as a whole, under this
+ License to anyone who comes into possession of a copy. This
+ License will therefore apply, along with any applicable section 7
+ additional terms, to the whole of the work, and all its parts,
+ regardless of how they are packaged. This License gives no
+ permission to license the work in any other way, but it does not
+ invalidate such permission if you have separately received it.
+
+ d) If the work has interactive user interfaces, each must display
+ Appropriate Legal Notices; however, if the Program has interactive
+ interfaces that do not display Appropriate Legal Notices, your
+ work need not make them do so.
+
+ A compilation of a covered work with other separate and independent
+works, which are not by their nature extensions of the covered work,
+and which are not combined with it such as to form a larger program,
+in or on a volume of a storage or distribution medium, is called an
+"aggregate" if the compilation and its resulting copyright are not
+used to limit the access or legal rights of the compilation's users
+beyond what the individual works permit. Inclusion of a covered work
+in an aggregate does not cause this License to apply to the other
+parts of the aggregate.
+
+ 6. Conveying Non-Source Forms.
+
+ You may convey a covered work in object code form under the terms
+of sections 4 and 5, provided that you also convey the
+machine-readable Corresponding Source under the terms of this License,
+in one of these ways:
+
+ a) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by the
+ Corresponding Source fixed on a durable physical medium
+ customarily used for software interchange.
+
+ b) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by a
+ written offer, valid for at least three years and valid for as
+ long as you offer spare parts or customer support for that product
+ model, to give anyone who possesses the object code either (1) a
+ copy of the Corresponding Source for all the software in the
+ product that is covered by this License, on a durable physical
+ medium customarily used for software interchange, for a price no
+ more than your reasonable cost of physically performing this
+ conveying of source, or (2) access to copy the
+ Corresponding Source from a network server at no charge.
+
+ c) Convey individual copies of the object code with a copy of the
+ written offer to provide the Corresponding Source. This
+ alternative is allowed only occasionally and noncommercially, and
+ only if you received the object code with such an offer, in accord
+ with subsection 6b.
+
+ d) Convey the object code by offering access from a designated
+ place (gratis or for a charge), and offer equivalent access to the
+ Corresponding Source in the same way through the same place at no
+ further charge. You need not require recipients to copy the
+ Corresponding Source along with the object code. If the place to
+ copy the object code is a network server, the Corresponding Source
+ may be on a different server (operated by you or a third party)
+ that supports equivalent copying facilities, provided you maintain
+ clear directions next to the object code saying where to find the
+ Corresponding Source. Regardless of what server hosts the
+ Corresponding Source, you remain obligated to ensure that it is
+ available for as long as needed to satisfy these requirements.
+
+ e) Convey the object code using peer-to-peer transmission, provided
+ you inform other peers where the object code and Corresponding
+ Source of the work are being offered to the general public at no
+ charge under subsection 6d.
+
+ A separable portion of the object code, whose source code is excluded
+from the Corresponding Source as a System Library, need not be
+included in conveying the object code work.
+
+ A "User Product" is either (1) a "consumer product", which means any
+tangible personal property which is normally used for personal, family,
+or household purposes, or (2) anything designed or sold for incorporation
+into a dwelling. In determining whether a product is a consumer product,
+doubtful cases shall be resolved in favor of coverage. For a particular
+product received by a particular user, "normally used" refers to a
+typical or common use of that class of product, regardless of the status
+of the particular user or of the way in which the particular user
+actually uses, or expects or is expected to use, the product. A product
+is a consumer product regardless of whether the product has substantial
+commercial, industrial or non-consumer uses, unless such uses represent
+the only significant mode of use of the product.
+
+ "Installation Information" for a User Product means any methods,
+procedures, authorization keys, or other information required to install
+and execute modified versions of a covered work in that User Product from
+a modified version of its Corresponding Source. The information must
+suffice to ensure that the continued functioning of the modified object
+code is in no case prevented or interfered with solely because
+modification has been made.
+
+ If you convey an object code work under this section in, or with, or
+specifically for use in, a User Product, and the conveying occurs as
+part of a transaction in which the right of possession and use of the
+User Product is transferred to the recipient in perpetuity or for a
+fixed term (regardless of how the transaction is characterized), the
+Corresponding Source conveyed under this section must be accompanied
+by the Installation Information. But this requirement does not apply
+if neither you nor any third party retains the ability to install
+modified object code on the User Product (for example, the work has
+been installed in ROM).
+
+ The requirement to provide Installation Information does not include a
+requirement to continue to provide support service, warranty, or updates
+for a work that has been modified or installed by the recipient, or for
+the User Product in which it has been modified or installed. Access to a
+network may be denied when the modification itself materially and
+adversely affects the operation of the network or violates the rules and
+protocols for communication across the network.
+
+ Corresponding Source conveyed, and Installation Information provided,
+in accord with this section must be in a format that is publicly
+documented (and with an implementation available to the public in
+source code form), and must require no special password or key for
+unpacking, reading or copying.
+
+ 7. Additional Terms.
+
+ "Additional permissions" are terms that supplement the terms of this
+License by making exceptions from one or more of its conditions.
+Additional permissions that are applicable to the entire Program shall
+be treated as though they were included in this License, to the extent
+that they are valid under applicable law. If additional permissions
+apply only to part of the Program, that part may be used separately
+under those permissions, but the entire Program remains governed by
+this License without regard to the additional permissions.
+
+ When you convey a copy of a covered work, you may at your option
+remove any additional permissions from that copy, or from any part of
+it. (Additional permissions may be written to require their own
+removal in certain cases when you modify the work.) You may place
+additional permissions on material, added by you to a covered work,
+for which you have or can give appropriate copyright permission.
+
+ Notwithstanding any other provision of this License, for material you
+add to a covered work, you may (if authorized by the copyright holders of
+that material) supplement the terms of this License with terms:
+
+ a) Disclaiming warranty or limiting liability differently from the
+ terms of sections 15 and 16 of this License; or
+
+ b) Requiring preservation of specified reasonable legal notices or
+ author attributions in that material or in the Appropriate Legal
+ Notices displayed by works containing it; or
+
+ c) Prohibiting misrepresentation of the origin of that material, or
+ requiring that modified versions of such material be marked in
+ reasonable ways as different from the original version; or
+
+ d) Limiting the use for publicity purposes of names of licensors or
+ authors of the material; or
+
+ e) Declining to grant rights under trademark law for use of some
+ trade names, trademarks, or service marks; or
+
+ f) Requiring indemnification of licensors and authors of that
+ material by anyone who conveys the material (or modified versions of
+ it) with contractual assumptions of liability to the recipient, for
+ any liability that these contractual assumptions directly impose on
+ those licensors and authors.
+
+ All other non-permissive additional terms are considered "further
+restrictions" within the meaning of section 10. If the Program as you
+received it, or any part of it, contains a notice stating that it is
+governed by this License along with a term that is a further
+restriction, you may remove that term. If a license document contains
+a further restriction but permits relicensing or conveying under this
+License, you may add to a covered work material governed by the terms
+of that license document, provided that the further restriction does
+not survive such relicensing or conveying.
+
+ If you add terms to a covered work in accord with this section, you
+must place, in the relevant source files, a statement of the
+additional terms that apply to those files, or a notice indicating
+where to find the applicable terms.
+
+ Additional terms, permissive or non-permissive, may be stated in the
+form of a separately written license, or stated as exceptions;
+the above requirements apply either way.
+
+ 8. Termination.
+
+ You may not propagate or modify a covered work except as expressly
+provided under this License. Any attempt otherwise to propagate or
+modify it is void, and will automatically terminate your rights under
+this License (including any patent licenses granted under the third
+paragraph of section 11).
+
+ However, if you cease all violation of this License, then your
+license from a particular copyright holder is reinstated (a)
+provisionally, unless and until the copyright holder explicitly and
+finally terminates your license, and (b) permanently, if the copyright
+holder fails to notify you of the violation by some reasonable means
+prior to 60 days after the cessation.
+
+ Moreover, your license from a particular copyright holder is
+reinstated permanently if the copyright holder notifies you of the
+violation by some reasonable means, this is the first time you have
+received notice of violation of this License (for any work) from that
+copyright holder, and you cure the violation prior to 30 days after
+your receipt of the notice.
+
+ Termination of your rights under this section does not terminate the
+licenses of parties who have received copies or rights from you under
+this License. If your rights have been terminated and not permanently
+reinstated, you do not qualify to receive new licenses for the same
+material under section 10.
+
+ 9. Acceptance Not Required for Having Copies.
+
+ You are not required to accept this License in order to receive or
+run a copy of the Program. Ancillary propagation of a covered work
+occurring solely as a consequence of using peer-to-peer transmission
+to receive a copy likewise does not require acceptance. However,
+nothing other than this License grants you permission to propagate or
+modify any covered work. These actions infringe copyright if you do
+not accept this License. Therefore, by modifying or propagating a
+covered work, you indicate your acceptance of this License to do so.
+
+ 10. Automatic Licensing of Downstream Recipients.
+
+ Each time you convey a covered work, the recipient automatically
+receives a license from the original licensors, to run, modify and
+propagate that work, subject to this License. You are not responsible
+for enforcing compliance by third parties with this License.
+
+ An "entity transaction" is a transaction transferring control of an
+organization, or substantially all assets of one, or subdividing an
+organization, or merging organizations. If propagation of a covered
+work results from an entity transaction, each party to that
+transaction who receives a copy of the work also receives whatever
+licenses to the work the party's predecessor in interest had or could
+give under the previous paragraph, plus a right to possession of the
+Corresponding Source of the work from the predecessor in interest, if
+the predecessor has it or can get it with reasonable efforts.
+
+ You may not impose any further restrictions on the exercise of the
+rights granted or affirmed under this License. For example, you may
+not impose a license fee, royalty, or other charge for exercise of
+rights granted under this License, and you may not initiate litigation
+(including a cross-claim or counterclaim in a lawsuit) alleging that
+any patent claim is infringed by making, using, selling, offering for
+sale, or importing the Program or any portion of it.
+
+ 11. Patents.
+
+ A "contributor" is a copyright holder who authorizes use under this
+License of the Program or a work on which the Program is based. The
+work thus licensed is called the contributor's "contributor version".
+
+ A contributor's "essential patent claims" are all patent claims
+owned or controlled by the contributor, whether already acquired or
+hereafter acquired, that would be infringed by some manner, permitted
+by this License, of making, using, or selling its contributor version,
+but do not include claims that would be infringed only as a
+consequence of further modification of the contributor version. For
+purposes of this definition, "control" includes the right to grant
+patent sublicenses in a manner consistent with the requirements of
+this License.
+
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
+patent license under the contributor's essential patent claims, to
+make, use, sell, offer for sale, import and otherwise run, modify and
+propagate the contents of its contributor version.
+
+ In the following three paragraphs, a "patent license" is any express
+agreement or commitment, however denominated, not to enforce a patent
+(such as an express permission to practice a patent or covenant not to
+sue for patent infringement). To "grant" such a patent license to a
+party means to make such an agreement or commitment not to enforce a
+patent against the party.
+
+ If you convey a covered work, knowingly relying on a patent license,
+and the Corresponding Source of the work is not available for anyone
+to copy, free of charge and under the terms of this License, through a
+publicly available network server or other readily accessible means,
+then you must either (1) cause the Corresponding Source to be so
+available, or (2) arrange to deprive yourself of the benefit of the
+patent license for this particular work, or (3) arrange, in a manner
+consistent with the requirements of this License, to extend the patent
+license to downstream recipients. "Knowingly relying" means you have
+actual knowledge that, but for the patent license, your conveying the
+covered work in a country, or your recipient's use of the covered work
+in a country, would infringe one or more identifiable patents in that
+country that you have reason to believe are valid.
+
+ If, pursuant to or in connection with a single transaction or
+arrangement, you convey, or propagate by procuring conveyance of, a
+covered work, and grant a patent license to some of the parties
+receiving the covered work authorizing them to use, propagate, modify
+or convey a specific copy of the covered work, then the patent license
+you grant is automatically extended to all recipients of the covered
+work and works based on it.
+
+ A patent license is "discriminatory" if it does not include within
+the scope of its coverage, prohibits the exercise of, or is
+conditioned on the non-exercise of one or more of the rights that are
+specifically granted under this License. You may not convey a covered
+work if you are a party to an arrangement with a third party that is
+in the business of distributing software, under which you make payment
+to the third party based on the extent of your activity of conveying
+the work, and under which the third party grants, to any of the
+parties who would receive the covered work from you, a discriminatory
+patent license (a) in connection with copies of the covered work
+conveyed by you (or copies made from those copies), or (b) primarily
+for and in connection with specific products or compilations that
+contain the covered work, unless you entered into that arrangement,
+or that patent license was granted, prior to 28 March 2007.
+
+ Nothing in this License shall be construed as excluding or limiting
+any implied license or other defenses to infringement that may
+otherwise be available to you under applicable patent law.
+
+ 12. No Surrender of Others' Freedom.
+
+ If conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot convey a
+covered work so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you may
+not convey it at all. For example, if you agree to terms that obligate you
+to collect a royalty for further conveying from those to whom you convey
+the Program, the only way you could satisfy both those terms and this
+License would be to refrain entirely from conveying the Program.
+
+ 13. Use with the GNU Affero General Public License.
+
+ Notwithstanding any other provision of this License, you have
+permission to link or combine any covered work with a work licensed
+under version 3 of the GNU Affero General Public License into a single
+combined work, and to convey the resulting work. The terms of this
+License will continue to apply to the part which is the covered work,
+but the special requirements of the GNU Affero General Public License,
+section 13, concerning interaction through a network will apply to the
+combination as such.
+
+ 14. Revised Versions of this License.
+
+ The Free Software Foundation may publish revised and/or new versions of
+the GNU General Public License from time to time. Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+ Each version is given a distinguishing version number. If the
+Program specifies that a certain numbered version of the GNU General
+Public License "or any later version" applies to it, you have the
+option of following the terms and conditions either of that numbered
+version or of any later version published by the Free Software
+Foundation. If the Program does not specify a version number of the
+GNU General Public License, you may choose any version ever published
+by the Free Software Foundation.
+
+ If the Program specifies that a proxy can decide which future
+versions of the GNU General Public License can be used, that proxy's
+public statement of acceptance of a version permanently authorizes you
+to choose that version for the Program.
+
+ Later license versions may give you additional or different
+permissions. However, no additional obligations are imposed on any
+author or copyright holder as a result of your choosing to follow a
+later version.
+
+ 15. Disclaimer of Warranty.
+
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
+APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
+OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
+IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+ 16. Limitation of Liability.
+
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
+USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
+PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGES.
+
+ 17. Interpretation of Sections 15 and 16.
+
+ If the disclaimer of warranty and limitation of liability provided
+above cannot be given local legal effect according to their terms,
+reviewing courts shall apply local law that most closely approximates
+an absolute waiver of all civil liability in connection with the
+Program, unless a warranty or assumption of liability accompanies a
+copy of the Program in return for a fee.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Programs
+
+ If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+ To do so, attach the following notices to the program. It is safest
+to attach them to the start of each source file to most effectively
+state the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+
+ Copyright (C)
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see .
+
+Also add information on how to contact you by electronic and paper mail.
+
+ If the program does terminal interaction, make it output a short
+notice like this when it starts in an interactive mode:
+
+ Copyright (C)
+ This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+ This is free software, and you are welcome to redistribute it
+ under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License. Of course, your program's commands
+might be different; for a GUI interface, you would use an "about box".
+
+ You should also get your employer (if you work as a programmer) or school,
+if any, to sign a "copyright disclaimer" for the program, if necessary.
+For more information on this, and how to apply and follow the GNU GPL, see
+.
+
+ The GNU General Public License does not permit incorporating your program
+into proprietary programs. If your program is a subroutine library, you
+may consider it more useful to permit linking proprietary applications with
+the library. If this is what you want to do, use the GNU Lesser General
+Public License instead of this License. But first, please read
+.
diff --git a/reseau/filius/filius-1.12.5/Introduction_Filius.pdf b/reseau/filius/filius-1.12.5/Introduction_Filius.pdf
new file mode 100644
index 0000000..4895acb
Binary files /dev/null and b/reseau/filius/filius-1.12.5/Introduction_Filius.pdf differ
diff --git a/reseau/filius/filius-1.12.5/Readme.md b/reseau/filius/filius-1.12.5/Readme.md
new file mode 100644
index 0000000..1969e9b
--- /dev/null
+++ b/reseau/filius/filius-1.12.5/Readme.md
@@ -0,0 +1,60 @@
+# Filius - Simple Network Simulation
+Filius is a network simulator for educational purpose
+
+## Licencse
+Filius is provided under the terms of GPLv2 or GPLv3.
+
+## Requirements
+Filius is a Java application. It is required that there is a Java Runtime Environment 8 or higher. Support of Java 8 is deprecated and will end soon.
+
+For most features, JRE will do. The feature to implement and run your own applications (by means of the Software Wizard) requires Java Development Kit.
+
+## OS Support
+Windows, Linux
+
+## Available Languages
+German, French, English
+
+## Configuration
+The personal configuration, i.e. selected language as well as the ui state when leaving the program, is stored within the personal home directory within a folder named ".filius".
+
+Global configurations can be modified in the install directory within "filius.ini". For more details see the documented parameter in this file.
+
+## Installation
+The Windows installer is based on nsis. It supports the standard parameter:
+* /S - for silent install/uninstall
+* /D - to set the install directory (e.g. /D=Z:\Filius)
+
+## Website
+https://www.lernsoftware-filius.de/
+
+# Bundled JRE
+Some Filius distributions are shipped with JRE to remove the external dependency on a pre-installed Java Runtime Environment. But since Filius is not built as a Java module, the JRE cannot be built as part of the build process with Maven.
+
+The Runtime is created in two steps:
+0. Define required Java modules
+0. Create the runtime
+
+## Define Required Modules
+Use the jdeps tool that is shipped with OpenJDK:
+
+```
+jdeps -recursive --ignore-missing-deps --multi-release base --print-module-deps filius.jar lib\*
+```
+
+The output contains some warnings and the following required modules:
+
+```
+java.base,java.compiler,java.desktop,java.instrument,java.management,java.naming,java.sql,java.xml.crypto,jdk.unsupported
+```
+
+Additionally, the following runtime dependencies are required in order to use the Software Assistant for application compilation at runtime in Filius:
+- jdk.compiler - This module contains the compiler toolset.
+- jdk.zipfs - This module is required to read dependencies on built-in Filius classes from filius.jar.
+
+## Build Runtime
+The bundled JRE (if available) is built with the following command:
+
+```
+jlink --no-header-files --no-man-pages --compress=2 --strip-debug --add-modules java.base,java.desktop,java.instrument,java.management,java.naming,java.sql,java.xml.crypto,jdk.unsupported,java.compiler,jdk.compiler,jdk.zipfs --output java-runtime
+```
diff --git a/reseau/filius/filius-1.12.5/config/Desktop_de_DE.txt b/reseau/filius/filius-1.12.5/config/Desktop_de_DE.txt
new file mode 100644
index 0000000..a3df00e
--- /dev/null
+++ b/reseau/filius/filius-1.12.5/config/Desktop_de_DE.txt
@@ -0,0 +1,13 @@
+Befehlszeile;filius.software.lokal.Terminal;filius.gui.anwendungssicht.GUIApplicationTerminalWindow;gfx/desktop/icon_terminal.png
+Bildbetrachter;filius.software.lokal.ImageViewer;filius.gui.anwendungssicht.GUIApplicationImageViewerWindow;gfx/desktop/icon_imageviewer.png
+Datei-Explorer;filius.software.lokal.FileExplorer;filius.gui.anwendungssicht.GUIApplicationFileExplorerWindow;gfx/desktop/icon_filebrowser.png
+DNS-Server;filius.software.dns.DNSServer;filius.gui.anwendungssicht.GUIApplicationDNSServerWindow;gfx/desktop/icon_dns.png
+E-Mail-Programm;filius.software.email.EmailAnwendung;filius.gui.anwendungssicht.GUIApplicationEmailAnwendungWindow;gfx/desktop/icon_emailprogramm.png
+E-Mail-Server;filius.software.email.EmailServer;filius.gui.anwendungssicht.GUIApplicationEmailServerWindow;gfx/desktop/icon_emailserver.png
+Echo-Server;filius.software.clientserver.ServerBaustein;filius.gui.anwendungssicht.GUIApplicationServerBausteinWindow;gfx/desktop/icon_serverbaustein.png
+Einfacher Client;filius.software.clientserver.ClientBaustein;filius.gui.anwendungssicht.GUIApplicationClientBausteinWindow;gfx/desktop/icon_clientbaustein.png
+Firewall;filius.software.firewall.Firewall;filius.gui.anwendungssicht.GUIApplicationFirewallWindow;gfx/desktop/icon_firewall.png
+Gnutella;filius.software.dateiaustausch.PeerToPeerAnwendung;filius.gui.anwendungssicht.GUIApplicationPeerToPeerAnwendungWindow;gfx/desktop/icon_peertopeer.png
+Text-Editor;filius.software.lokal.TextEditor;filius.gui.anwendungssicht.GUIApplicationTextEditorWindow;gfx/desktop/icon_texteditor.png
+Webserver;filius.software.www.WebServer;filius.gui.anwendungssicht.GUIApplicationWebServerWindow;gfx/desktop/icon_webserver.png
+Webbrowser;filius.software.www.WebBrowser;filius.gui.anwendungssicht.GUIApplicationWebBrowserWindow;gfx/desktop/icon_browser.png
\ No newline at end of file
diff --git a/reseau/filius/filius-1.12.5/config/Desktop_en_GB.txt b/reseau/filius/filius-1.12.5/config/Desktop_en_GB.txt
new file mode 100644
index 0000000..4875385
--- /dev/null
+++ b/reseau/filius/filius-1.12.5/config/Desktop_en_GB.txt
@@ -0,0 +1,13 @@
+Command Line;filius.software.lokal.Terminal;filius.gui.anwendungssicht.GUIApplicationTerminalWindow;gfx/desktop/icon_terminal.png
+DNS server;filius.software.dns.DNSServer;filius.gui.anwendungssicht.GUIApplicationDNSServerWindow;gfx/desktop/icon_dns.png
+Echo server;filius.software.clientserver.ServerBaustein;filius.gui.anwendungssicht.GUIApplicationServerBausteinWindow;gfx/desktop/icon_serverbaustein.png
+Email server;filius.software.email.EmailServer;filius.gui.anwendungssicht.GUIApplicationEmailServerWindow;gfx/desktop/icon_emailserver.png
+Email program;filius.software.email.EmailAnwendung;filius.gui.anwendungssicht.GUIApplicationEmailAnwendungWindow;gfx/desktop/icon_emailprogramm.png
+File explorer;filius.software.lokal.FileExplorer;filius.gui.anwendungssicht.GUIApplicationFileExplorerWindow;gfx/desktop/icon_filebrowser.png
+Firewall;filius.software.firewall.Firewall;filius.gui.anwendungssicht.GUIApplicationFirewallWindow;gfx/desktop/icon_firewall.png
+Generic client;filius.software.clientserver.ClientBaustein;filius.gui.anwendungssicht.GUIApplicationClientBausteinWindow;gfx/desktop/icon_clientbaustein.png
+Gnutella;filius.software.dateiaustausch.PeerToPeerAnwendung;filius.gui.anwendungssicht.GUIApplicationPeerToPeerAnwendungWindow;gfx/desktop/icon_peertopeer.png
+Image viewer;filius.software.lokal.ImageViewer;filius.gui.anwendungssicht.GUIApplicationImageViewerWindow;gfx/desktop/icon_imageviewer.png
+Text editor;filius.software.lokal.TextEditor;filius.gui.anwendungssicht.GUIApplicationTextEditorWindow;gfx/desktop/icon_texteditor.png
+Webbrowser;filius.software.www.WebBrowser;filius.gui.anwendungssicht.GUIApplicationWebBrowserWindow;gfx/desktop/icon_browser.png
+Webserver;filius.software.www.WebServer;filius.gui.anwendungssicht.GUIApplicationWebServerWindow;gfx/desktop/icon_webserver.png
\ No newline at end of file
diff --git a/reseau/filius/filius-1.12.5/config/Desktop_fr_FR.txt b/reseau/filius/filius-1.12.5/config/Desktop_fr_FR.txt
new file mode 100644
index 0000000..6c8678b
--- /dev/null
+++ b/reseau/filius/filius-1.12.5/config/Desktop_fr_FR.txt
@@ -0,0 +1,13 @@
+Ligne de commande;filius.software.lokal.Terminal;filius.gui.anwendungssicht.GUIApplicationTerminalWindow;gfx/desktop/icon_terminal.png
+Explorateur de fichiers;filius.software.lokal.FileExplorer;filius.gui.anwendungssicht.GUIApplicationFileExplorerWindow;gfx/desktop/icon_filebrowser.png
+Éditeur de textes;filius.software.lokal.TextEditor;filius.gui.anwendungssicht.GUIApplicationTextEditorWindow;gfx/desktop/icon_texteditor.png
+Afficheur d’images;filius.software.lokal.ImageViewer;filius.gui.anwendungssicht.GUIApplicationImageViewerWindow;gfx/desktop/icon_imageviewer.png
+Parefeu;filius.software.firewall.Firewall;filius.gui.anwendungssicht.GUIApplicationFirewallWindow;gfx/desktop/icon_firewall.png
+Serveur DNS;filius.software.dns.DNSServer;filius.gui.anwendungssicht.GUIApplicationDNSServerWindow;gfx/desktop/icon_dns.png
+Serveur générique;filius.software.clientserver.ServerBaustein;filius.gui.anwendungssicht.GUIApplicationServerBausteinWindow;gfx/desktop/icon_serverbaustein.png
+Client générique;filius.software.clientserver.ClientBaustein;filius.gui.anwendungssicht.GUIApplicationClientBausteinWindow;gfx/desktop/icon_clientbaustein.png
+Serveur web;filius.software.www.WebServer;filius.gui.anwendungssicht.GUIApplicationWebServerWindow;gfx/desktop/icon_webserver.png
+Navigateur web;filius.software.www.WebBrowser;filius.gui.anwendungssicht.GUIApplicationWebBrowserWindow;gfx/desktop/icon_browser.png
+Serveur de messagerie;filius.software.email.EmailServer;filius.gui.anwendungssicht.GUIApplicationEmailServerWindow;gfx/desktop/icon_emailserver.png
+Client de messagerie;filius.software.email.EmailAnwendung;filius.gui.anwendungssicht.GUIApplicationEmailAnwendungWindow;gfx/desktop/icon_emailprogramm.png
+Gnutella (P2P);filius.software.dateiaustausch.PeerToPeerAnwendung;filius.gui.anwendungssicht.GUIApplicationPeerToPeerAnwendungWindow;gfx/desktop/icon_peertopeer.png
\ No newline at end of file
diff --git a/reseau/filius/filius-1.12.5/config/filetypes.txt b/reseau/filius/filius-1.12.5/config/filetypes.txt
new file mode 100644
index 0000000..093ab86
--- /dev/null
+++ b/reseau/filius/filius-1.12.5/config/filetypes.txt
@@ -0,0 +1,3 @@
+text;txt,cfg,bat,sh,html,htm,ini,php,xml
+sound;mp3,mp2,wav
+image;jpeg,jpg,bmp,tiff,png
\ No newline at end of file
diff --git a/reseau/filius/filius-1.12.5/config/filius.ini b/reseau/filius/filius-1.12.5/config/filius.ini
new file mode 100644
index 0000000..5c1c1a3
--- /dev/null
+++ b/reseau/filius/filius-1.12.5/config/filius.ini
@@ -0,0 +1,53 @@
+# This file is used to set some program configurations
+
+# Supported locale, i.e. the application language, settings
+# are en_GB and de_DE.
+# Note: This setting is used instead of personal selection.
+# locale=de_DE
+# locale=en_GB
+# locale=fr_FR
+
+# Increase accepted maximum round-trip-time for TCP if your hardware
+# provides low performance. Accepted values are between 1 (default)
+# and 5.
+# Note: If this factor is set to a high value, program performance
+# will decrease. This setting will be ignored if it is already set
+# as argument at startup to another value than 1.
+# rtt=2
+
+# Use this setting to change the applications look & feel to the OS
+# native look & feel.
+# Note: If enabled, this setting overrules the setting at startup!
+# native-look-n-feel=1
+
+# Set whether command line tools behaviour such as ping should
+# behave similiar to linux tools:
+# - ping will be sent 20 times instead of 4 times
+# posix-behaviour=1
+
+# Use the old message dialog to observe data exchange. It is recommended to use the new dialog!
+# Default behavior is to use the old exchange dialog (value 1).
+old-exchange-dialog=0
+
+# How the desktop windows in action mode are organized on the screen.
+# - The next window is added to the right of the previously opened window (arranged row by row): mode "row"
+# - The next window is added below the previously opened window (arranged column by column): mode "column"
+# - The next window overlaps the previously opened window (default): mode "stack"
+# row: 0, column: 1, stack: 2
+# desktop-mode=1
+
+# The software wizard is used for developing own applications within a Filius development environment.
+# The necessary prerequisite for programming and compiling your own applications is that Filius is
+# run on a Java Runtime Environment which is part of the JDK. The default behaviour is, that
+# the software wizard is hidden if this prerequisite is not fullfilled.
+# It is possible to force showing of the menu icon for the wizard with the parameter software-wizard:
+# 0 - do not show the software wizard at all
+# 1 - show the software wizard in any case (default)
+# 2 - show the software wizard when Filius is started with JDK VM (not JRE)
+# software-wizard=1
+
+# The working area to design the computer network is of limited size.
+# The attributes pane-width and pane-height are used to increase or decrease the available working area.
+# Default is (width x height): 2000 x 1500
+# pane-width=2000
+# pane-height=1500
\ No newline at end of file
diff --git a/reseau/filius/filius-1.12.5/css/maven-base.css b/reseau/filius/filius-1.12.5/css/maven-base.css
new file mode 100644
index 0000000..322efae
--- /dev/null
+++ b/reseau/filius/filius-1.12.5/css/maven-base.css
@@ -0,0 +1,168 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+body {
+ margin: 0px;
+ padding: 0px;
+}
+table {
+ padding:0px;
+ width: 100%;
+ margin-left: -2px;
+ margin-right: -2px;
+}
+acronym {
+ cursor: help;
+ border-bottom: 1px dotted #feb;
+}
+table.bodyTable th, table.bodyTable td {
+ padding: 2px 4px 2px 4px;
+ vertical-align: top;
+}
+div.clear{
+ clear:both;
+ visibility: hidden;
+}
+div.clear hr{
+ display: none;
+}
+#bannerLeft, #bannerRight {
+ font-size: xx-large;
+ font-weight: bold;
+}
+#bannerLeft img, #bannerRight img {
+ margin: 0px;
+}
+.xleft, #bannerLeft img {
+ float:left;
+}
+.xright, #bannerRight {
+ float:right;
+}
+#banner {
+ padding: 0px;
+}
+#breadcrumbs {
+ padding: 3px 10px 3px 10px;
+}
+#leftColumn {
+ width: 170px;
+ float:left;
+ overflow: auto;
+}
+#bodyColumn {
+ margin-right: 1.5em;
+ margin-left: 197px;
+}
+#legend {
+ padding: 8px 0 8px 0;
+}
+#navcolumn {
+ padding: 8px 4px 0 8px;
+}
+#navcolumn h5 {
+ margin: 0;
+ padding: 0;
+ font-size: small;
+}
+#navcolumn ul {
+ margin: 0;
+ padding: 0;
+ font-size: small;
+}
+#navcolumn li {
+ list-style-type: none;
+ background-image: none;
+ background-repeat: no-repeat;
+ background-position: 0 0.4em;
+ padding-left: 16px;
+ list-style-position: outside;
+ line-height: 1.2em;
+ font-size: smaller;
+}
+#navcolumn li.expanded {
+ background-image: url(../images/expanded.gif);
+}
+#navcolumn li.collapsed {
+ background-image: url(../images/collapsed.gif);
+}
+#navcolumn li.none {
+ text-indent: -1em;
+ margin-left: 1em;
+}
+#poweredBy {
+ text-align: center;
+}
+#navcolumn img {
+ margin-top: 10px;
+ margin-bottom: 3px;
+}
+#poweredBy img {
+ display:block;
+ margin: 20px 0 20px 17px;
+}
+#search img {
+ margin: 0px;
+ display: block;
+}
+#search #q, #search #btnG {
+ border: 1px solid #999;
+ margin-bottom:10px;
+}
+#search form {
+ margin: 0px;
+}
+#lastPublished {
+ font-size: x-small;
+}
+.navSection {
+ margin-bottom: 2px;
+ padding: 8px;
+}
+.navSectionHead {
+ font-weight: bold;
+ font-size: x-small;
+}
+.section {
+ padding: 4px;
+}
+#footer {
+ padding: 3px 10px 3px 10px;
+ font-size: x-small;
+}
+#breadcrumbs {
+ font-size: x-small;
+ margin: 0pt;
+}
+.source {
+ padding: 12px;
+ margin: 1em 7px 1em 7px;
+}
+.source pre {
+ margin: 0px;
+ padding: 0px;
+}
+#navcolumn img.imageLink, .imageLink {
+ padding-left: 0px;
+ padding-bottom: 0px;
+ padding-top: 0px;
+ padding-right: 2px;
+ border: 0px;
+ margin: 0px;
+}
diff --git a/reseau/filius/filius-1.12.5/css/maven-theme.css b/reseau/filius/filius-1.12.5/css/maven-theme.css
new file mode 100644
index 0000000..4e2bdfb
--- /dev/null
+++ b/reseau/filius/filius-1.12.5/css/maven-theme.css
@@ -0,0 +1,161 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+body {
+ padding: 0px 0px 10px 0px;
+}
+body, td, select, input, li{
+ font-family: Verdana, Helvetica, Arial, sans-serif;
+ font-size: 13px;
+}
+code{
+ font-family: Courier, monospace;
+ font-size: 13px;
+}
+a {
+ text-decoration: none;
+}
+a:link {
+ color:#36a;
+}
+a:visited {
+ color:#47a;
+}
+a:active, a:hover {
+ color:#69c;
+}
+#legend li.externalLink {
+ background: url(../images/external.png) left top no-repeat;
+ padding-left: 18px;
+}
+a.externalLink, a.externalLink:link, a.externalLink:visited, a.externalLink:active, a.externalLink:hover {
+ background: url(../images/external.png) right center no-repeat;
+ padding-right: 18px;
+}
+#legend li.newWindow {
+ background: url(../images/newwindow.png) left top no-repeat;
+ padding-left: 18px;
+}
+a.newWindow, a.newWindow:link, a.newWindow:visited, a.newWindow:active, a.newWindow:hover {
+ background: url(../images/newwindow.png) right center no-repeat;
+ padding-right: 18px;
+}
+h2 {
+ padding: 4px 4px 4px 6px;
+ border: 1px solid #999;
+ color: #900;
+ background-color: #ddd;
+ font-weight:900;
+ font-size: x-large;
+}
+h3 {
+ padding: 4px 4px 4px 6px;
+ border: 1px solid #aaa;
+ color: #900;
+ background-color: #eee;
+ font-weight: normal;
+ font-size: large;
+}
+h4 {
+ padding: 4px 4px 4px 6px;
+ border: 1px solid #bbb;
+ color: #900;
+ background-color: #fff;
+ font-weight: normal;
+ font-size: large;
+}
+h5 {
+ padding: 4px 4px 4px 6px;
+ color: #900;
+ font-size: medium;
+}
+p {
+ line-height: 1.3em;
+ font-size: small;
+}
+#breadcrumbs {
+ border-top: 1px solid #aaa;
+ border-bottom: 1px solid #aaa;
+ background-color: #ccc;
+}
+#leftColumn {
+ margin: 10px 0 0 5px;
+ border: 1px solid #999;
+ background-color: #eee;
+ padding-bottom: 3px; /* IE-9 scrollbar-fix */
+}
+#navcolumn h5 {
+ font-size: smaller;
+ border-bottom: 1px solid #aaaaaa;
+ padding-top: 2px;
+ color: #000;
+}
+
+table.bodyTable th {
+ color: white;
+ background-color: #bbb;
+ text-align: left;
+ font-weight: bold;
+}
+
+table.bodyTable th, table.bodyTable td {
+ font-size: 1em;
+}
+
+table.bodyTable tr.a {
+ background-color: #ddd;
+}
+
+table.bodyTable tr.b {
+ background-color: #eee;
+}
+
+.source {
+ border: 1px solid #999;
+}
+dl {
+ padding: 4px 4px 4px 6px;
+ border: 1px solid #aaa;
+ background-color: #ffc;
+}
+dt {
+ color: #900;
+}
+#organizationLogo img, #projectLogo img, #projectLogo span{
+ margin: 8px;
+}
+#banner {
+ border-bottom: 1px solid #fff;
+}
+.errormark, .warningmark, .donemark, .infomark {
+ background: url(../images/icon_error_sml.gif) no-repeat;
+}
+
+.warningmark {
+ background-image: url(../images/icon_warning_sml.gif);
+}
+
+.donemark {
+ background-image: url(../images/icon_success_sml.gif);
+}
+
+.infomark {
+ background-image: url(../images/icon_info_sml.gif);
+}
+
diff --git a/reseau/filius/filius-1.12.5/css/print.css b/reseau/filius/filius-1.12.5/css/print.css
new file mode 100644
index 0000000..18fcbad
--- /dev/null
+++ b/reseau/filius/filius-1.12.5/css/print.css
@@ -0,0 +1,26 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+#banner, #footer, #leftcol, #breadcrumbs, .docs #toc, .docs .courtesylinks, #leftColumn, #navColumn {
+ display: none !important;
+}
+#bodyColumn, body.docs div.docs {
+ margin: 0 !important;
+ border: none !important
+}
diff --git a/reseau/filius/filius-1.12.5/css/site.css b/reseau/filius/filius-1.12.5/css/site.css
new file mode 100644
index 0000000..055e7e2
--- /dev/null
+++ b/reseau/filius/filius-1.12.5/css/site.css
@@ -0,0 +1 @@
+/* You can override this file with your own styles */
\ No newline at end of file
diff --git a/reseau/filius/filius-1.12.5/dependencies.html b/reseau/filius/filius-1.12.5/dependencies.html
new file mode 100644
index 0000000..6161dea
--- /dev/null
+++ b/reseau/filius/filius-1.12.5/dependencies.html
@@ -0,0 +1,1179 @@
+
+
+
+
+
+
+
+ Filius – Project Dependencies
+
+
+
+
+
+
+
+
Filius
+
+
+
+
+
+
+
+ Last Published: 2021-09-01
+ | Version: 1.12.5
+
Description: Apache XML Graphics Commons is a library that consists of several reusable
+ components used by Apache Batik and Apache FOP. Many of these components
+ can easily be used separately outside the domains of SVG and XSL-FO.
Description: Xalan-Java is an XSLT processor for transforming XML documents into HTML,
+ text, or other XML document types. It implements XSL Transformations (XSLT)
+ Version 1.0 and XML Path Language (XPath) Version 1.0 and can be used from
+ the command line, in an applet or a servlet, or as a module in other program.
Description: xml-commons provides an Apache-hosted set of DOM, SAX, and
+ JAXP interfaces for use in other xml-based projects. Our hope is that we
+ can standardize on both a common version and packaging scheme for these
+ critical XML standards interfaces to make the lives of both our developers
+ and users easier. The External Components portion of xml-commons contains
+ interfaces that are defined by external standards organizations. For DOM,
+ that's the W3C; for SAX it's David Megginson and sax.sourceforge.net; for
+ JAXP it's Sun.
Description: JUnit is a regression testing framework written by Erich Gamma and Kent Beck.
+ It is used by the developer who implements unit tests in Java.
Description: Byte Buddy is a Java library for creating Java classes at run time.
+ This artifact is a build of Byte Buddy with all ASM dependencies repackaged into its own name space.
Description: HTML Parser is a Java library used to parse HTML in either a linear or nested fashion. Primarily used for transformation or extraction, it features filters, visitors, custom tags and easy to use JavaBeans. It is a fast, robust and well tested package.
Description: Apache Commons Lang, a package of Java utility classes for the
+ classes that are in java.lang's hierarchy, or are considered to be so
+ standard as to justify existence in java.lang.
Description: The codec package contains simple encoder and decoders for
+ various formats such as Base64 and Hexadecimal. In addition to these
+ widely used encoders and decoders, the codec package also maintains a
+ collection of phonetic encoding utilities.
+
Project Licenses: No licenses are defined for this project.
+
commons-cli:commons-cli:jar:1.4 (compile)
+
+
+
Apache Commons CLI
+
+
+
Description: Apache Commons CLI provides a simple API for presenting, processing and validating a command line interface.
The Apache Software License, Version 2.0: Apache Commons Lang, Apache XML Graphics Commons, Logging, XML Commons External Components XML APIs, Xalan Java, Xalan Java Serializer, org.apache.xmlgraphics:batik-anim, org.apache.xmlgraphics:batik-awt-util, org.apache.xmlgraphics:batik-bridge, org.apache.xmlgraphics:batik-codec, org.apache.xmlgraphics:batik-constants, org.apache.xmlgraphics:batik-css, org.apache.xmlgraphics:batik-dom, org.apache.xmlgraphics:batik-ext, org.apache.xmlgraphics:batik-gvt, org.apache.xmlgraphics:batik-i18n, org.apache.xmlgraphics:batik-parser, org.apache.xmlgraphics:batik-script, org.apache.xmlgraphics:batik-svg-dom, org.apache.xmlgraphics:batik-svggen, org.apache.xmlgraphics:batik-transcoder, org.apache.xmlgraphics:batik-util, org.apache.xmlgraphics:batik-xml
+
Common Public License Version 1.0: JUnit
+
Eclipse Public License - v 1.0: Logback Classic Module, Logback Core Module
+
Dependency File Details
+
+
+
Filename
+
Size
+
Entries
+
Classes
+
Packages
+
Java Version
+
Debug Information
+
+
logback-classic-1.2.3.jar
+
290.3 kB
+
234
+
175
+
27
+
1.6
+
Yes
+
+
logback-core-1.2.3.jar
+
471.9 kB
+
419
+
373
+
36
+
1.6
+
Yes
+
+
itextpdf-5.5.13.1.jar
+
2.3 MB
+
1007
+
932
+
41
+
1.5
+
Yes
+
+
commons-cli-1.4.jar
+
53.8 kB
+
40
+
27
+
1
+
1.5
+
Yes
+
+
commons-codec-1.2.jar
+
30.1 kB
+
30
+
19
+
5
+
1.1
+
Yes
+
+
commons-httpclient-3.1.jar
+
305 kB
+
183
+
167
+
8
+
1.2
+
Yes
+
+
commons-io-2.8.0.jar
+
285.4 kB
+
204
+
182
+
10
+
1.8
+
Yes
+
+
commons-logging-1.0.4.jar
+
38 kB
+
29
+
18
+
2
+
1.2
+
Yes
+
+
semantic-version-2.1.0.jar
+
14.3 kB
+
15
+
5
+
2
+
-
+
Yes
+
+
junit-4.10.jar
+
253.2 kB
+
290
+
252
+
31
+
1.5
+
Yes
+
+
byte-buddy-1.10.18.jar
+
3.5 MB
+
2509
+
2454
+
37
+
-
+
Yes
+
+
byte-buddy-agent-1.10.18.jar
+
259.2 kB
+
81
+
63
+
2
+
-
+
Yes
+
+
commons-lang3-3.3.2.jar
+
412.7 kB
+
241
+
217
+
12
+
1.6
+
Yes
+
+
batik-anim-1.12.jar
+
479.2 kB
+
417
+
396
+
4
+
1.7
+
Yes
+
+
batik-awt-util-1.12.jar
+
422.4 kB
+
249
+
222
+
10
+
1.7
+
Yes
+
+
batik-bridge-1.12.jar
+
696 kB
+
417
+
399
+
2
+
1.7
+
Yes
+
+
batik-codec-1.12.jar
+
111.9 kB
+
68
+
45
+
3
+
1.7
+
Yes
+
+
batik-constants-1.12.jar
+
8.3 kB
+
14
+
1
+
1
+
1.7
+
No
+
+
batik-css-1.12.jar
+
325.4 kB
+
264
+
237
+
8
+
1.7
+
Yes
+
+
batik-dom-1.12.jar
+
182.6 kB
+
134
+
115
+
5
+
1.7
+
Yes
+
+
batik-ext-1.12.jar
+
10.1 kB
+
22
+
7
+
2
+
1.7
+
No
+
+
batik-gvt-1.12.jar
+
191.4 kB
+
122
+
103
+
7
+
1.7
+
Yes
+
+
batik-i18n-1.12.jar
+
11.3 kB
+
17
+
4
+
1
+
1.7
+
Yes
+
+
batik-parser-1.12.jar
+
76.5 kB
+
73
+
55
+
1
+
1.7
+
Yes
+
+
batik-script-1.12.jar
+
25.7 kB
+
34
+
13
+
3
+
1.7
+
Yes
+
+
batik-svg-dom-1.12.jar
+
231.9 kB
+
135
+
64
+
2
+
1.7
+
Yes
+
+
batik-svggen-1.12.jar
+
224.9 kB
+
174
+
157
+
3
+
1.7
+
Yes
+
+
batik-transcoder-1.12.jar
+
128.6 kB
+
81
+
60
+
8
+
1.7
+
Yes
+
+
batik-util-1.12.jar
+
127.2 kB
+
99
+
80
+
4
+
1.7
+
Yes
+
+
batik-xml-1.12.jar
+
33.5 kB
+
22
+
6
+
1
+
1.7
+
Yes
+
+
xmlgraphics-commons-2.4.jar
+
674.4 kB
+
427
+
374
+
34
+
1.7
+
Yes
+
+
fest-assert-1.4.jar
+
78.5 kB
+
76
+
64
+
1
+
1.5
+
Yes
+
+
fest-util-1.1.6.jar
+
31 kB
+
40
+
22
+
1
+
1.5
+
Yes
+
+
hamcrest-core-1.1.jar
+
76.6 kB
+
54
+
21
+
3
+
1.5
+
Yes
+
+
htmlparser-1.6.jar
+
288.1 kB
+
200
+
155
+
16
+
1.4
+
Yes
+
+
mockito-core-3.6.28.jar
+
675 kB
+
663
+
590
+
65
+
1.8
+
Yes
+
+
objenesis-3.1.jar
+
60.4 kB
+
64
+
48
+
10
+
1.8
+
Yes
+
+
slf4j-api-1.7.30.jar
+
41.5 kB
+
46
+
34
+
4
+
1.5
+
Yes
+
+
serializer-2.7.2.jar
+
276.4 kB
+
123
+
108
+
3
+
1.3
+
Yes
+
+
xalan-2.7.2.jar
+
3.2 MB
+
1565
+
1501
+
49
+
1.3
+
Yes
+
+
xml-apis-1.4.01.jar
+
220.5 kB
+
391
+
346
+
29
+
1.1
+
No
+
+
xml-apis-ext-1.3.04.jar
+
85.7 kB
+
209
+
192
+
4
+
1.1
+
No
+
+
Total
+
Size
+
Entries
+
Classes
+
Packages
+
Java Version
+
Debug Information
+
+
42
+
17.2 MB
+
11482
+
10303
+
498
+
1.8
+
38
+
+
compile: 34
+
compile: 12.3 MB
+
compile: 7705
+
compile: 6789
+
compile: 348
+
-
+
compile: 30
+
+
test: 8
+
test: 4.9 MB
+
test: 3777
+
test: 3514
+
test: 150
+
-
+
test: 8
+
+
+
+
+
+
+
+
diff --git a/reseau/filius/filius-1.12.5/filius.jar b/reseau/filius/filius-1.12.5/filius.jar
new file mode 100644
index 0000000..3e8c08e
Binary files /dev/null and b/reseau/filius/filius-1.12.5/filius.jar differ
diff --git a/reseau/filius/filius-1.12.5/filius.sh b/reseau/filius/filius-1.12.5/filius.sh
new file mode 100644
index 0000000..bd13c06
--- /dev/null
+++ b/reseau/filius/filius-1.12.5/filius.sh
@@ -0,0 +1,12 @@
+#!/bin/bash
+#
+# This script is meant as supportive start script for
+# UNIX-like systems, e.g., Linux or Mac OS X
+#
+
+# change to directory where filius is installed
+script_path=`readlink -f $0`
+installation_path=${script_path%`basename ${script_path}`}
+
+# start filius
+java -jar ${installation_path}filius.jar "$@"
diff --git a/reseau/filius/filius-1.12.5/hilfe/design_mode_de_DE.html b/reseau/filius/filius-1.12.5/hilfe/design_mode_de_DE.html
new file mode 100644
index 0000000..18e629c
--- /dev/null
+++ b/reseau/filius/filius-1.12.5/hilfe/design_mode_de_DE.html
@@ -0,0 +1,74 @@
+
+
+
+
+
+
+
Entwurfsmodus
+
+
Rechnernetz aufbauen
+
Komponenten können hinzugefügt werden, indem sie
+ mit gedrückter Maustaste auf die Entwurfsfläche gezogen werden
+
+
Gelöscht werden die Komponenten über das Kontextmenü (unter
+ Linux und Windows: rechte Maustaste über der Komponente betätigen).
+
Verbindungen werden erstellt, indem die Komponente Kabel ausgewählt
+ wird (per Mausklick oder Tastenkombination ALT+1) und anschließend die zu verbindenen Komponenten nacheinander mit
+ dem Cursor ausgewählt werden.
+
+
Verbindungen werden gelöscht, indem im Kontextmenü einer angeschlossenen
+ Komponente der Eintrag zum Löschen aller Verbindungen ausgewählt wird.
+
+
Komponenten konfigurieren
+
Zur Konfiguration der Komponenten wird durch einen Doppelklick auf die jeweilige
+ Komponente ein Eingabebereich am unteren Bildschirmrand geöffnet. Der Name kann
+ beliebig gewählt werden. Diese Einstellung hat keinen Einfluss auf die Funktion
+ des Programms. Alle anderen Einstellungen beeinflussen den Datenaustausch und damit
+ die korrekte Funktionsweise des Rechnernetzes.
+
+
Rechner/Notebook: Alternativ zur manuellen IP-Konfiguration kann
+ ausgewählt werden, dass die Einstellungen durch einen DHCP-Server bezogen
+ werden sollen. Dazu muss auf einem Rechner im lokalen Rechnernetz der
+ DHCP-Server aktiviert und konfiguriert werden.
+
+
Vermittlungsrechner: Ein Vermittlungsrechner verfügt über
+ mehrere Netzwerkkarten, die manuell konfiguriert werden müssen. Außerdem
+ wird hier die Weiterleitung von IP-Paketen zwischen verschiedenen Rechnernetzen
+ mit dem Gateway und der Weiterleitungstabelle eingestellt. Eine Firewall kann über
+ die entsprechende Schaltfläche aktiviert und konfiguriert werden. Das ist aber
+ auch noch im Simulationsmodus über eine Web-Schnittstelle möglich.
+
+
Switch: Der Switch verbindet Komponenten in einem lokalen Rechnernetz
+ und erfordert für die Funktion keine weiteren Einstellungen.
+
+
Modem: Mit dem Modem können die in Filius erstellten virtuellen
+ Rechnernetze auf verschiedenen realen Rechnern miteinander verbunden werden. Dazu
+ muss auf einem Rechner ein Filius-Modem auf eingehende Verbindungen warten und von
+ einem anderen Rechner eine Verbindung mit Hilfe der IP-Adresse des realen Zielrechners
+ aufgebaut werden.
+
+
Eigene Anwendungen erstellen
+
Mit dem Assistenten zur Software-Erstellung ist es möglich, eigene Programme
+ mit Java zu erstellen und zu verändern. Der Assistent wird über die
+ entsprechende Schaltfläche am oberen Fensterrand gestartet.
+
+
+
Wechsel des Anwendungsmodus
+
+
Um ein erstelltes virtuelles Netzwerk zu nutzen, muss vom Entwurfsmodus in
+ den Simulationsmodus gewechselt werden. Das erfolgt über die entsprechende
+ Schaltfläche in der Zeile am oberen Fensterrand.
+
+
+
Das Netzwerk kann im Dokumentationsmodus u.a. mit Hilfe von Textelementen dokumentiert werden.
+ Außerdem ist es möglich, eine einfache Dokumentation zu erzeugen:
+
Use the mouse to drag and drop the components from the left panel to the
+ whiteboard.
+
+
Use the context menu of the component to delete the icon (Linux and Windows: press
+ right mouse button over the component).
+
Connect stations by selecting the cable icon (using the mouse or shortcut ALT+1) and then press the mouse
+ button on two components.
+
+
Use the context menu of the component to delete all connections to this station.
+
+
Configure Components
+
Select the component with a double-click to configure its properties on the
+ lower panel of the window which will be opened. Select any name for the component.
+ This property does not influence the functionality of the network simulation.
+
+
Host/Notebook: Besides the manual configuration of IP properties it is possible
+ that the IP configuration is provided by a DHCP server. In order to use this
+ functionality one of the hosts within the local computer network must provide
+ the DHCP server.
+
+
Router: The Router provides several Network Interface Controller (NIC). This
+ NICs must be manually configured. Furthermore IP forwarding is configured by the default
+ gateway and the forwarding table. And it is possible to activate and configure a
+ firewall. The configuration of the firewall can be processed additionally when the
+ simulation mode is selected using a web-interface.
+
+
Switch: The switch is used to connect components within a local computer
+ network. This component does not require any configuration.
+
+
Modem: The modem is used to connect virtual networks built within Filius
+ which are located at two different real machines. For this purpose it is necessary to
+ configure the modem at one machine to wait for incoming connetion requests. The modem
+ located at the second machine must initialize the connection and therefore the real
+ IP address of the first machine must be configured.
+
+
Programming Individual Software Components
+
The software assistant provides a simple interface to programme and modify
+ individual software components which can be used in the simulation mode. The
+ assistant is started using the icon at the upper panel of the window.
+
+
+
Switch Application Mode
+
+
In order to use the previously built computer network it is necessary to switch
+ to the simulation mode. The button is located at the upper panel of the window.
+
+
+
+ To add explanations and to generate a simple documentation switch to the Documentation Mode:
+
Ce mode permet d’assembler les différents constituants d’un réseau informatique.
+
+
Construction du réseau
+
À l’aide d’un glisser-lâcher à la souris, sélectionner des composants
+ dans la marge de gauche et les disposer sur l’espace de travail.
+
+
Utiliser le menu contextuel d’un composant (clic droit) pour le supprimer.
+
Raccorder les composants à l’aide de cables. Pour cela, sélectionner l’outil
+ cable en cliquant sur l’icône cable dans la marge de gauche (ou à l’aide du
+ raccourci clavier ALT+1), puis cliquer successivement sur deux composants à raccorder.
+
+
Utiliser le menu contextuel d’un composant pour supprimer toutes ses connexions.
+
Utiliser le menu contextuel d’un cable pour le supprimer.
+
+
Paramétrer les composants du réseau
+
Double-cliquer sur le composant à paramétrer. Un ensemble de paramètres apparait
+ dans la partie inférieure de la fenêtre qui s’ouvre pour cela. Pour paramétrer
+ un autre composant, il suffit de cliquer dessus (clic simple).
+ Les noms des composants peuvent être choisis arbitrairement : ils n’ont aucune
+ répercussion sur le fonctionnement de la simulation.
+
+
Ordinateur/portable: L’adressage IP peut être spécifié manuellement ou
+ de façon automatique à l’aide d’un serveur DHCP. Pour utiliser cette seconde
+ option, l’un des postes (ordinateur ou portable) devra avoir été configuré au
+ préalable comme serveur DHCP (en activant son service DHCP).
+
+
Switch: Un switch, ou commutateur, permet d’interconnecter plusieurs
+ composants entre eux au sein d’un réseau local. Ce composant ne nécessite pas
+ de configuration.
+
+
Routeur: Un routeur dispose d’au moins deux interfaces réseau. Chaque
+ interface doit être configurée manuellement.
+
+ Il faut également paramétrer le routage, soit en activant le mode automatique,
+ soit en définissant des règles manuellement.
+
+ Enfin, un parefeu peut être optionnellement paramétré et activé.
+ En mode simulation, le parefeu peut également être configuré
+ via une interface web.
+
+
Modem: Le modem permet d’interconnecter des réseaux virtuels créés dans
+ FILIUS sur des ordinateurs réels distincts. Pour cela, il faut configurer
+ l’un des modems en mode d’attente des connexions entrantes, et sur les autres,
+ il faut spécifier l’adresse IP (réelle) du poste du modem en attente.
+
+
Changer de mode
+
+
Pour passer au mode simulation, cliquer sur le bouton de la barre supérieure :
+
+
+
Change au mode documentation pour ajouter des éléments visuels qui facilitent
+ la lecture du réseau virtuel :
+
Gliederungsflächen sind Rechtecke, die mehrere Rechner visuell gruppieren können.
+
+
Neue Elemente werden dadurch erstellt, dass sie von der Seitenleiste in den Arbeitsbereich gezogen werden.
+
+
Mit Hilfe des Kontextmenüs lässt sich die Darstellung anpassen.
+
+
Textelemente
+
+
Textelemente erlauben es, erläuternde Texte oder Beschriftungen zur Darstellung des Rechnernetzes hinzuzufügen.
+
+
Neue Elemente werden dadurch erstellt, dass sie von der Seitenleiste in den Arbeitsbereich gezogen werden.
+
+
Mit Hilfe des Kontextmenüs lässt sich die Schrift formatieren.
+
+
Rechnernetz exportieren
+
+
Mit der Exportfunktion kann die Darstellung des Rechnernetzes als Bilddatei exportiert werden.
+
+
Report
+
+
Hierüber lässt sich ein Report als PDF-Datei erzeugen, in dem neben einer grafischen Darstellung des Rechnernetzes
+ unter anderem die wichtigsten Konfigurationsparameter aufgeführt sind.
+
+
Wechsel des Anwendungsmodus
+
+
Der Aufbau des virtuellen Rechnernetzes und die IP-Konfiguration der Komponenten
+ erfolgt im Entwurfsmodus, der über die Schaltfläche am oberen
+ Fensterrand erreicht wird.
+
+
+
Um ein erstelltes virtuelles Netzwerk zu nutzen, muss in
+ den Simulationsmodus gewechselt werden. Das erfolgt über die entsprechende
+ Schaltfläche in der Zeile am oberen Fensterrand.
+
These boxes are used, e.g., to group some elements of the network.
+
+
New boxes are created by dragging the element onto the working space.
+
+
The format can be edited via context menu.
+
+
Text Elements
+
+
These text elements support, e.g., documentation of the network elements.
+
+
New elements are created by dragging the element onto the working space.
+
+
The text format can be edited via context menu.
+
+
Export
+
+
The export function allows to generate and save the network as image.
+
+
Report
+
+
The report is a PDF file with the network diagram, important configuration parameter etc.
+
+
Switch Application Mode
+
+
In order to use the computer network it is necessary to switch
+ to the simulation mode. The button is located at the upper panel of the window.
+
+
+
+ The infrastructure of the virtual computer network and the IP configuration of the
+ components can be modified in the design mode. Switch to this mode using the icon at
+ the upper panel.
+
Ce mode permet d’ajouter des éléments visuels qui facilitent la lecture du réseau virtuel.
+
+
Blocs structurels
+
+
À l’aide d’un glisser-lâcher à la souris, sélectionner le bloc structurel
+ dans la marge de gauche et le déposer sur l’espace de travail.
+
+
Déplacer ou redimensionner un bloc à l'aide de la souris.
+
Utiliser le menu contextuel d’un bloc (clic droit) pour modifier sa couleur.
+
+
Zones de texte
+
+
À l’aide d’un glisser-lâcher à la souris, sélectionner la zone de texte
+ dans la marge de gauche et la déposer sur l’espace de travail.
+
Lorsqu'une zone de texte est sélectionnée, elle est entourée par un cadre bleu.
+ Dans le cas contraire, un simple contour gris délimite la zone.
+
Pour modifier la zone de texte, cliquer dessus. Le texte peut alors être modifié directement.
+
Utiliser le cadre bleu pour déplacer ou redimensionner la zone de texte.
+
Utiliser le menu contextuel pour changer la couleur, la taille et le style de la police
+ de caractères.
+
+
Exporter
+
+
Le bouton Exporter permet de sauvegarder une image de l'intégralité de l'espace de travail
+ au format PNG ou SVG. Dans les deux cas, l'arrière plan est transparent.
+
+
Rapport
+
+
Le bouton Rapport permet de générer un rapport sur l'état de la simulation. Ce rapport comprend
+ le schéma du réseau ainsi que, pour chaque adresse MAC, une table des paquets reçus et émis.
+
+
Changer de mode
+
+
Pour changer de mode, cliquer sur le bouton correspondant de la barre supérieure.
+
+
Si l’infrastructure du réseau a besoin d’être modifiée, il suffit de rebasculer
+ vers le mode conception à l’aide du bouton de la barre supérieure :
+
+
+
Pour passer au mode simulation, cliquer sur le bouton de la barre supérieure :
+
+
+
+
+
diff --git a/reseau/filius/filius-1.12.5/hilfe/gfx/aktionsmodus.png b/reseau/filius/filius-1.12.5/hilfe/gfx/aktionsmodus.png
new file mode 100644
index 0000000..70e36b6
Binary files /dev/null and b/reseau/filius/filius-1.12.5/hilfe/gfx/aktionsmodus.png differ
diff --git a/reseau/filius/filius-1.12.5/hilfe/gfx/button_wizard.png b/reseau/filius/filius-1.12.5/hilfe/gfx/button_wizard.png
new file mode 100644
index 0000000..719ff12
Binary files /dev/null and b/reseau/filius/filius-1.12.5/hilfe/gfx/button_wizard.png differ
diff --git a/reseau/filius/filius-1.12.5/hilfe/gfx/dokumodus.png b/reseau/filius/filius-1.12.5/hilfe/gfx/dokumodus.png
new file mode 100644
index 0000000..441a2b7
Binary files /dev/null and b/reseau/filius/filius-1.12.5/hilfe/gfx/dokumodus.png differ
diff --git a/reseau/filius/filius-1.12.5/hilfe/gfx/draganddrop.gif b/reseau/filius/filius-1.12.5/hilfe/gfx/draganddrop.gif
new file mode 100644
index 0000000..c783865
Binary files /dev/null and b/reseau/filius/filius-1.12.5/hilfe/gfx/draganddrop.gif differ
diff --git a/reseau/filius/filius-1.12.5/hilfe/gfx/draganddrop.png b/reseau/filius/filius-1.12.5/hilfe/gfx/draganddrop.png
new file mode 100644
index 0000000..627e3d0
Binary files /dev/null and b/reseau/filius/filius-1.12.5/hilfe/gfx/draganddrop.png differ
diff --git a/reseau/filius/filius-1.12.5/hilfe/gfx/entwurfsmodus.png b/reseau/filius/filius-1.12.5/hilfe/gfx/entwurfsmodus.png
new file mode 100644
index 0000000..97815de
Binary files /dev/null and b/reseau/filius/filius-1.12.5/hilfe/gfx/entwurfsmodus.png differ
diff --git a/reseau/filius/filius-1.12.5/hilfe/gfx/icon_softwareinstallation.png b/reseau/filius/filius-1.12.5/hilfe/gfx/icon_softwareinstallation.png
new file mode 100644
index 0000000..677f485
Binary files /dev/null and b/reseau/filius/filius-1.12.5/hilfe/gfx/icon_softwareinstallation.png differ
diff --git a/reseau/filius/filius-1.12.5/hilfe/gfx/netzwek_aus.png b/reseau/filius/filius-1.12.5/hilfe/gfx/netzwek_aus.png
new file mode 100644
index 0000000..2ea6643
Binary files /dev/null and b/reseau/filius/filius-1.12.5/hilfe/gfx/netzwek_aus.png differ
diff --git a/reseau/filius/filius-1.12.5/hilfe/gfx/verkabeln.png b/reseau/filius/filius-1.12.5/hilfe/gfx/verkabeln.png
new file mode 100644
index 0000000..5144318
Binary files /dev/null and b/reseau/filius/filius-1.12.5/hilfe/gfx/verkabeln.png differ
diff --git a/reseau/filius/filius-1.12.5/hilfe/simulation_mode_de_DE.html b/reseau/filius/filius-1.12.5/hilfe/simulation_mode_de_DE.html
new file mode 100644
index 0000000..88b4402
--- /dev/null
+++ b/reseau/filius/filius-1.12.5/hilfe/simulation_mode_de_DE.html
@@ -0,0 +1,65 @@
+
+
+
+
+
+
+
Simulationsmodus
+
+
Anwendungen installieren/verwenden
+
Durch einen Klick auf einen Rechner/Notebook wird die zugehörige
+ Arbeitsfläche (Desktop-Oberfläche) in einem kleinen Fenster dargestellt.
+ Über das Symbol in der linken oberen Ecke wird ein Fenster zur Installation
+ und Deinstallation von Programmen geöffnet.
+
+
Die graphischen Benutzungsschnittstellen der Programme werden über die jeweiligen
+ Symbole auf der Arbeitsfläche geöffnet. Ob diese Fenster geöffnet oder
+ geschlossen sind, beeinflusst die Funktionsweise des Programms nicht (insbesondere für
+ Server-Programme wichtig).
+
+
IP-Konfiguration ansehen
+
Die IP-Konfiguration eines Rechners/Notebooks kann über ein Symbol in der rechten
+ unteren Ecke des Fensters mit der Arbeitsfläche angezeigt werden.
+
+
+
Datenaustausch beobachten
+
Die Geschwindigkeit des Datenaustauschs kann über den Schieberegler in der
+ Leiste am oberen Rand des Fensters variiert werden.
+
Alle Dateneinheiten, die von einem Rechner/Notebook versendet und empfangen werden,
+ können eingesehen werden. Dazu muss das Anzeigen des Datenaustauschs über das
+ Kontextmenü eines Rechners (unter Linux und Windows: rechte Maustaste über
+ der Komponente betätigen) ausgewählt werden.
+
In der Tabelle wird jede Dateneinheit durch eine oder mehrere gruppierte Zeilen
+ dargestellt. In den verschiedenen Zeilen werden die Daten angezeigt, die den vier Schichten
+ des Internetschichtenmodells zugeordnet werden.
+
+
Firewall Vermittlungsrechner einrichten
+
Für die Konfiguration der Firewall eines Vermittlungsrechners im Simulationsmodus
+ steht eine Webschnittstelle zur Verfügung. Dazu muss auf einem angeschlossenen Rechner
+ ein Webbrowser installiert sein, in dessen Adresszeile eine IP-Adresse des Vermittlungsrechners
+ eingegeben wird.
+
Die Konfiguration und Aktivierung bzw. Deaktivierung der Firewall erfolgt über ein
+ Formular. Daneben ist es möglich die Log-Daten der Firewall einzusehen.
+
+
Switch-Zustand einsehen
+
Der Switch speichert die MAC-Adressen eingehender Dateneinheiten und den Anschluss,
+ über den die Daten empfangen wurden. Dazu legt er die Source Address Table (SAT) an.
+ Diese Tabelle kann durch einen Klick auf den Switch eingesehen werden.
+
+
Wechsel des Anwendungsmodus
+
Der Aufbau des virtuellen Rechnernetzes und die IP-Konfiguration der Komponenten
+ erfolgt im Entwurfsmodus, der über die entsprechende Schaltfläche am oberen
+ Fensterrand erreicht wird.
+
+
+
Das Netzwerk kann im Dokumentationsmodus u.a. mit Hilfe von Textelementen dokumentiert werden.
+ Außerdem ist es möglich, eine einfache Dokumentation zu erzeugen:
+
Performing a click on a computer/notebook the virtual desktop of the
+ component is opened as a new window. Using the icon at the upper left corner of
+ this window opens another internal window to select the installed software at
+ the computer, i.e. to install and remove programmes.
+
+
The graphical user interfaces of these programmes are opened by selecting the
+ icons at the virtual desktop. The behaviour of these programmes does not depend on
+ whether the graphical user interface, i.e. the internal window, is opened or not.
+
+
Looking at the IP Configuration
+
It is possible to have a look at the IP configuration by selecting the icon in the
+ lower right corner of the desktop window.
+
+
+
Observing Data Exchange
+
The time delay during the simulation of the data exchange can be changed by
+ the slider at the upper panel of the main window.
+
Every data unit which is sent or received by a computer is logged and can be displayed.
+ Use the context menu to open the window which displays the window with the data units.
+
In the table with the data units every protocol data unit is represented by one
+ or more rows. The protocol data units of the four layers of the Internet layer model are
+ shown.
+
+
Configuring the Firewall of the Router
+
+ To configure the firewall every router provides a web interface. Therefore, to configure
+ the firewall in the simulation mode it is necessary to start the webbrowser at a
+ connected computer and to start with an IP address of the router to address its
+ web-server.
+
The configuration and activation or deactivation of the firewall is done by
+ a web formular. Besides there is the possibility to look at the logging data of
+ the firewall.
+
+
State of the Switch
+
The switch stores the MAC addresses of incoming protocol data units in connection
+ with the port of the physical connection. This data is stored in the Source Address Table
+ (SAT). It is possible to show this table by a click on the switch.
+
+
Switch Application Mode
+
+ The infrastructure of the virtual computer network and the IP configuration of the
+ components can be modified in the design mode. Switch to this mode using the icon at
+ the upper panel.
+
+
+
+ To add explanations and to generate a simple documentation switch to the Documentation Mode:
+
+ Ce mode permet de simuler le fonctionnement du réseau virtuel de FILIUS.
+
+
Installer et utiliser des logiciels
+
Chaque ordinateur et portable possède un bureau à partir duquel peuvent être
+ installées puis lancées des applications. Un clic sur l’icône d’un ordinateur ou
+ d’un portable fait apparaitre son bureau dans une fenêtre indépendante.
+ Pour installer des logiciels, cliquer sur l’icône suivante :
+
+
Les icônes des applications installées apparaissent alors sur le bureau. Un simple
+ clic sur une icône permet de lancer l’application correspondante. Chaque application
+ s’ouvre dans une fenêtre du bureau. Fermer la fenêtre d’une application, ou fermer
+ la fenêtre du bureau ne ferme pas les applications. Pour fermer une application,
+ il faut la désinstaller.
+
+
Afficher l’état du réseau
+
Lorsque le bureau d’un ordinateur ou d’un portable est affiché, en plaçant la
+ souris au dessus de l’icône réseau située en bas à droite,
+ l’adresse IP du poste apparait dans une infobulle.
+
+
Pour obtenir le paramétrage IP détaillé du poste, cliquer sur l’icône.
+
+
Observer les échanges de données
+
Un journal conserve une trace de tous les paquets de données envoyés ou reçus par un
+ poste. Pour visualiser ce journal, cliquer droit sur l’icône du poste et choisir
+ Afficher les échanges de données.
+
Le journal est présenté sous la forme d’un tableau dont chaque ligne correspond
+ à un échange de données. Les échanges sont basés sur une architecture
+ en quatre couches matérialisées par des couleurs différentes.
+ Un clic sur une ligne permet d’afficher dans la partie inférieure de
+ la fenêtre le détail du paquet de données échangé.
+
Il est possible de ralentir la vitesse des échanges de données en déplaçant vers
+ la gauche le curseur situé au centre de la partie supérieure de la fenêtre
+ principale. Les cables deviennent verts lorsqu’ils sont parcourus par des données.
+
+
Configurer le parefeu du routeur
+
En mode simulation, le parefeu d’un routeur peut être configuré via son interface
+ web. Il suffit pour cela dans le navigateur web d’un poste de saisir comme url
+ l’adresse IP du routeur à configurer.
+
Outre la configuration, le formulaire web permet d’activer et de désactiver
+ le parefeu, ainsi que de consulter son journal d’activité.
+
+
Afficher la table du switch
+
Le switch (ou commutateur) enregistre les adresses MAC des paquets entrants
+ avec le port d’arrivée. Ces deux informations sont stockées dans la table des
+ adresses sources (SAT). Pour afficher cette table, cliquer sur le switch.
+
+
Changer de mode
+
Si l’infrastructure du réseau a besoin d’être modifiée, il suffit de rebasculer
+ vers le mode conception à l’aide du bouton de la barre supérieure :
+
+
+
Change au mode documentation pour ajouter des éléments visuels qui facilitent
+ la lecture du réseau virtuel :
+
+
+
+
+
diff --git a/reseau/filius/filius-1.12.5/images/close.gif b/reseau/filius/filius-1.12.5/images/close.gif
new file mode 100644
index 0000000..1c26bbc
Binary files /dev/null and b/reseau/filius/filius-1.12.5/images/close.gif differ
diff --git a/reseau/filius/filius-1.12.5/images/collapsed.gif b/reseau/filius/filius-1.12.5/images/collapsed.gif
new file mode 100644
index 0000000..6e71084
Binary files /dev/null and b/reseau/filius/filius-1.12.5/images/collapsed.gif differ
diff --git a/reseau/filius/filius-1.12.5/images/expanded.gif b/reseau/filius/filius-1.12.5/images/expanded.gif
new file mode 100644
index 0000000..0fef3d8
Binary files /dev/null and b/reseau/filius/filius-1.12.5/images/expanded.gif differ
diff --git a/reseau/filius/filius-1.12.5/images/external.png b/reseau/filius/filius-1.12.5/images/external.png
new file mode 100644
index 0000000..3f999fc
Binary files /dev/null and b/reseau/filius/filius-1.12.5/images/external.png differ
diff --git a/reseau/filius/filius-1.12.5/images/icon_error_sml.gif b/reseau/filius/filius-1.12.5/images/icon_error_sml.gif
new file mode 100644
index 0000000..61132ef
Binary files /dev/null and b/reseau/filius/filius-1.12.5/images/icon_error_sml.gif differ
diff --git a/reseau/filius/filius-1.12.5/images/icon_info_sml.gif b/reseau/filius/filius-1.12.5/images/icon_info_sml.gif
new file mode 100644
index 0000000..c6cb9ad
Binary files /dev/null and b/reseau/filius/filius-1.12.5/images/icon_info_sml.gif differ
diff --git a/reseau/filius/filius-1.12.5/images/icon_success_sml.gif b/reseau/filius/filius-1.12.5/images/icon_success_sml.gif
new file mode 100644
index 0000000..52e85a4
Binary files /dev/null and b/reseau/filius/filius-1.12.5/images/icon_success_sml.gif differ
diff --git a/reseau/filius/filius-1.12.5/images/icon_warning_sml.gif b/reseau/filius/filius-1.12.5/images/icon_warning_sml.gif
new file mode 100644
index 0000000..873bbb5
Binary files /dev/null and b/reseau/filius/filius-1.12.5/images/icon_warning_sml.gif differ
diff --git a/reseau/filius/filius-1.12.5/images/logos/build-by-maven-black.png b/reseau/filius/filius-1.12.5/images/logos/build-by-maven-black.png
new file mode 100644
index 0000000..919fd0f
Binary files /dev/null and b/reseau/filius/filius-1.12.5/images/logos/build-by-maven-black.png differ
diff --git a/reseau/filius/filius-1.12.5/images/logos/build-by-maven-white.png b/reseau/filius/filius-1.12.5/images/logos/build-by-maven-white.png
new file mode 100644
index 0000000..7d44c9c
Binary files /dev/null and b/reseau/filius/filius-1.12.5/images/logos/build-by-maven-white.png differ
diff --git a/reseau/filius/filius-1.12.5/images/logos/maven-feather.png b/reseau/filius/filius-1.12.5/images/logos/maven-feather.png
new file mode 100644
index 0000000..b5ada83
Binary files /dev/null and b/reseau/filius/filius-1.12.5/images/logos/maven-feather.png differ
diff --git a/reseau/filius/filius-1.12.5/images/newwindow.png b/reseau/filius/filius-1.12.5/images/newwindow.png
new file mode 100644
index 0000000..6287f72
Binary files /dev/null and b/reseau/filius/filius-1.12.5/images/newwindow.png differ
diff --git a/reseau/filius/filius-1.12.5/img/email_icon.png b/reseau/filius/filius-1.12.5/img/email_icon.png
new file mode 100644
index 0000000..cd5fd25
Binary files /dev/null and b/reseau/filius/filius-1.12.5/img/email_icon.png differ
diff --git a/reseau/filius/filius-1.12.5/lib/batik-anim-1.12.jar b/reseau/filius/filius-1.12.5/lib/batik-anim-1.12.jar
new file mode 100644
index 0000000..e1350a6
Binary files /dev/null and b/reseau/filius/filius-1.12.5/lib/batik-anim-1.12.jar differ
diff --git a/reseau/filius/filius-1.12.5/lib/batik-awt-util-1.12.jar b/reseau/filius/filius-1.12.5/lib/batik-awt-util-1.12.jar
new file mode 100644
index 0000000..cd1ffcc
Binary files /dev/null and b/reseau/filius/filius-1.12.5/lib/batik-awt-util-1.12.jar differ
diff --git a/reseau/filius/filius-1.12.5/lib/batik-bridge-1.12.jar b/reseau/filius/filius-1.12.5/lib/batik-bridge-1.12.jar
new file mode 100644
index 0000000..535fcd9
Binary files /dev/null and b/reseau/filius/filius-1.12.5/lib/batik-bridge-1.12.jar differ
diff --git a/reseau/filius/filius-1.12.5/lib/batik-codec-1.12.jar b/reseau/filius/filius-1.12.5/lib/batik-codec-1.12.jar
new file mode 100644
index 0000000..b456473
Binary files /dev/null and b/reseau/filius/filius-1.12.5/lib/batik-codec-1.12.jar differ
diff --git a/reseau/filius/filius-1.12.5/lib/batik-constants-1.12.jar b/reseau/filius/filius-1.12.5/lib/batik-constants-1.12.jar
new file mode 100644
index 0000000..bec1414
Binary files /dev/null and b/reseau/filius/filius-1.12.5/lib/batik-constants-1.12.jar differ
diff --git a/reseau/filius/filius-1.12.5/lib/batik-css-1.12.jar b/reseau/filius/filius-1.12.5/lib/batik-css-1.12.jar
new file mode 100644
index 0000000..c136f4a
Binary files /dev/null and b/reseau/filius/filius-1.12.5/lib/batik-css-1.12.jar differ
diff --git a/reseau/filius/filius-1.12.5/lib/batik-dom-1.12.jar b/reseau/filius/filius-1.12.5/lib/batik-dom-1.12.jar
new file mode 100644
index 0000000..d08d454
Binary files /dev/null and b/reseau/filius/filius-1.12.5/lib/batik-dom-1.12.jar differ
diff --git a/reseau/filius/filius-1.12.5/lib/batik-ext-1.12.jar b/reseau/filius/filius-1.12.5/lib/batik-ext-1.12.jar
new file mode 100644
index 0000000..875a36a
Binary files /dev/null and b/reseau/filius/filius-1.12.5/lib/batik-ext-1.12.jar differ
diff --git a/reseau/filius/filius-1.12.5/lib/batik-gvt-1.12.jar b/reseau/filius/filius-1.12.5/lib/batik-gvt-1.12.jar
new file mode 100644
index 0000000..05a1d70
Binary files /dev/null and b/reseau/filius/filius-1.12.5/lib/batik-gvt-1.12.jar differ
diff --git a/reseau/filius/filius-1.12.5/lib/batik-i18n-1.12.jar b/reseau/filius/filius-1.12.5/lib/batik-i18n-1.12.jar
new file mode 100644
index 0000000..de84a39
Binary files /dev/null and b/reseau/filius/filius-1.12.5/lib/batik-i18n-1.12.jar differ
diff --git a/reseau/filius/filius-1.12.5/lib/batik-parser-1.12.jar b/reseau/filius/filius-1.12.5/lib/batik-parser-1.12.jar
new file mode 100644
index 0000000..67f7f37
Binary files /dev/null and b/reseau/filius/filius-1.12.5/lib/batik-parser-1.12.jar differ
diff --git a/reseau/filius/filius-1.12.5/lib/batik-script-1.12.jar b/reseau/filius/filius-1.12.5/lib/batik-script-1.12.jar
new file mode 100644
index 0000000..46f48b8
Binary files /dev/null and b/reseau/filius/filius-1.12.5/lib/batik-script-1.12.jar differ
diff --git a/reseau/filius/filius-1.12.5/lib/batik-svg-dom-1.12.jar b/reseau/filius/filius-1.12.5/lib/batik-svg-dom-1.12.jar
new file mode 100644
index 0000000..91a01f8
Binary files /dev/null and b/reseau/filius/filius-1.12.5/lib/batik-svg-dom-1.12.jar differ
diff --git a/reseau/filius/filius-1.12.5/lib/batik-svggen-1.12.jar b/reseau/filius/filius-1.12.5/lib/batik-svggen-1.12.jar
new file mode 100644
index 0000000..ad0386e
Binary files /dev/null and b/reseau/filius/filius-1.12.5/lib/batik-svggen-1.12.jar differ
diff --git a/reseau/filius/filius-1.12.5/lib/batik-transcoder-1.12.jar b/reseau/filius/filius-1.12.5/lib/batik-transcoder-1.12.jar
new file mode 100644
index 0000000..f0fcc82
Binary files /dev/null and b/reseau/filius/filius-1.12.5/lib/batik-transcoder-1.12.jar differ
diff --git a/reseau/filius/filius-1.12.5/lib/batik-util-1.12.jar b/reseau/filius/filius-1.12.5/lib/batik-util-1.12.jar
new file mode 100644
index 0000000..cd1f9bd
Binary files /dev/null and b/reseau/filius/filius-1.12.5/lib/batik-util-1.12.jar differ
diff --git a/reseau/filius/filius-1.12.5/lib/batik-xml-1.12.jar b/reseau/filius/filius-1.12.5/lib/batik-xml-1.12.jar
new file mode 100644
index 0000000..89a3a4f
Binary files /dev/null and b/reseau/filius/filius-1.12.5/lib/batik-xml-1.12.jar differ
diff --git a/reseau/filius/filius-1.12.5/lib/commons-cli-1.4.jar b/reseau/filius/filius-1.12.5/lib/commons-cli-1.4.jar
new file mode 100644
index 0000000..22deb30
Binary files /dev/null and b/reseau/filius/filius-1.12.5/lib/commons-cli-1.4.jar differ
diff --git a/reseau/filius/filius-1.12.5/lib/commons-codec-1.2.jar b/reseau/filius/filius-1.12.5/lib/commons-codec-1.2.jar
new file mode 100644
index 0000000..67cb720
Binary files /dev/null and b/reseau/filius/filius-1.12.5/lib/commons-codec-1.2.jar differ
diff --git a/reseau/filius/filius-1.12.5/lib/commons-httpclient-3.1.jar b/reseau/filius/filius-1.12.5/lib/commons-httpclient-3.1.jar
new file mode 100644
index 0000000..7c59774
Binary files /dev/null and b/reseau/filius/filius-1.12.5/lib/commons-httpclient-3.1.jar differ
diff --git a/reseau/filius/filius-1.12.5/lib/commons-io-2.8.0.jar b/reseau/filius/filius-1.12.5/lib/commons-io-2.8.0.jar
new file mode 100644
index 0000000..177e58d
Binary files /dev/null and b/reseau/filius/filius-1.12.5/lib/commons-io-2.8.0.jar differ
diff --git a/reseau/filius/filius-1.12.5/lib/commons-lang3-3.3.2.jar b/reseau/filius/filius-1.12.5/lib/commons-lang3-3.3.2.jar
new file mode 100644
index 0000000..2ce08ae
Binary files /dev/null and b/reseau/filius/filius-1.12.5/lib/commons-lang3-3.3.2.jar differ
diff --git a/reseau/filius/filius-1.12.5/lib/commons-logging-1.0.4.jar b/reseau/filius/filius-1.12.5/lib/commons-logging-1.0.4.jar
new file mode 100644
index 0000000..b73a80f
Binary files /dev/null and b/reseau/filius/filius-1.12.5/lib/commons-logging-1.0.4.jar differ
diff --git a/reseau/filius/filius-1.12.5/lib/htmlparser-1.6.jar b/reseau/filius/filius-1.12.5/lib/htmlparser-1.6.jar
new file mode 100644
index 0000000..2981ca5
Binary files /dev/null and b/reseau/filius/filius-1.12.5/lib/htmlparser-1.6.jar differ
diff --git a/reseau/filius/filius-1.12.5/lib/itextpdf-5.5.13.1.jar b/reseau/filius/filius-1.12.5/lib/itextpdf-5.5.13.1.jar
new file mode 100644
index 0000000..83eb358
Binary files /dev/null and b/reseau/filius/filius-1.12.5/lib/itextpdf-5.5.13.1.jar differ
diff --git a/reseau/filius/filius-1.12.5/lib/logback-classic-1.2.3.jar b/reseau/filius/filius-1.12.5/lib/logback-classic-1.2.3.jar
new file mode 100644
index 0000000..bed00c0
Binary files /dev/null and b/reseau/filius/filius-1.12.5/lib/logback-classic-1.2.3.jar differ
diff --git a/reseau/filius/filius-1.12.5/lib/logback-core-1.2.3.jar b/reseau/filius/filius-1.12.5/lib/logback-core-1.2.3.jar
new file mode 100644
index 0000000..487b395
Binary files /dev/null and b/reseau/filius/filius-1.12.5/lib/logback-core-1.2.3.jar differ
diff --git a/reseau/filius/filius-1.12.5/lib/semantic-version-2.1.0.jar b/reseau/filius/filius-1.12.5/lib/semantic-version-2.1.0.jar
new file mode 100644
index 0000000..e7177ce
Binary files /dev/null and b/reseau/filius/filius-1.12.5/lib/semantic-version-2.1.0.jar differ
diff --git a/reseau/filius/filius-1.12.5/lib/serializer-2.7.2.jar b/reseau/filius/filius-1.12.5/lib/serializer-2.7.2.jar
new file mode 100644
index 0000000..10c881c
Binary files /dev/null and b/reseau/filius/filius-1.12.5/lib/serializer-2.7.2.jar differ
diff --git a/reseau/filius/filius-1.12.5/lib/slf4j-api-1.7.30.jar b/reseau/filius/filius-1.12.5/lib/slf4j-api-1.7.30.jar
new file mode 100644
index 0000000..29ac26f
Binary files /dev/null and b/reseau/filius/filius-1.12.5/lib/slf4j-api-1.7.30.jar differ
diff --git a/reseau/filius/filius-1.12.5/lib/xalan-2.7.2.jar b/reseau/filius/filius-1.12.5/lib/xalan-2.7.2.jar
new file mode 100644
index 0000000..abdabe3
Binary files /dev/null and b/reseau/filius/filius-1.12.5/lib/xalan-2.7.2.jar differ
diff --git a/reseau/filius/filius-1.12.5/lib/xml-apis-1.4.01.jar b/reseau/filius/filius-1.12.5/lib/xml-apis-1.4.01.jar
new file mode 100644
index 0000000..4673346
Binary files /dev/null and b/reseau/filius/filius-1.12.5/lib/xml-apis-1.4.01.jar differ
diff --git a/reseau/filius/filius-1.12.5/lib/xml-apis-ext-1.3.04.jar b/reseau/filius/filius-1.12.5/lib/xml-apis-ext-1.3.04.jar
new file mode 100644
index 0000000..a7869d6
Binary files /dev/null and b/reseau/filius/filius-1.12.5/lib/xml-apis-ext-1.3.04.jar differ
diff --git a/reseau/filius/filius-1.12.5/lib/xmlgraphics-commons-2.4.jar b/reseau/filius/filius-1.12.5/lib/xmlgraphics-commons-2.4.jar
new file mode 100644
index 0000000..62dd65d
Binary files /dev/null and b/reseau/filius/filius-1.12.5/lib/xmlgraphics-commons-2.4.jar differ
diff --git a/reseau/filius/filius-1.12.5/licenses.html b/reseau/filius/filius-1.12.5/licenses.html
new file mode 100644
index 0000000..cc7bea9
--- /dev/null
+++ b/reseau/filius/filius-1.12.5/licenses.html
@@ -0,0 +1,747 @@
+
+
+
+
+
+
+
+ Filius – Project Licenses
+
+
+
+
+
+
+
+
Filius
+
+
+
+
+
+
+
+ Last Published: 2021-09-01
+ | Version: 1.12.5
+
Typically the licenses listed for the project are that of the project itself, and not of dependencies.
+
Project Licenses
+
GNU General Public License v3 (GPLv3)
+
+
GNU GENERAL PUBLIC LICENSE
+ Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+ Preamble
+
+ The GNU General Public License is a free, copyleft license for
+software and other kinds of works.
+
+ The licenses for most software and other practical works are designed
+to take away your freedom to share and change the works. By contrast,
+the GNU General Public License is intended to guarantee your freedom to
+share and change all versions of a program--to make sure it remains free
+software for all its users. We, the Free Software Foundation, use the
+GNU General Public License for most of our software; it applies also to
+any other work released this way by its authors. You can apply it to
+your programs, too.
+
+ When we speak of free software, we are referring to freedom, not
+price. Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+them if you wish), that you receive source code or can get it if you
+want it, that you can change the software or use pieces of it in new
+free programs, and that you know you can do these things.
+
+ To protect your rights, we need to prevent others from denying you
+these rights or asking you to surrender the rights. Therefore, you have
+certain responsibilities if you distribute copies of the software, or if
+you modify it: responsibilities to respect the freedom of others.
+
+ For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must pass on to the recipients the same
+freedoms that you received. You must make sure that they, too, receive
+or can get the source code. And you must show them these terms so they
+know their rights.
+
+ Developers that use the GNU GPL protect your rights with two steps:
+(1) assert copyright on the software, and (2) offer you this License
+giving you legal permission to copy, distribute and/or modify it.
+
+ For the developers' and authors' protection, the GPL clearly explains
+that there is no warranty for this free software. For both users' and
+authors' sake, the GPL requires that modified versions be marked as
+changed, so that their problems will not be attributed erroneously to
+authors of previous versions.
+
+ Some devices are designed to deny users access to install or run
+modified versions of the software inside them, although the manufacturer
+can do so. This is fundamentally incompatible with the aim of
+protecting users' freedom to change the software. The systematic
+pattern of such abuse occurs in the area of products for individuals to
+use, which is precisely where it is most unacceptable. Therefore, we
+have designed this version of the GPL to prohibit the practice for those
+products. If such problems arise substantially in other domains, we
+stand ready to extend this provision to those domains in future versions
+of the GPL, as needed to protect the freedom of users.
+
+ Finally, every program is threatened constantly by software patents.
+States should not allow patents to restrict development and use of
+software on general-purpose computers, but in those that do, we wish to
+avoid the special danger that patents applied to a free program could
+make it effectively proprietary. To prevent this, the GPL assures that
+patents cannot be used to render the program non-free.
+
+ The precise terms and conditions for copying, distribution and
+modification follow.
+
+ TERMS AND CONDITIONS
+
+ 0. Definitions.
+
+ "This License" refers to version 3 of the GNU General Public License.
+
+ "Copyright" also means copyright-like laws that apply to other kinds of
+works, such as semiconductor masks.
+
+ "The Program" refers to any copyrightable work licensed under this
+License. Each licensee is addressed as "you". "Licensees" and
+"recipients" may be individuals or organizations.
+
+ To "modify" a work means to copy from or adapt all or part of the work
+in a fashion requiring copyright permission, other than the making of an
+exact copy. The resulting work is called a "modified version" of the
+earlier work or a work "based on" the earlier work.
+
+ A "covered work" means either the unmodified Program or a work based
+on the Program.
+
+ To "propagate" a work means to do anything with it that, without
+permission, would make you directly or secondarily liable for
+infringement under applicable copyright law, except executing it on a
+computer or modifying a private copy. Propagation includes copying,
+distribution (with or without modification), making available to the
+public, and in some countries other activities as well.
+
+ To "convey" a work means any kind of propagation that enables other
+parties to make or receive copies. Mere interaction with a user through
+a computer network, with no transfer of a copy, is not conveying.
+
+ An interactive user interface displays "Appropriate Legal Notices"
+to the extent that it includes a convenient and prominently visible
+feature that (1) displays an appropriate copyright notice, and (2)
+tells the user that there is no warranty for the work (except to the
+extent that warranties are provided), that licensees may convey the
+work under this License, and how to view a copy of this License. If
+the interface presents a list of user commands or options, such as a
+menu, a prominent item in the list meets this criterion.
+
+ 1. Source Code.
+
+ The "source code" for a work means the preferred form of the work
+for making modifications to it. "Object code" means any non-source
+form of a work.
+
+ A "Standard Interface" means an interface that either is an official
+standard defined by a recognized standards body, or, in the case of
+interfaces specified for a particular programming language, one that
+is widely used among developers working in that language.
+
+ The "System Libraries" of an executable work include anything, other
+than the work as a whole, that (a) is included in the normal form of
+packaging a Major Component, but which is not part of that Major
+Component, and (b) serves only to enable use of the work with that
+Major Component, or to implement a Standard Interface for which an
+implementation is available to the public in source code form. A
+"Major Component", in this context, means a major essential component
+(kernel, window system, and so on) of the specific operating system
+(if any) on which the executable work runs, or a compiler used to
+produce the work, or an object code interpreter used to run it.
+
+ The "Corresponding Source" for a work in object code form means all
+the source code needed to generate, install, and (for an executable
+work) run the object code and to modify the work, including scripts to
+control those activities. However, it does not include the work's
+System Libraries, or general-purpose tools or generally available free
+programs which are used unmodified in performing those activities but
+which are not part of the work. For example, Corresponding Source
+includes interface definition files associated with source files for
+the work, and the source code for shared libraries and dynamically
+linked subprograms that the work is specifically designed to require,
+such as by intimate data communication or control flow between those
+subprograms and other parts of the work.
+
+ The Corresponding Source need not include anything that users
+can regenerate automatically from other parts of the Corresponding
+Source.
+
+ The Corresponding Source for a work in source code form is that
+same work.
+
+ 2. Basic Permissions.
+
+ All rights granted under this License are granted for the term of
+copyright on the Program, and are irrevocable provided the stated
+conditions are met. This License explicitly affirms your unlimited
+permission to run the unmodified Program. The output from running a
+covered work is covered by this License only if the output, given its
+content, constitutes a covered work. This License acknowledges your
+rights of fair use or other equivalent, as provided by copyright law.
+
+ You may make, run and propagate covered works that you do not
+convey, without conditions so long as your license otherwise remains
+in force. You may convey covered works to others for the sole purpose
+of having them make modifications exclusively for you, or provide you
+with facilities for running those works, provided that you comply with
+the terms of this License in conveying all material for which you do
+not control copyright. Those thus making or running the covered works
+for you must do so exclusively on your behalf, under your direction
+and control, on terms that prohibit them from making any copies of
+your copyrighted material outside their relationship with you.
+
+ Conveying under any other circumstances is permitted solely under
+the conditions stated below. Sublicensing is not allowed; section 10
+makes it unnecessary.
+
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+
+ No covered work shall be deemed part of an effective technological
+measure under any applicable law fulfilling obligations under article
+11 of the WIPO copyright treaty adopted on 20 December 1996, or
+similar laws prohibiting or restricting circumvention of such
+measures.
+
+ When you convey a covered work, you waive any legal power to forbid
+circumvention of technological measures to the extent such circumvention
+is effected by exercising rights under this License with respect to
+the covered work, and you disclaim any intention to limit operation or
+modification of the work as a means of enforcing, against the work's
+users, your or third parties' legal rights to forbid circumvention of
+technological measures.
+
+ 4. Conveying Verbatim Copies.
+
+ You may convey verbatim copies of the Program's source code as you
+receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice;
+keep intact all notices stating that this License and any
+non-permissive terms added in accord with section 7 apply to the code;
+keep intact all notices of the absence of any warranty; and give all
+recipients a copy of this License along with the Program.
+
+ You may charge any price or no price for each copy that you convey,
+and you may offer support or warranty protection for a fee.
+
+ 5. Conveying Modified Source Versions.
+
+ You may convey a work based on the Program, or the modifications to
+produce it from the Program, in the form of source code under the
+terms of section 4, provided that you also meet all of these conditions:
+
+ a) The work must carry prominent notices stating that you modified
+ it, and giving a relevant date.
+
+ b) The work must carry prominent notices stating that it is
+ released under this License and any conditions added under section
+ 7. This requirement modifies the requirement in section 4 to
+ "keep intact all notices".
+
+ c) You must license the entire work, as a whole, under this
+ License to anyone who comes into possession of a copy. This
+ License will therefore apply, along with any applicable section 7
+ additional terms, to the whole of the work, and all its parts,
+ regardless of how they are packaged. This License gives no
+ permission to license the work in any other way, but it does not
+ invalidate such permission if you have separately received it.
+
+ d) If the work has interactive user interfaces, each must display
+ Appropriate Legal Notices; however, if the Program has interactive
+ interfaces that do not display Appropriate Legal Notices, your
+ work need not make them do so.
+
+ A compilation of a covered work with other separate and independent
+works, which are not by their nature extensions of the covered work,
+and which are not combined with it such as to form a larger program,
+in or on a volume of a storage or distribution medium, is called an
+"aggregate" if the compilation and its resulting copyright are not
+used to limit the access or legal rights of the compilation's users
+beyond what the individual works permit. Inclusion of a covered work
+in an aggregate does not cause this License to apply to the other
+parts of the aggregate.
+
+ 6. Conveying Non-Source Forms.
+
+ You may convey a covered work in object code form under the terms
+of sections 4 and 5, provided that you also convey the
+machine-readable Corresponding Source under the terms of this License,
+in one of these ways:
+
+ a) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by the
+ Corresponding Source fixed on a durable physical medium
+ customarily used for software interchange.
+
+ b) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by a
+ written offer, valid for at least three years and valid for as
+ long as you offer spare parts or customer support for that product
+ model, to give anyone who possesses the object code either (1) a
+ copy of the Corresponding Source for all the software in the
+ product that is covered by this License, on a durable physical
+ medium customarily used for software interchange, for a price no
+ more than your reasonable cost of physically performing this
+ conveying of source, or (2) access to copy the
+ Corresponding Source from a network server at no charge.
+
+ c) Convey individual copies of the object code with a copy of the
+ written offer to provide the Corresponding Source. This
+ alternative is allowed only occasionally and noncommercially, and
+ only if you received the object code with such an offer, in accord
+ with subsection 6b.
+
+ d) Convey the object code by offering access from a designated
+ place (gratis or for a charge), and offer equivalent access to the
+ Corresponding Source in the same way through the same place at no
+ further charge. You need not require recipients to copy the
+ Corresponding Source along with the object code. If the place to
+ copy the object code is a network server, the Corresponding Source
+ may be on a different server (operated by you or a third party)
+ that supports equivalent copying facilities, provided you maintain
+ clear directions next to the object code saying where to find the
+ Corresponding Source. Regardless of what server hosts the
+ Corresponding Source, you remain obligated to ensure that it is
+ available for as long as needed to satisfy these requirements.
+
+ e) Convey the object code using peer-to-peer transmission, provided
+ you inform other peers where the object code and Corresponding
+ Source of the work are being offered to the general public at no
+ charge under subsection 6d.
+
+ A separable portion of the object code, whose source code is excluded
+from the Corresponding Source as a System Library, need not be
+included in conveying the object code work.
+
+ A "User Product" is either (1) a "consumer product", which means any
+tangible personal property which is normally used for personal, family,
+or household purposes, or (2) anything designed or sold for incorporation
+into a dwelling. In determining whether a product is a consumer product,
+doubtful cases shall be resolved in favor of coverage. For a particular
+product received by a particular user, "normally used" refers to a
+typical or common use of that class of product, regardless of the status
+of the particular user or of the way in which the particular user
+actually uses, or expects or is expected to use, the product. A product
+is a consumer product regardless of whether the product has substantial
+commercial, industrial or non-consumer uses, unless such uses represent
+the only significant mode of use of the product.
+
+ "Installation Information" for a User Product means any methods,
+procedures, authorization keys, or other information required to install
+and execute modified versions of a covered work in that User Product from
+a modified version of its Corresponding Source. The information must
+suffice to ensure that the continued functioning of the modified object
+code is in no case prevented or interfered with solely because
+modification has been made.
+
+ If you convey an object code work under this section in, or with, or
+specifically for use in, a User Product, and the conveying occurs as
+part of a transaction in which the right of possession and use of the
+User Product is transferred to the recipient in perpetuity or for a
+fixed term (regardless of how the transaction is characterized), the
+Corresponding Source conveyed under this section must be accompanied
+by the Installation Information. But this requirement does not apply
+if neither you nor any third party retains the ability to install
+modified object code on the User Product (for example, the work has
+been installed in ROM).
+
+ The requirement to provide Installation Information does not include a
+requirement to continue to provide support service, warranty, or updates
+for a work that has been modified or installed by the recipient, or for
+the User Product in which it has been modified or installed. Access to a
+network may be denied when the modification itself materially and
+adversely affects the operation of the network or violates the rules and
+protocols for communication across the network.
+
+ Corresponding Source conveyed, and Installation Information provided,
+in accord with this section must be in a format that is publicly
+documented (and with an implementation available to the public in
+source code form), and must require no special password or key for
+unpacking, reading or copying.
+
+ 7. Additional Terms.
+
+ "Additional permissions" are terms that supplement the terms of this
+License by making exceptions from one or more of its conditions.
+Additional permissions that are applicable to the entire Program shall
+be treated as though they were included in this License, to the extent
+that they are valid under applicable law. If additional permissions
+apply only to part of the Program, that part may be used separately
+under those permissions, but the entire Program remains governed by
+this License without regard to the additional permissions.
+
+ When you convey a copy of a covered work, you may at your option
+remove any additional permissions from that copy, or from any part of
+it. (Additional permissions may be written to require their own
+removal in certain cases when you modify the work.) You may place
+additional permissions on material, added by you to a covered work,
+for which you have or can give appropriate copyright permission.
+
+ Notwithstanding any other provision of this License, for material you
+add to a covered work, you may (if authorized by the copyright holders of
+that material) supplement the terms of this License with terms:
+
+ a) Disclaiming warranty or limiting liability differently from the
+ terms of sections 15 and 16 of this License; or
+
+ b) Requiring preservation of specified reasonable legal notices or
+ author attributions in that material or in the Appropriate Legal
+ Notices displayed by works containing it; or
+
+ c) Prohibiting misrepresentation of the origin of that material, or
+ requiring that modified versions of such material be marked in
+ reasonable ways as different from the original version; or
+
+ d) Limiting the use for publicity purposes of names of licensors or
+ authors of the material; or
+
+ e) Declining to grant rights under trademark law for use of some
+ trade names, trademarks, or service marks; or
+
+ f) Requiring indemnification of licensors and authors of that
+ material by anyone who conveys the material (or modified versions of
+ it) with contractual assumptions of liability to the recipient, for
+ any liability that these contractual assumptions directly impose on
+ those licensors and authors.
+
+ All other non-permissive additional terms are considered "further
+restrictions" within the meaning of section 10. If the Program as you
+received it, or any part of it, contains a notice stating that it is
+governed by this License along with a term that is a further
+restriction, you may remove that term. If a license document contains
+a further restriction but permits relicensing or conveying under this
+License, you may add to a covered work material governed by the terms
+of that license document, provided that the further restriction does
+not survive such relicensing or conveying.
+
+ If you add terms to a covered work in accord with this section, you
+must place, in the relevant source files, a statement of the
+additional terms that apply to those files, or a notice indicating
+where to find the applicable terms.
+
+ Additional terms, permissive or non-permissive, may be stated in the
+form of a separately written license, or stated as exceptions;
+the above requirements apply either way.
+
+ 8. Termination.
+
+ You may not propagate or modify a covered work except as expressly
+provided under this License. Any attempt otherwise to propagate or
+modify it is void, and will automatically terminate your rights under
+this License (including any patent licenses granted under the third
+paragraph of section 11).
+
+ However, if you cease all violation of this License, then your
+license from a particular copyright holder is reinstated (a)
+provisionally, unless and until the copyright holder explicitly and
+finally terminates your license, and (b) permanently, if the copyright
+holder fails to notify you of the violation by some reasonable means
+prior to 60 days after the cessation.
+
+ Moreover, your license from a particular copyright holder is
+reinstated permanently if the copyright holder notifies you of the
+violation by some reasonable means, this is the first time you have
+received notice of violation of this License (for any work) from that
+copyright holder, and you cure the violation prior to 30 days after
+your receipt of the notice.
+
+ Termination of your rights under this section does not terminate the
+licenses of parties who have received copies or rights from you under
+this License. If your rights have been terminated and not permanently
+reinstated, you do not qualify to receive new licenses for the same
+material under section 10.
+
+ 9. Acceptance Not Required for Having Copies.
+
+ You are not required to accept this License in order to receive or
+run a copy of the Program. Ancillary propagation of a covered work
+occurring solely as a consequence of using peer-to-peer transmission
+to receive a copy likewise does not require acceptance. However,
+nothing other than this License grants you permission to propagate or
+modify any covered work. These actions infringe copyright if you do
+not accept this License. Therefore, by modifying or propagating a
+covered work, you indicate your acceptance of this License to do so.
+
+ 10. Automatic Licensing of Downstream Recipients.
+
+ Each time you convey a covered work, the recipient automatically
+receives a license from the original licensors, to run, modify and
+propagate that work, subject to this License. You are not responsible
+for enforcing compliance by third parties with this License.
+
+ An "entity transaction" is a transaction transferring control of an
+organization, or substantially all assets of one, or subdividing an
+organization, or merging organizations. If propagation of a covered
+work results from an entity transaction, each party to that
+transaction who receives a copy of the work also receives whatever
+licenses to the work the party's predecessor in interest had or could
+give under the previous paragraph, plus a right to possession of the
+Corresponding Source of the work from the predecessor in interest, if
+the predecessor has it or can get it with reasonable efforts.
+
+ You may not impose any further restrictions on the exercise of the
+rights granted or affirmed under this License. For example, you may
+not impose a license fee, royalty, or other charge for exercise of
+rights granted under this License, and you may not initiate litigation
+(including a cross-claim or counterclaim in a lawsuit) alleging that
+any patent claim is infringed by making, using, selling, offering for
+sale, or importing the Program or any portion of it.
+
+ 11. Patents.
+
+ A "contributor" is a copyright holder who authorizes use under this
+License of the Program or a work on which the Program is based. The
+work thus licensed is called the contributor's "contributor version".
+
+ A contributor's "essential patent claims" are all patent claims
+owned or controlled by the contributor, whether already acquired or
+hereafter acquired, that would be infringed by some manner, permitted
+by this License, of making, using, or selling its contributor version,
+but do not include claims that would be infringed only as a
+consequence of further modification of the contributor version. For
+purposes of this definition, "control" includes the right to grant
+patent sublicenses in a manner consistent with the requirements of
+this License.
+
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
+patent license under the contributor's essential patent claims, to
+make, use, sell, offer for sale, import and otherwise run, modify and
+propagate the contents of its contributor version.
+
+ In the following three paragraphs, a "patent license" is any express
+agreement or commitment, however denominated, not to enforce a patent
+(such as an express permission to practice a patent or covenant not to
+sue for patent infringement). To "grant" such a patent license to a
+party means to make such an agreement or commitment not to enforce a
+patent against the party.
+
+ If you convey a covered work, knowingly relying on a patent license,
+and the Corresponding Source of the work is not available for anyone
+to copy, free of charge and under the terms of this License, through a
+publicly available network server or other readily accessible means,
+then you must either (1) cause the Corresponding Source to be so
+available, or (2) arrange to deprive yourself of the benefit of the
+patent license for this particular work, or (3) arrange, in a manner
+consistent with the requirements of this License, to extend the patent
+license to downstream recipients. "Knowingly relying" means you have
+actual knowledge that, but for the patent license, your conveying the
+covered work in a country, or your recipient's use of the covered work
+in a country, would infringe one or more identifiable patents in that
+country that you have reason to believe are valid.
+
+ If, pursuant to or in connection with a single transaction or
+arrangement, you convey, or propagate by procuring conveyance of, a
+covered work, and grant a patent license to some of the parties
+receiving the covered work authorizing them to use, propagate, modify
+or convey a specific copy of the covered work, then the patent license
+you grant is automatically extended to all recipients of the covered
+work and works based on it.
+
+ A patent license is "discriminatory" if it does not include within
+the scope of its coverage, prohibits the exercise of, or is
+conditioned on the non-exercise of one or more of the rights that are
+specifically granted under this License. You may not convey a covered
+work if you are a party to an arrangement with a third party that is
+in the business of distributing software, under which you make payment
+to the third party based on the extent of your activity of conveying
+the work, and under which the third party grants, to any of the
+parties who would receive the covered work from you, a discriminatory
+patent license (a) in connection with copies of the covered work
+conveyed by you (or copies made from those copies), or (b) primarily
+for and in connection with specific products or compilations that
+contain the covered work, unless you entered into that arrangement,
+or that patent license was granted, prior to 28 March 2007.
+
+ Nothing in this License shall be construed as excluding or limiting
+any implied license or other defenses to infringement that may
+otherwise be available to you under applicable patent law.
+
+ 12. No Surrender of Others' Freedom.
+
+ If conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot convey a
+covered work so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you may
+not convey it at all. For example, if you agree to terms that obligate you
+to collect a royalty for further conveying from those to whom you convey
+the Program, the only way you could satisfy both those terms and this
+License would be to refrain entirely from conveying the Program.
+
+ 13. Use with the GNU Affero General Public License.
+
+ Notwithstanding any other provision of this License, you have
+permission to link or combine any covered work with a work licensed
+under version 3 of the GNU Affero General Public License into a single
+combined work, and to convey the resulting work. The terms of this
+License will continue to apply to the part which is the covered work,
+but the special requirements of the GNU Affero General Public License,
+section 13, concerning interaction through a network will apply to the
+combination as such.
+
+ 14. Revised Versions of this License.
+
+ The Free Software Foundation may publish revised and/or new versions of
+the GNU General Public License from time to time. Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+ Each version is given a distinguishing version number. If the
+Program specifies that a certain numbered version of the GNU General
+Public License "or any later version" applies to it, you have the
+option of following the terms and conditions either of that numbered
+version or of any later version published by the Free Software
+Foundation. If the Program does not specify a version number of the
+GNU General Public License, you may choose any version ever published
+by the Free Software Foundation.
+
+ If the Program specifies that a proxy can decide which future
+versions of the GNU General Public License can be used, that proxy's
+public statement of acceptance of a version permanently authorizes you
+to choose that version for the Program.
+
+ Later license versions may give you additional or different
+permissions. However, no additional obligations are imposed on any
+author or copyright holder as a result of your choosing to follow a
+later version.
+
+ 15. Disclaimer of Warranty.
+
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
+APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
+OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
+IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+ 16. Limitation of Liability.
+
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
+USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
+PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGES.
+
+ 17. Interpretation of Sections 15 and 16.
+
+ If the disclaimer of warranty and limitation of liability provided
+above cannot be given local legal effect according to their terms,
+reviewing courts shall apply local law that most closely approximates
+an absolute waiver of all civil liability in connection with the
+Program, unless a warranty or assumption of liability accompanies a
+copy of the Program in return for a fee.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Programs
+
+ If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+ To do so, attach the following notices to the program. It is safest
+to attach them to the start of each source file to most effectively
+state the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+ <one line to give the program's name and a brief idea of what it does.>
+ Copyright (C) <year> <name of author>
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
+
+Also add information on how to contact you by electronic and paper mail.
+
+ If the program does terminal interaction, make it output a short
+notice like this when it starts in an interactive mode:
+
+ <program> Copyright (C) <year> <name of author>
+ This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+ This is free software, and you are welcome to redistribute it
+ under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License. Of course, your program's commands
+might be different; for a GUI interface, you would use an "about box".
+
+ You should also get your employer (if you work as a programmer) or school,
+if any, to sign a "copyright disclaimer" for the program, if necessary.
+For more information on this, and how to apply and follow the GNU GPL, see
+<https://www.gnu.org/licenses/>.
+
+ The GNU General Public License does not permit incorporating your program
+into proprietary programs. If your program is a subroutine library, you
+may consider it more useful to permit linking proprietary applications with
+the library. If this is what you want to do, use the GNU Lesser General
+Public License instead of this License. But first, please read
+<https://www.gnu.org/licenses/why-not-lgpl.html>.
+
+
+
+
+
+
+
+
+
diff --git a/reseau/filius/filius-1.12.5/project-info.html b/reseau/filius/filius-1.12.5/project-info.html
new file mode 100644
index 0000000..950aa8a
--- /dev/null
+++ b/reseau/filius/filius-1.12.5/project-info.html
@@ -0,0 +1,80 @@
+
+
+
+
+
+
+
+ Filius – Project Information
+
+
+
+
+
+
+
+
Filius
+
+
+
+
+
+
+
+ Last Published: 2021-09-01
+ | Version: 1.12.5
+
This document provides an overview of the various documents and links that are part of this project's general information. All of this content is automatically generated by Maven on behalf of the project.
+
+
+
diff --git a/reseau/filius/filius-1.12.5/tmpl/firewall_konfig_webseite_de_DE.txt b/reseau/filius/filius-1.12.5/tmpl/firewall_konfig_webseite_de_DE.txt
new file mode 100644
index 0000000..7d516ba
--- /dev/null
+++ b/reseau/filius/filius-1.12.5/tmpl/firewall_konfig_webseite_de_DE.txt
@@ -0,0 +1,176 @@
+
+
+ Konfiguration der Firewall auf dem Vermittlungsrechner
+
+
+
+:errorMsg:
+
+
+
diff --git a/reseau/filius/filius-1.12.5/tmpl/firewall_konfig_webseite_en_GB.txt b/reseau/filius/filius-1.12.5/tmpl/firewall_konfig_webseite_en_GB.txt
new file mode 100644
index 0000000..a48f908
--- /dev/null
+++ b/reseau/filius/filius-1.12.5/tmpl/firewall_konfig_webseite_en_GB.txt
@@ -0,0 +1,177 @@
+
+
+ Router Firewall Configuration
+
+
+
+:errorMsg:
+
+
+
diff --git a/reseau/filius/filius-1.12.5/tmpl/firewall_konfig_webseite_fr_FR.txt b/reseau/filius/filius-1.12.5/tmpl/firewall_konfig_webseite_fr_FR.txt
new file mode 100644
index 0000000..dc7c0e6
--- /dev/null
+++ b/reseau/filius/filius-1.12.5/tmpl/firewall_konfig_webseite_fr_FR.txt
@@ -0,0 +1,194 @@
+
+
+
+ Configuration du parefeu du routeur
+
+
+
+
+:errorMsg:
+
+
+
diff --git a/reseau/filius/filius-1.12.5/tmpl/http_fehler_de_DE.txt b/reseau/filius/filius-1.12.5/tmpl/http_fehler_de_DE.txt
new file mode 100644
index 0000000..490f585
--- /dev/null
+++ b/reseau/filius/filius-1.12.5/tmpl/http_fehler_de_DE.txt
@@ -0,0 +1,9 @@
+
+
+ Fehler :meldung: (:code:)
+
+
+
:meldung:
+
Es ist ein Fehler aufgetreten (HTTP-Status: :code:)
+
+
\ No newline at end of file
diff --git a/reseau/filius/filius-1.12.5/tmpl/http_fehler_en_GB.txt b/reseau/filius/filius-1.12.5/tmpl/http_fehler_en_GB.txt
new file mode 100644
index 0000000..d755def
--- /dev/null
+++ b/reseau/filius/filius-1.12.5/tmpl/http_fehler_en_GB.txt
@@ -0,0 +1,9 @@
+
+
+ Error :meldung: (:code:)
+
+
+
:meldung:
+
An error occurred (HTTP-Status: :code:)
+
+
\ No newline at end of file
diff --git a/reseau/filius/filius-1.12.5/tmpl/http_fehler_fr_FR.txt b/reseau/filius/filius-1.12.5/tmpl/http_fehler_fr_FR.txt
new file mode 100644
index 0000000..f5480ac
--- /dev/null
+++ b/reseau/filius/filius-1.12.5/tmpl/http_fehler_fr_FR.txt
@@ -0,0 +1,10 @@
+
+
+
+ Erreur :meldung: (:code:)
+
+
+
:meldung:
+
Une erreur s’est produite (HTTP-Status: :code:)
+
+
\ No newline at end of file
diff --git a/reseau/filius/filius-1.12.5/tmpl/quelltext_vorlagen/client.txt b/reseau/filius/filius-1.12.5/tmpl/quelltext_vorlagen/client.txt
new file mode 100644
index 0000000..614bde7
--- /dev/null
+++ b/reseau/filius/filius-1.12.5/tmpl/quelltext_vorlagen/client.txt
@@ -0,0 +1,212 @@
+/*
+ ** This file is part of Filius, a network construction and simulation software.
+ **
+ ** Originally created at the University of Siegen, Institute "Didactics of
+ ** Informatics and E-Learning" by a students' project group:
+ ** members (2006-2007):
+ ** André Asschoff, Johannes Bade, Carsten Dittich, Thomas Gerding,
+ ** Nadja Haßler, Ernst Johannes Klebert, Michell Weyer
+ ** supervisors:
+ ** Stefan Freischlad (maintainer until 2009), Peer Stechert
+ ** Project is maintained since 2010 by Christian Eibl
+ ** and Stefan Freischlad
+ ** Filius is free software: you can redistribute it and/or modify
+ ** it under the terms of the GNU General Public License as published by
+ ** the Free Software Foundation, either version 2 of the License, or
+ ** (at your option) version 3.
+ **
+ ** Filius is distributed in the hope that it will be useful,
+ ** but WITHOUT ANY WARRANTY; without even the implied
+ ** warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+ ** PURPOSE. See the GNU General Public License for more details.
+ **
+ ** You should have received a copy of the GNU General Public License
+ ** along with Filius. If not, see .
+ */
+package filius.software.clientserver;
+
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+import filius.rahmenprogramm.I18n;
+import filius.software.transportschicht.TCPSocket;
+
+/**
+ *
+ * In dieser Klasse wird das Client-Programm einer einfachen Client-Server-Anwendung implementiert. Nachrichten an die
+ * graphische Benutzungsoberflaeche werden durch den Aufruf banachrichtigeBeobachter(Object) versendet.
+ *
+ *
+ * Aufrufe folgender Methoden des Sockets blockieren:
+ *
+ *
+ *
verbinden()
+ *
senden()
+ *
empfangen()
+ *
schliessen()
+ *
+ *
+ * Deshalb muessen Methoden dieser Klasse, die Aufrufe dieser Methoden enthalten, ueber die Methode
+ * ausfuehren(String, Object[]) aufgerufen werden. Das bewirkt, dass diese Methoden in einem eigenen Thread
+ * ausgefuehrt werden und damit der aufrufende Thread nicht blockiert. Das ist wichtig, wenn die Aufrufe von der
+ * graphischen Benutzungsoberflaeche ausgeloest werden.
+ *
+ *
+ * Ein Beispiel fuer die Verwendung von ausfuehren() ist folgendes:
+ * public void verbinden(String zielAdresse, Integer port) {
+ * Object[] args;
+ * Dabei wird als erstes Argument der auszufuehrenden blockierenden Methode
+ * uebergeben (hier: initialisiereSocket) und dann in einem Array die zu uebergebenden Parameter (hier:
+ * zielAdresse und port). Der Aufruf der Methode verbinden(zielAdresse, port)
+ * bewirkt also das Ausfuehren der Methode initialisiereSocket(zielAdresse, port) in einem anderen
+ * Thread. Damit blockiert die Methode verbinden nicht.
+ *
+ *
+ * Achtung: Die indirekt aufgerufene Methode (d. h. ueber
+ * ausfuehren(String, Object[])) muss als public deklariert sein!
+ *
+ */
+public class ClientBaustein extends ClientAnwendung implements I18n {
+ private static Logger LOG = LoggerFactory.getLogger(ClientBaustein.class);
+
+ /** Port-Nummer des Servers, an dem Verbindungsanfragen angenommen werden */
+ private int zielPort = 55555;
+
+ /**
+ * Adresse des Rechners, auf dem der Server laeuft als Domainname oder IP-Adresse.
+ */
+ private String zielIPAdresse;
+
+ /**
+ * Methode zum Verbindungsaufbau zu einem Server. Hier wird der Client-Socket als TCP/IP-Socket erzeugt. Wenn UDP
+ * verwendet werden soll, muss diese Methode ueberschrieben werden.
+ * Diese Methode ist nicht blockierend. Diese Methode veranlasst den Aufruf von
+ * initialisiereSocket in einem anderen Thread.
+ */
+ public void verbinden() {
+ LOG.debug("INVOKED (" + this.hashCode() + ", T" + this.getId() + ") " + getClass()
+ + " (ClientBaustein), verbinden()");
+ Object[] args;
+
+ args = new Object[2];
+ args[0] = zielIPAdresse;
+ args[1] = Integer.valueOf(zielPort);
+
+ ausfuehren("initialisiereSocket", args);
+ ausfuehren("empfangeNachricht", null);
+ }
+
+ /**
+ * Methode zum Aufbau einer Verbindung mit einem TCP-Socket. Diese Methode ist blockierend.
+ */
+ public synchronized void initialisiereSocket(String zielAdresse, Integer port) {
+ LOG.debug("INVOKED (" + this.hashCode() + ", T" + this.getId() + ") " + getClass()
+ + " (ClientBaustein), initialisiereSocket(" + zielAdresse + "," + port + ")");
+ if (!istVerbunden()) {
+ try {
+ socket = new TCPSocket(getSystemSoftware(), zielAdresse, port);
+ socket.verbinden();
+
+ benachrichtigeBeobachter(messages.getString("sw_clientbaustein_msg2"));
+ } catch (Exception e) {
+ LOG.debug("", e);
+ socket = null;
+ benachrichtigeBeobachter(messages.getString("sw_clientbaustein_msg1") + e.getMessage());
+ }
+ }
+ }
+
+ /**
+ * Methode zum trennen einer Verbindung. Der Socket wird durch den Aufruf der Methode schliessen() geschlossen und
+ * und der Socket fuer diese Anwendung auf null gesetzt.
+ * Diese Methode ist blockierend.
+ */
+ public void trennen() {
+ LOG.debug("INVOKED (" + this.hashCode() + ", T" + this.getId() + ") " + getClass()
+ + " (ClientBaustein), trennen()");
+ if (socket != null) {
+ socket.schliessen();
+ socket = null;
+ benachrichtigeBeobachter(messages.getString("sw_clientbaustein_msg3"));
+ }
+ }
+
+ /**
+ * Diese Methode blockiert bis die Nachricht versand wurde. Der Empfang der Antwort erfolgt asynchron.
+ */
+ public void senden(String nachricht) {
+ LOG.debug("INVOKED (" + this.hashCode() + ", T" + this.getId() + ") " + getClass()
+ + " (ClientBaustein), versendeNachricht(" + nachricht + ")");
+
+ if (socket != null && socket.istVerbunden()) {
+ try {
+ socket.senden(nachricht);
+ benachrichtigeBeobachter("<<" + nachricht);
+ } catch (Exception e) {
+ benachrichtigeBeobachter(e.getMessage());
+ LOG.debug("", e);
+ }
+ } else {
+ benachrichtigeBeobachter(messages.getString("sw_clientbaustein_msg4"));
+ }
+ }
+
+ /**
+ * Methode zum Empfang einer Nachricht vom Socket. Die empfangene Nachricht wird mit
+ * benachrichtigeBeobachter an die GUI weiter gegeben. Diese Methode ist blockierend und sollte nicht
+ * direkt von der GUI aufgerufen werden.
+ */
+ public void empfangeNachricht() {
+ LOG.debug("INVOKED (" + this.hashCode() + ", T" + this.getId() + ") " + getClass()
+ + " (ClientBaustein), empfangeNachricht()");
+ String nachricht;
+
+ while (socket != null && socket.istVerbunden()) {
+ try {
+ nachricht = socket.empfangen(Long.MAX_VALUE);
+ if (nachricht != null) {
+ benachrichtigeBeobachter(">>" + nachricht);
+ } else {
+ socket.schliessen();
+ benachrichtigeBeobachter(
+ messages.getString("sw_clientbaustein_msg5") + " " + socket.holeZielIPAdresse() + ":"
+ + socket.holeZielPort() + " " + messages.getString("sw_clientbaustein_msg6"));
+ }
+ } catch (Exception e) {
+ benachrichtigeBeobachter(e.getMessage());
+ LOG.debug("", e);
+ }
+ }
+ }
+
+ /** Methode fuer den Zugriff auf die Server-Adresse */
+ public String getZielIPAdresse() {
+ return zielIPAdresse;
+ }
+
+ /** Methode fuer den Zugriff auf die Server-Adresse */
+ public void setZielIPAdresse(String zielIPAdresse) {
+ this.zielIPAdresse = zielIPAdresse;
+ }
+
+ /**
+ * Methode fuer den Zugriff auf die Port-Nummer, an dem der Server zu erreichen ist.
+ */
+ public int getZielPort() {
+ return zielPort;
+ }
+
+ /**
+ * Methode fuer den Zugriff auf die Port-Nummer, an dem der Server zu erreichen ist.
+ */
+ public void setZielPort(int zielPort) {
+ this.zielPort = zielPort;
+ }
+}
diff --git a/reseau/filius/filius-1.12.5/tmpl/quelltext_vorlagen/client_gui.txt b/reseau/filius/filius-1.12.5/tmpl/quelltext_vorlagen/client_gui.txt
new file mode 100644
index 0000000..9ab4ed5
--- /dev/null
+++ b/reseau/filius/filius-1.12.5/tmpl/quelltext_vorlagen/client_gui.txt
@@ -0,0 +1,223 @@
+/*
+ ** This file is part of Filius, a network construction and simulation software.
+ **
+ ** Originally created at the University of Siegen, Institute "Didactics of
+ ** Informatics and E-Learning" by a students' project group:
+ ** members (2006-2007):
+ ** André Asschoff, Johannes Bade, Carsten Dittich, Thomas Gerding,
+ ** Nadja Haßler, Ernst Johannes Klebert, Michell Weyer
+ ** supervisors:
+ ** Stefan Freischlad (maintainer until 2009), Peer Stechert
+ ** Project is maintained since 2010 by Christian Eibl
+ ** and Stefan Freischlad
+ ** Filius is free software: you can redistribute it and/or modify
+ ** it under the terms of the GNU General Public License as published by
+ ** the Free Software Foundation, either version 2 of the License, or
+ ** (at your option) version 3.
+ **
+ ** Filius is distributed in the hope that it will be useful,
+ ** but WITHOUT ANY WARRANTY; without even the implied
+ ** warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+ ** PURPOSE. See the GNU General Public License for more details.
+ **
+ ** You should have received a copy of the GNU General Public License
+ ** along with Filius. If not, see .
+ */
+package filius.gui.anwendungssicht;
+
+import java.awt.BorderLayout;
+import java.awt.Dimension;
+import java.awt.event.ActionEvent;
+import java.awt.event.ActionListener;
+import java.util.Observable;
+
+import javax.swing.BorderFactory;
+import javax.swing.Box;
+import javax.swing.JButton;
+import javax.swing.JLabel;
+import javax.swing.JPanel;
+import javax.swing.JScrollPane;
+import javax.swing.JTextArea;
+import javax.swing.JTextField;
+
+import filius.software.clientserver.ClientBaustein;
+
+/**
+ *
+ * Diese Klasse stellt die Benutzungsoberflaeche fuer das Client-Programm einer
+ * einfachen Client-Server-Anwendung zur Verfuegung.
+ *
+ *
+ * Nachrichten von der Anwendung werden nach dem Beobachtermuster durch die
+ * Benachrichtigung der Beobachter angenommen und verarbeitet.
+ *
+ */
+public class GUIApplicationClientBausteinWindow extends GUIApplicationWindow {
+
+ private static final long serialVersionUID = 1L;
+
+ /**
+ * Textfeld fuer die Ausgabe gesendeter und empfangener Nachrichten sowie
+ * fuer Fehlermeldungen
+ */
+ private JTextArea taAusgabe;
+
+ /**
+ * Textfeld fuer die Adresse des Servers, zu dem die Verbindung hergestellt
+ * werden soll
+ */
+ private JTextField tfServerAdresse;
+
+ /**
+ * Textfeld zur Angabe des TCP-Ports, auf dem der Server auf eingehende
+ * Nachrichten wartet
+ */
+ private JTextField tfServerPort;
+
+ /** Textbereich zur Eingabe der Nachrichten */
+ private JTextArea taSenden;
+
+ /** Schaltflaeche zum initiieren des Verbindungsaufbaus */
+ private JButton btVerbinden;
+
+ /**
+ * Schaltflaeche zum Senden einer zuvor eingegebenen Nachricht
+ */
+ private JButton btSenden;
+
+ /**
+ * Standard-Konstruktor, der automatisch zur Erzeugung der graphischen
+ * Benutzungsoberflaeche fuer diese Anwendung aufgerufen wird.
+ */
+ public GUIApplicationClientBausteinWindow(GUIDesktopPanel desktop, String appName) {
+ super(desktop, appName);
+ initialisiereKomponenten();
+ }
+
+ /** Methode zur Initialisierung der graphischen Komponenten */
+ private void initialisiereKomponenten() {
+ JPanel hauptPanel;
+ JScrollPane scrollPane;
+ Box hauptBox;
+ Box hBox;
+ JLabel label;
+
+ hauptPanel = new JPanel(new BorderLayout());
+
+ hauptBox = Box.createVerticalBox();
+ hauptBox.setBorder(BorderFactory.createEmptyBorder(2, 2, 2, 2));
+ hauptBox.add(Box.createVerticalStrut(5));
+
+ hBox = Box.createHorizontalBox();
+ label = new JLabel(messages.getString("clientbaustein_msg1"));
+ label.setPreferredSize(new Dimension(140, label.getHeight()));
+ hBox.add(label);
+
+ tfServerAdresse = new JTextField();
+ tfServerAdresse.setPreferredSize(new Dimension(100, 20));
+ hBox.add(tfServerAdresse);
+ hauptBox.add(hBox);
+ hauptBox.add(Box.createVerticalStrut(5));
+
+ hBox = Box.createHorizontalBox();
+ label = new JLabel(messages.getString("clientbaustein_msg2"));
+ label.setPreferredSize(new Dimension(140, label.getHeight()));
+ hBox.add(label);
+
+ tfServerPort = new JTextField();
+ tfServerPort.setPreferredSize(new Dimension(100, 20));
+ hBox.add(tfServerPort);
+ hauptBox.add(hBox);
+ hauptBox.add(Box.createVerticalStrut(5));
+
+ btVerbinden = new JButton(messages.getString("clientbaustein_msg3"));
+ btVerbinden.addActionListener(new ActionListener() {
+ public void actionPerformed(ActionEvent e) {
+ if (e.getActionCommand().equals("verbinden")) {
+ ((ClientBaustein) holeAnwendung()).setZielIPAdresse(tfServerAdresse.getText());
+ ((ClientBaustein) holeAnwendung()).setZielPort(Integer.parseInt(tfServerPort.getText()));
+ ((ClientBaustein) holeAnwendung()).verbinden();
+ } else {
+ ((ClientBaustein) holeAnwendung()).trennen();
+ }
+ aktualisieren();
+ }
+ });
+ hauptBox.add(btVerbinden);
+ hauptBox.add(Box.createVerticalStrut(5));
+
+ label = new JLabel(messages.getString("clientbaustein_msg4"));
+ label.setPreferredSize(new Dimension(100, 20));
+ hauptBox.add(label);
+
+ taSenden = new JTextArea();
+ scrollPane = new JScrollPane(taSenden);
+ scrollPane.setPreferredSize(new Dimension(400, 50));
+ hauptBox.add(scrollPane);
+
+ btSenden = new JButton(messages.getString("clientbaustein_msg5"));
+ btSenden.addActionListener(new ActionListener() {
+ public void actionPerformed(ActionEvent e) {
+ ((ClientBaustein) holeAnwendung()).senden(taSenden.getText());
+ taSenden.setText("");
+ }
+ });
+ hauptBox.add(btSenden);
+ hauptBox.add(Box.createVerticalStrut(5));
+
+ taAusgabe = new JTextArea();
+ taAusgabe.setEditable(false);
+ scrollPane = new JScrollPane(taAusgabe);
+ scrollPane.setPreferredSize(new Dimension(400, 200));
+ hauptBox.add(scrollPane);
+ hauptBox.add(Box.createVerticalStrut(5));
+
+ hauptPanel.add(hauptBox, BorderLayout.CENTER);
+
+ getContentPane().add(hauptPanel);
+ pack();
+
+ aktualisieren();
+ }
+
+ /**
+ * Methode zum aktualisieren der Komponenten der graphischen
+ * Benutzungsoberflaeche in Abhaengigkeit vom Zustand der Anwendung
+ */
+ private void aktualisieren() {
+ ClientBaustein client;
+
+ client = (ClientBaustein) holeAnwendung();
+
+ tfServerAdresse.setText(client.getZielIPAdresse());
+ tfServerPort.setText("" + client.getZielPort());
+ if (client.istVerbunden()) {
+ btVerbinden.setText(messages.getString("clientbaustein_msg6"));
+ btVerbinden.setActionCommand("trennen");
+ btSenden.setEnabled(true);
+
+ tfServerAdresse.setEditable(false);
+ tfServerPort.setEditable(false);
+ } else {
+ btVerbinden.setText(messages.getString("clientbaustein_msg3"));
+ btVerbinden.setActionCommand("verbinden");
+ btSenden.setEnabled(false);
+
+ tfServerAdresse.setEditable(true);
+ tfServerPort.setEditable(true);
+ }
+ }
+
+ /**
+ * Diese Methode wird automatisch ausgefuehrt, wenn eine Nachricht an den
+ * Beobachter der Anwendung gesendet wird. Der Parameter arg enthaelt die
+ * Nachricht, die von der Anwendung verschickt wurde.
+ */
+ public void update(Observable o, Object arg) {
+ if (arg != null) {
+ this.taAusgabe.append(arg.toString() + "\n");
+ }
+
+ aktualisieren();
+ }
+}
diff --git a/reseau/filius/filius-1.12.5/tmpl/quelltext_vorlagen/server.txt b/reseau/filius/filius-1.12.5/tmpl/quelltext_vorlagen/server.txt
new file mode 100644
index 0000000..709f79d
--- /dev/null
+++ b/reseau/filius/filius-1.12.5/tmpl/quelltext_vorlagen/server.txt
@@ -0,0 +1,78 @@
+/*
+ ** This file is part of Filius, a network construction and simulation software.
+ **
+ ** Originally created at the University of Siegen, Institute "Didactics of
+ ** Informatics and E-Learning" by a students' project group:
+ ** members (2006-2007):
+ ** André Asschoff, Johannes Bade, Carsten Dittich, Thomas Gerding,
+ ** Nadja Haßler, Ernst Johannes Klebert, Michell Weyer
+ ** supervisors:
+ ** Stefan Freischlad (maintainer until 2009), Peer Stechert
+ ** Project is maintained since 2010 by Christian Eibl
+ ** and Stefan Freischlad
+ ** Filius is free software: you can redistribute it and/or modify
+ ** it under the terms of the GNU General Public License as published by
+ ** the Free Software Foundation, either version 2 of the License, or
+ ** (at your option) version 3.
+ **
+ ** Filius is distributed in the hope that it will be useful,
+ ** but WITHOUT ANY WARRANTY; without even the implied
+ ** warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+ ** PURPOSE. See the GNU General Public License for more details.
+ **
+ ** You should have received a copy of the GNU General Public License
+ ** along with Filius. If not, see .
+ */
+package filius.software.clientserver;
+
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+import filius.software.transportschicht.Socket;
+import filius.software.transportschicht.TCPSocket;
+
+/**
+ *
+ * In dieser Klasse wird das Server-Programm einer einfachen Client-Server-Anwendung implementiert. Nachrichten an die
+ * graphische Benutzungsoberflaeche werden durch den Aufruf banachrichtigeBeobachter(Object) versendet.
+ *
+ *
+ * In dieser Klasse wird mit einem eigenen Thread der Server-Socket auf eingehende Verbindungen gewartet. Die
+ * Verarbeitung der eingehenden Nachrichten erfolgt durch einen Mitarbeiter, der in der Methode
+ * neuerMitarbeiter(Socket) erzeugt wird.
+ *
+ *
+ * Die Verarbeitung eingehender Nachrichten wird von einem Mitarbeiter uebernommen, der erzeugt wird, sobald eine neue
+ * Verbindungsanfrage vom Server-Socket empfangen wurde.
+ *
+ *
+ * Einstellungen, die in einer Projektdatei gespeichert werden sollen, muessen in dieser Klasse als Attribute verwaltet
+ * werden und mit Getter- und Setter-Methoden zugaenglich sein (z. B. fuer das Attribut int bspAttr mit
+ *
+ * public int getBspAttr() und public void setBspAttr(int)
+ * ). Attribute, die in der Mitarbeiterklasse vorhanden sind, werden nicht gespeichert!
+ *
+ *
+ * Das Server-Programm wird durch Aufruf der Methode der Oberklasse setAktiv(boolean) aktiviert bzw.
+ * deaktiviert (d. h. die Verbindungsannahme wird aktiviert bzw. deaktiviert).
+ *
+ */
+public class ServerBaustein extends TCPServerAnwendung {
+ private static Logger LOG = LoggerFactory.getLogger(ServerBaustein.class);
+
+ /**
+ * In dieser Methode wird ein neuer Mitarbeiter zur Verarbeitung von eingehenden Nachrichten erzeugt und der Liste
+ * der zu verwaltenden Mitarbeiter hinzugefuegt.
+ */
+ protected void neuerMitarbeiter(Socket socket) {
+ LOG.debug("INVOKED (" + this.hashCode() + ", T" + this.getId() + ") " + getClass()
+ + " (ServerBaustein), neuerMitarbeiter(" + socket + ")");
+ ServerMitarbeiter mitarbeiter;
+
+ if (socket instanceof TCPSocket) {
+ mitarbeiter = new ServerBausteinMitarbeiter(this, (TCPSocket) socket);
+ this.mitarbeiter.add(mitarbeiter);
+ mitarbeiter.starten();
+ }
+ }
+}
diff --git a/reseau/filius/filius-1.12.5/tmpl/quelltext_vorlagen/server_gui.txt b/reseau/filius/filius-1.12.5/tmpl/quelltext_vorlagen/server_gui.txt
new file mode 100644
index 0000000..a11b5e4
--- /dev/null
+++ b/reseau/filius/filius-1.12.5/tmpl/quelltext_vorlagen/server_gui.txt
@@ -0,0 +1,169 @@
+/*
+ ** This file is part of Filius, a network construction and simulation software.
+ **
+ ** Originally created at the University of Siegen, Institute "Didactics of
+ ** Informatics and E-Learning" by a students' project group:
+ ** members (2006-2007):
+ ** André Asschoff, Johannes Bade, Carsten Dittich, Thomas Gerding,
+ ** Nadja Haßler, Ernst Johannes Klebert, Michell Weyer
+ ** supervisors:
+ ** Stefan Freischlad (maintainer until 2009), Peer Stechert
+ ** Project is maintained since 2010 by Christian Eibl
+ ** and Stefan Freischlad
+ ** Filius is free software: you can redistribute it and/or modify
+ ** it under the terms of the GNU General Public License as published by
+ ** the Free Software Foundation, either version 2 of the License, or
+ ** (at your option) version 3.
+ **
+ ** Filius is distributed in the hope that it will be useful,
+ ** but WITHOUT ANY WARRANTY; without even the implied
+ ** warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+ ** PURPOSE. See the GNU General Public License for more details.
+ **
+ ** You should have received a copy of the GNU General Public License
+ ** along with Filius. If not, see .
+ */
+package filius.gui.anwendungssicht;
+
+import java.awt.BorderLayout;
+import java.awt.Dimension;
+import java.awt.event.ActionEvent;
+import java.awt.event.ActionListener;
+import java.util.Observable;
+
+import javax.swing.BorderFactory;
+import javax.swing.Box;
+import javax.swing.JButton;
+import javax.swing.JLabel;
+import javax.swing.JPanel;
+import javax.swing.JScrollPane;
+import javax.swing.JTextArea;
+import javax.swing.JTextField;
+
+import filius.software.clientserver.ServerAnwendung;
+import filius.software.clientserver.ServerBaustein;
+
+/**
+ *
+ * Diese Klasse stellt die Benutzungsoberflaeche fuer das Server-Programm einer
+ * einfachen Client-Server-Anwendung zur Verfuegung.
+ *
+ *
+ * Nachrichten von der Anwendung werden nach dem Beobachtermuster durch die
+ * Benachrichtigung der Beobachter angenommen und verarbeitet.
+ *
+ */
+public class GUIApplicationServerBausteinWindow extends GUIApplicationWindow {
+
+ private static final long serialVersionUID = 1L;
+
+ /**
+ * Textbereich zur Ausgabe von Log-Daten, die vom Server-Programm erzeugt
+ * und durch Benachrichtigung der Beobachter an die graphische
+ * Benutzungsoberflaeche weiter gegeben werden
+ */
+ private JTextArea taLog;
+
+ /**
+ * Schaltflaeche zum Starten bzw. Stoppen des Server-Programms, d. h. zum
+ * Starten bzw. Beenden der Verbindungsannahme durch den Server
+ */
+ private JButton bStartStop;
+
+ /**
+ * Textfeld zur Eingabe des Ports, an dem der Server eingehende
+ * Verbindungsanfragen entgegen nimmt.
+ */
+ private JTextField tfPort;
+
+ /**
+ * Standard-Konstruktor, der automatisch zur Erzeugung der graphischen
+ * Benutzungsoberflaeche fuer diese Anwendung aufgerufen wird.
+ */
+ public GUIApplicationServerBausteinWindow(GUIDesktopPanel desktop, String appName) {
+ super(desktop, appName);
+ initialisiereKomponenten();
+ }
+
+ /** Methode zur Initialisierung der graphischen Komponenten */
+ private void initialisiereKomponenten() {
+ JPanel hauptPanel;
+ JScrollPane spLogScroller;
+ JLabel lbPort;
+ Box hBox, vBox;
+
+ hauptPanel = new JPanel(new BorderLayout());
+ vBox = Box.createVerticalBox();
+ vBox.setBorder(BorderFactory.createEmptyBorder(2, 2, 2, 2));
+ vBox.add(Box.createVerticalStrut(5));
+
+ hBox = Box.createHorizontalBox();
+
+ bStartStop = new JButton();
+ bStartStop.addActionListener(new ActionListener() {
+ public void actionPerformed(ActionEvent e) {
+ if (e.getActionCommand().equals("start")) {
+ ((ServerAnwendung) holeAnwendung()).setPort(Integer.parseInt(tfPort.getText()));
+ ((ServerAnwendung) holeAnwendung()).setAktiv(true);
+ ((ServerAnwendung) holeAnwendung()).setPort(Integer.parseInt(tfPort.getText()));
+ } else {
+ ((ServerAnwendung) holeAnwendung()).setAktiv(false);
+ }
+ aktualisieren();
+ }
+ });
+ hBox.add(bStartStop);
+ hBox.add(Box.createHorizontalStrut(5));
+
+ lbPort = new JLabel(messages.getString("serverbaustein_msg1"));
+ hBox.add(lbPort);
+ tfPort = new JTextField("" + ((ServerAnwendung) holeAnwendung()).getPort());
+ hBox.add(tfPort);
+
+ vBox.add(hBox);
+ vBox.add(Box.createVerticalStrut(5));
+
+ taLog = new JTextArea();
+ taLog.setEditable(false);
+ spLogScroller = new JScrollPane(taLog);
+ spLogScroller.setPreferredSize(new Dimension(400, 400));
+ vBox.add(spLogScroller);
+ vBox.add(Box.createVerticalStrut(5));
+
+ hauptPanel.add(vBox, BorderLayout.CENTER);
+
+ getContentPane().add(hauptPanel);
+ pack();
+
+ aktualisieren();
+ }
+
+ /**
+ * Methode zum aktualisieren der Komponenten der graphischen
+ * Benutzungsoberflaeche in Abhaengigkeit vom Zustand der Anwendung
+ */
+ public void aktualisieren() {
+ ServerBaustein server;
+
+ server = (ServerBaustein) holeAnwendung();
+ if (server.isAktiv()) {
+ tfPort.setEditable(false);
+ bStartStop.setText(messages.getString("serverbaustein_msg2"));
+ bStartStop.setActionCommand("stop");
+ } else {
+ bStartStop.setText(messages.getString("serverbaustein_msg3"));
+ bStartStop.setActionCommand("start");
+ tfPort.setEditable(true);
+ }
+ }
+
+ /**
+ * Diese Methode wird automatisch ausgefuehrt, wenn der eine Nachricht an
+ * den Beobachter der Anwendung gesendet wird. Der Parameter arg enthaelt
+ * die Nachricht, die von der Anwendung verschickt wurde.
+ */
+ public void update(Observable o, Object arg) {
+ taLog.append(arg.toString() + "\n");
+ aktualisieren();
+ }
+}
diff --git a/reseau/filius/filius-1.12.5/tmpl/quelltext_vorlagen/server_mitarbeiter.txt b/reseau/filius/filius-1.12.5/tmpl/quelltext_vorlagen/server_mitarbeiter.txt
new file mode 100644
index 0000000..ea21b90
--- /dev/null
+++ b/reseau/filius/filius-1.12.5/tmpl/quelltext_vorlagen/server_mitarbeiter.txt
@@ -0,0 +1,73 @@
+/*
+ ** This file is part of Filius, a network construction and simulation software.
+ **
+ ** Originally created at the University of Siegen, Institute "Didactics of
+ ** Informatics and E-Learning" by a students' project group:
+ ** members (2006-2007):
+ ** André Asschoff, Johannes Bade, Carsten Dittich, Thomas Gerding,
+ ** Nadja Haßler, Ernst Johannes Klebert, Michell Weyer
+ ** supervisors:
+ ** Stefan Freischlad (maintainer until 2009), Peer Stechert
+ ** Project is maintained since 2010 by Christian Eibl
+ ** and Stefan Freischlad
+ ** Filius is free software: you can redistribute it and/or modify
+ ** it under the terms of the GNU General Public License as published by
+ ** the Free Software Foundation, either version 2 of the License, or
+ ** (at your option) version 3.
+ **
+ ** Filius is distributed in the hope that it will be useful,
+ ** but WITHOUT ANY WARRANTY; without even the implied
+ ** warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+ ** PURPOSE. See the GNU General Public License for more details.
+ **
+ ** You should have received a copy of the GNU General Public License
+ ** along with Filius. If not, see .
+ */
+package filius.software.clientserver;
+
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+import filius.software.transportschicht.Socket;
+
+/**
+ *
+ * In dieser Klasse erfolgt die Verarbeitung von eingehenden Nachrichten an einen Server.
+ *
+ *
+ * Die Oberklasse ServerMitarbeiter erbt von der Klasse Thread. In der run()-Methode der
+ * Oberklasse wird der Socket auf eingehende Nachrichten ueberwacht. Sobald eine Nachricht eintrifft, wird diese an die
+ * Methode verarbeiteNachricht(String) zur weiteren Verarbeitung weiter gegeben. Ausserdem wird dort der
+ * Socket automatisch geschlossen, wenn das Client-Programm den Verbindungsabbau initiiert.
+ *
+ *
+ * In dieser Klasse sollte nur die Methode senden(String) des Sockets verwendet werden!
+ *
+ */
+public class ServerBausteinMitarbeiter extends ServerMitarbeiter {
+ private static Logger LOG = LoggerFactory.getLogger(ServerBausteinMitarbeiter.class);
+
+ /**
+ * Standard-Konstruktor. Wenn der Server auf einem bestimmten Port auf eingehende Verbindungen warten soll, muss die
+ * Port-Nummer hier mit setPort(int) initialisiert werden!
+ */
+ public ServerBausteinMitarbeiter(ServerAnwendung server, Socket socket) {
+ super(server, socket);
+ }
+
+ /**
+ * Methode, die automatisch aufgerufen wird, wenn eine neue Nachricht eintrifft. Hier erfolgt die Verarbeitung der
+ * eingehenden Nachricht.
+ */
+ protected void verarbeiteNachricht(String nachricht) {
+ LOG.debug("INVOKED (" + this.hashCode() + ", T" + this.getId() + ") " + getClass()
+ + " (ServerBausteinMitarbeiter), verarbeiteNachricht(" + nachricht + ")");
+ try {
+ socket.senden(nachricht);
+ server.benachrichtigeBeobachter("<<" + nachricht);
+ } catch (Exception e) {
+ LOG.debug("", e);
+ server.benachrichtigeBeobachter(e.getMessage());
+ }
+ }
+}
diff --git a/reseau/filius/filius-1.12.5/tmpl/routing_de_DE.html b/reseau/filius/filius-1.12.5/tmpl/routing_de_DE.html
new file mode 100644
index 0000000..86ddea4
--- /dev/null
+++ b/reseau/filius/filius-1.12.5/tmpl/routing_de_DE.html
@@ -0,0 +1,35 @@
+
+
+
+:title:
+
+
+
+
+:title:
+
+
+
+
+
Rechnernetz
+
Hops
+
Gültigkeit
+
Nächster Hop
+
+
+
Adresse
+
Netzmaske
+
+
(sec)
+
Ziel
+
Öffentliche Adresse
+
+
+:routing_entries:
+
+
+
+:hint:
+
+
+
\ No newline at end of file
diff --git a/reseau/filius/filius-1.12.5/tmpl/routing_en_GB.html b/reseau/filius/filius-1.12.5/tmpl/routing_en_GB.html
new file mode 100644
index 0000000..e8df6dc
--- /dev/null
+++ b/reseau/filius/filius-1.12.5/tmpl/routing_en_GB.html
@@ -0,0 +1,35 @@
+
+
+
+:title:
+
+
+
+
+:title:
+
+
+
+
+
Network
+
Hops
+
Validity
+
Next Hop
+
+
+
Address
+
Netmask
+
+
(sec)
+
Target
+
Public Address
+
+
+:routing_entries:
+
+
+
+:hint:
+
+
+
\ No newline at end of file
diff --git a/reseau/filius/filius-1.12.5/tmpl/routing_fr_FR.html b/reseau/filius/filius-1.12.5/tmpl/routing_fr_FR.html
new file mode 100644
index 0000000..095b63c
--- /dev/null
+++ b/reseau/filius/filius-1.12.5/tmpl/routing_fr_FR.html
@@ -0,0 +1,37 @@
+
+
+
+
+:title:
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/reseau/filius/filius-1.12.5/tmpl/webserver_index_de_DE.txt b/reseau/filius/filius-1.12.5/tmpl/webserver_index_de_DE.txt
new file mode 100644
index 0000000..b19bb0d
--- /dev/null
+++ b/reseau/filius/filius-1.12.5/tmpl/webserver_index_de_DE.txt
@@ -0,0 +1,18 @@
+
+
+ Standardseite
+
+
+
FILIUS - Webserver
+
+
Herzlich Willkommen auf dem Webserver der Anwendung FILIUS!
+
+
Diese Seite wurde automatisch mit der Installation des
+ Webservers eingerichtet, es lassen sich jedoch auch
+ eigene Seiten hier unterbringen.
+
+
+
+
https://www.lernsoftware-filius.de
+
+
\ No newline at end of file
diff --git a/reseau/filius/filius-1.12.5/tmpl/webserver_index_en_GB.txt b/reseau/filius/filius-1.12.5/tmpl/webserver_index_en_GB.txt
new file mode 100644
index 0000000..d9dcf61
--- /dev/null
+++ b/reseau/filius/filius-1.12.5/tmpl/webserver_index_en_GB.txt
@@ -0,0 +1,17 @@
+
+
+ Standardseite
+
+
+
FILIUS - Webserver
+
+
Welcome at FILIUS!
+
+
This page has been delivered as default page.
+ Feel free to add your own contents!
+
+
+
+
https://www.lernsoftware-filius.de
+
+
\ No newline at end of file
diff --git a/reseau/filius/filius-1.12.5/tmpl/webserver_index_fr_FR.txt b/reseau/filius/filius-1.12.5/tmpl/webserver_index_fr_FR.txt
new file mode 100644
index 0000000..937eb2c
--- /dev/null
+++ b/reseau/filius/filius-1.12.5/tmpl/webserver_index_fr_FR.txt
@@ -0,0 +1,19 @@
+
+
+
+ Page d’accueil
+
+
+
FILIUS - Serveur web
+
+
Bienvenue sur le serveur web de FILIUS
+
+
Cette page a été créée automatiquement à l’installation du serveur web.
+ Vous pouvez modifier cette page et en ajouter d’autres dans le dossier
+ /webserver du serveur.