diff --git a/Notice d'utilisation des signaux_complexes_GL_V3.84.pdf b/Notice d'utilisation des signaux_complexes_GL_V3.84.pdf index 78e9081..3c88c07 100644 Binary files a/Notice d'utilisation des signaux_complexes_GL_V3.84.pdf and b/Notice d'utilisation des signaux_complexes_GL_V3.84.pdf differ diff --git a/UnitConfig.dcu b/UnitConfig.dcu index 0352f92..64ce66c 100644 Binary files a/UnitConfig.dcu and b/UnitConfig.dcu differ diff --git a/UnitConfig.dfm b/UnitConfig.dfm index b70e05a..51a4a3b 100644 --- a/UnitConfig.dfm +++ b/UnitConfig.dfm @@ -1578,7 +1578,7 @@ object FormConfig: TFormConfig Top = 8 Width = 633 Height = 497 - ActivePage = TabSheetAig + ActivePage = TabSheetCDM Font.Charset = DEFAULT_CHARSET Font.Color = clBlack Font.Height = -11 @@ -1682,7 +1682,7 @@ object FormConfig: TFormConfig object CheckAvecTCO: TCheckBox Left = 8 Top = 56 - Width = 201 + Width = 89 Height = 17 Hint = 'Affiche le TCO au d'#233'marrage' Caption = 'Avec TCO' @@ -1709,6 +1709,17 @@ object FormConfig: TFormConfig ShowHint = True TabOrder = 5 end + object CheckBandeauTCO: TCheckBox + Left = 128 + Top = 56 + Width = 129 + Height = 17 + Hint = 'Masque le bandeau de param'#233'trage du TCO au d'#233'marrage' + Caption = 'Bandeau TCO masqu'#233 + ParentShowHint = False + ShowHint = True + TabOrder = 6 + end end object GroupBox6: TGroupBox Left = 320 diff --git a/UnitConfig.pas b/UnitConfig.pas index 369436b..e0e6b53 100644 --- a/UnitConfig.pas +++ b/UnitConfig.pas @@ -252,6 +252,7 @@ type EditTrainDest: TEdit; Label42: TLabel; Label43: TLabel; + CheckBandeauTCO: TCheckBox; procedure ButtonAppliquerEtFermerClick(Sender: TObject); procedure FormActivate(Sender: TObject); procedure FormCreate(Sender: TObject); @@ -373,6 +374,7 @@ INTER_CAR_ch='INTER_CAR'; Tempo_maxi_ch='Tempo_maxi'; Entete_ch='Entete'; TCO_ch='TCO'; +MasqueBandeauTCO_ch='MasqueBandeauTCO'; CDM_ch='CDM'; Serveur_interface_ch='Serveur_interface'; fenetre_ch='Fenetre'; @@ -1195,6 +1197,10 @@ begin writeln(fichierN,TCO_ch+'=',s); copie_commentaire; + if MasqueBandeauTCO then s:='1' else s:='0'; + writeln(fichierN,MasqueBandeauTCO_ch+'=',s); + copie_commentaire; + // lancement de CDM if LanceCDM then s:='1' else s:='0'; writeln(fichierN,CDM_ch+'=',s); @@ -1288,7 +1294,7 @@ var s,sa,chaine,SOrigine: string; c,paig : char; tec,tjdC,tjsC,s2,trouve,triC,debugConfig,multiple,fini,finifeux,trouve_NbDetDist,trouve_ipv4_PC,trouve_retro, trouve_sec_init,trouve_init_aig,trouve_lay,trouve_IPV4_INTERFACE,trouve_PROTOCOLE_SERIE,trouve_INTER_CAR, - trouve_Tempo_maxi,trouve_Entete,trouve_tco,trouve_cdm,trouve_Serveur_interface,trouve_fenetre, + trouve_Tempo_maxi,trouve_Entete,trouve_tco,trouve_cdm,trouve_Serveur_interface,trouve_fenetre,trouve_MasqueTCO, trouve_NOTIF_VERSION,trouve_verif_version,trouve_fonte,trouve_tempo_aig,trouve_raz,trouve_section_aig, pds,trouve_section_branche,trouve_section_sig,trouve_section_act,fichier_trouve,trouve_tempo_feu, trouve_algo_uni : boolean; @@ -1853,7 +1859,7 @@ begin //affiche(s,cllime); sa:=uppercase(Fonte_ch)+'='; i:=pos(sa,s); - if i<>0 then + if i=1 then begin inc(nv); trouve_fonte:=true; @@ -1866,7 +1872,7 @@ begin // adresse ip et port de CDM sa:=uppercase(IpV4_PC_ch)+'='; i:=pos(sa,s); - if i<>0 then + if i=1 then begin inc(nv); trouve_ipv4_PC:=true; @@ -1884,7 +1890,7 @@ begin // adresse ip et port de la centrale sa:=uppercase(IPV4_INTERFACE_ch)+'='; i:=pos(sa,s); - if i<>0 then + if i=1 then begin inc(nv); trouve_IPV4_INTERFACE:=true; @@ -1901,7 +1907,7 @@ begin // configuration du port com sa:=uppercase(PROTOCOLE_SERIE_ch)+'='; i:=pos(sa,s); - if i<>0 then + if i=1 then begin inc(nv); trouve_PROTOCOLE_SERIE:=true; @@ -1913,7 +1919,7 @@ begin // temporisation entre 2 caractères sa:=uppercase(INTER_CAR_ch)+'='; i:=pos(sa,s); - if i<>0 then + if i=1 then begin inc(nv); delete(s,i,length(sa)); @@ -1925,7 +1931,7 @@ begin // temporisation attente maximale interface sa:=uppercase(TEMPO_MAXI_ch)+'='; i:=pos(sa,s); - if i<>0 then + if i=1 then begin inc(nv); delete(s,i,length(sa)); @@ -1937,7 +1943,7 @@ begin // entete sa:=uppercase(ENTETE_ch)+'='; i:=pos(sa,s); - if i<>0 then + if i=1 then begin inc(nv); delete(s,i,length(sa)); @@ -1955,7 +1961,7 @@ begin // avec ou sans initialisation des aiguillages sa:=uppercase(INIT_AIG_ch)+'='; i:=pos(sa,s); - if i<>0 then + if i=1 then begin trouve_init_aig:=true; inc(nv); @@ -1966,7 +1972,7 @@ begin // taille de la fenetre sa:=uppercase(fenetre_ch)+'='; i:=pos(sa,s); - if i<>0 then + if i=1 then begin inc(nv); trouve_fenetre:=true; @@ -1978,7 +1984,7 @@ begin // temporisation aiguillages sa:=uppercase(Tempo_Aig_ch)+'='; i:=pos(sa,s); - if i<>0 then + if i=1 then begin inc(nv); trouve_Tempo_aig:=true; @@ -1989,7 +1995,7 @@ begin // temporisation décodeurs de feux sa:=uppercase(Tempo_Feu_ch)+'='; i:=pos(sa,s); - if i<>0 then + if i=1 then begin inc(nv); trouve_Tempo_feu:=true; @@ -2001,7 +2007,7 @@ begin // algo unisemaf sa:=uppercase(Algo_unisemaf_ch)+'='; i:=pos(sa,s); - if i<>0 then + if i=1 then begin inc(nv); trouve_Algo_Uni:=true; @@ -2012,7 +2018,7 @@ begin sa:=uppercase(verif_version_ch)+'='; i:=pos(sa,s); - if i<>0 then + if i=1 then begin trouve_verif_version:=true; inc(nv); @@ -2025,7 +2031,7 @@ begin sa:=uppercase(NOTIF_VERSION_ch)+'='; i:=pos(sa,s); - if i<>0 then + if i=1 then begin inc(nv); delete(s,i,length(sa)); @@ -2037,19 +2043,29 @@ begin sa:=uppercase(TCO_ch)+'='; i:=pos(sa,s); - if i<>0 then + if i=1 then begin inc(nv); delete(s,i,length(sa)); trouve_TCO:=true; - // vérification de la version au démarrage val(s,i,erreur); AvecTCO:=i=1; - end; + end; + sa:=uppercase(MasqueBandeauTCO_ch)+'='; + i:=pos(sa,s); + if i=1 then + begin + inc(nv); + delete(s,i,length(sa)); + trouve_MasqueTCO:=true; + val(s,i,erreur); + MasqueBandeauTCO:=i=1; + end; + sa:=uppercase(CDM_ch)+'='; i:=pos(sa,s); - if i<>0 then + if i=1 then begin inc(nv); trouve_CDM:=true; @@ -2061,7 +2077,7 @@ begin sa:=uppercase(LAY_ch)+'='; i:=pos(sa,s); - if i<>0 then + if i=1 then begin inc(nv); trouve_lay:=true; @@ -2071,7 +2087,7 @@ begin sa:=uppercase(SERVEUR_INTERFACE_ch)+'='; i:=pos(sa,s); - if i<>0 then + if i=1 then begin inc(nv); trouve_serveur_interface:=true; @@ -2082,7 +2098,7 @@ begin sa:=uppercase(RETRO_ch)+'='; i:=pos(sa,s); - if i<>0 then + if i=1 then begin inc(nv); trouve_retro:=true; @@ -2093,7 +2109,7 @@ begin sa:=uppercase(nb_det_dist_ch)+'='; i:=pos(sa,s); - if i<>0 then + if i=1 then begin inc(nv); trouve_NbDetDist:=true; @@ -2105,7 +2121,7 @@ begin sa:=uppercase(Raz_signaux_ch)+'='; i:=pos(sa,s); - if i<>0 then + if i=1 then begin inc(nv); trouve_NbDetDist:=true; @@ -2172,6 +2188,7 @@ begin trouve_Serveur_interface:=false; trouve_cdm:=false; trouve_NOTIF_VERSION:=false; + trouve_masqueTCO:=false; trouve_fenetre:=false; trouve_verif_version:=false; trouve_Fonte:=false; @@ -2405,6 +2422,7 @@ begin if CheckFenEt.checked then fenetre:=1 else fenetre:=0; AvecTCO:=CheckAvecTCO.checked; + MasqueBandeauTCO:=CheckBandeauTCO.checked; Lay:=EditNomLay.Text; if RadioButton4.Checked then ServeurInterfaceCDM:=0; if RadioButton5.Checked then ServeurInterfaceCDM:=1; @@ -2569,6 +2587,7 @@ begin CheckInfoVersion.Checked:=notificationVersion; CheckLanceCDM.Checked:=LanceCDM; CheckAvecTCO.checked:=avecTCO; + CheckBandeauTCO.Checked:=MasqueBandeauTCO; entreeTCO:=avecTCO; EditNomLay.Text:=Lay; RadioButton4.Checked:=ServeurInterfaceCDM=0; @@ -7158,6 +7177,7 @@ end; begin + end. diff --git a/UnitConfigTCO.dcu b/UnitConfigTCO.dcu index 73a0641..cd56437 100644 Binary files a/UnitConfigTCO.dcu and b/UnitConfigTCO.dcu differ diff --git a/UnitPrinc.dcu b/UnitPrinc.dcu index c1050ed..222ae9a 100644 Binary files a/UnitPrinc.dcu and b/UnitPrinc.dcu differ diff --git a/UnitPrinc.pas b/UnitPrinc.pas index 11ea482..2d736ff 100644 --- a/UnitPrinc.pas +++ b/UnitPrinc.pas @@ -325,7 +325,7 @@ var FormPrinc: TFormPrinc; ack,portCommOuvert,traceTrames,AffMem,AfficheDet,CDM_connecte, - Raz_Acc_signaux,AvecInit,AvecTCO,terminal,Srvc_Aig,Srvc_Det,Srvc_Act, + Raz_Acc_signaux,AvecInit,AvecTCO,terminal,Srvc_Aig,Srvc_Det,Srvc_Act,MasqueBandeauTCO, Srvc_PosTrain,Srvc_Sig,debugtrames : boolean; tablo : array of byte; // tableau rx usb Enregistrement,chaine_Envoi,chaine_recue,Id_CDM,Af, @@ -6823,10 +6823,18 @@ begin ClientSocketLenz.close; if TCO_modifie then if MessageDlg('Le TCO a été modifié. Voulez vous le sauvegarder ?',mtConfirmation,[mbYes,mbNo],0)=mrYes then + begin sauve_fichier_tco; + ancienFormatTCO:=false; + end; if config_modifie then if MessageDlg('La configuration a été modifiée. Voulez vous la sauvegarder ?',mtConfirmation,[mbYes,mbNo],0)=mrYes then sauve_config; + + if avecTCO then + begin + if ancienFormatTCO then sauve_fichier_tco; + end; end; diff --git a/UnitTCO.dcu b/UnitTCO.dcu index aec2c3d..2ee7ecb 100644 Binary files a/UnitTCO.dcu and b/UnitTCO.dcu differ diff --git a/UnitTCO.dfm b/UnitTCO.dfm index 04ab6ba..0f618f0 100644 --- a/UnitTCO.dfm +++ b/UnitTCO.dfm @@ -20,7 +20,6 @@ object FormTCO: TFormTCO OnCreate = FormCreate OnDockOver = FormDockOver OnKeyDown = FormKeyDown - OnResize = FormResize DesignSize = ( 1123 656) @@ -108,7 +107,7 @@ object FormTCO: TFormTCO HorzScrollBar.Tracking = True VertScrollBar.Smooth = True VertScrollBar.Tracking = True - Anchors = [akLeft, akTop, akRight] + Anchors = [akLeft, akTop, akRight, akBottom] BevelEdges = [beLeft, beTop, beRight] Color = clBtnFace ParentColor = False diff --git a/UnitTCO.pas b/UnitTCO.pas index e7ef340..8ee4a6e 100644 --- a/UnitTCO.pas +++ b/UnitTCO.pas @@ -209,7 +209,6 @@ type Y: Integer); procedure ButtonMasquerClick(Sender: TObject); procedure ButtonAfficheBandeauClick(Sender: TObject); - procedure FormResize(Sender: TObject); procedure ImagePalette21EndDrag(Sender, Target: TObject; X, Y: Integer); procedure ImagePalette22EndDrag(Sender, Target: TObject; X, @@ -286,6 +285,14 @@ type const ZoomMax=50;ZoomMin=20; MaxCellX=150;MaxCellY=70; + ClFond_ch='CoulFond'; + clVoies_ch='CoulVoies'; + clAllume_ch='CoulAllume'; + clGrille_ch='CoulGrille'; + clTexte_ch='CoulTexte'; + clQuai_ch='CoulQuai'; + Matrice_ch='Matrice'; + Cellule_ch='Cellule'; type // structure du TCO @@ -311,7 +318,7 @@ var clAllume,clVoies,Fond,couleurAdresse,clGrille,cltexte,clQuai,CoulFonte : Tcolor; FormTCO: TFormTCO; Forminit,sourisclic,SelectionAffichee,TamponAffecte,entoure,Diffusion,TCO_modifie, - piloteAig : boolean; + piloteAig,ancienFormatTCO,BandeauMasque : boolean; HtImageTCO,LargImageTCO,XclicCell,YclicCell,XminiSel,YminiSel,XCoupe,Ycoupe, XmaxiSel,YmaxiSel,AncienXMiniSel,AncienXMaxiSel ,AncienYMiniSel,AncienYMaxiSel, Xclic,Yclic,XClicCellInserer,YClicCellInserer,Xentoure,Yentoure, @@ -343,13 +350,16 @@ uses UnitConfigTCO, Unit_Pilote_aig; procedure lire_fichier_tco; var fichier : textfile; - s : string; - x,y,i,j,m,adresse,valeur,erreur,FeuOriente,PiedFeu,tailleFont : integer; + s,sa : string; + nv,x,y,i,j,m,adresse,valeur,erreur,FeuOriente,PiedFeu,tailleFont : integer; + trouve_CoulFond,trouve_clVoies,trouve_clAllume,trouve_clGrille, + trouve_clTexte,trouve_clQuai,trouve_matrice,trouve_cellule : boolean; function lit_ligne : string ; var c : char; begin repeat readln(fichier,s); + s:=Uppercase(s); //Affiche(s,clWhite); if length(s)>0 then c:=s[1]; until ((c<>'/') and (s<>'')) or eof(fichier) ; @@ -369,33 +379,138 @@ begin {$I-} x:=1;y:=1;NbreCellX:=0;NbreCellY:=0; + trouve_clAllume:=false; + trouve_CoulFond:=false; + trouve_clVoies:=false; + trouve_clGrille:=false; + trouve_clTexte:=false; + trouve_clQuai:=false; + trouve_matrice:=false; + trouve_cellule:=false; // couleurs s:=lit_ligne; - val('$'+s,fond,erreur); + sa:=uppercase(ClFond_ch)+'='; + i:=pos(sa,s); + if i<>0 then + begin + inc(nv); + trouve_CoulFond:=true; + delete(s,i,length(sa)); + val('$'+s,i,erreur); + fond:=i; + end + else val('$'+s,Fond,erreur); + s:=lit_ligne; - val('$'+s,clVoies,erreur); + sa:=uppercase(clVoies_ch)+'='; + i:=pos(sa,s); + if i<>0 then + begin + inc(nv); + trouve_clVoies:=true; + delete(s,i,length(sa)); + val('$'+s,i,erreur); + clVoies:=i; + end + else val('$'+s,clVoies,erreur); + s:=lit_ligne; - val('$'+s,clAllume,erreur); + sa:=uppercase(clAllume_ch)+'='; + i:=pos(sa,s); + if i<>0 then + begin + inc(nv); + trouve_clAllume:=true; + delete(s,i,length(sa)); + val('$'+s,i,erreur); + clAllume:=i; + end + else val('$'+s,clAllume,erreur); + s:=lit_ligne; - val('$'+s,clGrille,erreur); + sa:=uppercase(clGrille_ch)+'='; + i:=pos(sa,s); + if i<>0 then + begin + inc(nv); + trouve_clGrille:=true; + delete(s,i,length(sa)); + val('$'+s,i,erreur); + clGrille:=i; + end + else val('$'+s,clGrille,erreur); + s:=lit_ligne; - if pos(',',s)=0 then begin val('$'+s,cltexte,erreur);s:=lit_ligne;end; - if pos(',',s)=0 then begin val('$'+s,clQuai,erreur);s:=lit_ligne;end; + sa:=uppercase(clTexte_ch)+'='; + i:=pos(sa,s); + if i<>0 then + begin + inc(nv); + trouve_clTexte:=true; + delete(s,i,length(sa)); + val('$'+s,i,erreur); + clTexte:=i; + end + else val('$'+s,clTexte,erreur); + + s:=lit_ligne; + sa:=uppercase(clQuai_ch)+'='; + i:=pos(sa,s); + if i<>0 then + begin + inc(nv); + trouve_clQuai:=true; + delete(s,i,length(sa)); + val('$'+s,i,erreur); + clQuai:=i; + end + else val('$'+s,clQuai,erreur); // taille de la matrice - Val(s,NbreCellX,erreur); - delete(s,1,erreur); + s:=lit_ligne; + sa:=uppercase(Matrice_ch)+'='; + i:=pos(sa,s); + if i<>0 then + begin + inc(nv); + trouve_matrice:=true; + delete(s,i,length(sa)); + val('$'+s,i,erreur); + NbreCellX:=i; + end + else val(s,NbreCellX,erreur); + + i:=pos(',',s);delete(s,1,i); Val(s,NbreCellY,erreur); + NbCellulesTCO:=NbreCellX*NbreCellY; // largeur et hauteur des cellules s:=lit_ligne; - Val(s,LargeurCell,erreur); - delete(s,1,erreur); + sa:=uppercase(Cellule_ch)+'='; + i:=pos(sa,s); + if i<>0 then + begin + inc(nv); + trouve_cellule:=true; + delete(s,i,length(sa)); + val('$'+s,i,erreur); + NbreCellX:=i; + end + else val(s,LargeurCell,erreur); + + i:=pos(',',s);delete(s,1,i); Val(s,HauteurCell,erreur); - // lire le fichier + ancienFormatTCO:=not(trouve_cellule); // si ancienformat, on va sauver automatiqmement en nouveau format à la fermeture. + + if not(ancienFormatTCO) then + begin + s:=lit_ligne; // [matrice] + end; + + // lire la matrice while not eof(fichier) do begin s:=lit_ligne; @@ -503,6 +618,15 @@ begin i:=pos(',',s); val('$'+s,coulFonte,erreur); + if ancienFormatTCO then + begin + m:=tco[x,y].BImage; + case m of + 1 : coulFonte:=ClYellow; + 2,3,4,5,12,13,14,15,21,22 : coulfonte:=ClLime; + 30 : coulFonte:=clLime; + end; + end; tco[x,y].coulFonte:=coulFonte; delete(s,1,i); if s[1]<>')' then @@ -538,18 +662,19 @@ begin AssignFile(fichier,'tco.cfg'); rewrite(fichier); Writeln(fichier,'/ Couleurs : fond, voies, détecteur_activé, grille, textes, quai'); - Writeln(fichier,IntToHex(fond,6)); - Writeln(fichier,IntToHex(ClVoies,6)); - Writeln(fichier,IntToHex(ClAllume,6)); - Writeln(fichier,IntToHex(ClGrille,6)); - Writeln(fichier,IntToHex(ClTexte,6)); - Writeln(fichier,IntToHex(ClQuai,6)); + Writeln(fichier,clFond_ch+'='+IntToHex(fond,6)); + Writeln(fichier,clVoies_ch+'='+IntToHex(ClVoies,6)); + Writeln(fichier,clAllume_ch+'='+IntToHex(ClAllume,6)); + Writeln(fichier,clGrille_ch+'='+IntToHex(ClGrille,6)); + Writeln(fichier,clTexte_ch+'='+IntToHex(ClTexte,6)); + Writeln(fichier,clQuai_ch+'='+IntToHex(ClQuai,6)); writeln(fichier,'/ Taille de la matrice x,y'); - writeln(fichier,IntToSTR(NbreCellX)+','+intToSTR(NbreCellY)); + writeln(fichier,matrice_ch+'='+IntToSTR(NbreCellX)+','+intToSTR(NbreCellY)); writeln(fichier,'/ Largeur et hauteur des cellules en pixels'); - writeln(fichier,IntToSTR(LargeurCell)+','+intToSTR(HauteurCell)); - writeln(fichier,'/Dalle TCO'); + writeln(fichier,cellule_ch+'='+IntToSTR(LargeurCell)+','+intToSTR(HauteurCell)); + writeln(fichier,'/Matrice TCO'); + writeln(fichier,'[Matrice]'); writeln(fichier,'/ inutilisé,adresse,image,inversion aiguillage,Orientation du feu, pied du feu , [texte], representation, fonte, taille fonte, couleur fonte, style '); for y:=1 to NbreCellY do begin @@ -2795,6 +2920,7 @@ end; procedure TFormTCO.FormCreate(Sender: TObject); begin + //Affiche('FormTCO create',clyellow); caption:='TCO'; AvecGrille:=true; TCO_modifie:=false; @@ -3171,7 +3297,7 @@ end; procedure TFormTCO.FormActivate(Sender: TObject); begin - //Affiche('Form TCO activate',clyellow); + Affiche('Form TCO activate',clyellow); if not(Forminit) then begin FormInit:=true; @@ -3240,9 +3366,23 @@ begin Transparent:=true; Picture.Bitmap:=Formprinc.Image9feux.Picture.Bitmap; end; - + //Affiche_tco; TrackBarZoom.Position:=(ZoomMax+Zoommin) div 2; + + if MasqueBandeauTCO then + begin + ButtonAfficheBandeau.visible:=true; + BandeauMasque:=true; + Panel1.Hide; + ScrollBox.Height:=ClientHeight-40; + end + else + begin + BandeauMasque:=false; + Panel1.show; + ScrollBox.Height:=ClientHeight-Panel1.Height-40; + end; end; end; @@ -4557,6 +4697,8 @@ begin Panel1.Hide; ButtonAfficheBandeau.visible:=true; ScrollBox.Height:=ClientHeight-40; + //ScrollBox.Anchors:=[akLeft,AkTop,AkRight,akBottom]; + BandeauMasque:=true; end; procedure TFormTCO.ButtonAfficheBandeauClick(Sender: TObject); @@ -4564,14 +4706,9 @@ begin Panel1.Show; ButtonAfficheBandeau.visible:=false; ScrollBox.Height:=ClientHeight-Panel1.Height-40; + BandeauMasque:=false; end; -procedure TFormTCO.FormResize(Sender: TObject); -begin - ScrollBox.Height:=ClientHeight-Panel1.Height-40; -end; - - procedure TFormTCO.ImageTCODblClick(Sender: TObject); var Bimage,Adresse,i : integer; tjdC : boolean; diff --git a/tco.cfg b/tco.cfg index 51a69b1..5424f6c 100644 --- a/tco.cfg +++ b/tco.cfg @@ -1,26 +1,27 @@ / Couleurs : fond, voies, détecteur_activé, grille, textes, quai -202050 -0077FF -00FFFF -4A4A4A -00FF00 -808080 +CoulFond=202050 +CoulVoies=0077FF +CoulAllume=00FFFF +CoulGrille=4A4A4A +CoulTexte=00FF00 +CoulQuai=808080 / Taille de la matrice x,y -35,13 +Matrice=53,13 / Largeur et hauteur des cellules en pixels -35,35 -/Dalle TCO -/ type,adresse,image,inversion aiguillage,Orientation du feu, pied du feu , [texte], representation, fonte, taille fonte, couleur fonte, style -(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,TCO gare principale,1,Arial,20,00FFFF,GI)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,288,30,0,2,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,) -(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,8,00FF00,)(0,000,0,0,0,0,,2,,8,00FF00,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,9,0,0,0,,2,,0,000000,)(0,000,1,0,0,0,,2,,0,000000,)(0,000,1,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,) -(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(0,000,0,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(2,006,2,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,10,0,0,0,,2,,0,000000,)(1,000,9,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,) -(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,10,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,232,30,0,3,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,10,0,0,0,,2,,0,000000,)(1,000,10,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,) -(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,004,15,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,7,0,0,0,,2,,0,000000,)(1,000,10,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,) -(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,003,15,0,0,0,,2,,0,000000,)(2,005,2,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,515,1,0,0,0,,2,,0,000000,)(1,515,1,0,0,0,,0,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,7,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,) -(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,260,30,0,2,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,10,0,0,0,,2,,0,000000,)(1,000,10,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,316,30,0,3,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,23,0,0,0,,2,,0,000000,)(1,000,23,0,0,0,,2,,0,000000,)(1,000,23,0,0,0,Quai 1,1,Arial,12,FFFFFF,G)(1,000,23,0,0,0,,2,,0,000000,)(1,000,23,0,0,0,,2,,0,000000,)(1,000,23,0,0,0,,2,,0,000000,)(1,000,23,0,0,0,,2,,0,000000,)(1,000,23,0,0,0,,2,,0,000000,)(1,000,23,0,0,0,,2,,0,000000,)(1,000,23,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,190,30,0,2,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,) -(1,000,0,0,0,0,,2,,0,000000,)(1,000,6,0,0,0,,2,,0,000000,)(1,518,1,0,0,0,,0,,0,000000,)(1,518,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(2,001,3,0,0,0,,2,,0,000000,)(2,000,21,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,Voie 2,2,Arial,10,FFFF00,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,523,1,0,0,0,,0,,0,000000,)(1,523,1,0,0,0,,0,,0,000000,)(1,523,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,) -(1,000,0,0,0,0,,2,,0,000000,)(1,000,6,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(2,012,4,0,0,0,,2,,0,000000,)(2,002,3,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,519,1,0,0,0,,2,,0,000000,)(1,519,1,0,0,0,,0,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,Voie 1,2,Arial,10,FFFF00,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,8,00FF00,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(2,007,2,0,0,0,,2,,0,000000,)(1,000,1,0,0,0,,2,,0,000000,)(1,527,1,0,0,0,,2,,8,00FF00,)(1,000,1,0,0,0,,3,,8,00FF00,)(1,000,1,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,2,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,) -(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,1,0,0,0,,0,,0,000000,)(1,000,8,0,0,0,,0,,0,000000,)(1,000,11,0,0,0,,0,,0,000000,)(1,330,30,0,3,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,23,0,0,0,,0,,0,000000,)(1,000,23,0,0,0,,0,,0,000000,)(1,000,23,0,0,0,Quai 2,0,Arial,12,FFFFFF,G)(1,000,23,0,0,0,,0,,0,000000,)(1,000,23,0,0,0,,0,,0,000000,)(1,000,23,0,0,0,,0,,0,000000,)(1,000,23,0,0,0,,0,,0,000000,)(1,000,23,0,0,0,,0,,0,000000,)(1,000,23,0,0,0,,0,,0,000000,)(1,000,23,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,10,0,0,0,,0,,0,000000,)(1,204,30,0,3,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,8,00FF00,)(1,000,0,0,0,0,,0,,8,00FF00,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,) -(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,1,0,0,0,,0,,0,000000,)(1,000,1,0,0,0,,0,,0,000000,)(2,021,5,0,0,0,,0,,0,000000,)(2,020,5,0,0,0,,0,,0,000000,)(2,520,1,0,0,0,,2,,8,00FF00,)(2,520,1,0,0,0,,0,,0,000000,)(2,520,1,0,0,0,,0,,0,000000,)(2,000,1,0,0,0,,0,,8,00FF00,)(2,000,1,0,0,0,,0,,0,000000,)(2,000,1,0,0,0,,0,,0,000000,)(2,000,1,0,0,0,,0,,8,00FF00,)(2,000,1,0,0,0,,0,,0,000000,)(2,000,1,0,0,0,,0,,0,000000,)(2,000,1,0,0,0,,0,,8,00FF00,)(2,000,1,0,0,0,,0,,0,000000,)(2,000,1,0,0,0,,0,,0,000000,)(2,000,1,0,0,0,,0,,8,00FF00,)(2,000,1,0,0,0,,0,,0,000000,)(2,000,1,0,0,0,,0,,8,00FF00,)(2,000,1,0,0,0,,0,,0,000000,)(2,000,1,0,0,0,,0,,0,000000,)(2,000,7,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,8,00FF00,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,) -(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,176,30,0,3,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,3,,8,00FF00,)(1,000,0,0,0,0,,0,,8,00FF00,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,8,00FF00,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,8,00FF00,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,8,00FF00,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,) -(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,)(1,000,0,0,0,0,,0,,0,000000,) +Cellule=42,42 +/Matrice TCO +[Matrice] +/ inutilisé,adresse,image,inversion aiguillage,Orientation du feu, pied du feu , [texte], representation, fonte, taille fonte, couleur fonte, style +(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,TCO GARE PRINCIPALE,1,ARIAL,20,00FFFF,GI)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,288,30,0,2,0,,2,,0,00FF00,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,) +(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,8,00FF00,)(0,0,0,0,0,0,,2,,8,00FF00,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,9,0,0,0,,2,,0,000000,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,) +(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,6,2,0,0,0,,2,,0,00FF00,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,10,0,0,0,,2,,0,000000,)(0,0,9,0,0,0,,2,,0,000000,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,) +(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,10,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,232,30,0,3,0,,2,,0,00FF00,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,COOPER BLACK,10,00FF00,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,10,0,0,0,,2,,0,000000,)(0,0,10,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,) +(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,4,15,0,0,0,,2,MS SANS SERIF,10,00FF00,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,7,0,0,0,,2,,0,000000,)(0,0,10,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,) +(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,3,15,0,0,0,,2,,0,00FF00,)(0,5,2,0,0,0,,2,,0,00FF00,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,515,1,0,0,0,,2,MS SANS SERIF,10,00FFFF,)(0,515,1,0,0,0,,0,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,7,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,) +(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,260,30,0,2,0,,2,MS SANS SERIF,10,00FF00,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,10,0,0,0,,2,,0,000000,)(0,0,10,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,316,30,0,3,0,,2,COOPER BLACK,10,00FF00,)(0,0,0,0,0,0,,2,COOPER BLACK,10,0000FF,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,23,0,0,0,,2,,0,000000,)(0,0,23,0,0,0,,2,,0,000000,)(0,0,23,0,0,0,QUAI 1,1,ARIAL,12,FFFFFF,G)(0,0,23,0,0,0,,2,,0,000000,)(0,0,23,0,0,0,,2,,0,000000,)(0,0,23,0,0,0,,2,,0,000000,)(0,0,23,0,0,0,,2,,0,000000,)(0,0,23,0,0,0,,2,,0,000000,)(0,0,23,0,0,0,,2,,0,000000,)(0,0,23,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,190,30,0,2,0,,2,COOPER BLACK,10,00FF00,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,) +(0,0,0,0,0,0,,2,,0,000000,)(0,0,6,0,0,0,,2,,0,000000,)(0,518,1,0,0,0,,0,,0,00FFFF,)(0,518,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,1,3,0,0,0,,2,,0,00FF00,)(0,0,21,0,0,0,,2,,0,00FF00,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,VOIE 2,2,ARIAL,10,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,523,1,0,0,0,,0,,0,00FFFF,)(0,523,1,0,0,0,,0,,0,00FFFF,)(0,523,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,) +(0,0,0,0,0,0,,2,,0,000000,)(0,0,6,0,0,0,,2,,0,000000,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,12,4,0,0,0,,2,MS SANS SERIF,10,00FF00,)(0,2,3,0,0,0,,2,MS SANS SERIF,10,00FF00,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,519,1,0,0,0,,2,,0,00FFFF,)(0,519,1,0,0,0,,0,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,VOIE 1,2,ARIAL,10,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,8,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,7,2,0,0,0,,2,,0,00FF00,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,527,1,0,0,0,,2,,8,00FFFF,)(0,0,1,0,0,0,,3,,8,00FFFF,)(0,0,1,0,0,0,,0,,0,00FFFF,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,) +(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,1,0,0,0,,0,,0,00FFFF,)(0,0,8,0,0,0,,0,,0,000000,)(0,0,11,0,0,0,,0,,0,000000,)(0,330,30,0,3,0,,0,,0,00FF00,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,23,0,0,0,,0,,0,000000,)(0,0,23,0,0,0,,0,,0,000000,)(0,0,23,0,0,0,QUAI 2,0,ARIAL,12,FFFFFF,G)(0,0,23,0,0,0,,0,,0,000000,)(0,0,23,0,0,0,,0,,0,000000,)(0,0,23,0,0,0,,0,,0,000000,)(0,0,23,0,0,0,,0,,0,000000,)(0,0,23,0,0,0,,0,,0,000000,)(0,0,23,0,0,0,,0,,0,000000,)(0,0,23,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,10,0,0,0,,0,,0,000000,)(0,204,30,0,3,0,,0,COOPER BLACK,10,00FF00,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,8,00FF00,)(0,0,0,0,0,0,,0,,8,00FF00,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,) +(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,1,0,0,0,,0,,0,00FFFF,)(0,0,1,0,0,0,,0,,0,00FFFF,)(0,21,5,0,0,0,,0,,0,00FF00,)(0,20,5,0,0,0,,0,,0,00FF00,)(0,520,1,0,0,0,,2,,8,00FFFF,)(0,520,1,0,0,0,,0,,0,00FFFF,)(0,520,1,0,0,0,,0,,0,00FFFF,)(0,0,1,0,0,0,,0,,8,00FFFF,)(0,0,1,0,0,0,,2,,0,00FFFF,)(0,0,1,0,0,0,,0,,0,00FFFF,)(0,0,1,0,0,0,,0,,8,00FFFF,)(0,0,1,0,0,0,,0,,0,00FFFF,)(0,0,1,0,0,0,,0,,0,00FFFF,)(0,0,1,0,0,0,,0,,8,00FFFF,)(0,0,1,0,0,0,,0,,0,00FFFF,)(0,0,1,0,0,0,,0,,0,00FFFF,)(0,0,1,0,0,0,,0,,8,00FFFF,)(0,0,1,0,0,0,,0,,0,00FFFF,)(0,0,1,0,0,0,,0,,8,00FFFF,)(0,0,1,0,0,0,,0,,0,00FFFF,)(0,0,1,0,0,0,,0,,0,00FFFF,)(0,0,7,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,2,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,8,00FF00,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,) +(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,176,30,0,3,0,,0,MS SANS SERIF,10,00FF00,)(0,0,0,0,0,0,,2,COOPER BLACK,10,00FF00,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,3,,8,00FF00,)(0,0,0,0,0,0,,0,,8,00FF00,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,8,00FF00,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,8,00FF00,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,8,00FF00,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,) +(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,)(0,0,0,0,0,0,,0,,0,000000,) diff --git a/versions.txt b/versions.txt index 538e48f..e074675 100644 --- a/versions.txt +++ b/versions.txt @@ -93,8 +93,9 @@ version 3.82 : Application d'un train destinataire pour les actionneurs de fonct version 3.83 : Quais pour le TCO. Fontes, couleurs et styles variables pour les textes des TCO. version 3.84 : Possibilité d'affecter des couleurs différentes pour chaque texte ou adresse de - signal, d'aiguillage ou de détecteur. Pour le passage de la V3.83 à la V3.84 vous devrez - entrer une couleur de fonte pour chaque cellule contenant une adresse. + signal, d'aiguillage ou de détecteur. + Affichage ou non du bandeau de configuration du TCO au démarrage +