<?php
namespace App\Controller\Visiteur;
use App\DTO\AffichageGraphiqueDTO;
use App\Entity\PluvioDatabase;
use App\Form\AffichageGraphiqueType;
use App\Entity\Infiltration;
use App\Entity\Pluvio;
use App\DTO\ReutilisationDTO;
use App\Form\InfiltrationType;
use App\Repository\Fiche\FicheBatimentExempleRepository;
use App\Repository\Fiche\FicheBatimentRepository;
use App\Service\Fiche\FicheExempleService;
use App\Service\Fiche\FicheBatimentImportService;
use Doctrine\ORM\EntityManagerInterface;
use http\Env\Response;
use Knp\Bundle\SnappyBundle\KnpSnappyBundle;
use Knp\Component\Pager\PaginatorInterface;
use PhpOffice\PhpSpreadsheet\Writer\Pdf\Dompdf;
use Spipu\Html2Pdf\Html2Pdf;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Session\Session;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Component\Security\Core\Security;
use Psr\Log\LoggerInterface;
use Symfony\Component\String\Slugger\AsciiSlugger;
use ZipArchive;
use Symfony\Component\Serializer\Normalizer\ObjectNormalizer;
use Symfony\Component\Serializer\SerializerInterface;
use Knp\Snappy\Pdf;
use Knp\Snappy\Bundle\Snappy\Response\PdfResponse;
class SiteclientController extends AbstractController {
const NB_FICHE_HOMEPAGE = 15;
const NB_INDEX = 20;
/**
* @Route("/apropos", name="apropos")
*/
public function apropos() {
return $this->render('apropos.html.twig');
}
/**
* Convertit la valeur de certivea en booléen.
*
* @param mixed $certivea La valeur de certivea
* @return bool Le booléen correspondant
*/
private function toBool($certivea)
{
return filter_var($certivea, FILTER_VALIDATE_BOOLEAN);
}
/**
* @Route("/workinprogress", name="workinprogress")
*/
public function workinprogress() {
return $this->render('workinprogress.html.twig');
}
/**
* @Route("/aide", name="aide")
*/
public function aide() {
return $this->render('aide.html.twig');
}
/**
* @Route("/listePluvio", name="listePluvio")
*/
public function listePluvio(\App\Repository\PluvioDatabaseRepository $pluvioRepo,
Request $theRequest, PaginatorInterface $thePaginator,
Session $session) {
$session->start();
$session->set("lastPage", "listePluvio");
if (!$this->isGranted('ROLE_ADMIN')) {
$typeFormFilter = 'utilisateur';
$idUser = $this->getUser()->getId();
} else {
$typeFormFilter = 'admin';
$idUser = null;
}
$listFichePluvioBuilder = $pluvioRepo->findAllIndexBuilder($idUser);
$listFichePluvio = $thePaginator->paginate(
$listFichePluvioBuilder,
$theRequest->get('page', 1),
self::NB_INDEX
);
return $this->render('listePluvio.html.twig', [
'listFichePluvio' => $listFichePluvio
]);
}
/**
* @Route("/pluvioId/{id}", name="pluvioId", options={"expose" : true})
*/
public function pluvioId(Session $session, $id) {
$session->start();
$session->set("pluvioId", $id);
return $this->redirectToRoute('reutilisation');
}
/**
* @Route("/postConnexion", name="postConnexion")
*/
public function postConnexion(Session $session) {
$session->start();
$lastPage = $session->get("lastPage");
//dump($lastPage);
$array = [];
if ($lastPage === "tri"){
$idProjet = $session->get("idProjet");
$array = ["idProjet" => $idProjet];
return $this->redirectToRoute($lastPage,$array);
}
if ($lastPage === "lot"){
$idProjet = $session->get("idProjet");
$lot = $session->get("lot");
$array = ["idProjet" => $idProjet, "lot" => $lot];
return $this->redirectToRoute($lastPage,$array);
}
return $this->redirectToRoute($lastPage);
}
/**
* @Route("/", name="index")
*/
public function index(Session $session) {
$session->start();
$session->set("lastPage", "index");
return $this->render('base.html.twig'
);
}
/**
* @Route("/admin", name="admin")
*/
public function admin(FicheBatimentRepository $fb) {
$fb->supprimerdoublon();
// return $this->render('admin.html.twig');
}
/**
* @Route("/quiplusest", name="quiplusest")
*/
public function quiplusest() {
return $this->redirect('http://www.quiplusest.coop');
}
/**
* @Route("/QEBOK", name="QEBOK")
*/
public function qebok() {
return $this->redirect('http://www.qebok.fr');
}
/**
* @Route("/QUVEO", name="QUVEO")
*/
public function quveo() {
return $this->redirect('http://www.quveo.fr');
}
/**
* @Route("/emaarchitectes", name="emaarchitectes")
*/
public function emaarchitectes() {
return $this->redirect('http://www.emaarchitectes.com');
}
/**
* @Route("/upload-dropzone", name="upload-dropzone")
*/
public function uploadDropzone(Request $req,
FicheBatimentImportService $service,
FicheBatimentRepository $ficheBatRep,
EntityManagerInterface $em,
Session $session) {
$session->start();
$idFicheBatiments = $session->get("idFicheBatiments");
$time = date('YmdHis');
// Récup contenu du fichier temporaire crée et
$fichier = $req->files->get('fichier');
//si c'est un fichier zip, on extrait le XML
$extension = pathinfo($fichier, PATHINFO_EXTENSION);
if ($extension = "zip") {
$zip = new ZipArchive();
if ($zip->open($fichier) === TRUE) {
$zip->extractTo('EXTRACTION', 'fiche.xml');
$zip->close();
$nomFichier = uniqid() . '.xml';
rename("EXTRACTION/fiche.xml", 'IMPORTS/' . $nomFichier);
$nomInitialFichier = 'fiche.xml';
}
//
} else {
$nomFichier = uniqid() . '.xml';
$nomInitialFichier = $fichier->getClientOriginalName();
$fichier->move('IMPORTS', $nomFichier);
}
//analyse que s'il est conforme RT2012
$xml = simplexml_load_file('IMPORTS/' . $nomFichier);
if (isset($xml->Entree_Projet->Index) or isset($xml->RSET->Entree_Projet->Index)) {
$fichesBatiment = $service->importer('IMPORTS/' . $nomFichier, $time, $nomInitialFichier);
foreach ($fichesBatiment as $ficheBatiment) {
$fichesOps[] = $ficheBatiment;
$idFicheBatiments[] = $ficheBatiment->getId();
}
}
$session->set("idFicheBatiments", $idFicheBatiments);
return $this->json($fichesOps);
}
/**
* @Route("/homepage", name="homepage")
*/
public function homepage(
Request $req,
FicheBatimentRepository $fichebatimentRepository,
FicheBatimentRepository $ficheBatRep,
FicheBatimentExempleRepository $theFicheBatimentExempleRepository,
Session $session,
PaginatorInterface $thePaginator
) {
$session->start();
$session->set("lastPage", "homepage");
$page = $req->get('page', 1);
if ($this->getUser() == null) {
$idFicheBatimentsUser = $session->get("idFicheBatiments");
if ($idFicheBatimentsUser != null) {
$listFicheBatimentUser = $fichebatimentRepository->findByIds($idFicheBatimentsUser);
} else {
$listFicheBatimentUser = [];
$idFicheBatimentsUser = [];
}
if (count($listFicheBatimentUser) == 0) {
$listFicheBatimentUser[] = $theFicheBatimentExempleRepository->findSingleton()->getTheFicheBatiment();
}
$listFicheBatimentUser = $thePaginator->paginate(
$listFicheBatimentUser,
$page,
self::NB_FICHE_HOMEPAGE
);
} else {
$idFicheBatimentsUser = $fichebatimentRepository->findIdsByUser($this->getUser()->getId());
$listFicheBatimentUserBuilder = $fichebatimentRepository->findByUserBuilder($this->getUser()->getId());
$idFicheBatimentsUser = array_column($idFicheBatimentsUser, 'id');
$listFicheBatimentUser = $thePaginator->paginate(
$listFicheBatimentUserBuilder,
$page,
self::NB_FICHE_HOMEPAGE
);
}
//******************************************
// Mise en place du formulaire de filtre
//******************************************
$filtreDTO = new AffichageGraphiqueDTO();
$filtreForm = $this->createForm(AffichageGraphiqueType::class, $filtreDTO);
$filtreForm->handleRequest($req);
// Insitialise fichesBatiments soit avec tous soit via critères submitted
if ($filtreForm->isSubmitted()) {
$listFicheBatimentAll = $ficheBatRep->filtrer($filtreDTO->getUsage(), $filtreDTO->getZoneClimatique(), $filtreDTO->getEtancheiteMin(),
$filtreDTO->getEtancheiteMax(), $filtreDTO->getTauxVitreeMin(), $filtreDTO->getTauxVitreeMax());
if ($filtreDTO->getAbscisse() == 'compacite') {
$abscisse = 'Compacité en m² enveloppe par m² SHONRT';
} elseif ($filtreDTO->getAbscisse() == 'tauxVitre') {
$abscisse = 'Taux de vitrage en m² de vitrage par m² SHONRT';
} elseif ($filtreDTO->getAbscisse() == 'orientationSud') {
$abscisse = 'Pourcentage de baies au sud';
} elseif ($filtreDTO->getAbscisse() == 'compaciteVitre') {
$abscisse = 'Compacité x Taux vitré';
} elseif ($filtreDTO->getAbscisse() == 'compaciteVitreBrassage') {
$abscisse = 'Compacité x Taux vitré x Brassage';
}
if ($filtreDTO->getOrdonnee() == 'bBioChauffage') {
$ordonnee = 'BBIO Chauffage';
} elseif ($filtreDTO->getOrdonnee() == 'bBioEclairage') {
$ordonnee = 'BBIO Eclairage';
}
} else {
$listFicheBatimentAll = $ficheBatRep->findAll();
$abscisse = "Compacité en m² enveloppe par m² SHONRT";
$ordonnee = "BBIO Chauffage";
}
// Prépare les données du graphique
$graphiqueAll = [];
$graphiqueUser = [];
foreach ($listFicheBatimentAll as $aFicheBatimentAll) {
$coordonnees = [];
if ($filtreForm->isSubmitted()) {
if ($filtreDTO->getAbscisse() == 'compacite') {
$coordonnees[] = $aFicheBatimentAll->getCompacite();
$abscisse = 'Compacité en m² enveloppe par m² SHONRT';
} elseif ($filtreDTO->getAbscisse() == 'tauxVitre') {
$coordonnees[] = $aFicheBatimentAll->getTauxVitrage();
$abscisse = 'Taux de vitrage en m² de vitrage par m² SHONRT';
} elseif ($filtreDTO->getAbscisse() == 'orientationSud') {
$coordonnees[] = $aFicheBatimentAll->getPartBaiesSudBatiment();
$abscisse = 'Pourcentage de baies au sud';
} elseif ($filtreDTO->getAbscisse() == 'compaciteVitre') {
$coordonnees[] = $aFicheBatimentAll->getCombinaisonCompaciteTauxVitrage();
$abscisse = 'Compacité x Taux vitré';
} elseif ($filtreDTO->getAbscisse() == 'compaciteVitreBrassage') {
$coordonnees[] = $aFicheBatimentAll->getCombinaisonCompaciteTauxVitrageBrassageBBIO();
$abscisse = 'Compacité x Taux vitré x Brassage';
}
if ($filtreDTO->getOrdonnee() == 'bBioChauffage') {
$coordonnees[] = $aFicheBatimentAll->getBbioChaudAnnuel();
$ordonnee = 'BBIO Chauffage';
} elseif ($filtreDTO->getOrdonnee() == 'bBioEclairage') {
$coordonnees[] = $aFicheBatimentAll->getBbioEclairageAnnuel();
$ordonnee = 'BBIO Eclairage';
}
} else {
$coordonnees[] = $aFicheBatimentAll->getCompacite();
$coordonnees[] = $aFicheBatimentAll->getBbioChaudAnnuel();
$abscisse = "Compacité en m² enveloppe par m² SHONRT";
$ordonnee = "BBIO Chauffage";
}
if (in_array($aFicheBatimentAll->getId(), $idFicheBatimentsUser)) {
$graphique = &$graphiqueUser;
} else {
$graphique = &$graphiqueAll;
}
$graphique['coordonnees'][] = $coordonnees;
$graphique['taux_de_vitrage'][] = $aFicheBatimentAll->getTauxVitrage();
$graphique['q_4_pasurf'][] = $aFicheBatimentAll->getQ4PaSurf();
$graphique['uw_moyen'][] = $aFicheBatimentAll->getUwMoyen();
$graphique['ids'][] = $aFicheBatimentAll->getId();
}
if (count($graphiqueAll) > 0) {
$graphiqueJsonCoordonnees = json_encode($graphiqueAll['coordonnees']);
$graphiqueJsonAll = ['data' => $graphiqueJsonCoordonnees];
$graphiqueJsonAll['taux_de_vitrage'] = json_encode($graphiqueAll['taux_de_vitrage']);
$graphiqueJsonAll['q_4_pasurf'] = json_encode($graphiqueAll['q_4_pasurf']);
$graphiqueJsonAll['uw_moyen'] = json_encode($graphiqueAll['uw_moyen']);
$graphiqueJsonAll['ids'] = json_encode($graphiqueAll['ids']);
$alert = null;
} else {
$graphiqueJsonAll = ['data' => '[0,0]'];
$graphiqueJsonAll['taux_de_vitrage'] = '[0,0]';
$graphiqueJsonAll['q_4_pasurf'] = '[0,0]';
$graphiqueJsonAll['uw_moyen'] = '[0,0]';
$graphiqueJsonAll['ids'] = '[0,0]';
$alert = 'Encore aucune donnée pour ces filtres';
}
if (count($graphiqueUser) > 0) {
$graphiqueJsonCoordonnees = json_encode($graphiqueUser['coordonnees']);
$graphiqueJsonUser = ['data' => $graphiqueJsonCoordonnees];
$graphiqueJsonUser['taux_de_vitrage'] = json_encode($graphiqueUser['taux_de_vitrage']);
$graphiqueJsonUser['q_4_pasurf'] = json_encode($graphiqueUser['q_4_pasurf']);
$graphiqueJsonUser['uw_moyen'] = json_encode($graphiqueUser['uw_moyen']);
$graphiqueJsonUser['ids'] = json_encode($graphiqueUser['ids']);
$alertUtilisateur = null;
} else {
$graphiqueJsonUser = ['data' => '[0,0]'];
$graphiqueJsonUser['taux_de_vitrage'] = '[0,0]';
$graphiqueJsonUser['q_4_pasurf'] = '[0,0]';
$graphiqueJsonUser['uw_moyen'] = '[0,0]';
$graphiqueJsonUser['ids'] = '[0,0]';
$alertUtilisateur = 'Encore aucune donnée pour cet utilisateur';
}
//******************************************
// Fin du graphique avec données utilisateur
//******************************************
//
// Renvoie vers le template index
return $this->render('homepage.html.twig', [
'all' => $listFicheBatimentAll,
'alert' => $alert,
'alertUtilisateur' => $alertUtilisateur,
'graphiqueJsonAll' => $graphiqueJsonAll,
'graphiqueJsonUser' => $graphiqueJsonUser,
'abscisse' => $abscisse,
'ordonnee' => $ordonnee,
// 'monForm' => $uploadForm->createView(),
'affichage' => $filtreForm->createView(),
'listFicheBatiment' => $listFicheBatimentUser,
]);
}
/**
* @Route("/infiltration", name="infiltration")
*/
public function infiltration(EntityManagerInterface $em, Request $req
) {
$infiltration = new Infiltration();
$form = $this->createForm(InfiltrationType::class, $infiltration);
$form->handleRequest($req);
if ($form->isSubmitted() && $form->isValid()) {
$nbreEtage = $infiltration->getNbrEtage();
$p4 = $infiltration->getQ4();
$n50 = 1.8 * $p4 * ($nbreEtage + 1) / $nbreEtage;
$infiltration->setN50($n50);
$facadeExposee = $infiltration->getFacadeExposee();
$localisation = $infiltration->getLocalisation();
if ($facadeExposee == 'Espace chauffé sans façade exposée') {
$exposition = 0.01;
} else if ($facadeExposee == 'Espace chauffé à simple exposition') {
if ($localisation == 'Site non abrité') {
$exposition = 0.03;
} else if ($localisation == 'Site modérément abrité') {
$exposition = 0.02;
} else if ($localisation == 'Site très abrité') {
$exposition = 0.02;
}
} else if ($facadeExposee == 'Espace chauffé avec expositions multiples') {
if ($localisation == 'Site non abrité') {
$exposition = 0.05;
} else if ($localisation == 'Site modérément abrité') {
$exposition = 0.03;
} else if ($localisation == 'Site très abrité') {
$exposition = 0.02;
}
}
$infiltration->setFactExposition($exposition);
$hauteurTotale = $nbreEtage * 4;
if ($hauteurTotale <= 10){
$factHauteur = 1;
} else if ($hauteurTotale <= 30){
$factHauteur = 1.2;
} else if ($hauteurTotale > 30){
$factHauteur = 1.5;
}
$infiltration->setFactCorrectifHauteur($factHauteur);
$volumeChauffe = $infiltration->getVolumeChauffe();
$debitAirInfil = 2 * $volumeChauffe * $n50 * $exposition * $factHauteur;
$infiltration->setDebitAirInfil($debitAirInfil);
$ratioInfil = number_format($debitAirInfil / $volumeChauffe, 2);
$em->persist($infiltration);
$em->flush();
} else {
$ratioInfil = "";
}
return $this->render('infiltration.html.twig', [
'form' => $form->createView(),
'infiltration' => $infiltration,
'ratioInfil' => $ratioInfil
]);
}
protected function toFloat($value) {
$value = str_replace(',', '.', $value);
return floatval($value);
}
/**
* @Route("/reutilisation", name="reutilisation")
*/
public function reutilisation(EntityManagerInterface $em, \App\Repository\PluvioDatabaseRepository $pluvioRepo,
Request $req, Session $session, Security $security) {
$idInitial = 0;
$session->start();
$lastPage = $session->get("lastPage");
$calculEffectue = $session->get("calculEffectue");
if ($lastPage = "listePluvio"){
$idInitial = $session->get("pluvioId");
} elseif ($calculEffectue = 1) {
$idInitial = $session->get("pluvioId");
} else {
$idInitial = 0;
}
$show_complement=false;
$allowPDF=false;
$idFinal=0;
$session->set("lastPage", "reutilisation");
$this->em = $em;
$this->user = $security->getUser();
//dump($idInitial);
if ($idInitial != null) {
$reutilisationDTO = $pluvioRepo->find($idInitial);
}
if ($idInitial == 0) {
$reutilisationDTO = new \App\Entity\PluvioDatabase();
$reutilisationDTO->setTauxRaccordement(100);
$reutilisationDTO->setCertivea(0);
$reutilisationDTO->setCoutEau(4);
$reutilisationDTO->setCoutPompe(4000);
$reutilisationDTO->setchoixVolume(1000);
$reutilisationDTO->setCoutVolume(1000);
$reutilisationDTO->setChoixVolume2(4000);
$reutilisationDTO->setCoutVolume2(4000);
}
$form = $this->createForm(\App\Form\ReutilisationType::class, $reutilisationDTO);
$form->handleRequest($req);
// $fichePluvio = $pluvioRepo->find($idInitial);
$arrayReu = null;
if ($form->isSubmitted() && $form->isValid()) {
set_time_limit(100);
//climat et pluviometrie
$climat = $reutilisationDTO->getClimat();
$stationMeteo = $reutilisationDTO->getStationmeteo();
$ParisPluie = array(0.2, 1.6, 0, 0.8, 0, 0, 0.2, 0, 4.8, 2.4, 0.4, 6.7, 1.4, 0.8, 4.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.2, 1.4, 0.6, 0, 0.2, 6.8, 10.1, 0.8, 7.1, 2.2, 0, 0, 0.2, 0, 0, 0, 0.6, 1.4, 3.2, 0, 0, 0, 0, 0, 0, 0.4, 0, 0, 0, 5.2, 2.8, 9.1, 0, 4.8, 11.7, 8.3, 15.1, 0.6, 0.4, 0, 0, 0, 0, 0, 0, 0, 0, 0.8, 0.2, 0, 0.2, 1.4, 0.2, 12.5, 3.6, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.6, 0, 0.2, 0.4, 0, 0, 0, 0, 0, 0.4, 0, 4.4, 0.8, 0.6, 0, 10.5, 0, 0.8, 18, 4.4, 0, 9.5, 0.2, 0.2, 0, 0, 0.8, 13.8, 0, 0.8, 0, 0, 7.7, 14.7, 2.4, 0, 0, 0, 0, 0, 0, 0, 0.8, 0.4, 0, 0, 0, 0, 3.2, 2.2, 0, 7.2, 3.6, 0, 10.6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.2, 11.7, 5.2, 1.4, 5.6, 6.9, 1, 0, 0, 0, 2, 0, 0, 67.7, 11, 1, 0.2, 0, 0, 0, 0, 0, 0, 0.4, 0, 0, 3, 5, 0.4, 0, 0.2, 1, 0, 0, 0, 0.6, 0, 0.4, 0, 2.6, 0, 0, 0.6, 2.4, 6.5, 16, 0, 1.8, 0, 1.4, 0.4, 0, 15.4, 4.6, 0, 0, 0, 0, 0, 0, 13, 0.6, 3.2, 0, 0, 2.2, 0, 13.2, 0.2, 0, 0, 0, 0, 0.2, 15.7, 5.9, 1.8, 0.2, 1, 36.1, 3.6, 0, 0.4, 2.8, 4.6, 0.2, 0, 0, 0, 0, 0, 1, 0.2, 0.2, 0.4, 14.8, 0.4, 1, 8.7, 0.2, 0, 1.4, 0, 0.2, 0, 0.6, 0, 0, 0, 0, 0.2, 0.2, 0, 0, 0.2, 6.7, 0, 0.4, 4.4, 3.2, 1.4, 0.4, 0, 0, 0, 1.2, 0, 0.2, 0, 0, 0, 3.6, 0, 0, 0, 0, 1, 0.8, 8.8, 9.7, 0, 0, 0, 0, 0, 1.4, 0, 0, 0, 0, 6.7, 0.4, 0.8, 0, 14.7, 1, 1, 5, 0, 0, 0.4, 0, 0, 0, 3.6, 2.4, 4.6, 25.6, 3.2, 0, 13.6, 3, 2.6, 0.4, 4.8, 0, 0, 0.6, 1.2, 1.6, 0, 0.2, 2.2, 5.4, 3, 0, 15.1, 0.8, 1, 14.5, 5.7, 11, 8.7, 0.6, 2.8, 0.8, 0, 2.6, 0.4, 0, 0, 0, 0, 9.7, 5.2, 4.4, 3.2, 3, 5.6, 9.8, 7.2, 0.2, 6.7, 1.4, 1.6, 0.6, 0, 0, 0.2, 11.1, 1.2, 0.4, 6, 0, 0.2, 12.7, 0, 0, 3, 2.4, 0.8, 1, 0.4, 5.6, 3.6, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0.6, 0, 1, 0.2, 7.1, 0, 3, 3.2, 3.2, 0.6, 16.5, 0.2, 2, 0, 5.6, 2.6, 0.4, 10.1, 2.4, 0, 0, 0, 0, 0, 0, 0, 0.6, 7, 8.9, 2.8, 0.2, 0, 0, 0.6, 7.2, 1.4, 0, 0, 0, 0, 8.1, 0.2, 0, 4.8, 0, 0.2, 0, 0, 0, 0, 0, 0, 4.7, 0, 0, 0, 0.2, 0, 0, 1.2, 15.1, 6.8, 0.2, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.4, 0.6, 5.8, 0, 0, 0, 0, 0, 0, 0, 2.4, 0, 0, 12.6, 0.2, 0, 21.6, 34.2, 0.2, 0, 4.6, 0, 0, 7.1, 13.4, 4.4, 0, 0, 0.6, 2.4, 78.2, 0.6, 0, 0.2, 0, 0, 0, 0.4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.4, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0.6, 1, 0, 0, 0, 0, 0, 0, 10.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.9, 1.4, 0, 0, 2.2, 0.2, 0, 0, 1.8, 0, 0, 0, 0.2, 0, 0, 3, 0.4, 0, 0, 0.2, 13.2, 6.1, 0, 0, 0, 0, 0, 0, 0, 0.2, 0, 0, 0, 0, 0, 0.4, 0.6, 0, 0, 0, 0, 0.2, 0, 1, 1.8, 0.4, 6.1, 0, 0, 0, 0, 0, 0, 0, 0, 0.2, 0, 0, 0, 0.4, 1.6, 0, 0, 0, 2.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.2, 0, 0, 0, 0.6, 0, 0, 12.1, 2.4, 2.6, 2.4, 0, 0, 0, 0, 0.6, 4, 0, 1, 9.4, 13.7, 5.1, 0, 0.4, 0, 0, 0, 0, 0.6, 1, 0, 0.4, 5.8, 1, 4.8, 1, 15.1, 0.4, 0, 0, 7, 0.6, 5.4, 1.8, 1.8, 0.2, 5.1, 1.2, 2.2, 0, 0.2, 0, 0.2, 0, 15, 2.4, 0, 2.8, 0, 2.2, 3.2, 0.6, 9.2, 0, 0, 0, 0, 0, 0.2, 0.4, 0.2, 0, 0, 0, 0, 0, 0, 0.6, 0, 0.8, 0, 1.2, 0.8, 0.8, 0, 0, 3, 0, 0, 4, 0.8, 0, 7.4, 1, 1, 1.2, 1.6, 4.4, 0, 19.6, 0.4, 1.2, 15.9, 0, 0, 0, 0, 4, 0.8, 1.8, 3.6, 8.5, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.2, 1, 0.6, 4.2, 2.4, 1, 12.1, 0, 0.8, 6.4, 0.8, 0.8, 2.6, 1, 5.8, 0.2, 2.8, 2.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.6, 4.6, 0.2, 0, 0, 0, 0, 0, 0, 3.2, 0, 0, 0, 0, 0, 0, 0, 0, 0.2, 0, 0, 0, 0, 5.8, 0.2, 1.2, 2.4, 1.2, 0, 0, 0, 3, 7.2, 5.2, 0.8, 0, 2.4, 12.4, 1, 43.8, 11.5, 0, 0, 0, 0, 0, 0.6, 17.3, 0.2, 0.2, 0, 0, 0, 0, 1, 0, 0, 0.2, 0, 0, 0, 0, 0, 1, 4.5, 17.5, 0.2, 1.4, 0.4, 0.2, 0, 2.8, 2.8, 5.7, 8.3, 0, 0, 0, 0, 4.8, 1.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.6, 0, 5.5, 0, 0, 0, 0, 0, 12.8, 0.8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19.3, 0, 0, 31.3, 0, 0, 5.9, 0, 0, 0, 0.2, 14.9, 1.6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8.1, 0, 4.6, 1.6, 6.1, 1.2, 0, 4, 0, 5.2, 0, 1, 0.2, 4.2, 1.6, 4.2, 5.6, 4.2, 0.2, 0, 0, 0.2, 3, 1.4, 4, 3.6, 0.8, 4.2, 11.2, 0, 0, 0.4, 0.2, 0.2, 2.6, 7.5, 0.2, 0.6, 0.2, 2.8, 6.5, 2.4, 6.6, 0, 0.2, 6.9, 0.4, 0, 1.8, 0.6, 2.6, 6.4, 4.8, 3.8, 17, 0, 0, 1.6, 0, 0, 0.4, 3.2, 2.2, 0, 0.2, 12.3, 1.2, 0.2, 0.6, 2.4, 0.4, 0.2, 0, 0, 0, 2.6, 0, 12.3, 6.2, 2.2, 1, 14.3, 2.4, 2.2, 4.6, 4.5, 0.2, 0, 12.7, 2, 6.2, 0.4, 3.6, 0, 0, 8.6, 0, 0, 0, 0, 0, 1.2, 0.4, 0.2, 0, 0, 0, 0, 0.6, 4.2, 0, 0, 0, 0.2, 0, 1.2, 1.4, 0.8, 0, 0, 0, 0, 0, 0, 0, 0, 3.8, 6.2, 1.6, 0, 2.8, 3.8, 10.5, 11.8, 8.3, 0.4, 0, 0, 0, 2.4, 2, 9.3, 2, 0, 2.4, 0, 0.6, 6.8, 0.2, 5.2, 0.4, 2.6, 0, 0, 0.4, 4, 2, 6.4, 8.1, 0, 5.1, 21, 4.8, 0, 5.2, 15.2, 0, 0, 3.8, 3.2, 0, 1.4, 0.6, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.6, 0, 0, 0, 0, 0, 1.2, 0, 0, 0, 0, 0, 0.6, 0, 0, 0, 0, 0, 0, 0, 0, 3.4, 3.5, 9.3, 8.9, 0.6, 0, 0, 0, 1.8, 0, 0, 0, 35.6, 15.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.6, 0.4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28.8, 3.4, 1.4, 0, 0, 0, 0, 0.4, 8.2, 1.2, 0, 0, 0, 0, 0, 0.4, 0, 0, 1.6, 0, 0, 0, 0, 0.6, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6.3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 14.8, 6.1, 0, 0, 7.6, 5.1, 0, 0.4, 2.2, 0, 0, 0, 0.2, 0.6, 0, 0.4, 1.2, 1.8, 0.6, 0, 0, 0, 0, 0.2, 0, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.4, 0, 0, 0, 9.5, 7.5, 6.3, 5.8, 13.1, 3.8, 0.6, 3.4, 14.5, 18.4, 1, 6.8, 8, 1, 0, 2.8, 1.6, 1.6, 0, 2.2, 1.4, 0.6, 0, 0, 0, 0, 0.6, 11.3, 0.2, 0, 0, 1.6, 12.8, 0.2, 3.8, 3, 0, 0, 1.2, 0.8, 1.2, 0.2, 0, 0.2, 0, 0, 0.2, 1.2, 2.2, 0.4, 0, 0.4, 0, 4.4, 0, 0, 1, 2, 0, 0, 0.2, 1.2, 0, 0.2, 0, 0.2, 0.2, 0, 1, 0, 0.2, 10.7, 1.4, 1.2, 0, 0, 0, 0, 6.1, 7.4, 2.2, 0.8, 7, 1.4, 2.8, 0.4, 0.2, 1.8, 6.1, 10.4, 17.1, 8.8, 2.4, 0, 0, 11.1, 14.3, 1.2, 3, 0.8, 0, 0, 0, 0.2, 0, 0, 0.2, 0, 0, 0, 0.6, 5.2, 2.2, 2.2, 0, 11.6, 0.6, 0, 2.8, 6.9, 13.3, 0.2, 4.6, 2.4, 0, 3.4, 8.2, 4.4, 8.3, 6.6, 6.8, 2.6, 2.6, 6.9, 0, 2.4, 21, 1.2, 0, 2, 0, 0, 0, 0, 0.2, 0.4, 1.2, 0, 7.6, 0, 0, 0, 0, 0, 0.2, 1, 0.6, 0, 0, 0, 0, 0.2, 1, 0, 0, 0, 0, 0, 1.2, 4, 5.4, 8, 2.2, 2.8, 2.4, 3, 3, 0, 0, 0, 0, 0, 1.6, 0.6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.4, 0.6, 0, 0, 14.5, 13.7, 0.6, 0.4, 0, 0, 0, 0, 0, 0, 0, 0, 0.2, 0, 0, 0, 0, 0, 0, 0.8, 0, 0, 0.8, 0.2, 0.2, 0, 0.8, 7.7, 0, 0.2, 5.4, 0, 0.6, 5.2, 0, 6.1, 8.2, 3, 1.8, 1, 4, 0, 0.4, 2.6, 3, 4, 8.9, 0.2, 0, 0, 0, 0, 0, 0, 0, 30.7, 2.6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13.5, 12.4, 1.4, 18, 1.4, 0, 16.6, 0, 0, 8.3, 1.4, 1.2, 0.4, 2.4, 1.6, 0, 0, 6.7, 3.2, 0, 0, 0, 0, 0, 0.6, 0, 5.3, 43.3, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.2, 6.9, 3.4, 8.2, 0, 0, 0, 0, 1.4, 7.3, 0.6, 0.2, 0.4, 0, 7.4, 0, 3.2, 0.2, 0, 0, 0, 0, 0, 0.2, 0, 0, 0, 0, 0, 0, 0.2, 0, 0, 0, 0, 0.2, 0.2, 0, 0, 0, 0, 0, 1, 0.8, 0, 0, 2.6, 0.2, 0.6, 0, 0, 1.2, 8, 12.4, 0.2, 0, 0, 12.3, 0.2, 0, 0, 0, 0.2, 0, 12.2, 4.2, 0.6, 0.6, 0, 5.2, 19.2, 6.4, 0, 8.7, 0.2, 0, 0.2, 0.2, 0, 0, 0, 0.2, 0, 0.2, 0, 0, 3.4, 0.4, 1.2, 15.4, 0, 0, 2, 0, 0.2, 0.2, 0, 7.2, 5.7, 4.1, 3.8, 5.6, 1.4, 3.6, 0, 0.2, 0, 0.2, 0, 0.2, 0, 0.2, 1, 0, 0.2, 0.2, 0, 0.2, 0, 0, 1.6, 0, 0.2, 0, 0.2, 1.4, 4.2, 0.2, 0, 3, 0.6, 0, 11.7, 4, 4.4, 1.8, 2, 0, 15.9, 1.4, 0.8, 0.4, 0, 0, 0, 0, 0.2, 0, 0, 0, 0, 0, 0.2, 7.4, 1.2, 5.2, 13.3, 1.2, 5.2, 0.2, 0.2);
$MarignanePluie = array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0.6, 0, 0, 0.2, 0, 0, 0, 0, 0, 0, 0.4, 0, 2, 1, 0, 12.3, 13.4, 0.2, 0, 0, 0, 0, 0, 1.4, 0, 0.4, 5, 0, 0, 1, 10.5, 0, 0, 0, 0, 0, 0.2, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1.4, 0, 0.2, 6.1, 3.4, 1.2, 1.2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0.2, 0.2, 0, 0, 0, 0.2, 0, 41.9, 1.8, 15.8, 0.2, 0, 0, 0, 0, 0.4, 14.7, 3, 0, 0, 8.9, 0, 0, 0, 0.2, 0, 0, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12.9, 2.6, 0, 0, 0, 13.3, 0, 1.6, 0.2, 0.2, 0, 19.2, 0, 0, 0, 0, 0.2, 0, 0.2, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.4, 0, 0, 0, 4.5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11.5, 1.4, 0, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.1, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.2, 1.8, 0, 0, 0, 0, 0, 0, 0, 0, 2.8, 0, 0, 0, 0, 0, 1.4, 0, 0, 0, 0, 0, 0, 0.2, 0, 0, 0, 0, 0, 0, 0, 2.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.2, 0, 0.2, 0.4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 39.9, 0, 0, 0, 0, 0, 0, 0, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.8, 0, 0.6, 0, 0, 0, 0, 0.4, 0.4, 0, 9.4, 6.2, 0, 0.2, 0, 0, 0, 0, 0.4, 0, 0, 0, 0, 0, 0, 0.2, 2.6, 1, 0, 1.8, 1.2, 0.4, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 1, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66.6, 10.5, 0, 0, 0, 0, 1.4, 0, 0, 2.4, 0.6, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.2, 3.6, 0, 0, 0, 3.6, 0, 0, 5.6, 1.6, 0, 0, 1, 1.2, 7.3, 0, 1.2, 8.6, 1.2, 0, 0, 0, 2.4, 0.2, 0, 0, 6.5, 7.8, 7.5, 0, 0, 0, 0, 1.2, 0, 0, 0, 0, 0, 0, 1, 0.6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.8, 6.1, 1.2, 38.5, 14.7, 0.4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11.3, 0, 0.2, 0, 0, 0.8, 0, 1, 0.4, 0, 3.2, 0, 0.2, 0, 27.8, 1.6, 0, 0, 0.2, 0, 0, 0, 8.7, 0.2, 0.2, 0, 0, 0, 0.4, 0.2, 0.4, 2.8, 5.5, 0.2, 0, 2.6, 1.8, 0.6, 1.4, 11.4, 0.2, 0, 2, 0, 0, 1.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6.1, 0, 0, 0, 14.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15.5, 0, 0, 47.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40.6, 1.1, 13.1, 0, 71.8, 0, 0, 0, 0, 7.4, 5.8, 5.7, 0.2, 0, 0.2, 0, 0, 0, 0, 0.2, 0.2, 5.2, 8.9, 47.6, 18.9, 36.1, 7.1, 0.2, 1.2, 0, 12.3, 11.5, 5, 0, 8.9, 0, 0, 0, 0, 0.2, 0.2, 0.6, 1.6, 0, 0, 39.6, 6, 5.2, 21.4, 0, 8.5, 0, 0, 0, 0, 15.8, 0.2, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.4, 0, 1.8, 9.8, 0, 1.8, 15.1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0.6, 0, 0, 0, 0, 0, 1.6, 0.6, 0, 7.9, 2.8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23.8, 0, 1, 19.6, 0, 0, 0, 0, 2.8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.2, 0.2, 2.4, 0, 7.3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.8, 0, 0, 0.2, 0, 0, 0, 0, 0, 0.6, 0, 4.6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.2, 0, 8.5, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 6.1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10.7, 7.6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33.6, 23.5, 0, 0, 0, 0, 0, 0, 0.2, 0, 9.1, 0, 0, 0, 0, 0, 0, 0, 0.2, 0, 0, 0, 0, 17.9, 2.6, 0, 0, 0.8, 0, 17, 24.2, 8.5, 71.9, 0, 0, 0, 0, 0.2, 0.2, 0.2, 0.2, 2, 50.9, 0.4, 2.2, 0.2, 0, 2.6, 0, 0.8, 0.4, 0, 0, 0, 40.9, 16.3, 0, 0, 0, 0.2, 2, 13.3, 41.2, 20.7, 2.8, 0, 3.8, 0.8, 0.2, 0, 7.5, 60.6, 0, 0, 0, 1.2, 0, 0, 0.4, 0, 0, 0.6, 5.6, 2.6, 0, 0, 0, 0, 0, 4.2, 22.8, 5.5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6.3, 0.4, 0, 0, 0, 0, 0.2, 0, 7.5, 0, 0, 4.2, 0, 0, 0.2, 7.5, 0, 12.9, 0, 0, 0, 0, 0, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.2, 0.2, 0, 0, 1.8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.4, 0, 2.6, 2.4, 2.4, 0, 0, 4.3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.4, 0, 0, 0, 0, 0, 3.6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.8, 10.7, 14.4, 4, 2, 0, 0, 0, 0, 14.4, 4, 0, 0, 0.2, 0, 0, 0, 0, 0, 0, 0, 5.4, 23.7, 4, 1.4, 0, 12.2, 0, 5.2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.8, 0.4, 4.2, 9.2, 0, 11.3, 0, 0, 0, 0, 0, 0, 10.9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.4, 2.8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4.3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 33.3, 19, 1.4, 20.2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5.2, 0, 0, 0, 6.3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.8, 6.2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86.1, 9.8, 0, 0, 0, 0, 0, 0, 7.5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.6, 0, 0, 7.5, 0, 0, 1, 11.6, 0, 0, 0, 0.2, 0, 0, 0, 0.4, 12.1, 0, 0, 1.6, 0, 0, 0, 0.6, 1.4, 0, 0, 1.2, 1, 9.7, 0.4, 7.1, 0, 0, 0, 0, 0, 3.6, 0, 0, 0, 0, 0, 0, 0, 0, 0.6, 3.2, 0, 9.5, 1.2, 0, 0, 0, 0, 0, 0, 10.5, 0.4, 0, 0, 0, 0, 0, 10.4, 0, 12.5, 0.2, 0, 0, 1.2, 0, 0, 0, 0, 0, 0, 0, 0, 0.2, 0.4, 0, 0, 0, 0, 0.6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.4, 0, 0, 0, 0, 0, 0, 2.2, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 16.7, 7.2, 0, 0, 0, 0, 6.5, 4.4, 0, 0, 0, 0, 0, 0, 0, 0, 2.8, 6.4, 2.2, 18.2, 5, 26.6, 0, 0, 0, 0.6, 0.8, 0, 0, 0.8, 21.3, 0, 0, 0.2, 0.6, 2, 2.4, 0, 1.2, 0, 0, 3.4, 0, 2.6, 1.2, 0, 0, 0, 0, 0, 1.2, 0, 4.4, 0.6, 0.2, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 8.3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.4, 0, 0.6, 0.2, 0, 0, 0, 9.9, 0, 0, 0.2, 0, 0, 0, 0, 0, 0, 0, 1.6, 0, 0.4, 0.2, 0, 0, 0, 0.4, 0.2, 0, 0.4, 0.2, 0, 0, 0, 0, 0, 0.2, 0.2, 15.1, 0, 0, 0.2, 0, 0, 0.2, 2.4, 0, 0.2, 0, 0, 10.8, 8.7, 0, 1, 0.2, 0.2, 0.2, 0, 0.4, 0, 1.2, 24.9, 0.2, 0, 0, 0, 0, 0.4, 40.3, 4.6, 0.4, 0.2, 0, 0, 0, 0, 0, 0.4, 0.2, 0, 0, 0.2, 0.2, 0.4, 0, 4.3, 1.6, 0, 0.2, 0, 0.2, 0, 0, 0.2, 5.9, 30.5, 2.6, 14, 0.2, 0.2, 0, 0, 0, 0, 0, 2, 20.7, 0.2, 0.8, 0, 1, 2.6, 0, 0, 0, 0.2, 0, 5.8, 0, 0, 13.9, 23.4, 0, 0.4, 0, 0, 0, 2.2, 0, 1.8, 1.6, 0, 0, 8, 2.3, 6, 2.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.2, 7.8, 11.2, 0, 6.6, 0, 0, 0.2, 0.4);
$AurillacPluie = array(0, 0, 0, 0, 0, 0, 0, 0, 8.9, 7.2, 2.6, 10.5, 1, 1.6, 1, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6.5, 7, 0, 4.6, 0, 0, 18.6, 20.5, 10.9, 12.2, 1.2, 2.2, 1.6, 0, 0, 0.2, 0, 1, 0.6, 0, 0, 0, 0, 0, 0.2, 0, 0, 1.6, 0, 0, 0, 11.7, 17.1, 5.4, 0.8, 16.9, 20.6, 9.8, 5.7, 2.6, 4, 0, 0, 1.6, 5.2, 0, 0, 0, 0, 0, 0, 0, 1, 3.4, 1.4, 12.3, 14.9, 1.2, 0, 0, 0, 0, 0, 11.5, 7.2, 0, 0, 0.2, 0, 0, 0, 0, 0, 0.4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22.1, 0.2, 0.2, 0, 0, 22.8, 10.3, 2.8, 0, 0, 2.8, 12.3, 1.8, 0, 0, 0.4, 12.5, 4.9, 0.8, 0, 0, 0, 6.5, 37.1, 4, 0.2, 0, 0, 0.2, 0, 0, 0, 0, 0, 1, 1.2, 1.8, 0, 0.8, 49.5, 0, 0.4, 1, 0, 0.2, 0, 0, 0, 0, 1.8, 0.8, 0, 0, 0, 0, 0, 0, 0, 0, 0.6, 0, 0, 14.3, 70.4, 17.5, 10.1, 15.6, 7, 0, 0, 0, 0, 0, 0.4, 0, 10.6, 2.8, 0, 0, 0, 0, 0, 0, 0, 0, 24.9, 2.6, 1.6, 0, 10.7, 5, 0.2, 1.8, 0.2, 0, 6.4, 1.6, 0.2, 0, 0, 0.2, 0, 1, 0, 17.9, 1.6, 4.5, 5.2, 5.2, 0, 0.2, 0, 0, 0.2, 0, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.2, 19, 1.6, 0.4, 6.1, 0, 0, 1, 0.2, 0, 18.2, 10.7, 3.8, 9, 0.8, 1, 6.9, 6.4, 3, 4.6, 3.4, 2.6, 0.2, 0, 0.2, 0, 0.2, 1, 0.2, 0, 0.2, 0, 6, 3.8, 4.2, 2.8, 0.2, 0.2, 0, 0, 0, 0, 0.2, 0.2, 0, 0, 0, 0, 0, 0, 0.2, 3, 0.2, 5.4, 4.2, 0.2, 0.2, 0, 0.4, 0.6, 0, 4.4, 0, 0, 0, 0, 0, 33.9, 0.2, 0.4, 2, 4.2, 0, 5.4, 6.8, 11.9, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13.3, 1, 0, 0, 9.1, 1.6, 2.8, 0.4, 0, 0.4, 0, 0, 0, 7.9, 0.8, 6, 45.6, 18.3, 1, 12.3, 11.5, 6.4, 4.2, 5.4, 16.6, 0, 0, 0, 0, 0, 0, 2.6, 8.3, 7.3, 0, 19.1, 4.9, 5.6, 13.9, 9.6, 25.4, 11.6, 7.2, 2.2, 1.4, 15.9, 4.8, 4.8, 1.8, 0, 0.6, 0.4, 8.7, 16.9, 1, 4.8, 2.2, 31.7, 9.5, 5.8, 0.4, 0, 10.7, 0, 0, 0, 0, 0, 6.3, 0, 0, 1.4, 2.6, 11.3, 0.6, 1, 0, 2.8, 0.8, 3.2, 0, 3, 9.1, 3.8, 6.2, 3.4, 0, 3, 0.6, 0, 0, 0, 0, 0, 0, 0, 3.8, 10.3, 10.3, 2.4, 2.6, 2.2, 4.6, 3.2, 0, 1.8, 0.4, 2.6, 14.8, 0.6, 16.1, 2.2, 9.9, 9.5, 2.4, 1.6, 0, 0, 0, 0.6, 1, 0, 0.4, 11, 5.4, 1.4, 5.6, 4.2, 0, 0, 6.7, 5.6, 0.6, 0, 0, 4, 9.9, 0.6, 1, 0, 1.2, 1.2, 0, 0, 0, 0, 0, 0, 0, 0.8, 0.4, 0, 0.2, 0, 0, 0, 18.7, 3.2, 0, 0, 0, 0, 0.2, 0.6, 6.5, 6, 0, 0, 0, 11.9, 7.8, 8.6, 1.8, 2, 0.2, 0, 0, 1.4, 8.3, 0, 1, 0, 0.6, 0, 1.4, 19.2, 6.2, 3.8, 0.6, 0.2, 0, 0, 0, 20.1, 2, 0, 0, 2.2, 6, 9.7, 6.8, 0.2, 0, 2.2, 0, 0, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.6, 0.4, 34.1, 2.8, 0.2, 0, 0, 0, 0, 0, 0, 0, 1.4, 0.2, 32, 0.2, 1.6, 0, 0, 0, 0.2, 0, 0, 0, 0, 0.4, 3.6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.2, 0, 0.6, 0, 0, 3, 14.1, 0.2, 0, 0, 14.2, 0.2, 0, 0, 0, 0, 0, 1.2, 0.4, 0.2, 0, 0.2, 0.6, 0, 0, 0.2, 0, 0, 0, 8, 29, 0.2, 0, 0, 0.2, 0, 0, 0, 0.2, 0, 0, 0, 0, 0, 0, 1.8, 0, 1.4, 0, 0, 0, 0, 0, 0.2, 0, 0.4, 0, 0, 0, 0, 12.8, 2.4, 0.2, 0, 2, 0, 0, 0, 1, 6, 0, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0.2, 2.4, 1, 15.1, 0.8, 2.4, 3.8, 2.2, 0, 0, 6.3, 3.8, 3, 0, 2.6, 2.2, 0, 2, 0, 0, 0, 0, 7.3, 0, 0, 0.6, 0, 0, 4.4, 0, 6, 1.4, 0.2, 0, 7.3, 1.4, 9.9, 21, 11, 0, 2.6, 2.8, 4.4, 8.4, 8, 0, 0, 0, 0.2, 0, 13.9, 14.5, 0.2, 4.2, 5, 4.6, 11.1, 7.8, 0.4, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.6, 0.6, 0, 0, 1.2, 4, 0.2, 0, 0.4, 2.2, 0, 0.2, 0.2, 0, 6, 4, 0, 0.8, 5.2, 13.3, 3, 11.7, 6.7, 19.6, 7.3, 4.8, 0.2, 0.2, 0, 0.2, 4.8, 1.2, 0.2, 7, 0.4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.4, 0, 2, 0.6, 3, 0, 9.5, 3.4, 0, 9.2, 1.2, 0.4, 5.6, 5.2, 12, 1.8, 0, 3.8, 3.4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6.6, 10.4, 1.2, 5, 0.8, 2, 0, 4.4, 1, 0.2, 0, 0, 0, 3.4, 1.2, 0, 0, 0, 0.4, 1, 0, 8.1, 11.9, 25.6, 9, 3.8, 0.4, 0, 0, 0, 2.8, 0.6, 5.4, 0, 0, 5, 15.1, 4, 0.2, 4.6, 0, 0, 0, 0, 2.8, 14.5, 5.2, 1.4, 0.2, 3.4, 0, 0, 8.3, 0.4, 0.4, 6.4, 4.2, 0, 0, 0, 0, 0, 0, 0, 12.1, 0, 3, 0, 0.8, 1.8, 5, 1.6, 0, 5.8, 5.9, 0.2, 0, 1.2, 0.2, 0.8, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.4, 0, 0, 0, 0.6, 0, 0, 3.4, 0, 0, 0.2, 0, 0, 0, 0, 0, 0, 0, 0.2, 0, 0.2, 0, 0, 0, 2.8, 34.8, 0, 0, 0.6, 0, 0.8, 0, 0, 0, 0, 10.3, 0.2, 0, 14.8, 0.2, 10.9, 0.8, 0, 0.6, 1, 0, 0, 10, 4.8, 4.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.4, 1.2, 0, 0, 2.2, 0, 0, 0, 0, 0.8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 37.5, 0, 3.8, 5.8, 0.6, 0, 0, 0.8, 0, 15, 2.8, 0, 2, 0.8, 1.8, 0, 0.6, 1.6, 0.4, 0, 0, 0, 15.5, 6.5, 0, 0.6, 5.8, 0, 14.5, 0, 25.8, 41.8, 3.6, 0, 0, 0.8, 0.4, 0, 4.6, 2, 14.4, 15.3, 30.4, 28.5, 8.8, 7.3, 2.4, 4.8, 6, 0, 4.6, 2.2, 2.8, 1, 0.4, 8.7, 0, 0, 0, 0, 0, 21, 12.9, 0, 0.8, 9.5, 20.2, 14.4, 4.3, 8.8, 0, 0, 0, 0, 0, 0, 1.2, 8.2, 7.2, 0, 13.3, 26.6, 21.9, 5, 0, 0, 0, 0, 4.4, 17.3, 24.6, 25.8, 9.7, 4, 0, 0.2, 0.6, 0, 0, 0, 0, 0, 0, 2.4, 0, 0, 0, 0.4, 0.2, 6.9, 2.4, 0, 0, 0, 0, 0, 1, 6, 0, 0, 0, 0, 0.2, 0, 0, 0, 0.8, 11.7, 8.4, 0.6, 7.6, 0.8, 1.8, 1.4, 1.2, 0.6, 0, 0, 0, 0, 2.6, 6.9, 5.8, 0, 11.7, 0, 0, 0, 4.6, 2.8, 1.8, 0.6, 0, 0, 0, 0, 8.2, 2, 12.1, 0.2, 2.2, 10.5, 15, 1.6, 5, 20, 6.2, 0.2, 10.1, 4.6, 1.4, 0, 0.6, 0, 0, 1.2, 4.2, 0, 0, 0, 0, 0, 0, 0.4, 0, 0, 0, 0, 0, 0.6, 0.4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4.6, 11.5, 5.4, 2.2, 0.2, 0.2, 0, 0.4, 28.9, 2.8, 7.3, 22, 14.7, 10.9, 0.2, 0.4, 0, 0, 0, 0, 0, 7.7, 0.2, 1.6, 20.9, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 3.6, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 3, 8.8, 4, 6.1, 0, 4, 0.6, 0, 21.2, 11.3, 0.4, 0.2, 1.6, 4.8, 4.4, 0.4, 0, 0, 0, 0.2, 0, 0, 2.8, 16.9, 0, 0.6, 0.4, 0, 5.2, 0, 0.2, 0, 0, 0, 0, 0, 0, 0.4, 0, 0, 0, 0, 1.8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.8, 0, 0.4, 0, 0, 0, 0, 0, 0.4, 0, 0.4, 18.2, 0.4, 0.4, 7.9, 0.2, 0.2, 0, 0, 0, 40.4, 0.2, 0.2, 0, 0.2, 0.2, 1.2, 17.2, 5, 6.7, 0.2, 0, 0, 0, 0, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8.9, 0.8, 3.8, 2.6, 5, 11, 4.8, 3.8, 26.6, 6.3, 0.2, 0, 13.9, 29.2, 30.5, 9.6, 4.8, 9.3, 0, 0, 1.2, 1.8, 5.8, 0, 5.6, 1.2, 0, 0, 0, 0, 0, 0, 0, 2, 8.8, 0.4, 19.1, 7.4, 3, 0.6, 0.4, 0, 0, 0, 0.4, 0.8, 0, 0, 0, 28.5, 0.2, 0.2, 0.6, 0, 0, 0, 0, 15.9, 0.2, 0, 1.8, 0.8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.8, 0.4, 17.7, 2.6, 1.2, 5.4, 14.1, 3, 3.4, 9.9, 18, 1.6, 0, 4.4, 17.4, 0, 0, 0, 4.6, 0, 3.6, 0, 5.8, 6.2, 0.2, 0, 20, 20, 12, 7.7, 15.7, 0, 0, 0, 1.2, 0, 0, 0, 0, 0, 0, 0, 11.5, 4.2, 6.8, 0.6, 8.3, 0.4, 0, 0, 3, 14.7, 13.3, 10.5, 10, 0, 0, 7.2, 17.7, 1, 20.2, 23, 20.9, 2.8, 1.2, 0, 0, 17, 1.2, 5.2, 11.7, 4.4, 0, 16.5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7.9, 0, 0, 1.4, 7.6, 2.8, 15.9, 0, 1.6, 1.2, 0.4, 3.8, 0.4, 0, 0, 0, 0, 0, 0, 1.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.4, 0.6, 20.8, 0, 0, 0, 0, 0, 0, 0, 0, 3.6, 2.4, 0, 0, 0, 0, 0, 4.4, 3.6, 2.6, 1.4, 2, 0, 0, 5, 0.2, 16.1, 0.2, 0, 5.6, 10.5, 2.2, 7.8, 5.4, 5.8, 19.8, 3.6, 2.4, 4.2, 4, 0, 3.4, 4.2, 0, 5.6, 0.2, 0, 0, 0, 0, 0, 0, 0.2, 0, 1.4, 17.2, 0.2, 0, 0.2, 0, 0, 0.2, 0, 0, 0, 0.2, 0, 0, 17.8, 0, 22, 5.5, 2.2, 0.2, 50.6, 5, 0.2, 0.2, 27.6, 3, 8.3, 0.2, 0, 2.2, 6.1, 0.6, 2.6, 0.6, 7.6, 0, 0.2, 0.2, 0.8, 12.1, 36.6, 5.2, 0, 0.2, 0.2, 0, 0, 0, 0, 0, 0, 0, 0.2, 0.2, 5.6, 0.2, 0.2, 5.7, 4.6, 0, 0, 12.9, 10.5, 0.2, 1, 9.5, 0.2, 0, 1, 0, 0.8, 0.2, 0.2, 0.4, 2.2, 0, 0.2, 0.2, 0, 0.2, 0.2, 0.2, 0.2, 0, 0.2, 0, 0, 0, 0, 0, 0, 3.4, 5.9, 0.2, 0.2, 0, 0, 8.1, 6.2, 0.4, 0.2, 0.2, 0.2, 57.9, 0.2, 2.2, 0, 12.5, 11.1, 13.2, 0, 1, 0, 0, 30.8, 0.2, 0.6, 0, 6.1, 0, 0, 0, 17.7, 0.2, 5.8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5.5, 1.4, 0.4, 0, 0, 0, 0, 0, 0, 0.4, 2.4, 23.6, 11.3, 22.8, 0.8, 0, 0, 0, 0.8, 0, 0, 1, 0, 0.2, 2.4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.8, 1.2, 4.2, 6.8, 3.6, 0, 0.2, 15, 1.4, 7.5, 17.4, 5.6, 2.4, 18.3, 6, 11.7, 2.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5.8, 35.1, 8.7, 8.7, 0, 0);
$BordeauxPluie = array(0, 0, 0, 0, 0, 0, 0, 0, 5, 0.2, 2, 11.3, 1, 0, 4.2, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.2, 1.8, 0, 1.6, 0, 0.4, 9.9, 25.8, 4.2, 3.4, 7.4, 3.2, 0, 0, 0, 0, 0, 0.6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.8, 0, 0, 0.4, 7.2, 11.7, 3.4, 0, 15.3, 5.4, 6, 1.7, 10.3, 0, 0, 0, 3.2, 10, 0, 0, 0, 0, 0, 0, 0.4, 0.4, 3.8, 3.6, 0, 0, 0, 0, 0, 0, 0, 0, 1.8, 7.7, 3.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.8, 1, 0, 0, 0, 0, 7.8, 4.8, 0, 0, 0, 12, 0, 0, 0, 0.2, 4, 0.2, 4, 1, 0, 0, 0, 5.6, 19.4, 5.2, 0.4, 0.2, 0.4, 0, 0, 0, 0, 0, 0, 5, 0, 1.2, 0, 2.8, 16.4, 0.6, 2.4, 0, 0, 13.2, 0, 0, 0, 0, 1.8, 1.6, 0, 0, 0, 0, 0, 0, 0, 0.2, 0, 0, 0.6, 10, 35.4, 13.5, 26.4, 12, 0.4, 0, 0, 0, 0, 0, 7.6, 0, 1.6, 0.8, 0, 0, 0.8, 0, 0, 0, 0, 3.8, 0.2, 0, 0, 0, 4.2, 2.4, 0, 2.4, 0.4, 0, 0, 0, 3.2, 0, 0, 0, 0, 0, 0, 4.9, 2.8, 3.9, 0, 0, 0, 0, 0, 3.2, 0, 0, 0.6, 0, 0, 0, 0, 0, 0, 0, 0, 6.3, 0, 8.3, 0.2, 0, 3.8, 0, 2.8, 1.2, 0.8, 0, 0, 15.6, 2.8, 3.6, 3.2, 2.8, 5.6, 2, 4, 11.6, 3, 0, 0, 0, 0, 0, 0, 0.6, 5.1, 0.2, 0, 0, 1.8, 1.6, 2.6, 0.6, 0.4, 0, 0.8, 0, 0, 0, 0, 0, 0.4, 0.2, 0.2, 0.2, 0, 0.2, 0.6, 2.8, 0.2, 0, 1.6, 1.6, 0, 0.2, 0, 0.2, 0, 0, 0.6, 0, 0, 0, 0, 0.2, 10, 6, 0.4, 3.4, 0.8, 0, 2.2, 2.2, 5.4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21.6, 0.4, 0, 0, 10.3, 0, 2.4, 0, 0, 0.8, 0, 0, 0, 11.5, 2.2, 11.3, 51.4, 18, 1, 5.6, 7.6, 9.3, 0, 0.2, 1.6, 0, 0, 0.2, 1, 0, 0, 3.2, 14.3, 3.8, 2, 12.3, 0, 5.4, 10.9, 10.9, 2.6, 9.1, 5, 2.6, 0.8, 0, 0.4, 5, 2.2, 0, 1.4, 0.2, 9.1, 8.8, 1.4, 3.8, 4.4, 18.9, 3.2, 1.8, 0, 0, 12.1, 3.6, 0, 0, 0, 0, 3.6, 1.4, 0, 6.7, 0, 0, 0, 0, 0, 1.4, 2, 1.2, 0, 5.6, 14.9, 4.4, 2.8, 0, 4.4, 0.4, 0.8, 0, 0, 0, 0, 0, 0, 0, 3.8, 7.3, 0.6, 4.2, 1, 0.2, 2.2, 3, 0, 0.8, 0, 3.2, 7.3, 0, 2, 4.2, 0.2, 11.3, 0.4, 7.1, 0, 0, 0, 11.9, 3.6, 3.8, 1.6, 9.3, 6.6, 3.8, 9, 8.7, 0, 0.2, 1.2, 0.2, 0, 1.4, 11.7, 0.8, 4, 22.1, 0.6, 0, 14.9, 0, 0.2, 0, 0, 0, 0, 0, 0, 1.2, 0, 0, 0, 0, 1.8, 4.4, 6.2, 6.7, 0, 1.6, 1.6, 0, 0, 0, 0, 0, 0, 0, 1.2, 9.3, 2.8, 2.6, 0, 0, 0, 0, 0, 0, 4.7, 0.2, 0, 0, 4.8, 11.9, 1.8, 4, 0.2, 0.2, 0.2, 0, 0, 0, 5.1, 6.2, 1.7, 0, 0, 1.2, 3.8, 4, 8.3, 3.6, 1.6, 1.8, 0, 0, 1.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7.4, 6.2, 0.2, 0, 17.2, 2.2, 0.4, 0, 0, 0, 0, 0, 0, 0, 0.2, 34.5, 0, 0, 0.2, 0, 0.4, 0, 0, 0, 0, 0, 0, 0, 0.8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.4, 7.7, 1, 0.2, 0, 0, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.2, 0, 0.2, 0, 0, 7.3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, 0, 1.8, 9.7, 1.4, 0, 0, 19.3, 1.4, 0, 0, 0.6, 0, 0, 0, 0, 0, 0, 0.4, 0.6, 0, 17.1, 0, 0, 10, 5.8, 0, 0, 0, 11.5, 14.9, 6.9, 5.4, 3, 6.4, 4, 7.9, 0, 0.4, 0.2, 0, 0.2, 0, 0, 0, 0, 0, 5.2, 6.2, 4, 0, 0, 0, 5.8, 0.4, 8.9, 10.8, 2, 0, 2.6, 0.6, 1.6, 0.8, 1, 0, 0.2, 0.2, 5.8, 0, 6.8, 4.6, 0, 3, 12.7, 14.6, 14.2, 2.8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.4, 0, 0, 0.4, 0.4, 0.8, 0.2, 0, 2.2, 3.5, 1.2, 3.2, 0.2, 0, 11.6, 1.8, 1, 0.2, 3, 9.8, 1, 13.3, 7.4, 11.5, 11.5, 0.8, 0, 9.2, 1, 0.6, 0, 0, 0.2, 4, 1.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.4, 0, 2.4, 1.2, 0, 5, 3.2, 0.2, 1.8, 1.4, 0, 1.8, 3, 1.8, 1.4, 0, 3, 4.4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.8, 3.8, 0.8, 16.9, 4.1, 2.4, 3, 0, 0.4, 0, 0, 0, 0.4, 9.5, 0, 0, 0, 0, 0, 0, 0, 29, 2.6, 4.8, 8.5, 1.6, 0, 0, 0, 0, 1.8, 0, 2.6, 0, 0, 1.6, 6, 4.2, 0, 1, 0, 0, 0, 0, 1.2, 1.2, 2.4, 14.4, 10.7, 0, 0, 0.2, 0.4, 0, 0.6, 0.8, 2, 0, 0, 0, 0, 0, 0, 11.3, 21, 8.7, 0.8, 0.8, 0, 3, 18.4, 3.8, 8.5, 0, 0, 0, 0, 4.4, 0, 0.6, 3.6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.6, 0, 0, 0, 2.8, 0, 0.2, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.4, 28.1, 4.8, 0, 0, 2.5, 0, 3.2, 0, 0, 0, 0, 0, 4.8, 0, 0, 6.5, 9.2, 2.3, 0, 1.4, 0.4, 0.2, 0, 5, 0.2, 0, 0, 0, 0, 0, 0, 0.2, 0, 0, 0, 0, 0, 1.4, 0, 0, 0, 0, 0.2, 8.7, 0.2, 14.9, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15.8, 8.3, 2.2, 5.8, 8.8, 0.4, 1, 0, 0.8, 0, 1.4, 0.6, 1, 0.8, 0, 2.4, 0, 1, 1.6, 0.2, 0.2, 0, 0, 25.6, 6.1, 1.6, 0.4, 1.4, 11.3, 7, 0.2, 18.8, 4.3, 7.9, 0.2, 0.4, 1, 0.2, 0.2, 1.4, 1.6, 15, 18, 25, 13.6, 13.1, 12.2, 15.8, 2.8, 8, 3.6, 7.5, 2.6, 11.1, 9.1, 2, 14.9, 0, 0, 0, 0.4, 2, 5, 13.3, 1.2, 2, 6.3, 44, 1, 0, 15.1, 3.8, 0, 0, 0, 0, 0, 0.6, 10.3, 2.8, 0, 12.5, 40.6, 18.3, 3.8, 0, 0, 0.2, 0, 13.7, 3, 9, 10.3, 1.6, 0.4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.6, 0, 0, 0, 0, 0, 5.8, 0.6, 0, 0, 0, 0, 0, 2.4, 3.8, 6.2, 0, 0, 0, 8.1, 2.2, 0, 0.2, 0.6, 11.3, 3.8, 13.1, 4, 3.6, 1.2, 0, 0, 0, 0, 0, 0, 0, 0.6, 0.4, 2.8, 1, 1, 0, 0, 0.4, 3, 0.4, 0, 0.2, 0, 0, 0, 0.8, 9.2, 13.1, 16.9, 1, 8.7, 11.3, 8.8, 12.5, 6, 19.8, 5.4, 0, 2, 4.8, 0.6, 0, 0.2, 0, 0, 23, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.2, 5.9, 0, 0, 0, 0, 0, 2.2, 5.6, 0.2, 0, 0, 0, 0, 2, 0.4, 0, 0, 0.2, 5.6, 2, 9.2, 0.4, 5.8, 1.6, 0.2, 1.4, 3.4, 11.6, 5.7, 4.8, 12.7, 40.8, 13, 4.8, 0.2, 2.8, 0, 0, 0, 6.9, 11.3, 71, 5.8, 0, 4.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 14.8, 0, 1.6, 1, 1.4, 0.8, 0, 1.6, 7.7, 0.2, 20.2, 5.4, 6.3, 0, 0.2, 8.6, 6.3, 15.1, 0, 0.2, 0, 0, 0, 0, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.2, 0.2, 0, 0, 0, 0, 0.2, 0, 0, 0, 0.6, 0, 0.6, 0, 0, 0, 0, 0, 0.2, 0, 0, 0, 0, 0, 0, 0, 21.6, 19.9, 12.3, 0, 1.2, 0, 0, 0, 0, 0.4, 2.4, 0.2, 0.2, 0, 0.6, 0, 1.6, 3.6, 2.6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.2, 0, 0, 0, 0.2, 0, 0, 0, 0, 0, 2.2, 3.9, 1.6, 28.6, 0.6, 0.2, 13.1, 19.3, 11.5, 0, 0, 0, 9, 16.8, 23, 23.2, 14.2, 7.4, 12.3, 0, 0, 2.6, 0, 2, 6.9, 7.8, 2.4, 0, 0, 0, 0, 2.8, 7.8, 0.4, 18, 2.2, 0, 16.1, 6.8, 6.2, 0, 0.2, 0, 0.2, 0, 0.4, 0.8, 0, 0, 0, 1.2, 0, 0.2, 1.2, 0, 0.2, 0.4, 0, 11.7, 0, 0, 0.8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.4, 2.4, 49.7, 14.8, 11.3, 3.2, 20.8, 0, 11.9, 24.3, 10.3, 2.4, 0, 7.2, 0, 0.8, 0, 0, 1.6, 0.4, 0.6, 0, 0.8, 4.2, 0, 0, 28.1, 15.1, 2.8, 16.1, 10.1, 6.2, 0, 5.4, 0, 0, 0, 0, 0, 0, 0, 0, 2.6, 4.6, 2.8, 0, 3.2, 0.2, 0, 0, 6.3, 8, 20.1, 12.4, 8.1, 0, 0.4, 6.4, 5.2, 5.8, 16, 11.7, 7.4, 0.6, 1, 4.2, 0, 11.9, 6.8, 4.2, 17.6, 6.7, 8.2, 8.3, 0, 0, 0, 0, 0, 0.2, 0, 0, 0, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.8, 0, 0, 0.2, 3.6, 1.4, 4.8, 3, 0, 0, 0, 0.4, 0.4, 0, 0, 0, 0, 0, 0, 1.6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.8, 11.5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0.4, 0, 0, 0, 0, 0.4, 2.2, 0, 2.6, 2.8, 0, 0, 0, 0, 6.7, 0, 17.5, 0.2, 0, 24.4, 11.3, 3.9, 3.2, 9.1, 8.5, 14.7, 0.8, 0.8, 0.8, 0.8, 0, 6, 4.8, 0.4, 1.2, 1, 0, 0, 0, 0.4, 0, 0, 0, 0, 13.1, 5.8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.4, 1.2, 38.3, 44, 3.3, 12.1, 2.2, 2.2, 2.6, 0, 0, 4.8, 1.6, 7, 0, 0, 0, 0.6, 4.8, 2.8, 0, 0, 6.1, 0.4, 0, 0, 2, 9.6, 9.4, 0.8, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0.6, 0.2, 0, 0.2, 0.2, 0, 0.2, 5, 2, 0, 13.7, 1, 0, 0.4, 6.9, 1.6, 0, 0, 0, 2.4, 0.2, 0, 0.4, 0.4, 0, 0, 0, 0, 0, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0.6, 0.2, 0, 0, 0, 11, 1.8, 3.2, 0, 0, 0, 20.2, 0, 0.2, 4.2, 16.4, 5.4, 0, 0, 0.2, 0, 0, 3.6, 1.6, 0.2, 2.4, 3.9, 0, 0.2, 1.8, 9.3, 3.2, 5.2, 0, 0, 0, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3.2, 0, 0, 0.4, 3.4, 0.2, 0, 0, 1.4, 0.4, 1.2, 11.7, 22.9, 6.3, 0, 0, 0, 1.2, 0, 0, 0, 0, 0, 0.4, 0.6, 0, 0, 0, 0, 0.2, 0, 0.4, 0, 0.4, 7, 2, 15, 2, 1.1, 1.5, 1.5, 7, 0.4, 19.1, 18.4, 5.2, 2.4, 17.9, 7, 14.7, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.4, 14.1, 25.4, 9.1, 1.2, 0, 0);
$NantesPluie = array(1.6, 0, 0, 0, 0, 0.2, 0, 1, 3, 0, 0.2, 5.2, 0, 0.4, 0.8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.2, 2.2, 0.2, 3, 16.1, 5.1, 1.2, 6.2, 8.9, 8.2, 3, 9.3, 1.2, 0, 0, 0, 0, 1.8, 2.2, 0, 1.2, 0, 0, 0, 0.2, 1, 0.2, 0, 0.6, 0, 0, 0.8, 15.4, 5.2, 11.7, 0, 2, 4, 10.9, 0.8, 4, 0.4, 0.2, 0, 0.2, 12.5, 0.2, 0, 0, 0, 0, 0, 0, 2.6, 2.8, 8.4, 5.8, 0.2, 0, 0, 0, 0, 0, 0.2, 2.2, 2.6, 0, 0, 0.4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.6, 0.2, 0.8, 0, 0.8, 7.6, 2.8, 0, 0, 0, 24, 0, 0, 0, 0, 0.8, 3.4, 0.4, 0.4, 0, 0, 0, 7, 1.6, 0.2, 0, 0, 0, 0, 0, 0, 0.2, 2.6, 16.9, 14.3, 0.2, 0, 0, 0.4, 0.8, 0, 13.5, 1.2, 0, 0.4, 0.2, 0, 0, 0, 0.8, 0.6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.6, 0, 0, 1, 15.1, 1.4, 2.8, 0.4, 0.8, 0, 0, 0, 0, 0, 0, 21.1, 0.6, 2.4, 0.4, 0, 0, 0, 0, 0, 0, 1.8, 0, 6.1, 1.2, 11.9, 0, 1, 3.8, 0, 0, 2.8, 0.4, 0, 0, 1, 0.2, 1.6, 0, 0, 0, 10.8, 0.2, 0, 0, 0.6, 0, 0, 0, 0.2, 20.6, 0.8, 0, 0.2, 0, 0, 0, 0, 0.2, 0, 0.8, 0.8, 0, 1.8, 2.6, 0.6, 0, 9.1, 0.2, 0.6, 0, 1.6, 19.3, 0.8, 2, 0.6, 4.4, 6.4, 0, 0.6, 4, 1.2, 0.4, 0.2, 0.2, 0.2, 0.2, 0, 8, 2.6, 0.2, 1.2, 0.6, 4.4, 1.6, 1.6, 1.2, 0.2, 0.2, 0.4, 0, 0.2, 1, 1.4, 0, 0.8, 1.2, 0.6, 0.2, 0, 0.2, 0.8, 0.4, 8.7, 4.2, 9.8, 0.2, 1.2, 0.4, 0.2, 0.2, 0.2, 0, 0.6, 0, 0, 0, 0, 3, 9.3, 0.4, 0, 2.8, 0, 0.4, 0.2, 1.4, 0.8, 0, 0.2, 0, 0.2, 0, 0, 0, 0, 0, 0.6, 13.3, 0.8, 0, 0.2, 5.6, 1.2, 0.2, 0.8, 0.2, 0.2, 0.2, 0, 0, 0.2, 12.7, 0, 11.3, 16.3, 1, 3, 3.6, 9.2, 0.2, 1.2, 0.2, 0.4, 0.2, 0.4, 0, 0.4, 0, 0.4, 4.8, 24.2, 0, 2.2, 14.1, 2, 6.4, 7.1, 4.2, 9, 4.4, 1.2, 7.7, 10.2, 0, 3.2, 3.2, 0.2, 0, 3.6, 0, 10.9, 1.6, 0.6, 5, 12.5, 4.8, 1.4, 0.8, 3.8, 3.4, 1.8, 0.2, 0.4, 2, 2.6, 0.4, 8.1, 1, 1, 8, 0.2, 0, 0, 1, 0, 4, 3.2, 0.2, 0.6, 16.7, 9, 0.6, 11.3, 6.5, 1.4, 1.4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.8, 0.4, 2.2, 3.2, 0.6, 6, 0.4, 0.6, 0, 1.4, 0.8, 1.8, 0, 10.9, 2.8, 0.8, 11.9, 0.6, 0, 0, 0, 0, 4.2, 0, 0, 2, 9.3, 3.2, 18.7, 16.3, 1.2, 0.2, 7, 8.8, 4.4, 0, 0, 14.1, 2.2, 2.4, 7, 0, 2.6, 0, 2, 1.4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.2, 0.2, 2.6, 0, 7, 0.4, 0.6, 4.6, 0, 0, 0, 0, 0, 0.2, 0, 0, 1.6, 6.4, 0.8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 3, 0.8, 0, 1.6, 2, 0, 0.6, 0, 0, 9.3, 8.7, 41, 2.6, 1.8, 1.2, 16.4, 0.2, 70.1, 4.8, 0.2, 1.2, 0, 0, 2, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60.1, 0.8, 0.2, 0, 0, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5.8, 0.2, 0, 0, 0, 0, 0, 0, 6.1, 0, 2.4, 1.2, 0.2, 0, 0, 0, 0, 0, 0, 0, 6.7, 2, 0, 0, 10.2, 0.2, 0.2, 0.2, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.6, 0, 13.1, 0, 0, 0, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0.2, 0.2, 0, 0, 0, 0, 0, 0, 0, 0.4, 5.6, 0, 1.2, 1.6, 0, 0, 0, 0, 0.6, 0, 0, 0, 0, 0, 0, 0, 17.7, 2.2, 0, 0, 0.8, 7.3, 0, 0, 0.2, 0.6, 0.2, 0.6, 0, 0, 0, 0, 0, 0, 0.2, 0, 0.2, 0, 5, 0.2, 0.2, 0.6, 0.2, 0, 0.2, 0, 0, 9.1, 8.5, 0, 21.7, 22.8, 17.4, 0.4, 0.2, 0, 0.4, 0, 0, 0, 0, 0, 0.2, 2.2, 23.4, 32.9, 4.4, 0, 8.4, 1, 1.4, 1.6, 33.5, 6.2, 4.9, 0, 9.1, 0.4, 7.8, 3.4, 0, 0.2, 0, 0, 0, 1.6, 12.3, 2.4, 0.6, 11.5, 7, 12.7, 22.4, 0.2, 0, 0, 0, 0, 0.4, 0, 0.2, 0, 0.2, 0, 0, 0, 0, 0.2, 0, 0, 0.4, 0, 0.2, 0.2, 0, 0, 0, 0, 0.8, 0, 0.6, 1.2, 0, 3.8, 0.2, 0, 0.8, 0, 5, 3, 0.2, 9.5, 0.2, 7, 1, 0, 0, 8.7, 0.6, 1.6, 0.4, 7.3, 15.9, 2.4, 0, 0.2, 0, 0, 0, 0, 0.2, 1, 0.2, 0, 0.4, 0, 0, 0, 0, 0, 0.2, 0.4, 4.2, 0, 13.9, 5.4, 0, 14.7, 5, 2.2, 1.4, 0, 0, 3.4, 0.2, 0.2, 0.2, 3.2, 1.4, 0.6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.8, 1.6, 2.2, 3, 6.4, 1.2, 0.2, 0.2, 0.2, 0, 0, 0, 0, 2.4, 0, 0, 0, 0, 0, 0, 0, 10.5, 8.9, 2.2, 4, 0, 0.2, 0.2, 0, 2.6, 6.7, 0.2, 0.2, 0, 0, 5.4, 11.9, 0, 3.2, 0, 0, 0, 0, 0, 0, 1, 0, 0.4, 1.2, 0, 0, 2.8, 0, 0, 2, 1.6, 1.6, 0.4, 0.2, 0, 0.2, 1, 6.9, 7.8, 1.8, 11.5, 6.4, 0.4, 0.6, 0.2, 6.4, 3.6, 0, 0.2, 0.2, 0, 0, 0.2, 0.4, 0, 0, 0, 2.6, 1.8, 0, 0, 0, 0, 0, 0.6, 0.4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.4, 0, 0, 0, 0, 0, 0, 0.6, 0, 0.2, 0, 0, 0, 0, 2.2, 5.6, 0.4, 0, 2, 1.6, 0.2, 0, 0, 0, 0, 2.8, 1, 0, 2.4, 8.4, 0, 0.4, 1.4, 0, 0.8, 0.2, 2.6, 16.3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.2, 0, 0, 0.2, 0, 0, 0, 0, 0, 0.2, 0, 0, 9.5, 0, 0, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 3.2, 0.8, 14.1, 3, 8.2, 9.1, 3.4, 1.4, 6.9, 7.9, 3.6, 0, 1.6, 0, 3, 0.4, 4, 3.4, 1.2, 0.2, 0, 0, 0.2, 17.2, 9, 9.3, 5.4, 6, 0, 2.2, 0, 1.2, 0.6, 5.2, 0, 1.4, 5.6, 0.8, 3.4, 12.9, 5.6, 9.5, 24, 3.4, 6.2, 0.4, 8.1, 15.7, 0, 10.3, 0.4, 3.4, 0, 9.7, 0.2, 3, 0.2, 0.2, 0, 0.2, 1.8, 16.2, 2.4, 0.2, 7.8, 3.6, 29.3, 8.4, 2, 0.2, 11.5, 0, 0, 0, 0.4, 0, 3, 1.8, 9.8, 0, 7.8, 3.4, 12.7, 3.4, 6, 2.2, 3.2, 0.4, 0.2, 20.7, 5, 16, 5, 13.3, 0.2, 0, 0, 0, 0.2, 0, 0.6, 1.6, 0.6, 0.6, 0.6, 0, 0.2, 1.4, 3, 2.8, 4, 0, 0.2, 4.4, 10.3, 11.6, 2.4, 9.1, 0.6, 0.2, 0, 0, 0, 0, 0, 0.2, 1, 9.4, 6, 1.2, 4.4, 3.8, 21.8, 16.3, 2.8, 2.4, 0, 0, 0, 6.5, 4.4, 3.6, 0.4, 1.6, 2, 0, 0, 7.7, 6.7, 3, 2.8, 0, 0.8, 0.2, 0.2, 0.8, 7.9, 6, 6.5, 1.6, 1.6, 6.2, 47.4, 3.2, 3.8, 29, 8.3, 5.9, 0.4, 3.4, 5.4, 0.8, 0.6, 0, 0.8, 1.4, 0.4, 0, 0, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.4, 1, 0, 0, 0, 0, 0.2, 5.8, 0, 0, 0, 1.6, 0.2, 0, 15.9, 2.2, 0, 0.2, 0, 0, 0.2, 0.2, 13.8, 1.8, 8.4, 4.4, 0.4, 7.4, 0, 8.5, 0.4, 0, 0, 1.4, 18.2, 1, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.6, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.2, 0.2, 0, 0.6, 0, 0, 6, 32.7, 9.8, 4.7, 16.3, 7.9, 5.4, 6.6, 1.2, 0.6, 0, 1.6, 0, 0, 0, 0.2, 2.2, 5, 1.2, 0.4, 0.2, 0.6, 0, 0, 2.2, 0.4, 0, 0, 0, 0, 0, 0, 0, 0, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.8, 0, 0.4, 0, 0, 0, 0, 0, 0.6, 0, 0.2, 0.2, 0, 0.4, 0, 0, 0.4, 1.2, 21.4, 4.4, 0.2, 6.5, 8.2, 0.2, 10.3, 12.9, 0, 1, 1.6, 0, 0, 1.4, 0.4, 2.6, 3.8, 2.9, 0, 0, 0, 0.2, 0.2, 0, 0, 0, 0.2, 0, 0, 0, 0, 0, 0, 0, 0.2, 0, 0, 0.4, 17.3, 10.7, 0, 1.6, 5.6, 6, 0, 0, 0, 0.2, 1.6, 13.9, 15.8, 8.9, 22.8, 1.8, 3, 0.2, 0, 0, 1.8, 0, 1.2, 4.4, 1, 0, 0, 0, 0, 0, 0, 18.2, 0.2, 0, 0.8, 12.1, 1.2, 4.8, 5.6, 0, 0, 0, 8.1, 5.6, 4, 0, 0, 0, 0, 0, 0, 1, 0.2, 1.8, 2.8, 1.2, 0.8, 19.6, 0, 0, 1, 0, 0.2, 0, 0.2, 0.2, 0.2, 0.2, 0.4, 0.2, 0.2, 0, 0.2, 0.2, 0.2, 13.5, 0.8, 2.4, 0, 2, 0, 11.3, 15.7, 4.6, 1, 6.2, 3, 0, 2.2, 0.2, 3.4, 1.6, 3.8, 11.3, 14, 5, 0, 0, 2.8, 19.4, 1, 1.4, 5.2, 0, 0.2, 0.2, 5.6, 0.4, 0, 0, 0.2, 0.2, 0, 0, 0.2, 0, 0, 1, 0.2, 6.4, 0, 0.2, 0.4, 7.9, 25.4, 2.8, 2, 2.2, 0, 0.8, 7.6, 14.7, 7.8, 9.9, 7.4, 15.5, 9.2, 4, 0, 0, 0, 0, 0, 11.9, 0, 2, 0.2, 0.2, 0.4, 0.2, 0.6, 0, 6.8, 0, 0, 0, 2, 0, 0, 0, 0.2, 0, 0, 0, 0.8, 0.6, 0, 0, 0, 0, 0, 0.2, 4.6, 1.2, 2.8, 1.8, 0, 0, 0, 0, 1.4, 0.4, 0, 0.2, 0, 0, 0.2, 0, 2.2, 0.2, 0, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.2, 2.4, 3.6, 0.8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.8, 0, 0, 1, 9.7, 9.3, 2.6, 0.2, 0, 0.6, 5.6, 4.2, 9, 3.4, 6.3, 0.6, 10.9, 0.8, 3, 0, 0, 2.4, 3, 6.9, 5, 0, 0.2, 0, 0, 0, 0, 0, 0, 1.6, 14.8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.2, 21, 0, 13.5, 18.1, 8.1, 0.2, 0, 0, 0.6, 2.6, 2.6, 5, 0.2, 0, 0, 0.4, 1.8, 12.7, 4.2, 3.2, 0, 0, 1.2, 7.3, 3.8, 1, 0.4, 0, 0.2, 0, 0, 0, 0, 0, 0, 0, 0.8, 4.6, 0, 0.8, 3.2, 0, 0.6, 0, 0.2, 1.6, 0.8, 5.6, 0.8, 4.6, 2.8, 3.2, 0.2, 0.2, 0.2, 0.2, 0, 0, 0, 0.2, 0, 0, 0, 0.2, 0, 5.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.2, 0, 0, 9.7, 1.9, 3.4, 0.6, 0, 0, 0.4, 0.2, 0, 0.2, 0.4, 0.6, 0.4, 0, 0, 0.2, 0, 0, 3, 0.4, 3.2, 6.5, 0, 0.2, 4.8, 96.7, 0.6, 11.3, 2.4, 0.2, 0, 0, 0.2, 0.4, 0, 0.2, 0, 0, 0, 0, 0, 0.8, 3.2, 7.7, 0.4, 0, 0, 1.2, 0.2, 0, 0.2, 3.4, 0.2, 1.4, 10.9, 5.6, 7.8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8.7, 0, 0, 0, 0, 1, 1.6, 0.2, 0, 6.1, 0, 0.8, 13.3, 0.2, 1, 0.6, 11.5, 1.2, 8.7, 0, 0.6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.4, 1.8, 6.4, 13.8, 19.8, 12.9, 1.2, 0, 0);
$LyonPluie = array(0, 0, 0, 0.2, 0, 0, 0, 0, 2, 5.3, 0, 3, 0, 1.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.4, 0, 0, 4.8, 0.4, 2.2, 1.6, 0, 1.2, 0, 0.4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.4, 0, 0, 0.2, 0, 0, 0, 1.6, 5.5, 0.4, 1.6, 0, 6, 8.4, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.6, 0, 0, 2, 2.6, 25.8, 0.2, 1.4, 0, 0, 0, 0, 0, 0, 6.4, 4.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 0.6, 0, 0, 0, 9.5, 2.2, 6.2, 3.8, 0, 0, 15.5, 3, 0, 0, 0.4, 10.1, 13.5, 0.8, 2, 0, 0, 0, 17.9, 3.3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.6, 0, 16.4, 0.2, 1.4, 5.3, 0, 0, 0, 0, 0, 0, 2, 0.2, 18.5, 0, 0, 0, 0, 0, 0, 0, 0, 5.3, 0, 0.4, 13.5, 8.1, 0.4, 1.8, 2.4, 0, 0, 0, 0, 0, 0, 0, 0, 11.5, 0, 0, 0, 0, 0, 0, 0, 0, 0.6, 0.2, 1.6, 10.7, 1.6, 0.6, 1, 0, 0, 0, 0, 5.6, 0, 0, 0, 1.8, 0, 3.5, 0, 13.8, 13.2, 0, 0.6, 1.6, 0, 0, 0, 1, 0, 0, 9.9, 0, 0, 0, 0, 0, 1.6, 0.4, 0, 0, 0, 0, 8.9, 2.8, 0, 2.4, 0, 0, 0, 0, 0, 0, 6.2, 0, 0.2, 0, 0, 2.6, 0, 0.6, 2.6, 0, 1.2, 0, 0, 0, 0, 0, 3.6, 0, 0, 0, 0, 13.3, 1.6, 0.8, 2, 0, 1.4, 0, 0.8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1.4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30.9, 1.6, 0, 0.2, 0, 0, 0.2, 3.8, 5.5, 0.6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.8, 6.7, 0, 0, 4.6, 4.6, 0.6, 0, 0, 0, 0, 0, 0, 3.8, 0.4, 0, 3.8, 6.8, 1.6, 2, 3.4, 0, 5.2, 6, 4.9, 0, 0.2, 0.6, 0.2, 0, 0, 0, 0.2, 2, 0, 9.7, 4.4, 1.6, 0.8, 0, 25.8, 2.4, 0.2, 0, 0, 4.4, 2, 0.2, 0, 0, 0, 0, 1.8, 4.6, 0.2, 2.6, 0.2, 10.1, 3.4, 0.8, 0, 0, 6.9, 26.4, 0, 0.2, 0.4, 0, 7.5, 0.8, 1, 0, 1, 3.4, 3.6, 0.2, 0, 2, 0, 3, 0.2, 1.4, 2.8, 3.8, 1, 4.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.6, 4.2, 10.7, 2.2, 8.1, 0.2, 6.1, 0.8, 0, 13.7, 2.2, 3, 0.4, 0, 0, 20.6, 7.7, 6.3, 0, 0, 0, 0, 0.2, 0, 0, 0, 0.4, 1.8, 6, 0, 11.7, 1, 0, 0, 0, 13.3, 0, 0, 0, 0, 4.6, 0.2, 3.2, 0.6, 1.8, 0.6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.6, 0, 5.6, 1.4, 0.6, 0.2, 0.6, 0, 0, 0, 0, 0.6, 7.1, 0, 0, 7.4, 21.3, 12, 0.2, 1.2, 0, 0, 0, 0, 0, 24.5, 8.9, 0, 0, 0.6, 3.6, 3.8, 0, 16.1, 0.2, 0, 0, 2.2, 4.8, 0.4, 0, 8.9, 2.8, 0, 0.4, 11.9, 44.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40.6, 0.8, 3.2, 5.4, 0.4, 0, 0, 0, 0, 0, 0, 0, 4.9, 5.9, 0, 0, 0, 0, 14.2, 0, 0, 0, 0, 0, 0, 0, 14.1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14.2, 0, 0, 1.2, 12.5, 1.2, 0, 2.6, 0, 0, 0, 0, 0, 0.6, 1.6, 0, 0, 0, 0, 0, 6.3, 0, 0, 0, 0, 0, 0, 0.8, 5.2, 0, 0, 0, 0, 0, 0, 1.4, 0, 0, 0, 0, 0, 0, 0, 0.2, 0, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 25.7, 5.8, 0, 0.2, 1.4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.6, 2.2, 13.1, 45.8, 0.2, 1, 1.2, 0, 0, 0, 0, 1.2, 9.9, 0, 0, 3.2, 0.6, 0, 1, 0, 0, 0, 1, 0, 0, 9.3, 0, 0, 25.4, 0, 3, 2.6, 0, 0, 0, 3.8, 10.3, 6.6, 2.6, 0, 1.4, 2, 2, 0.6, 1, 0.6, 0, 0, 0, 0, 2.6, 2.8, 0.4, 0.4, 11.9, 0, 7.2, 1.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.6, 2.8, 0, 0, 6, 5.9, 1.6, 0, 0, 0.2, 0, 0, 0, 0, 1.6, 4.8, 0, 0, 0.2, 1.4, 0.2, 0.2, 0, 6.2, 9.7, 12.9, 0.8, 0, 0, 0, 2.6, 0, 0, 2.2, 1.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.8, 0, 0, 0, 10.7, 0.2, 0, 0.8, 0.2, 0.2, 2.8, 1.4, 7.1, 0.2, 0, 1.6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.2, 18.3, 1.6, 0, 0, 2.8, 0, 0, 0, 0, 0, 0, 0, 0.6, 1, 0, 0, 0, 0, 0, 0, 2, 1.8, 45.7, 1.6, 0.6, 3.2, 0, 0, 0, 2.6, 0, 4.9, 0.2, 0, 1.4, 15.5, 5, 0.2, 6.1, 0, 0, 0, 0, 0, 2.2, 7.3, 0.4, 0.2, 0, 0, 0, 0, 0, 0, 2.8, 0.4, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0.4, 0, 14.9, 11.3, 16.1, 0, 0, 15.7, 26.7, 0, 0, 0, 0, 1.2, 5.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.8, 0, 0, 0, 0, 1.4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.4, 0, 0, 0, 0, 0, 0.8, 28, 0.4, 0, 0, 0, 0, 0, 0, 0, 9.1, 24.4, 4.2, 0, 21.4, 0, 10.9, 0.4, 0, 0, 0, 0, 0, 8.6, 5.6, 12.5, 0, 0, 0, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8.5, 0, 0.8, 2.8, 0, 0, 0, 0, 0, 10.2, 0.8, 0, 0, 0, 5.6, 0, 0, 9.9, 0, 0, 0, 0, 20.4, 21.8, 0, 1, 4, 4.4, 31.7, 2.8, 0.6, 19.4, 0, 0, 0, 0, 2.4, 0, 0, 5.2, 6.2, 1.8, 5.6, 2, 1, 2.4, 0.2, 0, 0.4, 0, 0.2, 0, 0, 48, 0, 0, 0, 0, 0, 0, 2.4, 0, 10, 0, 0, 3.6, 0.6, 3.2, 3.6, 16.7, 4.7, 0, 0, 0, 0, 0, 0, 1.4, 1, 0, 9.1, 7, 7.7, 6.6, 0, 0, 0.2, 0, 0, 11.7, 6.3, 2.6, 1.4, 1.4, 0, 0.4, 3.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.4, 0, 0, 0, 0, 0, 0, 0, 6.3, 0, 0, 0, 0, 0, 0, 0, 0, 1.6, 0.2, 2.2, 1.2, 4.8, 0, 1.4, 4.8, 0.2, 1.8, 0, 0, 0, 0, 0, 1.8, 0.8, 0, 1.4, 0, 0, 0, 6.3, 0, 1.8, 0.2, 0, 0, 0, 0, 2.2, 0, 1.2, 0, 1.4, 1, 8.9, 0, 3.4, 6.8, 0, 0, 0.2, 2, 2.2, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.2, 3, 0, 0, 0, 0, 0, 3.8, 0, 1.4, 20.1, 1.4, 12.7, 10.6, 15.8, 0, 0, 0.4, 0, 0, 0, 0, 7.1, 1.2, 1.2, 21.8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6.1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14.6, 21.7, 0, 10.5, 0, 5.6, 7.9, 0, 0.4, 16.4, 9.2, 0, 0, 3, 6.3, 10.6, 0, 0, 0, 0, 0, 0, 0, 5.1, 1, 4.3, 0, 0, 4.9, 0, 0, 0, 0, 0, 0, 0, 0, 3.2, 0, 0, 0, 0, 1.2, 0, 0, 0, 0, 0, 0.4, 1.4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.6, 0.2, 3.2, 0, 0, 0, 0, 0, 0, 0.2, 0, 0, 7.5, 0, 0, 1.8, 0, 0, 0, 0, 1.8, 0, 0, 0, 0, 0, 0, 23.9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.8, 2, 3, 26.5, 1.8, 0, 7, 3.4, 7.6, 10.7, 4.2, 0.4, 0.2, 1.4, 48.6, 0, 0.8, 2, 0.4, 0, 0, 0.2, 0.6, 0.6, 0, 0, 1.2, 0, 0, 0, 0, 0, 0, 0, 14.5, 12.1, 0, 41.8, 1.6, 2.2, 0, 0, 0, 0, 0, 0, 2.2, 0, 0, 0, 0, 6.1, 0, 0, 0, 0, 0, 0, 8.7, 0, 0, 0, 0.8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.4, 2.6, 0.8, 2.6, 7.4, 0, 5, 0.4, 0.2, 0, 0, 6.2, 1.2, 0, 0.8, 19.8, 0, 2.2, 0, 8.3, 12.7, 4.2, 0, 3.4, 4.4, 0.8, 0, 0.2, 0.2, 0, 6.3, 8.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5.8, 3.8, 2.6, 11.9, 0.4, 0, 0, 0, 0.6, 14.5, 0.4, 0.2, 0, 0, 5.2, 8.6, 0, 6.5, 1.6, 8.8, 3.8, 4, 0, 0, 5, 0.8, 0.4, 4.4, 0, 0, 5.4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.6, 0, 0, 0, 4, 0, 3.8, 0.8, 2.6, 8.8, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 6.4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22.6, 0, 0, 0, 0, 0, 0, 0, 0, 0.2, 0.2, 0, 0, 0, 0.2, 0.2, 0, 3.6, 4.4, 19.4, 7.5, 0.8, 0, 2.4, 0, 10.7, 1.6, 0, 0, 105.9, 2.8, 0.4, 4.8, 2.4, 7.9, 9.2, 0.6, 0.8, 6, 0.2, 12.5, 1, 0, 1, 0.2, 0, 0, 0, 0, 0, 0, 2.2, 3, 0, 4.8, 0, 0, 0, 0, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0.4, 0, 14.2, 5.8, 0.8, 2.8, 0, 0, 0, 0, 2, 0.8, 0.8, 0, 0, 2.8, 7.4, 2, 36, 3.8, 5.9, 0, 8.9, 0, 48.8, 12, 5, 8, 0.8, 0, 0, 0, 0, 0, 0, 5, 1.4, 0, 0, 9.9, 0, 0, 15.4, 4, 0, 0, 8.9, 14.4, 0, 0, 16.4, 0, 0, 0, 0, 6.1, 0, 0, 5.7, 0, 0, 0, 0, 0, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.8, 0.8, 0, 0, 0, 0, 0, 1, 4, 0.2, 0, 0, 1.2, 3.8, 4, 0, 8.9, 13.1, 18.7, 0, 0, 0, 0, 5, 0, 0.2, 0, 0, 0, 0, 0, 79.4, 13.4, 4.3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.6, 0, 0, 0, 0, 0.4, 0, 0, 0, 0, 4.8, 41, 4.4, 14.1, 0, 1.2, 0, 0, 0, 0, 0, 0, 0, 0, 2.4, 0.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.4, 0.2, 1.4, 11.5, 0, 0, 2.6, 1, 5.4, 3.2, 5.6, 1.2, 12.5, 8.2, 6.1, 1.8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.8, 0.6, 15.9, 19, 6.7, 0.2, 0);
$pluieBDD = ['Paris' => $ParisPluie, 'Marignane' => $MarignanePluie, 'Aurillac' => $AurillacPluie, 'Bordeaux' => $BordeauxPluie, 'Nantes' => $NantesPluie, 'Lyon' => $LyonPluie
];
$pluieBaseBDD = ['Paris' => 637.4, 'Marignane' => 515.4, 'Aurillac' => 1174, 'Bordeaux' => 944.1, 'Nantes' => 819.5, 'Lyon' => 880.9];
$pluieBase = $pluieBaseBDD[$climat];
$pluviometrie = $pluieBDD[$climat];
$ParisETP= array ( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.8, 3.6, 1, 2.7, 3.1, 1.1, 1.9, 2.2, 4.1, 4.6, 3.6, 3.2, 3.8, 3.7, 4.9, 5.9, 6.4, 3.1, 3.7, 3.7, 4.6, 4.9, 5.2, 4.6, 6.7, 7.2, 6.5, 6.8, 6.9, 6.1, 5.7, 6.2, 5.5, 3.4, 4.7, 6, 4.8, 5.4, 6.9, 6.4, 7.1, 8, 5.8, 5.7, 7.3, 7.9, 6.3, 5.8, 7.4, 7.8, 7.6, 7.9, 8.5, 6.1, 6.1, 6.6, 6.1, 3.3, 4.2, 4.5, 2.7, 2.9, 3, 5, 5.7, 6.8, 6.4, 8, 7, 4.5, 2.4, 4.7, 4, 4.7, 5.3, 5.5, 6.3, 6.2, 7.1, 5.9, 5.1, 6.1, 3.4, 4.2, 2.7, 3.9, 2.9, 3.5, 4.9, 6.3, 6.9, 3.9, 4.9, 6, 6.4, 5.5, 5.2, 5.2, 5.8, 2.9, 2.8, 2.4, 3.3, 2.1, 3.7, 4.4, 3.4, 3.9, 2.4, 2.7, 3.6, 4, 3, 4.5, 4.7, 3.7, 1.8, 3.7, 4.1, 4.3, 5.1, 2.4, 3.6, 3.4, 3.3, 3.1, 3.8, 2.8, 3.4, 3, 2.2, 2.8, 2.6, 3, 3.1, 1.3, 2.6, 2.8, 2.2, 2, 1.7, 2.3, 1.5, 2.4, 2.5, 2.4, 3, 2.8, 2.4, 1.6, 1.3, 2.7, 2.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.8, 3.5, 4.3, 4.8, 5.2, 5.5, 6.5, 6.5, 4.9, 4.7, 4.9, 3.7, 2.8, 1.3, 3.6, 4.8, 5.3, 4.8, 4.7, 5, 4.4, 3.8, 4.3, 4.8, 4.8, 5.1, 5.8, 4.7, 2.8, 4.4, 4.8, 2.6, 4.2, 5.5, 4.8, 2.4, 2.5, 5, 4.9, 4, 3.7, 1.5, 2.5, 3, 2.9, 5, 5.5, 4.7, 4.8, 4.5, 5.8, 6, 5.9, 5.6, 5.9, 6, 7.3, 7, 7.7, 7.3, 7.1, 7.7, 7.1, 7, 6.6, 5, 6.5, 7.1, 6.9, 7.1, 6.6, 4.4, 5.6, 6, 6.6, 6.7, 7.4, 6.4, 6.8, 7.4, 4.4, 5.7, 5.6, 6.5, 6.2, 7.6, 6.9, 7.4, 6.8, 6.8, 5.7, 6.5, 6.4, 7.4, 8, 8.8, 7.2, 7.3, 7.9, 6.2, 2.2, 4.7, 4.9, 6.5, 5, 4.3, 4.4, 5.8, 5.9, 4.9, 5.1, 3.5, 3.9, 4.9, 4.7, 4.3, 4.5, 4.4, 4.3, 4.4, 2.5, 2.5, 4.1, 4.6, 4.6, 4.5, 1.9, 3.8, 3.2, 4, 3.6, 4.6, 4, 4.5, 4.4, 1.6, 3.7, 3.3, 3.6, 4.6, 3, 4.2, 3.8, 3.7, 3, 2.3, 3.1, 3.3, 2.9, 2.8, 3.2, 3.5, 2.8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.6, 2.5, 2.8, 1.7, 2.7, 2.5, 3.8, 2.1, 2.2, 2.6, 3, 4.1, 5.2, 5.7, 5.7, 4.9, 3.2, 2.4, 2.1, 3.2, 3.3, 4.1, 4.6, 5.6, 4, 3.9, 5, 4, 3.9, 3, 4.6, 5.8, 7.9, 3.6, 4.9, 1.3, 4.6, 3.8, 4.5, 3.6, 3.9, 3.2, 2.6, 2.8, 4.5, 5.2, 4.7, 5.1, 5.8, 6.1, 4.3, 5.4, 5.7, 6, 6.4, 7, 7.5, 7.8, 8.2, 8.4, 6.7, 6.1, 6.6, 7.1, 7.2, 7.6, 7.7, 6.5, 7.3, 6.9, 6.4, 6, 6.4, 6.3, 4.7, 5.9, 5.7, 6.6, 5.9, 5.9, 5.5, 6.1, 6.7, 8.7, 8.5, 9, 7, 3.6, 5.2, 6.6, 6, 5.1, 5.5, 6.5, 4.8, 6.2, 5.6, 2.8, 5.2, 5.2, 3.2, 6.8, 3.6, 3.4, 3.6, 4.8, 4.7, 4.6, 1.3, 3, 4.7, 5, 4.3, 5.2, 5.5, 5.5, 5.8, 6, 6, 5.2, 4.8, 5.2, 6.7, 5.1, 4.3, 4.1, 4.3, 3.6, 3.7, 3.7, 3.7, 3.2, 4.1, 4.2, 2.7, 3, 3.8, 4.3, 4.3, 4.1, 4.4, 4.1, 5.5, 4.1, 2.3, 3.1, 1.8, 1.9, 2.6, 2.5, 2.7, 2.2, 2.3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.4, 3.9, 3, 3.7, 2.7, 5.7, 5.1, 4.9, 3.7, 3.1, 4.1, 4.1, 4.7, 4.7, 5, 4.7, 4.8, 5.6, 5.8, 5.9, 5.8, 5.5, 4.8, 4.6, 5.1, 6.6, 6.8, 6.7, 7.4, 6.9, 7.2, 6.8, 7.3, 6.6, 2.2, 3.2, 5.2, 3.8, 4, 4.2, 4, 4.8, 3, 4.9, 4.2, 4, 4.6, 3.8, 4.6, 3.5, 5.1, 3.7, 5.5, 7.1, 8.4, 8.2, 6.7, 4.1, 5.9, 6, 4.5, 3.6, 4.3, 4.9, 3.9, 4.2, 5.3, 5.8, 5.8, 7.3, 5.8, 6.3, 6.6, 7.4, 4.8, 4.4, 3, 4.8, 6.5, 7, 7.1, 7.4, 6.4, 6.6, 4.9, 5.6, 5.7, 8.1, 6.4, 5.9, 7.2, 8.1, 5.6, 6.2, 5.4, 5.7, 6.8, 7.1, 8.1, 7.5, 9, 7, 6.4, 7, 4.8, 4, 4.4, 4, 3.7, 5, 3.1, 5.6, 6.8, 5.4, 4.1, 3.9, 5.8, 5.4, 4.8, 3.7, 2.4, 3.1, 3.8, 3.7, 3.9, 5.1, 5.7, 4.4, 2.9, 3.8, 3.8, 5.1, 3.8, 3.8, 3.5, 4.1, 4.8, 5.6, 5.2, 5.5, 4.3, 4.8, 3.8, 4.9, 3.7, 2.7, 2.1, 2.2, 2.9, 0.9, 1.2, 0.9, 2.4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.4, 2.6, 4.1, 3.5, 3.2, 1.4, 3.8, 4.2, 5.6, 4.3, 2.6, 2.8, 3.4, 2, 2.9, 3.2, 3.4, 3.5, 3.4, 3.5, 5.2, 4.1, 4.3, 3.5, 3.3, 3.1, 4.5, 5.6, 5.7, 6.4, 7.1, 6.8, 5.6, 5.6, 3.1, 3.2, 5.3, 5.2, 5.6, 6.2, 6.6, 5.9, 5.3, 7, 7.3, 6.7, 7.6, 5.2, 5.2, 3.6, 4.5, 5.8, 2.1, 2, 4.1, 2.9, 2.8, 3.4, 4.7, 2.8, 2.6, 4.2, 4.9, 4.2, 4, 3.4, 5.9, 5, 4.9, 3.8, 3, 4.1, 3.2, 1.2, 3.6, 5.3, 4.1, 4.5, 6.8, 6.7, 6.7, 6.6, 7, 6.5, 5.7, 4, 4, 2, 5.1, 4.8, 5, 4.8, 4.9, 3.8, 3.3, 2.8, 4.7, 4.9, 3.8, 4.9, 4, 3.8, 4.6, 5.1, 5.8, 6, 5.8, 4.6, 2.7, 2.9, 2.9, 3.8, 3.9, 4, 2.8, 5.3, 5.3, 3.6, 4.6, 3.6, 2.9, 3.4, 4.8, 4.6, 4.5, 4.2, 4.4, 4.7, 5, 5.6, 4.7, 3.8, 3.6, 3.6, 3.2, 3.6, 2.8, 1.7, 3.5, 3.2, 3.5, 3.5, 2, 2.8, 2.9, 2.8, 2.7, 2.5, 2, 1.9, 2.3, 3, 2.5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 );
$MarignaneETP = array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.6, 2.4, 3.5, 3.4, 3.7, 3.3, 6.3, 7.6, 5.7, 3.3, 3.8, 5.3, 4.4, 4.8, 7.2, 5.8, 6.7, 6.7, 6.6, 8.4, 6.3, 5, 6.1, 5.9, 5.8, 6.6, 7, 7.9, 7.2, 6.5, 5.3, 5.7, 6, 5.6, 7.9, 8.1, 8.6, 9, 6.7, 6.6, 7.9, 7.2, 7.8, 7.4, 7.8, 8, 9, 9, 9, 9, 7.2, 6.6, 6.9, 7.5, 8.4, 9, 7.6, 8.4, 6.5, 7.4, 8.3, 9, 9, 9, 7.4, 8.5, 8.4, 8.5, 8.5, 8.9, 7.3, 6.4, 9, 9, 9, 9, 9, 8.7, 8.4, 8.4, 8.6, 6.8, 5.9, 9, 9, 9, 9, 9, 9, 7.1, 8.5, 9, 9, 8, 8.1, 8.8, 9, 9, 9, 7.7, 9, 9, 9, 9, 7.3, 6.1, 6.6, 6, 7.2, 7.5, 9, 9, 7.1, 7.3, 5.1, 5.1, 6.8, 6.7, 6.4, 6.6, 5.6, 7.4, 4.8, 7.9, 9, 7.5, 5.4, 5.6, 9, 9, 6.1, 3.2, 6.9, 8.5, 8.1, 4.4, 5.8, 3.2, 4, 4.3, 3.3, 6.4, 5.8, 3.1, 2.8, 3, 3.5, 2.2, 3.5, 3.7, 4.1, 3.9, 2.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.5, 5.6, 6.1, 4.3, 4.2, 3.8, 3.3, 4.7, 5.4, 6.6, 4.4, 5.1, 1.8, 3.1, 4.8, 5.8, 3.9, 4.9, 5.4, 5.4, 3.7, 3.7, 4.7, 5.4, 5.3, 4.3, 4.7, 3.8, 5, 3.7, 4.3, 5.5, 4.8, 4, 4.5, 5.2, 5.9, 2.6, 5.9, 5.6, 7.3, 5, 5.7, 7.2, 8.2, 8.3, 7.4, 9, 9, 8.3, 7.9, 8.1, 9, 7.9, 6.7, 7.6, 7.1, 7.1, 7.6, 6.7, 7.7, 7.7, 6.7, 6.8, 7.4, 9, 9, 9, 8.9, 9, 9, 9, 7.9, 8.4, 8.1, 7.8, 4.1, 9, 8.2, 8, 7, 8.1, 9, 9, 7.3, 8.7, 7.7, 7.9, 6.8, 7.5, 6.9, 7.9, 8.4, 9, 7.1, 8.3, 9, 7.7, 7.4, 6.6, 3.5, 8.1, 8.6, 6.3, 6.8, 9, 6.8, 7.1, 6.4, 6.8, 6.7, 6.7, 6.8, 6.1, 7.1, 9, 9, 8.9, 6.1, 5.9, 5.2, 8.2, 9, 8.7, 5.8, 5.4, 5.8, 4.2, 3.7, 7.2, 4.8, 4, 3.8, 5.1, 4.2, 5.3, 7, 5.8, 4.8, 3.9, 3.9, 4.6, 4.6, 5, 8, 7, 6.8, 4.5, 4.1, 3.2, 5.2, 3.7, 3.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.2, 3.9, 5.4, 7.6, 6.3, 6.6, 3.5, 2.9, 4.3, 4.6, 6.3, 7.9, 6.7, 5.9, 4.1, 4.5, 3.3, 4.6, 2.8, 5.7, 7.5, 5.4, 4.7, 3.9, 4.5, 5.4, 6.5, 9, 8.8, 6.3, 5.9, 5.3, 6.3, 6.3, 8.2, 9, 6.8, 7.9, 8.3, 5.7, 7.3, 2.2, 5.4, 5.3, 8.2, 5.8, 8.4, 5.9, 7.5, 7.8, 6, 6, 7.5, 6.5, 7.8, 8.8, 8.6, 8.8, 9, 8.7, 9, 7.9, 7.1, 8.5, 7.6, 7.7, 6.8, 7.8, 8.4, 6.4, 9, 7.9, 9, 9, 9, 9, 6.9, 7.6, 8.7, 6.7, 6.2, 6.9, 6.6, 7.3, 8, 8.2, 7, 6, 9, 8.9, 8, 9, 6.1, 9, 9, 8.1, 7.6, 8.6, 7.2, 8.2, 7.7, 7.3, 7, 7.4, 9, 9, 9, 8.2, 5.2, 6.1, 5.1, 6.1, 6.7, 5.7, 5.7, 6.1, 6.2, 6.3, 4.4, 4.8, 6.2, 6.5, 6.8, 7.7, 9, 7.4, 5.6, 9, 8, 8.9, 8.5, 6.3, 2.3, 5.8, 5, 5.3, 4.1, 4.6, 4.9, 4.4, 3.7, 5.1, 4.6, 3.8, 3, 5.6, 4.5, 4.8, 4.8, 3.6, 4.4, 2.6, 4.6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.9, 5.7, 6.4, 5.4, 3.3, 6.8, 5.7, 6.7, 4.2, 2.1, 2.2, 4.5, 4.7, 3.7, 5.1, 3.4, 3.9, 5.9, 6.1, 5.7, 5.8, 5.8, 5.3, 7.6, 5.9, 6.4, 6.6, 5.4, 5.4, 5.9, 5.2, 5.5, 5.1, 4.6, 3.1, 7, 5.8, 6.4, 8.6, 7.3, 7.5, 5.3, 7.4, 3.5, 7.2, 9, 7.4, 7.3, 5.6, 7.2, 9, 9, 9, 7.6, 7.1, 7.4, 7.5, 6.9, 6.8, 8.3, 8.9, 6.2, 6.8, 9, 8.9, 9, 9, 9, 7.7, 7, 6.8, 9, 6.3, 7.3, 7.6, 8.1, 9, 9, 6.9, 6.9, 6.1, 6.4, 6.8, 7.7, 9, 8.4, 7.4, 7.3, 5.3, 7.2, 6.8, 8, 9, 9, 9, 9, 7.7, 6.8, 7.1, 6.4, 7.3, 6.4, 6.6, 7.3, 7.4, 7.5, 6.8, 6.1, 7.2, 7.6, 6.3, 7.7, 8.1, 8.4, 9, 9, 6, 6.3, 7.1, 5.9, 2.3, 7.4, 8.2, 7.1, 5.2, 5.3, 5, 4.5, 7.2, 7.5, 5.7, 3.8, 1.9, 3.3, 4.8, 5, 5, 5.2, 4.5, 4.8, 5.2, 7.7, 3.5, 3.6, 1.9, 3.3, 3.6, 5.8, 6, 4.3, 4, 4.1, 2.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.1, 5.5, 5.1, 4, 5.6, 3.7, 6.7, 5.1, 8.5, 3, 4.8, 5.2, 6, 5.5, 2.2, 2.2, 6.9, 4.9, 7, 6.6, 3.9, 3.9, 5.8, 4, 7.4, 5.8, 5.9, 4.3, 6.1, 5.4, 6.1, 6.1, 6.4, 6.9, 4.8, 7.7, 7.3, 7, 7.8, 7.4, 8.3, 7.3, 6.8, 7.7, 6.6, 6.2, 6.5, 7.3, 8.4, 6.5, 7.5, 7.2, 7.8, 6.3, 7.5, 9, 6.8, 8, 7.3, 8.8, 9, 8.8, 7.8, 6.1, 3.8, 7.9, 7.5, 5.8, 8.4, 9, 6.9, 8.1, 8.7, 8.3, 7.4, 8.7, 8.7, 7.9, 8.1, 7.3, 7.4, 6.9, 7.1, 9, 9, 8.1, 7.9, 7, 6.3, 6.8, 5.9, 8, 9, 7.9, 6, 2.3, 6.9, 6.3, 6.1, 6.7, 7.2, 7.1, 7.5, 7.3, 7.9, 7.8, 7, 9, 9, 8.1, 6, 6.3, 4.6, 6.1, 9, 5.3, 5.2, 6.6, 9, 7.9, 6.9, 6.3, 5.8, 4.6, 4.5, 4.9, 4.3, 5, 4.7, 4.9, 7.8, 7.2, 3, 5, 4.7, 3.8, 4.9, 6.8, 2, 5, 4.2, 5.7, 5.3, 3.8, 4.2, 3.7, 3.9, 4.3, 2.3, 3.2, 4.1, 5.6, 5.1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
$AurillacETP = array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.5, 2, 2.3, 2.7, 4.7, 2.2, 2.1, 3.4, 3.6, 3.4, 2, 3.5, 3.2, 3.3, 4.4, 5.3, 5.5, 2.8, 2.2, 2.3, 3.7, 5, 3.1, 4.8, 5.6, 6.2, 6, 7.4, 6.8, 3.1, 2.9, 4.5, 4.4, 0.8, 3.8, 4.3, 3.5, 3.2, 5.4, 3.8, 5.1, 5.7, 3.5, 5.7, 4.9, 4.8, 6.1, 5.7, 6, 7.6, 6.7, 6.3, 6.8, 2.1, 4.8, 6.2, 4.4, 4.7, 2.5, 2.5, 1.6, 2, 1.9, 4.7, 5.3, 7.7, 6.3, 6.4, 5.4, 3.3, 1.9, 3.3, 2.5, 4.7, 4.9, 4.8, 4.9, 6.8, 8.1, 5.4, 1.5, 2.4, 3.1, 4.1, 3.5, 3.4, 3.1, 2.5, 4.5, 4.2, 3.8, 6, 3.3, 5.2, 4.7, 4.3, 3.3, 4.7, 4.7, 3.1, 2, 1.7, 1.4, 3, 3.4, 5.3, 3.4, 3, 4, 3.2, 4.2, 3.2, 3.9, 6, 4, 4.5, 5.5, 6, 5.3, 5, 5, 2.4, 1.9, 3.1, 2.2, 2.6, 2.8, 2, 3.5, 2.3, 1.8, 2.1, 1.9, 1.9, 2.3, 0.4, 1.8, 1.5, 1.4, 0.6, 1.7, 1.4, 2, 2.6, 1.9, 2.4, 2.6, 1.5, 1.4, 2.5, 2.5, 2.9, 0.9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.3, 3, 2.1, 3.6, 1.4, 3.9, 2.5, 2.5, 0.9, 2.4, 3.5, 2.4, 1.3, 0.3, 0.3, 1.5, 2.3, 3.5, 3.4, 3.6, 3.8, 3, 3.5, 3.4, 4.3, 7.2, 3.3, 1.8, 2.6, 2.4, 2.5, 3.8, 4.5, 3.9, 4.1, 2.5, 3, 3.7, 3.3, 5.4, 4.3, 2.8, 3.3, 4.7, 3.3, 2, 3.6, 3.5, 3.3, 4.8, 6.1, 5.6, 5.6, 5.2, 5.4, 5.4, 6.9, 5.7, 5.7, 5.8, 6.7, 6.6, 5.6, 6, 6.3, 3.1, 4.5, 5, 5.1, 5, 5.1, 5.1, 5.4, 4.9, 5.3, 5.4, 2.2, 4.7, 5.3, 5.2, 4.6, 4.5, 3.7, 4.6, 5.6, 5.3, 6.2, 5.9, 3.3, 5.5, 5.6, 5.6, 4.9, 5.8, 5.8, 6.2, 6.1, 7.5, 7.1, 4.4, 2.7, 4.4, 4.6, 5.9, 1.9, 3.3, 4.5, 4.8, 2.1, 3.2, 4.2, 4.2, 4.6, 5.8, 4.7, 3.9, 1.7, 3.8, 3.5, 5.1, 3.2, 3.1, 2.9, 3.8, 3.5, 4.1, 4.4, 3.1, 1.5, 3.6, 4, 4.1, 3.6, 4.3, 4.8, 2.7, 3.6, 3.3, 4.8, 4.7, 4.2, 3.7, 3.8, 2.8, 3.1, 3.2, 3.1, 2.5, 4, 4.4, 3.1, 2.6, 3.3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.5, 1.9, 1.9, 1.8, 2.7, 3.2, 3.9, 1.4, 1.7, 2.6, 2.1, 3.6, 4.6, 4.7, 4.5, 4, 1.1, 1.4, 0.6, 1.9, 2.6, 3.4, 4.2, 2.6, 3.3, 3.7, 2.2, 2.3, 3.1, 3.1, 4.3, 5.5, 6.4, 3.5, 7, 2.8, 4.4, 2.7, 3.7, 3, 1.8, 2.1, 2.1, 5.5, 3, 1.9, 4, 5.3, 7, 5.2, 4.3, 2.9, 4.4, 5.6, 7.1, 7.5, 9, 8.9, 8.4, 7.2, 7.3, 5.4, 4.8, 5.6, 6.4, 7.8, 5.9, 5.5, 5.8, 3.2, 5.4, 5.2, 5.4, 5.6, 5.7, 5.4, 4.9, 5.8, 4.2, 5.2, 4.7, 5.3, 6.4, 8.6, 8.6, 9, 4.4, 1.8, 4.5, 4.9, 2.9, 4.4, 3.2, 4.7, 5.2, 6.2, 4.6, 4, 3.6, 5.2, 6.8, 4, 2.1, 3.6, 3.8, 3.7, 3, 3.8, 4.9, 5, 3, 1.9, 3.4, 4.2, 5.2, 5.6, 5, 5.8, 3.5, 3.7, 4.1, 4.6, 5.1, 2.9, 4, 3.9, 4.1, 3.7, 3.3, 2.9, 3.4, 2.6, 2.5, 3.5, 3.8, 5.2, 3.6, 4.7, 4.1, 4.4, 5.1, 5, 4.5, 4.9, 1.8, 2.2, 0.9, 1.7, 2, 1.8, 2.6, 3.1, 2.3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.9, 1.4, 2.5, 4.3, 3.7, 3.7, 4.1, 5.8, 4.5, 1.6, 3.8, 1.8, 1.3, 2.6, 2.4, 3.1, 3.5, 3.8, 4.4, 4.2, 4, 4.5, 1.3, 3.3, 4.3, 4.8, 5.3, 5.1, 5.1, 5.2, 5.4, 4.1, 4.9, 3.1, 2.1, 1, 2.9, 4.1, 2.2, 3, 2.8, 1.6, 2.1, 2.4, 3.3, 2.7, 3, 2.7, 2.2, 3.2, 4, 3.7, 5.1, 4.8, 7, 5.8, 5.4, 4.4, 3.3, 4.9, 4.4, 3.4, 3.7, 4.3, 4, 4.2, 5.7, 4.7, 5.5, 5.6, 4.3, 5.5, 5.2, 5.6, 5, 2.2, 2.4, 3.2, 4.8, 5.7, 6.3, 6.2, 5, 5.2, 5.8, 5, 4, 6.8, 5.1, 5.5, 7.1, 8.2, 5.4, 4.4, 4.1, 4.8, 5.5, 7.3, 8.9, 6.5, 6.4, 7.7, 7, 6.5, 3.4, 4.4, 5.2, 3.1, 2.7, 4.1, 5.6, 7.4, 6.7, 4.2, 3.4, 3.5, 5.1, 3.8, 3.9, 0.9, 2.5, 2.5, 3, 2.9, 2.8, 3.1, 5.1, 4.4, 2.9, 3.6, 3.2, 2.5, 3.9, 3.5, 3.5, 4.4, 6.2, 4.5, 4, 4.4, 6.5, 3.7, 1.8, 2.3, 1.7, 2.7, 1.2, 1.4, 1.3, 0.1, 1, 1.2, 1.6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.2, 2.6, 3.1, 3.1, 3.3, 0.2, 3.1, 4.5, 5.4, 2.8, 1.9, 2.1, 2.3, 2.8, 0.7, 1.8, 2.8, 1.3, 2.4, 3.1, 3.5, 2.2, 2.5, 1.7, 3.1, 2.9, 3.9, 4.9, 4.7, 4.1, 4.5, 3.9, 3.2, 4.2, 1.5, 4, 3, 2.7, 3.8, 4.1, 4.3, 5.2, 5, 5, 5.5, 5.6, 5.8, 3.7, 4.7, 4.9, 3, 3.5, 3.6, 3.5, 2.3, 3.8, 4.2, 3.2, 1.9, 2.2, 2.7, 3.8, 3.9, 2.6, 3.3, 3.9, 2, 3.5, 3.5, 3.9, 3.2, 4.5, 0.8, 0.8, 1.5, 1.5, 3.2, 4.4, 5.5, 4.8, 6.9, 5.8, 5.9, 6.4, 3.5, 2.6, 4, 2.8, 3.2, 3.8, 1.7, 1.5, 3.1, 3.4, 0.8, 2, 2.7, 3.8, 2.1, 3.1, 3.6, 4.2, 4.3, 3.9, 3.8, 5, 3.2, 2.4, 3.3, 2.7, 2.7, 3.7, 4.5, 3.1, 3.3, 2.9, 3.1, 3.9, 3.2, 2.9, 3, 3.4, 3.3, 4.4, 3.1, 2.6, 3.1, 3.7, 4.3, 4.5, 4.9, 2.5, 2.7, 2.6, 2.9, 3.3, 3.7, 2.9, 1.8, 2.8, 1.4, 0.9, 1.5, 2.2, 2.3, 2.6, 2.5, 2.7, 1.7, 2.3, 1.6, 0.9, 1.6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
$BordeauxETP = array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.8, 3.1, 3.4, 4.7, 3.4, 4.1, 4.2, 4, 5.3, 3.1, 5.3, 5.4, 3.5, 4.9, 5.6, 6.7, 4.8, 1.1, 3.4, 4.1, 5.6, 6, 4.1, 5.6, 7.6, 7.9, 5.4, 7.7, 3.7, 4.7, 3.9, 5.1, 5.5, 2.1, 2.7, 4.7, 5.1, 4.2, 6.9, 3.5, 5.8, 7, 5.8, 5.4, 6.1, 4.9, 6.1, 8.2, 7.7, 9, 7.5, 7.9, 7, 3.9, 2.9, 5.7, 4.7, 3, 4.5, 3.8, 2.6, 2.5, 3.4, 4.1, 6.6, 8.3, 4.1, 7, 5.5, 5.1, 4.2, 5.2, 3.4, 3.5, 5.2, 5.3, 7.1, 8.4, 9, 4.3, 5, 3.2, 4, 4.3, 4.7, 4.4, 1.5, 2.7, 4.7, 5.2, 5, 4.8, 5.2, 5.7, 4.8, 5, 5.3, 6, 4.9, 5.1, 4.3, 4.3, 4.9, 4.2, 4.4, 7.4, 2.7, 3.7, 3.9, 2.8, 4.2, 4.5, 6.7, 8, 5.5, 5.7, 5.2, 6.1, 4.7, 5.9, 5.3, 3.6, 4.2, 2.4, 3.6, 3.8, 3.2, 2.4, 3.1, 3.4, 3.3, 3.4, 2.5, 3.3, 3.1, 1.8, 3.7, 2.5, 2.4, 1.5, 3.1, 2.7, 2.6, 3, 2.6, 2.8, 3, 3.4, 2.1, 3.3, 3.1, 3.2, 2.4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.1, 2.1, 2, 3.9, 4.4, 4.3, 5.3, 4.3, 4.7, 4.4, 4.6, 1, 3, 1.6, 3.9, 4.1, 2.9, 5, 5, 5.4, 4.2, 4, 4.6, 4.1, 2.5, 3.2, 3.2, 2.2, 3.3, 3.8, 2.9, 4.3, 5, 5.2, 3.8, 1.8, 3.5, 4.3, 4.7, 5.3, 4.2, 2.8, 3.1, 3.6, 3.5, 2.8, 3.8, 4.9, 3.3, 4.6, 6.1, 5.8, 8, 7.5, 7, 8.2, 7.8, 6.5, 7.3, 6.8, 7.9, 6.4, 5.9, 4.4, 3.8, 4.1, 4.2, 5.7, 7.6, 6.6, 6.8, 6.8, 6.5, 6, 7.4, 5.6, 4.6, 4.8, 5, 6.3, 5.8, 3.9, 4.2, 5.8, 6.4, 6.1, 7, 5.2, 4.8, 4.8, 5.2, 5.5, 6.8, 7.3, 7.7, 7.8, 8.3, 7.5, 5.5, 4.4, 4.7, 4.2, 5.8, 6.2, 4.5, 5.4, 5, 5.3, 5.8, 5.2, 5.8, 4.9, 6.1, 5.6, 5.5, 4.8, 2.2, 4.4, 3.6, 6.6, 4.5, 4, 4.3, 4.8, 5.8, 5.4, 5.1, 3.4, 2.3, 4, 4.2, 3.4, 3.8, 4, 5.1, 3.4, 3.5, 4.2, 4, 4.6, 4, 4, 4.4, 2.1, 3.4, 3.5, 4, 3.9, 4, 5, 3.6, 4.1, 3.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.2, 3, 3.4, 2.6, 3.2, 4, 4.2, 2.1, 2.6, 3.2, 3.4, 4.7, 6.1, 6.9, 6.8, 5.4, 2.6, 2.3, 2.2, 2.5, 3.2, 4.1, 4.1, 4.1, 4.5, 4.2, 2.8, 3.4, 3.9, 4.6, 5.7, 6.6, 7.1, 4.4, 5.1, 1.3, 4.3, 4.2, 4.4, 6, 3.8, 3.2, 3.2, 4.7, 3.4, 4.8, 4.8, 6.5, 8.3, 4.9, 5, 1.8, 4.5, 6.8, 6, 5, 8.7, 8.1, 4.6, 5.6, 3.8, 3.4, 3.2, 6.6, 7.7, 8.2, 6.9, 5.8, 5.6, 7.1, 7.2, 6.8, 6.2, 6.6, 8.4, 7.3, 6.8, 6.7, 5.5, 5.8, 5.6, 6.5, 7.3, 9, 7.8, 9, 2, 2.9, 5.1, 6.2, 5.3, 4.9, 4.7, 5.2, 6, 5.9, 4.8, 4.1, 4.8, 6.7, 6.7, 4.6, 2.8, 4.3, 3.4, 4.6, 4.2, 4.4, 4.8, 3.7, 4.4, 5.5, 5.8, 5.9, 6, 6.6, 5.7, 5.2, 5.6, 4, 5, 5.2, 5.8, 2.4, 4.6, 4.8, 4.8, 4.4, 4.4, 2, 3.9, 3.2, 3.3, 4.3, 3.9, 5.1, 4.4, 5.3, 4.7, 6, 5.5, 5.9, 6.5, 4.2, 3.1, 2.2, 2.9, 2.3, 3.5, 2.5, 3.4, 2.7, 3.1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.6, 1.4, 4.8, 5.4, 5.1, 5.2, 5, 4.5, 4.4, 0.6, 0.8, 1.1, 1.9, 2.5, 4.7, 5.3, 4.7, 5.1, 5.7, 5.6, 5.6, 5.4, 2.8, 5, 6.5, 7.1, 7.4, 7.3, 8.3, 6.8, 7.2, 5.8, 5.9, 6, 4.3, 3.1, 4, 3.7, 2.9, 3.2, 3.1, 1, 3.8, 2.8, 5, 4.1, 3.8, 3.7, 3.1, 3.6, 4.7, 4.1, 6, 6.5, 7, 6.1, 4.7, 5.1, 3.8, 5.8, 4.9, 3.8, 4.5, 3.5, 4.5, 5.3, 6.1, 6.1, 6.8, 6.9, 5.1, 7.3, 7.8, 7.9, 5.9, 5.7, 3.1, 4.6, 6.4, 8.1, 7.2, 7.1, 5.8, 6.8, 6.4, 4.8, 5.2, 7.1, 4.9, 5.6, 8.5, 7.7, 4.9, 5.3, 4.7, 5.8, 6.5, 7.5, 8.8, 7, 7, 6, 6.5, 5.1, 2, 5, 6.2, 5.1, 4.3, 5, 7.2, 7.4, 3.2, 4.3, 3.7, 4, 4.7, 5, 4.2, 4.8, 3.2, 3.9, 3.6, 5, 4.3, 4.2, 5.4, 4.3, 4.9, 4.1, 4.8, 5, 5.2, 4.7, 4.3, 5.9, 7.3, 3.6, 4.8, 6.2, 4.3, 3.3, 2.7, 1.9, 2.3, 3.6, 3.3, 1.7, 0.9, 1.6, 3, 2.3, 2.4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.2, 3.4, 4.1, 2.6, 4, 1.1, 2.8, 4.9, 1.9, 4.2, 3.4, 3.8, 1.3, 3.5, 0.9, 3.3, 3.9, 2.5, 3.4, 5.1, 1.5, 2.9, 4, 3.8, 3.9, 3.8, 4.7, 6.4, 4.7, 6.1, 6, 5.6, 5, 3.9, 1.7, 4.5, 5.4, 5.2, 6.1, 6.2, 5.9, 5.7, 6.1, 7.7, 7.8, 6.9, 6.4, 2.2, 5.3, 3.6, 5.5, 4.9, 3.7, 2.6, 3.5, 4.4, 4.8, 1.5, 3, 4.3, 4.2, 3.6, 5.1, 4.3, 3.2, 6.1, 5.1, 3.3, 3.8, 4.1, 4.2, 5.5, 3.3, 2.3, 3.2, 4.1, 5.2, 5.9, 6.5, 7.3, 7.2, 6, 7.1, 3.9, 4.5, 4.3, 4.5, 2.2, 4.9, 3.4, 4.4, 2.1, 3.6, 3.5, 2.2, 3.4, 4.3, 4.9, 4.2, 4.4, 3.6, 5.6, 5.9, 3.1, 4.7, 5.7, 4.1, 3.5, 4.1, 2.8, 2.8, 5.4, 4.5, 4.2, 4.4, 4.8, 5.2, 5.4, 5.4, 5.6, 5.1, 5.3, 5.5, 5.3, 2, 3.5, 3.6, 4.8, 5.7, 6.4, 3.3, 1.8, 3.4, 3.4, 4.5, 5.4, 4.1, 3.7, 3.5, 3.4, 1.7, 3, 3.3, 2.9, 2.9, 2.7, 2.9, 4.2, 2.7, 3.3, 1.7, 2.7, 2.4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
$NantesETP = array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.4, 2.6, 3.1, 3.1, 4.5, 3.1, 3.1, 3.8, 4.4, 3.5, 2.6, 3.2, 3.8, 4.7, 4.3, 5.9, 2.8, 1.7, 3, 3.4, 4.5, 5.1, 4.8, 5.4, 7.5, 7.6, 5.4, 4.7, 2.5, 3.2, 4.7, 5, 5.3, 2.9, 3.8, 3.4, 4.4, 4.2, 4.3, 4.7, 5.1, 3.9, 5.3, 4.8, 5, 5.4, 5.6, 7.1, 8.8, 8.6, 6.5, 6.4, 5.1, 4.9, 4.9, 4.8, 4.5, 4.2, 4.9, 4.1, 2.7, 2.9, 3.6, 4, 5.8, 7.6, 4.1, 6.7, 7.3, 5.7, 4.4, 4.4, 3.8, 3.9, 5, 5.6, 6.4, 7.4, 9, 3.7, 5.1, 3.6, 4.1, 1.6, 3.4, 3.9, 2.6, 4.6, 3.9, 3.4, 4.8, 3.5, 5.1, 4.3, 5.7, 1.9, 5.1, 4.8, 5.8, 4.8, 3.6, 4.3, 3.6, 1.4, 4.3, 5, 4.5, 4, 1.4, 4.3, 3.1, 3.5, 4.6, 6.4, 4, 3.5, 4.4, 3.8, 5.5, 6, 4.7, 1.2, 3.1, 3.1, 3.2, 1.3, 3, 3.2, 3.3, 2.4, 1.3, 2.7, 2.2, 3.2, 2.6, 1.5, 3.4, 2.3, 2.1, 2.3, 1.9, 2.6, 2.1, 2.7, 2.4, 2.9, 2.2, 1.2, 2, 2.2, 1.9, 1, 2.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.9, 0.9, 3.1, 3.7, 4.2, 4.4, 3.9, 3.3, 3.7, 4, 3.2, 1.2, 2.5, 3.5, 4.7, 3.9, 3.6, 5.1, 4.9, 4.8, 5.1, 4.4, 5, 4.1, 1.9, 3.6, 4.2, 4, 3.2, 3.1, 1.7, 4.1, 4.6, 4.4, 2.5, 2.2, 0.9, 3.1, 3.4, 4.4, 3.7, 0.2, 2.2, 3.9, 1.6, 4.5, 3.3, 3.8, 3.2, 3.9, 5.9, 5.7, 6.5, 7, 6.3, 6.6, 7.4, 7.5, 7.9, 8.1, 7.8, 6.7, 3.3, 5.1, 4.7, 3.7, 3.7, 5.5, 7.3, 7.3, 5.8, 5.9, 5.1, 5.2, 5.7, 6.4, 5.4, 5.7, 4.3, 3.2, 4.6, 3.7, 4.3, 5.1, 6.5, 5.4, 5.1, 3.4, 4.6, 2.3, 3.9, 5.2, 4.5, 6.1, 7.5, 6.8, 6.9, 6.9, 5.3, 5, 3.4, 4, 4.1, 3, 3.4, 3, 3.7, 3.6, 4.1, 3.8, 3.6, 2.4, 4.4, 5.3, 3.3, 3.7, 3.3, 2.8, 4, 4.3, 2.7, 3.2, 3.4, 3.9, 5.1, 4.4, 5, 3.9, 4.3, 3.1, 4.2, 3.9, 3.1, 3.2, 3.6, 2.7, 3.9, 3.7, 3.1, 4, 3.4, 3.1, 3, 3, 0.7, 1.4, 2.8, 4.2, 4.1, 3.7, 3.4, 3.7, 2.6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.6, 2.6, 2.2, 3.3, 2.9, 3, 3.1, 3.5, 3.4, 0.7, 3.7, 3.9, 5.4, 6.6, 6.3, 5, 4.2, 3.1, 2.6, 2.5, 4.1, 3.9, 4, 4.8, 3.5, 1.7, 4.3, 3.8, 2.1, 4.1, 4.7, 5.8, 4.2, 4.6, 2.6, 3.4, 3.3, 2.5, 3.9, 2.8, 3.8, 1.2, 2.9, 3.9, 3.9, 2.7, 4.1, 5, 6.4, 3.1, 5.3, 5, 6, 7.2, 2, 4.9, 8.6, 9, 7.4, 5.3, 6.6, 6, 6.7, 8.2, 9, 6.2, 6.7, 7.1, 7.9, 8.7, 7.4, 6.7, 4.9, 6.4, 7.4, 6.8, 6.9, 6.3, 2.6, 4.7, 4.1, 4.7, 6.2, 8.6, 6.8, 7.4, 1.3, 5.2, 4.8, 4.7, 4.6, 4.3, 3.9, 5.3, 5.9, 4.3, 3.5, 2.3, 4.3, 4.7, 3.7, 5.9, 4.1, 4.2, 3.6, 1.8, 3.6, 2.9, 1.3, 4.6, 3.8, 4.1, 5.1, 5.1, 7, 6.7, 3.9, 5.6, 4.8, 3.1, 3.6, 4.4, 4.1, 4.7, 4, 4.1, 2.7, 3.3, 3.1, 4.5, 3.2, 1.8, 3.9, 3.2, 2.5, 3.7, 4.8, 4.7, 4.9, 4.3, 6, 6.3, 6.5, 5.4, 3.5, 1.2, 3.1, 1, 1.3, 2.5, 2.7, 1.6, 0.8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.5, 1.1, 1.9, 3.4, 3.2, 2.7, 4.7, 3.1, 3.5, 3.5, 3.2, 4.2, 4.9, 4.8, 4.5, 4.1, 4.2, 4.9, 5.3, 5.1, 5.5, 4.2, 4.6, 4.2, 6, 6.7, 7.7, 7.4, 8.7, 7.9, 8.5, 7.6, 6.7, 5.8, 3.9, 3.6, 5.4, 2.7, 3.3, 4.6, 2.6, 1.2, 3.4, 3, 3, 2.4, 3.4, 2.3, 3.4, 3.6, 3.6, 3, 4.6, 6.2, 6.9, 5.7, 1.7, 3.3, 1.9, 3.2, 2.4, 3.8, 4.6, 4.1, 1, 3.4, 4.7, 4.6, 5.1, 4.6, 5.3, 5.7, 6.8, 5.9, 4.3, 4.6, 3.6, 5.4, 5.7, 6.2, 6.5, 7.6, 7.6, 6.1, 5, 2.4, 4.8, 3.5, 5.5, 5.9, 8.5, 5.3, 5.6, 5.2, 5.6, 4.8, 4.5, 6.4, 8.5, 6.2, 6.1, 6.4, 5.9, 2.8, 3, 4.6, 4.1, 2.4, 4.2, 3.1, 2.2, 4.2, 5.5, 3.9, 3.4, 3.3, 3, 4, 1.6, 3.6, 2.3, 2.2, 3.6, 4, 3.7, 3.4, 3.7, 4.1, 2.4, 3.2, 3.7, 4.4, 3.8, 3.3, 3.5, 4.7, 6.1, 2.4, 4, 6.6, 4.1, 2.6, 2.3, 2.6, 2.7, 1.8, 1.9, 3.1, 3, 2.2, 0.9, 1.3, 1.7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.6, 2.8, 3, 1.1, 2.8, 2.3, 2.6, 4.9, 3.7, 3.8, 3.2, 2.3, 2.9, 2.4, 2.9, 2.8, 3.6, 2.7, 3.8, 3, 4.5, 3.9, 3.3, 3.5, 3.2, 2.1, 3.5, 4.9, 5.4, 7.1, 6.4, 6.3, 3.8, 1, 3.3, 4.1, 3.9, 4.8, 5.4, 5.4, 4.4, 5.8, 5.9, 6.9, 6.8, 6.5, 4.7, 4.1, 2.3, 3, 2.1, 2.7, 2, 2.4, 4.4, 3.3, 1.3, 3.6, 3.4, 3.6, 3.9, 4.5, 3.3, 3.7, 3.1, 1.6, 4, 3.2, 3.2, 2.6, 1.8, 2.8, 3.9, 3.4, 4, 4.2, 4.6, 5.3, 6.8, 7.4, 8, 7.5, 8, 6.3, 2.8, 4.3, 4.2, 2.8, 4, 4, 4.6, 3.4, 3.3, 3.5, 1.7, 1.8, 1.9, 4.1, 3.7, 3.9, 4, 2.8, 3.9, 4.2, 4.6, 5.1, 3.9, 4.5, 3, 2.5, 3.1, 4.6, 1.4, 3.6, 3.7, 4.6, 5.6, 4.7, 4.3, 4.9, 4.2, 3.3, 4.3, 5.3, 5.6, 4.8, 4, 3.8, 5.9, 7.4, 4.2, 2.4, 3.7, 3, 3.5, 3.7, 2.8, 2.4, 3, 2.9, 3.4, 2.7, 2.7, 3.9, 3.2, 2.6, 2.8, 0.6, 3, 3.9, 2.6, 3, 2.1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
$LyonETP = array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.6, 1.7, 2.3, 2.7, 3.8, 1.3, 2, 3.1, 4, 3.9, 1.6, 1.8, 2.4, 3.6, 4.6, 4.6, 6.6, 6.7, 3, 3.8, 4.3, 5.6, 5.9, 6.9, 6.3, 5.9, 7.5, 8.1, 8.7, 6.2, 5.3, 5.1, 5.9, 4.6, 3.7, 5.9, 5.4, 4.8, 6.3, 6.3, 7.1, 6.4, 6.8, 6.6, 4.9, 5.6, 7.3, 7.9, 6.4, 9, 9, 8.3, 8.5, 8.3, 7.9, 6.9, 3.8, 7.2, 4.7, 5.4, 4.8, 3.1, 3.8, 5.9, 5.7, 9, 9, 8, 7.3, 5.9, 4.2, 5.6, 7.2, 6.9, 7.7, 7.8, 7.5, 7.6, 9, 9, 6.7, 4.1, 3.4, 5.1, 5.6, 3.7, 4.9, 5.4, 6.3, 6.5, 6.2, 6.1, 6.6, 7.3, 7.8, 6.8, 6.3, 8.1, 6.5, 2, 4.5, 5.2, 3.5, 4.4, 4.5, 6.8, 7, 4.3, 5.7, 5.1, 5.9, 6.3, 5, 5.2, 6.4, 5, 9, 9, 5.7, 5.7, 7, 6.3, 1.3, 4.3, 3.2, 3.3, 4.3, 4.2, 4.9, 4.3, 3.7, 2.6, 3.5, 3.7, 3.9, 4.9, 2.8, 2.5, 2.8, 2, 2.6, 2.1, 2.7, 2.6, 2.7, 2.7, 3, 2.2, 2.5, 3.2, 3, 4.3, 1.6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.9, 4.7, 3.6, 4.7, 5, 4.5, 5.6, 5.5, 4.7, 3.1, 4.1, 5.8, 1, 0.9, 2.5, 2.7, 3.4, 4.5, 5.3, 4.9, 4.7, 5.1, 2.7, 4.6, 4.8, 6.2, 5.1, 3.4, 4.9, 3.3, 4, 4.5, 5.4, 4.9, 4.5, 4.6, 5.9, 5.6, 4, 5.3, 7.2, 4.3, 3.9, 4.7, 6, 6.6, 5.6, 6.1, 5.7, 6.8, 6.7, 7.3, 7.5, 6.8, 7.1, 7.4, 7.1, 7.8, 8.3, 6.1, 6.9, 8.4, 8.3, 5.2, 6.2, 5.4, 5.2, 7.2, 8, 8.6, 8.6, 7.2, 6.2, 6.4, 6.1, 5.5, 6.9, 7.4, 6.6, 6.6, 5.7, 4.5, 6.7, 8.4, 6.3, 7.2, 7.1, 7.9, 3.4, 5.9, 6.5, 7.6, 8.7, 8, 7.3, 9, 9, 8.4, 9, 7.3, 2.7, 5.3, 6, 6.8, 4.4, 5.1, 6.3, 6, 4.7, 7.3, 7.2, 6.9, 6.4, 6.2, 5.3, 6.1, 3.8, 5.3, 4.6, 5.5, 6.2, 4.7, 5.8, 5.5, 4.9, 4.4, 4.4, 5, 2.6, 4.8, 3.8, 4.2, 5.1, 4.7, 6.4, 5.4, 5.2, 6, 3.9, 5.3, 6.1, 4.2, 4.4, 5.8, 3.6, 6.1, 4.7, 3.4, 3, 3.3, 4.2, 3.9, 1.5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.1, 3.1, 4.3, 2.1, 3.1, 4.1, 4.7, 2.4, 2.5, 3.9, 4.1, 4.9, 6, 6.3, 5.8, 4.1, 2.3, 3.3, 2.6, 3.1, 4.5, 5.9, 5, 5.6, 6.6, 6.6, 4.4, 4.2, 5.2, 5, 5.5, 5.8, 8.3, 5.8, 9, 9, 4.9, 7.3, 5.7, 0.9, 0.7, 1.1, 5, 6.3, 3, 3.3, 5.1, 5.4, 7.2, 9, 4.9, 4.3, 5.1, 5.3, 6.7, 8.5, 8.6, 7.5, 8.5, 8.2, 8.6, 8.6, 7.7, 8.2, 7.8, 7, 6.8, 6.4, 7.5, 7.9, 8.7, 5.2, 6.6, 8.4, 7.9, 7.5, 7.3, 7.2, 6.6, 7, 8.7, 6.6, 7.9, 8.1, 9, 9, 9, 4.7, 5, 5.4, 5.4, 6.7, 5.5, 6.9, 6.6, 6.2, 6.1, 6.2, 3.9, 5.4, 8.3, 4.8, 4.4, 4, 5.1, 5.3, 4.8, 4.3, 7.1, 7.4, 1.1, 0.9, 3.2, 4.1, 4.2, 4.8, 5, 5.2, 4.9, 5.4, 4.7, 5.1, 6.1, 4.7, 7.3, 5.9, 4.3, 5, 4.5, 5.1, 3, 2.6, 3.7, 4.3, 4.1, 3.9, 3.8, 4.5, 4.7, 6.5, 5.3, 5.2, 3.9, 5.4, 4.8, 3, 2.3, 2.7, 3.2, 4.1, 3.7, 4.1, 3.3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.9, 1.7, 3.5, 4.6, 5.9, 3.8, 4.5, 7.4, 7.1, 3.9, 3.9, 1.9, 0.7, 1.5, 2.9, 4.4, 6.5, 6.7, 8, 7.5, 6.1, 5.9, 2.6, 4.4, 5.6, 6.2, 5.5, 6, 6.9, 5.4, 5.6, 5.8, 6.5, 5.2, 3.7, 2.8, 4.6, 4, 4.9, 1.2, 3.4, 4.9, 2.7, 3, 5, 5.3, 5, 3.9, 4.3, 5.3, 5.6, 6, 7.2, 6.5, 7.5, 8.9, 7, 8, 6.3, 6.3, 6.1, 5.9, 6.2, 7.4, 6.3, 6.6, 7.7, 7.9, 6.6, 7.3, 8, 8.3, 7.6, 7.6, 7.1, 4.2, 5.9, 5.8, 7.7, 7, 7.6, 7.7, 4.9, 6.6, 8.1, 6.8, 7.5, 9, 8.4, 8.4, 8.5, 9, 7.9, 4.6, 5.4, 6.1, 6.4, 6.7, 7.1, 8, 7.7, 7.9, 7.8, 8.7, 5.2, 5.4, 6.5, 3.9, 5.2, 5.9, 7.3, 9, 9, 6.3, 6.8, 5.7, 7, 6.6, 6, 1.7, 3.4, 4.7, 4.5, 5.2, 4.7, 4.7, 6.1, 6.7, 6.1, 6.3, 4.5, 3.8, 5.7, 5.3, 5.4, 4.9, 5.9, 5.9, 5.8, 5, 6.1, 5.6, 2.9, 2.8, 3.2, 3.6, 3.2, 3.3, 2.1, 0.7, 0.5, 2, 1.8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.9, 3.6, 3.6, 4.2, 4.3, 1.6, 3.8, 5.1, 8, 1.4, 2.9, 3.6, 3.5, 3.4, 1.7, 3.6, 3.9, 2.7, 3.6, 4.5, 3.1, 4.3, 4, 4.4, 3.6, 4.6, 5.8, 5.2, 6.4, 6.1, 5.7, 7.1, 3.5, 6.9, 7.6, 4.6, 4.8, 4.4, 5.9, 5.9, 6.2, 6.9, 7.1, 8.1, 7.1, 7.6, 7.8, 7.1, 8.6, 7.7, 4.2, 5.2, 5, 4.6, 4.2, 4.3, 5.5, 7.2, 2.5, 4.9, 3.6, 5.1, 6.2, 2.8, 3.6, 6.8, 1.2, 5.1, 4.3, 5.4, 5, 5.4, 4.5, 3.1, 0.9, 1.1, 4.2, 5.1, 6.7, 6.8, 7, 6, 5.9, 7.3, 5.9, 5.8, 6, 5.1, 4.9, 5.7, 3.4, 4.5, 3.9, 4.2, 2.9, 1.9, 4.3, 5.7, 1.3, 4.5, 4.3, 4.8, 5.3, 5.2, 4.8, 5.5, 6.6, 5.4, 5, 3.8, 4, 4, 5.5, 5.8, 5.3, 3.4, 4, 4.7, 5.4, 5, 4.7, 3.5, 4.7, 3.8, 4, 3.5, 4.5, 4.2, 4.4, 5.4, 8, 4.1, 3.1, 4, 3.8, 5, 5.2, 4.6, 2.4, 3.5, 3.4, 2.3, 1, 3.3, 2.7, 2.6, 2.7, 3.9, 3.2, 3.3, 2.8, 3.6, 3.3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
$ETPBDD = ['Paris' => $ParisETP, 'Marignane' => $MarignaneETP, 'Aurillac' => $AurillacETP, 'Bordeaux' => $BordeauxETP, 'Nantes' => $NantesETP, 'Lyon' => $LyonETP];
$ETP = $ETPBDD[$climat];
////////fin climat
// Besoins en eau
$besoinWc = 0;
$nbreUtilisateur = $reutilisationDTO->getNbreUtilisateur();
$tauxRaccordement = $reutilisationDTO->getTauxRaccordement()/100;
$volumeParUtilisation = $this->toFloat($reutilisationDTO->getVolumeParUtilisation());
$scenarioUtilisation = $reutilisationDTO->getScenarioUtilisation();
$scenario5sur7 = array(1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1,1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0);
$scenarioEnseignement = array(0, 0, 0, 0, 0, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 0.5, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0.5, 1, 1, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 0.5, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 0.5, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0.5, 1, 1, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 0.5, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 0.5, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0.5, 1, 1, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 0.5, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 0.5, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0.5, 1, 1, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 0.5, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 0.5, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0.5, 1, 1, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 1, 0.5, 1, 1, 0, 0, 1, 0.5, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
//Transformation du besoin en eau libre
$besoinEau = $reutilisationDTO->getBesoinEau();
// Besoin en eau séparé par des points-virgules
if (!empty($besoinEau)) {
// Supprimer les espaces et remplacer les virgules par des points
$besoinEau = str_replace(" ", "", $besoinEau);
$besoinEau = str_replace(",", ".", $besoinEau);
// Transformer la chaîne en tableau
$besoinEauArray = explode(";", $besoinEau);
// Répéter la série jusqu'à obtenir 1825 éléments dans le tableau
$i = 0;
while (count($besoinEauArray) < 1826) {
// Ajouter les éléments de la série à la fin du tableau
$besoinEauArray[] = $besoinEauArray[$i % count($besoinEauArray)];
$i++;
}
} else {
// Créer un tableau de 1825 zéros
$besoinEauArray = array_fill(0, 1826, 0);
}
//dump($reutilisationDTO->getCertivea());
// Apports toiture
if ($reutilisationDTO->getCertivea()){
$surfaceRecuperee =
(
$this->toFloat($reutilisationDTO->getSurfaceRecuperee())
+ $this->toFloat($reutilisationDTO->getSurfaceRecuperee2())
+ $this->toFloat($reutilisationDTO->getSurfaceRecuperee3())
);
//dump($reutilisationDTO->getCertivea());
}
else
{
$surfaceRecuperee =
(
$this->toFloat($reutilisationDTO->getSurfaceRecuperee()) * $this->toFloat($reutilisationDTO->getRendementToiture())
+ $this->toFloat($reutilisationDTO->getSurfaceRecuperee2()) * $this->toFloat($reutilisationDTO->getRendementToiture2())
+ $this->toFloat($reutilisationDTO->getSurfaceRecuperee3()) * $this->toFloat($reutilisationDTO->getRendementToiture3())
) * 0.9; // 0.9 pour le filtre Kf
}
// Autres paramètres
$volumeCuveUser = $this->toFloat($reutilisationDTO->getVolumeCuve());
$tauxRecupObjectif = $this->toFloat($reutilisationDTO->getTauxObjectif());
$show_complement=true;
$time = date('d/m/y H:i');
$reutilisationDTO->setTime($time);
// Données économiques récupérées :
$coutEau = $this->toFloat($reutilisationDTO->getCoutEau());
$coutPompe = $this->toFloat($reutilisationDTO->getCoutPompe());
$coutVolume = $this->toFloat($reutilisationDTO->getCoutVolume());
$choixVolume = $this->toFloat($reutilisationDTO->getChoixVolume());
$coutVolume2 = $this->toFloat($reutilisationDTO->getCoutVolume2());
$choixVolume2 = $this->toFloat($reutilisationDTO->getChoixVolume2());
//////////////
// Arrosage
$sArrosage = $this->toFloat($reutilisationDTO->getSArrosage());
$typePlante = $reutilisationDTO->getTypePlante();
$profondeurTerre = $reutilisationDTO->getProfondeurTerre();
$ru = $reutilisationDTO->getRu();
$kcArray = array('Gazon Kc=0.8 racines=20cm' => '0.8', 'Vivaces Kc=0.2 racines=40cm' => '0.2', 'Arbustes Kc=0.2 racines=70cm' => '0.2', 'Graminees Kc=0.8 racines=80cm' => '0.8');
$profondeurRacineArray = array('Gazon Kc=0.8 racines=20cm' => '0.2', 'Vivaces Kc=0.2 racines=40cm' => '0.4', 'Arbustes Kc=0.2 racines=70cm' => '0.7', 'Graminees Kc=0.8 racines=80cm' => '0.8');
$kc = $kcArray[$typePlante];
$profondeurRacine = $profondeurRacineArray[$typePlante];
$RFUmax = min($profondeurRacine,$profondeurTerre) * $ru * 2/3;
//////////////
$iteration = 0;
$victoire = 0;
Do {
$volumeEauInitial = 0; //Litres
$tauxRecup = null;
$tempsDeRetour = null;
$volumeCuveGraph = null;
$besoinArrosageCinqAnsSurfacique = 0;
$besoinArrosageAnnuel = 0;
$ETPstring = implode(",",$ETP);
$ETPmax = max($ETP);
$besoinJournalierMax = $nbreUtilisateur * $volumeParUtilisation * $tauxRaccordement + max($besoinEauArray) + $sArrosage * $ETPmax;
$volumeTheorique = round(min($besoinJournalierMax, $surfaceRecuperee)/10)*10;
$volumeCuveArray = [0.25 * $volumeTheorique, 0.5 * $volumeTheorique, 1 * $volumeTheorique,
3 * $volumeTheorique, 9 * $volumeTheorique, 27 * $volumeTheorique];
if ($volumeCuveUser != null) {
$volumeCuveArray [] = $volumeCuveUser;
$volumeCuveArray [] = $volumeCuveUser * 2;
$volumeCuveArray [] = $volumeCuveUser * 0.5;
asort($volumeCuveArray);
}
if ($tauxRecupObjectif != null) {
if ($iteration > 0) {
$yObjectif = max(2,$tauxRecupObjectif * ($ya - $yb) / ($xa - $xb) + ($xa * $yb - $xb * $ya) / ($xa - $xb));
$yObjectifInf = max(1, $yObjectif - 0.25 * $yObjectif);
$yObjectifSup = max(3,$yObjectif + 0.25 * $yObjectif);
$volumeCuveArray = [0.25 * $volumeTheorique, 0.5 * $volumeTheorique, 1 * $volumeTheorique,
3 * $volumeTheorique, 9 * $volumeTheorique, 27 * $volumeTheorique, $yObjectifInf, $yObjectif, $yObjectifSup];
asort($volumeCuveArray);
//
}
} else {
$victoire = 2;
}
// Calcul volume par volume de cuve :
foreach ($volumeCuveArray as $volumeCuve) {
$volumeEauInitial = 0;
$SommeTropPleinNuitEtJour = 0;
$sommeManqueEau = 0;
$besoinEauAnnuel = 0;
$jour = 0;
$besoinEauJournalier = 0;
$apportEauAnnuel = 0;
$RFUJournalier = 0;
$graphVolumeEau = null;
$graphTropPleinNuitEtJour = null;
$graphManqueEau = null;
$arrayReuJournalier = null;
$graphApportCuve = null;
$besoinArrosageAnnuel = 0;
$besoinWcAnnuel = 0;
$besoinEauAutreAnnuel = 0;
$besoinArrosageCinqAnsSurfacique = 0;
//Calcul jour par jour :
foreach ($pluviometrie as $pluieDuJour) {
//Calcul des besoins WC :
if ($scenarioUtilisation == 1) {// ajouter également ici le taux
$besoinWc = $nbreUtilisateur * $volumeParUtilisation * $tauxRaccordement;
} else if ($scenarioUtilisation == 2) {
$besoinWc = $nbreUtilisateur * $volumeParUtilisation * $tauxRaccordement * $scenario5sur7[$jour];
} else if ($scenarioUtilisation == 3) {
$besoinWc = $nbreUtilisateur * $volumeParUtilisation * $tauxRaccordement * $scenarioEnseignement[$jour];
}
//calcul des besoins d'arrosage :
$besoinArrosageJournalierSurfacique = 0;
$ConsoPlanteJournalier = $kc * $ETP[$jour];
$RFUJournalier = $RFUJournalier - $ConsoPlanteJournalier + $pluieDuJour * $stationMeteo / $pluieBase;
if ($RFUJournalier < 0) {
$besoinArrosageJournalierSurfacique = abs($RFUJournalier);
$RFUJournalier = 0;
} else if ($RFUJournalier > $RFUmax) {
$RFUJournalier = $RFUmax;
}
$besoinArrosageCinqAnsSurfacique = $besoinArrosageJournalierSurfacique + $besoinArrosageCinqAnsSurfacique;
$besoinEauJournalier = $besoinEauArray[$jour] + $besoinWc + $besoinArrosageJournalierSurfacique * $sArrosage;
$apportEauJournalier = $surfaceRecuperee * $pluieDuJour * $stationMeteo / $pluieBase;
//nouveau calcul :
$manqueEauDuJour = 0;
$tropPleinNuit =0;
$tropPleinJour = 0;
$volumeEau = $volumeEauInitial + $apportEauJournalier *0.3 ;
if ($volumeEau >= $volumeCuve) {
$tropPleinNuit = $volumeEau - $volumeCuve;
$volumeEau = $volumeCuve;
}
$volumeEau = $volumeEau - $besoinEauJournalier + $apportEauJournalier *0.7;
if ($volumeEau >= $volumeCuve) {
$tropPleinJour = $volumeEau - $volumeCuve;
$volumeEau = $volumeCuve;
}
if ($volumeEau <= 0) {
$manqueEauDuJour = abs($volumeEau);
$volumeEau = 0;
}
$TropPleinNuitEtJour = $tropPleinNuit + $tropPleinJour;
$SommeTropPleinNuitEtJour = $SommeTropPleinNuitEtJour + $TropPleinNuitEtJour;
$besoinWCnonRaccordeJournalier = $besoinWc/$tauxRaccordement*(1-$tauxRaccordement);
$sommeManqueEau = $manqueEauDuJour + $sommeManqueEau + $besoinWCnonRaccordeJournalier;
//somme annuelle
$besoinArrosageAnnuel = $besoinArrosageJournalierSurfacique* $sArrosage + $besoinArrosageAnnuel;
$besoinWcAnnuel = $besoinWcAnnuel + $besoinWc;
$besoinEauAutreAnnuel = $besoinEauAutreAnnuel + $besoinEauArray[$jour];
$apportEauAnnuel = $apportEauAnnuel + $apportEauJournalier;
$besoinEauAnnuel = $besoinEauAnnuel + $besoinEauJournalier + $besoinWCnonRaccordeJournalier;
//préparation graphique et tableau
$graphVolumeEau[] = $volumeEau;
$graphVolumeEauArray [$volumeCuve] = $graphVolumeEau;
if ($volumeCuve == $volumeEau){
$graphTropPleinNuitEtJour[] = $TropPleinNuitEtJour + $volumeEau;
} else {
$graphTropPleinNuitEtJour[] = $volumeEau;
}
$graphTropPleinArray[$volumeCuve] = $graphTropPleinNuitEtJour;
$graphManqueEau[] = - $manqueEauDuJour;
$graphManqueEauArray[$volumeCuve] = $graphManqueEau;
$graphApportCuve[] = $besoinEauJournalier - $manqueEauDuJour;
$graphApportCuveArray[$volumeCuve] = $graphApportCuve;
//tableau d'analyse jour par jour
$arrayReuJournalier = array($jour, $pluieDuJour, $RFUJournalier, $ETP[$jour], $ConsoPlanteJournalier, $besoinArrosageJournalierSurfacique,
$besoinEauJournalier, $pluieDuJour * $surfaceRecuperee, $volumeEau, $manqueEauDuJour); //$bilanEau,
$arrayReu [] = $arrayReuJournalier;
$arrayReuAnnuel[$volumeCuve]=$arrayReu;
$jour = $jour + 1;
$volumeEauInitial = $volumeEau;
} //on change de jour
$tauxRecup [$volumeCuve] =$besoinEauAnnuel ? ($besoinEauAnnuel - $sommeManqueEau) / $besoinEauAnnuel * 100 : 0;
$volumeCuveGraph [] = $volumeCuve;
if ($volumeCuveUser != null AND $volumeCuve == $volumeCuveUser) {
$tauxRecupUser =$besoinEauAnnuel ? ($besoinEauAnnuel - $sommeManqueEau) / $besoinEauAnnuel * 100 : 0;
} else if ($volumeCuveUser == null) {
$tauxRecupUser = 0;
$volumeCuveUser = 0;
}
//calcul du temps de retour
$eauReutilisee = $apportEauAnnuel - $SommeTropPleinNuitEtJour;
$gainAnnuel = $coutEau * $eauReutilisee / 1000 /5;
$coutCuve = $coutPompe + ($coutVolume2 - $coutVolume)/($choixVolume2 - $choixVolume) * ($volumeCuve - $choixVolume) + $coutVolume;
$tempsDeRetour [$volumeCuve] = $coutCuve / max($gainAnnuel, 1);
$arrayVerif ['volumeCuve'] = $volumeCuve;
$arrayVerif ['$tauxRecup'] = $besoinEauAnnuel ? round(($besoinEauAnnuel - $sommeManqueEau) / $besoinEauAnnuel * 100, 1) : 0;
$arrayVerif ['eau reutilisée'] = round($eauReutilisee /5 /1000);
$arrayVerif ['$sommeManqueEau'] = round($sommeManqueEau /5 /1000);
$arrayVerif ['$SommeTropPleinNuitEtJour'] = round($SommeTropPleinNuitEtJour /5 /1000);
$arrayVerif ['$gainAnnuel'] = round($gainAnnuel);
$arrayVerif ['coutcuve'] = round($coutCuve);
$arrayVerif ['tempsDeRetour'] = round($coutCuve / max($gainAnnuel, 1), 1);
$tableauParametrique[$volumeCuve] = $arrayVerif;
} //on change de volume de cuve
$x = 1;
$xMax = count($tauxRecup);
$position = reset($tauxRecup);
foreach ($tauxRecup as $y) {
$yRound = round($y);
if ($yRound == $tauxRecupObjectif) {
$victoire++;
$tauxRecupUser = $y;
$volumeCuveUser = array_search($y, $tauxRecup);
}
if ($x == 1 and $tauxRecupObjectif < $yRound) {
$position = next($tauxRecup);
goto a;
}
if ($tauxRecupObjectif < $yRound) {
goto a;
}
if ($y < $tauxRecupObjectif) {
if ($x == $xMax) {
$position = prev($tauxRecup);
goto a;
} else {
$position = next($tauxRecup);
}
}
//
$x++;
}
a:
$xa = prev($tauxRecup);
$xb = next($tauxRecup);
$ya = array_search($xa, $tauxRecup);
$yb = array_search($xb, $tauxRecup);
if ($iteration > 5) {
goto finDesIterations;
};
if ($xa == $xb) {
goto finDesIterations;
};
$iteration++;
} while ($victoire < 1.9);
finDesIterations:
//Mise en graphique de l'étude paramétrique
$x = 0;
$chaineCaractere = null;
$cles = array_keys($tauxRecup);
foreach ($tauxRecup as $y) {
$chaineCaractere [] = "{ x: ";
$chaineCaractere [] = $cles[$x];
$chaineCaractere [] = ", y: ";
$chaineCaractere [] = $y;
$chaineCaractere [] = "}";
$pointJson [] = implode($chaineCaractere);
$chaineCaractere = null;
$x = $x + 1;
}
$graphParametriqueJson = implode(",", $pointJson);
$graphParametriqueUserJson = array("{ x: ", $volumeCuveUser, ", y: ", $tauxRecupUser, "}");
$graphParametriqueUserJson = implode($graphParametriqueUserJson);
//dump($tauxRecup);
//dump($graphParametriqueJson);
//Mise en graphique de l'étude paramétrique Temps de retour
$pointJson = null;
$x = 0;
$chaineCaractere = null;
$cles = array_keys($tempsDeRetour);
foreach ($tempsDeRetour as $y) {
$chaineCaractere [] = "{ x: ";
$chaineCaractere [] = $cles[$x];
$chaineCaractere [] = ", y: ";
$chaineCaractere [] = $y;
$chaineCaractere [] = "}";
$pointJson [] = implode($chaineCaractere);
$chaineCaractere = null;
$x = $x + 1;
}
$graphTempsDeRetour = implode(",", $pointJson);
//Mise en graphique du volume de cuve avec un coef de 1
$pointJson = null;
$x = 1;
$chaineCaractere = null;
if ($volumeCuveUser != null){
$graphVolumeEau = $graphVolumeEauArray[$volumeCuveUser];
$arrayReu = $arrayReuAnnuel [$volumeCuveUser];
$graphManqueEau = $graphManqueEauArray[$volumeCuveUser];
$graphTropPlein = $graphTropPleinArray[$volumeCuveUser];
$graphApportCuve = $graphApportCuveArray[$volumeCuveUser];
$maxGraph = $volumeCuveUser * 5;
} else {
$graphVolumeEau = $graphVolumeEauArray[$volumeTheorique];
$arrayReu = $arrayReuAnnuel [$volumeTheorique];
$graphManqueEau = $graphManqueEauArray[$volumeTheorique];
$graphTropPlein = $graphTropPleinArray[$volumeTheorique];
$graphApportCuve = $graphApportCuveArray[$volumeTheorique];
$maxGraph = $volumeTheorique * 5;
}
foreach ($graphVolumeEau as $y) {
$chaineCaractere [] = "{ x: ";
$chaineCaractere [] = $x;
$chaineCaractere [] = ", y: ";
$chaineCaractere [] = $y;
$chaineCaractere [] = "}";
$pointJson [] = implode($chaineCaractere);
$chaineCaractere = null;
$x = $x + 1;
if ($x > 364) {
goto fin1;
};
}
fin1:
$graphVolumeEauJson = implode(",", $pointJson);
$graphJourParJour['volumeEau']=$graphVolumeEauJson;
//mise en graphique du manque d'eau
$pointJson = null;
$x = 1;
$chaineCaractere = null;
foreach ($graphManqueEau as $y) {
$chaineCaractere [] = "{ x: ";
$chaineCaractere [] = $x;
$chaineCaractere [] = ", y: ";
$chaineCaractere [] = $y;
$chaineCaractere [] = "}";
$pointJson [] = implode($chaineCaractere);
$chaineCaractere = null;
$x = $x + 1;
if ($x > 364) {
goto fin2;
};
}
fin2:
$graphManqueEauJson = implode(",", $pointJson);
$graphJourParJour['manqueEau']=$graphManqueEauJson;
$pointJson = null;
$x = 1;
$chaineCaractere = null;
foreach ($graphManqueEau as $y) {
$chaineCaractere [] = "{ x: ";
$chaineCaractere [] = $x;
$chaineCaractere [] = ", y: ";
$chaineCaractere [] = - $y;
$chaineCaractere [] = "}";
$pointJson [] = implode($chaineCaractere);
$chaineCaractere = null;
$x = $x + 1;
if ($x > 364) {
goto fin3;
};
}
fin3:
$graphManqueEauJson = implode(",", $pointJson);
$graphJourParJour['manqueEauPositif']=$graphManqueEauJson;
//mise en graphique du trop plein
$pointJson = null;
$x = 1;
$chaineCaractere = null;
foreach ($graphTropPlein as $y) {
$chaineCaractere [] = "{ x: ";
$chaineCaractere [] = $x;
$chaineCaractere [] = ", y: ";
$chaineCaractere [] = $y;
$chaineCaractere [] = "}";
$pointJson [] = implode($chaineCaractere);
$chaineCaractere = null;
$x = $x + 1;
if ($x > 364) {
goto fin4;
};
}
fin4:
$graphTropPleinJson = implode(",", $pointJson);
$graphJourParJour['tropPlein']=$graphTropPleinJson;
//mise en graphique de la pluviometrie
$pointJson = null;
$x = 1;
$chaineCaractere = null;
foreach ($pluviometrie as $y) {
$chaineCaractere [] = "{ x: ";
$chaineCaractere [] = $x;
$chaineCaractere [] = ", y: ";
$chaineCaractere [] = $y * $stationMeteo / $pluieBase;
$chaineCaractere [] = "}";
$pointJson [] = implode($chaineCaractere);
$chaineCaractere = null;
$x = $x + 1;
if ($x > 364) {
goto fin5;
};
}
fin5:
$graphPluviometrieJson = implode(",", $pointJson);
$graphJourParJour['pluviometrie']=$graphPluviometrieJson;
//mise en graphique de l'apport cuve
$pointJson = null;
$x = 1;
$chaineCaractere = null;
foreach ($graphApportCuve as $y) {
$chaineCaractere [] = "{ x: ";
$chaineCaractere [] = $x;
$chaineCaractere [] = ", y: ";
$chaineCaractere [] = $y;
$chaineCaractere [] = "}";
$pointJson [] = implode($chaineCaractere);
$chaineCaractere = null;
$x = $x + 1;
if ($x > 364) {
goto fin6;
};
}
fin6:
$graphApportCuveJson = implode(",", $pointJson);
$graphJourParJour['apportCuve']=$graphApportCuveJson;
$graphJourParJour['maximum']= $maxGraph;
//mise en graphique de la tarte
$totalDesBesoins = $besoinArrosageAnnuel + $besoinWcAnnuel + $besoinEauAutreAnnuel;
$graphTarte['tauxArrosage'] = $totalDesBesoins ? $besoinArrosageAnnuel / $totalDesBesoins : 0;
$graphTarte['tauxWc'] = $totalDesBesoins ? $besoinWcAnnuel / $totalDesBesoins : 0;
$graphTarte['tauxAutres'] = $totalDesBesoins ? $besoinEauAutreAnnuel / $totalDesBesoins : 0;
$graphTarte['Arrosage'] = round($besoinArrosageAnnuel/1000/5) ;
$graphTarte['Wc'] = round($besoinWcAnnuel/1000/5);
$graphTarte['Autres'] = round($besoinEauAutreAnnuel/1000/5) ;
$pluviometrieTotale = array_sum($pluviometrie)* $stationMeteo / $pluieBase;
$tableauSynthese['pluviometrieMoyenne'] = round($pluviometrieTotale /5);
$tableauSynthese['besoinArrosage'] = round($besoinArrosageCinqAnsSurfacique /5);
$tableauSynthese['besoinAnnuel'] = round($totalDesBesoins / 5 /1000);
if ($this->user != null) {
$reutilisationDTO->setTheUser($this->user);
}
// Stockage des données des graphiques pour ré-uitilisation ( pdf, ... )
$dataGraphique['graphJourParJour'] = $graphJourParJour;
$dataGraphique['graphParametrique'] = $graphParametriqueJson;
$dataGraphique['graphParametriqueUserJson'] = $graphParametriqueUserJson;
$dataGraphique['graphTempsDeRetour'] = $graphTempsDeRetour;
$dataGraphique['graphPluviometrie'] = $graphPluviometrieJson;
$dataGraphique['tauxRecupUser'] = $tauxRecupUser;
$dataGraphique['besoinArrosageTotal'] = $besoinArrosageCinqAnsSurfacique;
$dataGraphique['tableau'] = $arrayReu;
$dataGraphique['volumeCuveUser'] = $volumeCuveUser;
$dataGraphique['graphTarte'] = $graphTarte;
$dataGraphique['besoinEauAnnuel'] = $besoinEauAnnuel;
$dataGraphique['sommeManqueEau'] = $sommeManqueEau;
$dataGraphique['apportEauAnnuel'] = $apportEauAnnuel;
$dataGraphique['fichePluvio'] = $reutilisationDTO;
$dataGraphique['tableauSynthese'] = $tableauSynthese;
$dataGraphique['tableauParametrique'] = $tableauParametrique;
$session->set('GraphData', $dataGraphique);
// Stockage des données des graphiques pour ré-uitilisation ( pdf, ... )
// $reutilisationDTO->setGraphData(
// ['graphJourParJour' => $graphJourParJour,
// 'graphParametrique' => $graphParametriqueJson,
// 'graphParametriqueUserJson' => $graphParametriqueUserJson,
// 'graphTempsDeRetour' => $graphTempsDeRetour,
// 'graphPluviometrie' => $graphPluviometrieJson,
// 'tauxRecupUser' => $tauxRecupUser,
// 'besoinArrosageTotal' => $besoinArrosageCinqAnsSurfacique,
// 'tableau' => $arrayReu,
// 'volumeCuveUser' => $volumeCuveUser,
// 'graphTarte' => $graphTarte,
// 'besoinEauAnnuel' => $besoinEauAnnuel,
// 'sommeManqueEau' => $sommeManqueEau,
// 'apportEauAnnuel' => $apportEauAnnuel,
// 'fichePluvio' => $reutilisationDTO,
// 'tableauSynthese' => $tableauSynthese,
// 'tableauParametrique' => $tableauParametrique]
// );
$em->persist($reutilisationDTO);
$em->flush();
$allowPDF = true;
$session->set("calculEffectue", 1);
$idFinal = $reutilisationDTO->getId();
$session->set("pluvioId", $idFinal);
$fichePluvioAffichage = $reutilisationDTO;
} else {
$graphVolumeEauJson = "";
$graphParametriqueJson = "";
$graphParametriqueUserJson = "";
$graphPluviometrieJson = "";
$graphTempsDeRetour = "";
$graphTarte['tauxArrosage'] = "";
$graphTarte['tauxWc'] = "";
$graphTarte['tauxAutres'] = "";
$graphTarte['Arrosage'] = "";
$graphTarte['Wc'] = "";
$graphTarte['Autres'] = "";
$volumeCuveUser = "";
$tauxRecupUser = null;
$besoinArrosageCinqAnsSurfacique = 0;
$besoinEauAnnuel ="";
$sommeManqueEau = "";
$apportEauAnnuel ="";
$graphJourParJour['pluviometrie'] ="";
$graphJourParJour['tropPlein'] ="";
$graphJourParJour['manqueEau'] ="";
$graphJourParJour['manqueEauPositif']="";
$graphJourParJour['volumeEau'] ="";
$graphJourParJour['apportCuve']="";
$graphJourParJour['maximum']="";
$tableauSynthese['pluviometrieMoyenne'] = 0;
$tableauSynthese['besoinArrosage'] = 0;
$tableauSynthese['besoinAnnuel'] = 0;
$tableauParametrique = null;
$fichePluvioAffichage = $reutilisationDTO;
}
// Stockage en session des données de la fiche pluvio
// récupération des données de la fiche pluvio
return $this->render('reutilisation.html.twig',
['form' => $form->createView(),
'show_complement' => $show_complement,
'allowPDF' => $allowPDF,
'idPluvio' => $idFinal,
'graphJourParJour' => $graphJourParJour,
'graphParametrique' => $graphParametriqueJson,
'graphParametriqueUserJson' => $graphParametriqueUserJson,
'graphTempsDeRetour' => $graphTempsDeRetour,
'graphPluviometrie' => $graphPluviometrieJson,
'tauxRecupUser' => $tauxRecupUser,
'besoinArrosageTotal' => $besoinArrosageCinqAnsSurfacique,
'tableau' => $arrayReu,
'volumeCuveUser' => $volumeCuveUser,
'graphTarte' => $graphTarte,
'besoinEauAnnuel' => $besoinEauAnnuel,
'manqueEau' => $sommeManqueEau,
'apportEauAnnuel' => $apportEauAnnuel,
'tableauSynthese' => $tableauSynthese,
'tableauParametrique' => $tableauParametrique,
'fichePluvio' => $fichePluvioAffichage
]);
}
/**
* Génération du PDF de la fiche pluvio
*
* @Route("/bilan_reutilisation/{idFiche}", name="RetutilisationBilanPdf")
*/
public function retutilisationBilanPdf(
Request $req,
\App\Repository\PluvioDatabaseRepository $pluvioDatabaseRepository,
LoggerInterface $logger,
Pdf $knpSnappyPdf,
Request $request, Session $session,
$idFiche,
SerializerInterface $serializer) {
$session->start();
$fiche = $pluvioDatabaseRepository->findOneById($idFiche);
if($fiche) {
$slugger = new AsciiSlugger('fr_FR');
// Récupère les infos de la session pour les passer à la vue
$dataReutilisation = $session->get('GraphData');
$dataReutilisation['form'] = $fiche;
// Récupère les infos de la session pour les passer à la vue
$form = $this->createForm(\App\Form\ReutilisationType::class, $fiche);
$formKeys = array_keys($form->all());
$fields = [
'rendementToiture',
'climat',
'stationmeteo',
'scenarioUtilisation',
'ru',
'typePlante',
'profondeurTerre',
];
$customChoices = [];
foreach($fields as $field) {
$selectedValue = $form->get($field)->getData();
$choices = $form->get($field)->getConfig()->getOption('choices');
$customChoices[$field] = array_search($selectedValue, $choices);
}
foreach($formKeys as $key) {
if(!in_array($key, $fields)) {
$customChoices[$key] = $form->get($key)->getData();
}
}
// $selectedValue = $fiche->getClimat();
// $choices = $form->get('climat')->getConfig()->getOption('choices');
// dump(array_search($selectedValue, $choices));
// $selectedValue = $fiche->getStationMeteo();
// $choices = $form->get('stationmeteo')->getConfig()->getOption('choices');
// dump(array_search($selectedValue, $choices));
// stationmeteo
// dd('ok');
//dd('test');
$params = $request->request->all();
$dataReutilisation['form'] = $customChoices;
$dataReutilisation['img']='';
if(isset($params['img'])) $dataReutilisation['img']=$params['img'];
// $dataReutilisation['customChoices'] = $customChoices;
$content = $this->renderView('bilan_reutilisation.html.twig', $dataReutilisation);
// $content = '<pre>';
// $content .= print_r($request->files, true);
// $content .= print_r($request->request->all(),true);
// $content .='</pre>';
$filename = $slugger->slug("Bilan_reutilisation_".$fiche->getNomDuProjet()."-".$fiche->getTime()).".pdf";
$pdf = new Html2Pdf('P', 'A4', 'fr', true, 'UTF-8', array(5, 5, 5, 5));
$pdf->pdf->SetDisplayMode('fullpage');
$pdf->writeHTML($content);
$pdf->output($filename, 'D');
// $knpSnappyPdf->setTemporaryFolder('../var/');
// // $dompdf->setPaper('A4', 'portrait');
// $knpSnappyPdf->setLogger($logger);
// $knpSnappyPdf->setOption('encoding', 'utf-8');
// $knpSnappyPdf->setOption('page-size', 'A4');
// $knpSnappyPdf->setOption('orientation', 'portrait');
//
// $output = $knpSnappyPdf->getOutputFromHtml($content);
// $knpSnappyPdf->removeTemporaryFiles();
return new \Knp\Bundle\SnappyBundle\Snappy\Response\PdfResponse($output,$filename);
//return new Response($pdf->generatePdf($content, $filename));
}
die('Pas de pdf à générer');
}
// /**
// * Copie de la fiche Pluvio
// *
// * @Route("/CopieCalcul/{idFiche}", name="CopieCalcul")
// */
// public function CopieCalcul(
// Request $req,
// \App\Repository\PluvioDatabaseRepository $pluvioDatabaseRepository,
// LoggerInterface $logger,
// Request $request, Session $session,
// $idFiche,
// SerializerInterface $serializer) {
// $session->start();
//
// $fiche = $pluvioDatabaseRepository->findOneById($idFiche);
//
//
// }
/**
* @Route("/efae/{idFiche}", name="efae")
*/
public function efae(Request $req, EntityManagerInterface $em, FicheBatimentRepository $rep, $idFiche) {
$ficheOpsManaged = $rep->findOneById($idFiche);
if ($ficheOpsManaged->getOCefgazimpchannuel() != 0) {
$conso = $ficheOpsManaged->getOCefgazimpchannuel();
$prod = 'Gaz';
$usage = 'Chauffage';
$data = ['conso' => $conso, 'prod' => $prod, 'usage' => $usage];
$tab[] = $data;
}
if ($ficheOpsManaged->getOCefgazimpfrannuel() != 0) {
$conso = $ficheOpsManaged->getOCefgazimpfrannuel();
$prod = 'Gaz';
$usage = 'Froid';
$data = ['conso' => $conso, 'prod' => $prod, 'usage' => $usage];
$tab[] = $data;
}
if ($ficheOpsManaged->getOCefgazimpecsannuel() != 0) {
$conso = $ficheOpsManaged->getOCefgazimpecsannuel();
$prod = 'Gaz';
$usage = 'ECS';
$data = ['conso' => $conso, 'prod' => $prod, 'usage' => $usage];
$tab[] = $data;
}
if ($ficheOpsManaged->getOCeffioulimpchannuel() != 0) {
$conso = $ficheOpsManaged->getOCeffioulimpchannuel();
$prod = 'Fioul';
$usage = 'Chauffage';
$data = ['conso' => $conso, 'prod' => $prod, 'usage' => $usage];
$tab[] = $data;
}
if ($ficheOpsManaged->getOCeffioulimpfrannuel() != 0) {
$conso = $ficheOpsManaged->getOCeffioulimpfrannuel();
$prod = 'Fioul';
$usage = 'Froid';
$data = ['conso' => $conso, 'prod' => $prod, 'usage' => $usage];
$tab[] = $data;
}
if ($ficheOpsManaged->getOCeffioulimpecsannuel() != 0) {
$conso = $ficheOpsManaged->getOCeffioulimpecsannuel();
$prod = 'Fioul';
$usage = 'ECS';
$data = ['conso' => $conso, 'prod' => $prod, 'usage' => $usage];
$tab[] = $data;
}
if ($ficheOpsManaged->getOCefcharbonimpchannuel() != 0) {
$conso = $ficheOpsManaged->getOCefcharbonimpchannuel();
$prod = 'Charbon';
$usage = 'Chauffage';
$data = ['conso' => $conso, 'prod' => $prod, 'usage' => $usage];
$tab[] = $data;
}
if ($ficheOpsManaged->getOCefcharbonimpfrannuel() != 0) {
$conso = $ficheOpsManaged->getOCefcharbonimpfrannuel();
$prod = 'Charbon';
$usage = 'Froid';
$data = ['conso' => $conso, 'prod' => $prod, 'usage' => $usage];
$tab[] = $data;
}
if ($ficheOpsManaged->getOCefcharbonimpecsannuel() != 0) {
$conso = $ficheOpsManaged->getOCefcharbonimpecsannuel();
$prod = 'Charbon';
$usage = 'ECS';
$data = ['conso' => $conso, 'prod' => $prod, 'usage' => $usage];
$tab[] = $data;
}
if ($ficheOpsManaged->getOCefboisgranimpchannuel() != 0) {
$conso = $ficheOpsManaged->getOCefboisgranimpchannuel();
$prod = 'Chaudière Bois granulé';
$usage = 'Chauffage';
$data = ['conso' => $conso, 'prod' => $prod, 'usage' => $usage];
$tab[] = $data;
}
if ($ficheOpsManaged->getOCefboisgranimpfrannuel() != 0) {
$conso = $ficheOpsManaged->getOCefboisgranimpfrannuel();
$prod = 'Chaudière Bois granulé';
$usage = 'Froid';
$data = ['conso' => $conso, 'prod' => $prod, 'usage' => $usage];
$tab[] = $data;
}
if ($ficheOpsManaged->getOCefboisgranimpecsannuel() != 0) {
$conso = $ficheOpsManaged->getOCefboisgranimpecsannuel();
$prod = 'Chaudière Bois granulé';
$usage = 'ECS';
$data = ['conso' => $conso, 'prod' => $prod, 'usage' => $usage];
$tab[] = $data;
}
if ($ficheOpsManaged->getOCefboisbuchimpchannuel() != 0) {
$conso = $ficheOpsManaged->getOCefboisbuchimpchannuel();
$prod = 'Chaudière Bois buche';
$usage = 'Chauffage';
$data = ['conso' => $conso, 'prod' => $prod, 'usage' => $usage];
$tab[] = $data;
}
if ($ficheOpsManaged->getOCefboisbuchimpfrannuel() != 0) {
$conso = $ficheOpsManaged->getOCefboisbuchimpfrannuel();
$prod = 'Chaudière Bois buche';
$usage = 'Froid';
$data = ['conso' => $conso, 'prod' => $prod, 'usage' => $usage];
$tab[] = $data;
}
if ($ficheOpsManaged->getOCefboisbuchimpecsannuel() != 0) {
$conso = $ficheOpsManaged->getOCefboisbuchimpecsannuel();
$prod = 'Chaudière Bois buche';
$usage = 'ECS';
$data = ['conso' => $conso, 'prod' => $prod, 'usage' => $usage];
$tab[] = $data;
}
if ($ficheOpsManaged->getOCefboisplaqimpchannuel() != 0) {
$conso = $ficheOpsManaged->getOCefboisplaqimpchannuel();
$prod = 'Chaudière Bois plaquette';
$usage = 'Chauffage';
$data = ['conso' => $conso, 'prod' => $prod, 'usage' => $usage];
$tab[] = $data;
}
if ($ficheOpsManaged->getOCefboisplaqimpfrannuel() != 0) {
$conso = $ficheOpsManaged->getOCefboisplaqimpfrannuel();
$prod = 'Chaudière Bois plaquette';
$usage = 'Froid';
$data = ['conso' => $conso, 'prod' => $prod, 'usage' => $usage];
$tab[] = $data;
}
if ($ficheOpsManaged->getOCefboisplaqimpecsannuel() != 0) {
$conso = $ficheOpsManaged->getOCefboisplaqimpecsannuel();
$prod = 'Chaudière Bois plaquette';
$usage = 'ECS';
$data = ['conso' => $conso, 'prod' => $prod, 'usage' => $usage];
$tab[] = $data;
}
if ($ficheOpsManaged->getOCefboisgranpoelimpchannuel() != 0) {
$conso = $ficheOpsManaged->getOCefboisgranpoelimpchannuel();
$prod = 'Poele Bois granulé';
$usage = 'Chauffage';
$data = ['conso' => $conso, 'prod' => $prod, 'usage' => $usage];
$tab[] = $data;
}
if ($ficheOpsManaged->getOCefboisgranpoelimpfrannuel() != 0) {
$conso = $ficheOpsManaged->getOCefboisgranpoelimpfrannuel();
$prod = 'Poele Bois granulé';
$usage = 'Froid';
$data = ['conso' => $conso, 'prod' => $prod, 'usage' => $usage];
$tab[] = $data;
}
if ($ficheOpsManaged->getOCefboisgranpoelimpecsannuel() != 0) {
$conso = $ficheOpsManaged->getOCefboisgranpoelimpecsannuel();
$prod = 'Poele Bois granulé';
$usage = 'ECS';
$data = ['conso' => $conso, 'prod' => $prod, 'usage' => $usage];
$tab[] = $data;
}
if ($ficheOpsManaged->getOCefboisbuchpoelimpchannuel() != 0) {
$conso = $ficheOpsManaged->getOCefboisbuchpoelimpchannuel();
$prod = 'Poele Bois buche';
$usage = 'Chauffage';
$data = ['conso' => $conso, 'prod' => $prod, 'usage' => $usage];
$tab[] = $data;
}
if ($ficheOpsManaged->getOCefboisbuchpoelimpfrannuel() != 0) {
$conso = $ficheOpsManaged->getOCefboisbuchpoelimpfrannuel();
$prod = 'Poele Bois buche';
$usage = 'Froid';
$data = ['conso' => $conso, 'prod' => $prod, 'usage' => $usage];
$tab[] = $data;
}
if ($ficheOpsManaged->getOCefboisbuchpoelimpecsannuel() != 0) {
$conso = $ficheOpsManaged->getOCefboisbuchpoelimpecsannuel();
$prod = 'Poele Bois buche';
$usage = 'ECS';
$data = ['conso' => $conso, 'prod' => $prod, 'usage' => $usage];
$tab[] = $data;
}
if ($ficheOpsManaged->getOCefboisplaqpoelimpchannuel() != 0) {
$conso = $ficheOpsManaged->getOCefboisplaqpoelimpchannuel();
$prod = 'Poele Bois plaquette';
$usage = 'Chauffage';
$data = ['conso' => $conso, 'prod' => $prod, 'usage' => $usage];
$tab[] = $data;
}
if ($ficheOpsManaged->getOCefboisplaqpoelimpfrannuel() != 0) {
$conso = $ficheOpsManaged->getOCefboisplaqpoelimpfrannuel();
$prod = 'Poele Bois plaquette';
$usage = 'Froid';
$data = ['conso' => $conso, 'prod' => $prod, 'usage' => $usage];
$tab[] = $data;
}
if ($ficheOpsManaged->getOCefboisplaqpoelimpecsannuel() != 0) {
$conso = $ficheOpsManaged->getOCefboisplaqpoelimpecsannuel();
$prod = 'Poele Bois plaquette';
$usage = 'ECS';
$data = ['conso' => $conso, 'prod' => $prod, 'usage' => $usage];
$tab[] = $data;
}
if ($ficheOpsManaged->getOCefelecimpchannuel() != 0) {
$conso = $ficheOpsManaged->getOCefelecimpchannuel();
$prod = 'Electricité';
$usage = 'Chauffage';
$data = ['conso' => $conso, 'prod' => $prod, 'usage' => $usage];
$tab[] = $data;
}
if ($ficheOpsManaged->getOCefelecimpfrannuel() != 0) {
$conso = $ficheOpsManaged->getOCefelecimpfrannuel();
$prod = 'Electricité';
$usage = 'Froid';
$data = ['conso' => $conso, 'prod' => $prod, 'usage' => $usage];
$tab[] = $data;
}
if ($ficheOpsManaged->getOCefelecimpecsannuel() != 0) {
$conso = $ficheOpsManaged->getOCefelecimpecsannuel();
$prod = 'Electricité';
$usage = 'ECS';
$data = ['conso' => $conso, 'prod' => $prod, 'usage' => $usage];
$tab[] = $data;
}
if ($ficheOpsManaged->getOCefelecimpeclannuel() != 0) {
$conso = $ficheOpsManaged->getOCefelecimpeclannuel();
$prod = 'Electricité';
$usage = 'Eclairage';
$data = ['conso' => $conso, 'prod' => $prod, 'usage' => $usage];
$tab[] = $data;
}
if ($ficheOpsManaged->getOCefelecimpauxvannuel() != 0) {
$conso = $ficheOpsManaged->getOCefelecimpauxvannuel();
$prod = 'Electricité';
$usage = 'Ventilation';
$data = ['conso' => $conso, 'prod' => $prod, 'usage' => $usage];
$tab[] = $data;
}
if ($ficheOpsManaged->getOCefelecimpauxsannuel() != 0) {
$conso = $ficheOpsManaged->getOCefelecimpauxsannuel();
$prod = 'Electricité';
$usage = 'Distribution';
$data = ['conso' => $conso, 'prod' => $prod, 'usage' => $usage];
$tab[] = $data;
}
if ($ficheOpsManaged->getOCefelecimpAUEannuel() != 0) {
$conso = $ficheOpsManaged->getOCefelecimpAUEannuel();
$prod = 'Electricité';
$usage = 'AUE';
$data = ['conso' => $conso, 'prod' => $prod, 'usage' => $usage];
$tab[] = $data;
}
if ($ficheOpsManaged->getOCefreseauchaleurimpchannuel() != 0) {
$conso = $ficheOpsManaged->getOCefreseauchaleurimpchannuel();
$prod = 'Réseau de chaleur';
$usage = 'Chauffage';
$data = ['conso' => $conso, 'prod' => $prod, 'usage' => $usage];
$tab[] = $data;
}
if ($ficheOpsManaged->getOCefreseauchaleurimpfrannuel() != 0) {
$conso = $ficheOpsManaged->getOCefreseauchaleurimpfrannuel();
$prod = 'Réseau de chaleur';
$usage = 'Froid';
$data = ['conso' => $conso, 'prod' => $prod, 'usage' => $usage];
$tab[] = $data;
}
if ($ficheOpsManaged->getOCefreseauchaleurimpecsannuel() != 0) {
$conso = $ficheOpsManaged->getOCefreseauchaleurimpecsannuel();
$prod = 'Réseau de chaleur';
$usage = 'ECS';
$data = ['conso' => $conso, 'prod' => $prod, 'usage' => $usage];
$tab[] = $data;
}
return $this->render('efae.html.twig');
}
/**
* @Route("/upload-dropzone-test", name="upload-dropzone-test")
*/
public function uploadDropzoneTest(Request $req,
FicheBatimentRepository $ficheBatRep,
EntityManagerInterface $em,
Session $session) {
$session->start();
$idFicheBatiments = $session->get("idFicheBatiments");
$time = date('YmdHis');
// Récup contenu du fichier temporaire crée et
$fichier = $req->files->get('fichier');
$nomFichier = uniqid() . '.xml';
$nomInitialFichier = $fichier->getClientOriginalName();
$fichier->move('IMPORTSTEST', $nomFichier);
// $xml = simplexml_load_file('IMPORTSTEST/' .$nomFichier);
//
// $ficheTest[] = $nomInitialFichier;
// $ficheTest[] = $xml->Entree_Projet->Version;
//
// $ficheTest[] = $xml->Sortie_Projet->Name;
// $ficheTest[] = $xml->Datas_Comp->donnees_generales->maitre_ouvrage->nom;
// $ficheTest[] = $xml->Datas_Comp->donnees_generales->operation->adresse->ville;
// $ficheTest[] = $xml->Sortie_Projet->Departement;
//
// $ficheTest['SHONRT'] = $xml->Entree_Projet->Batiment_Collection->Batiment->Zone_Collection->Zone->SHON_RT;
// $ficheTest['SURT'] = $xml->Entree_Projet->Batiment_Collection->Batiment->Zone_Collection->Zone->Groupe_Collection->Groupe->SURT;
// $ficheTest['V'] = $xml->Entree_Projet->Batiment_Collection->Batiment->Zone_Collection->Zone->Groupe_Collection->Groupe->V;
// $ficheTest['Qv_occ_BBIO'] = $xml->Entree_Projet->Batiment_Collection->Batiment->Zone_Collection->Zone->Groupe_Collection->Groupe->Qv_occ_BBIO;
// $ficheTest['Ak'] = $xml->Entree_Projet->Batiment_Collection->Batiment->Zone_Collection->Zone->Groupe_Collection->Groupe->Paroi_opaque_Collection->Paroi_Opaque->Ak;
// $ficheTest['Uk'] = $xml->Entree_Projet->Batiment_Collection->Batiment->Zone_Collection->Zone->Groupe_Collection->Groupe->Paroi_opaque_Collection->Paroi_Opaque->Uk;
// if ($xml->Entree_Projet->Batiment_Collection->Batiment->Zone_Collection->Zone->Groupe_Collection->Groupe->Paroi_opaque_Collection->Paroi_Opaque->Alpha > 0) {
// $ficheTest['Gamma'] = $xml->Entree_Projet->Batiment_Collection->Batiment->Zone_Collection->Zone->Groupe_Collection->Groupe->Paroi_opaque_Collection->Paroi_Opaque->Masque_Collection->Masque_Lointain_Azimutal->Gamma;
// };
// $ficheTest['Ab'] = $xml->Entree_Projet->Batiment_Collection->Batiment->Zone_Collection->Zone->Groupe_Collection->Groupe->Baie_Collection->Baie->Ab;
// $ficheTest['Usp_vert'] = $xml->Entree_Projet->Batiment_Collection->Batiment->Zone_Collection->Zone->Groupe_Collection->Groupe->Baie_Collection->Baie->Usp_Vert;
// $ficheTest['Ratio_ecl_nat'] = $xml->Entree_Projet->Batiment_Collection->Batiment->Zone_Collection->Zone->Groupe_Collection->Groupe->Eclairage_Collection->Eclairage->Ratio_ecl_nat;
// $ficheTest['Rat_local'] = $xml->Entree_Projet->Batiment_Collection->Batiment->Zone_Collection->Zone->Groupe_Collection->Groupe->Eclairage_Collection->Eclairage->Rat_local;////
//
// //analyse que s'il est conforme RT2012
// $xml = simplexml_load_file('IMPORTS/' . $nomFichier);
// if (isset($xml->Entree_Projet->Index)) {
// $fichesBatiment = $service->importer('IMPORTS/' . $nomFichier, $time, $nomInitialFichier);
// foreach ($fichesBatiment as $ficheBatiment) {
// $fichesOps[] = $ficheBatiment;
// $idFicheBatiments[] = $ficheBatiment->getId();
// }
// }
// $session->set("idFicheBatiments", $idFicheBatiments);
//
// return $this->json($fichesOps);
return $this->render('workinprogress.html.twig');
}
}