diff --git a/lgrass/__init__.py b/lgrass/__init__.py index df7caa9..9c9c8b7 100644 --- a/lgrass/__init__.py +++ b/lgrass/__init__.py @@ -12,4 +12,4 @@ """ -__version__ = '3.0' \ No newline at end of file +__version__ = '4.0' \ No newline at end of file diff --git a/lgrass/flowering_functions.py b/lgrass/flowering_functions.py index 62c2eb4..5144739 100644 --- a/lgrass/flowering_functions.py +++ b/lgrass/flowering_functions.py @@ -15,8 +15,10 @@ def vernalisation_function(self, temperature): if self.param.temp_vern_min <= temperature <= self.param.temp_vern_inter: primary_induction_increment = self.param.daily_vern_rate * temperature + self.param.basic_vern_rate elif self.param.temp_vern_inter < temperature <= self.param.temp_vern_max: - #primary_induction_increment = (self.param.daily_vern_rate * temperature + self.param.basic_vern_rate) * (self.param.temp_vern_max - temperature) / (self.param.temp_vern_max - self.param.temp_vern_inter) - primary_induction_increment = (-temperature + self.param.temp_vern_max) * (self.param.daily_vern_rate * self.param.temp_vern_inter + self.param.basic_vern_rate) / (self.param.temp_vern_max - self.param.temp_vern_inter) + # primary_induction_increment = (self.param.daily_vern_rate * temperature + self.param.basic_vern_rate) * (self.param.temp_vern_max - temperature) / (self.param.temp_vern_max - self.param.temp_vern_inter) + primary_induction_increment = (-temperature + self.param.temp_vern_max) * ( + self.param.daily_vern_rate * self.param.temp_vern_inter + self.param.basic_vern_rate) / ( + self.param.temp_vern_max - self.param.temp_vern_inter) else: primary_induction_increment = 0 return primary_induction_increment @@ -30,41 +32,42 @@ def photoperiod_induction_function(self, daylength): if daylength < self.param.photoperiod_min: secondary_induction_increment = 0 else: - secondary_induction_increment = (daylength - self.param.photoperiod_min) / (self.param.photoperiod_max - self.param.photoperiod_min) + secondary_induction_increment = min(self.param.max_photo_ind_rate, self.param.max_photo_ind_rate * ( + daylength - self.param.photoperiod_min) / ( + self.param.photoperiod_max - self.param.photoperiod_min)) return secondary_induction_increment # def final_phytomer_number - - # - # def approx_final_leaf_number_calculation(self, daylength, potential_leaf_number): - # """ - # - # :param daylength: - # :param potential_leaf_number: - # :return: - # """ - # approx_final_leaf_number = min(potential_leaf_number, potential_leaf_number + self.param.sldl * (self.param.saturation_daylength - daylength)) - # return approx_final_leaf_number - # - # - # def potential_leaf_number_calculation(self, primary_induction_index): - # """ - # - # :self.param primary_induction_index: - # :return: - # """ - # potential_leaf_number = self.param.absolute_max_leaf_number - (self.param.absolute_max_leaf_number - self.param.absolute_min_leaf_number) * primary_induction_index - # return potential_leaf_number - # - # def test_vernalisation(self, primary_induction_index, potential_leaf_number, primordia_number): - # """ - # - # :self.param primary_induction_index: - # :self.param potential_leaf_number: - # :self.param primordia_number: - # :return: - # """ - # if(primary_induction_index == 1 or potential_leaf_number == self.param.absolute_min_leaf_number or potential_leaf_number <= primordia_number): - # return True \ No newline at end of file +# +# def approx_final_leaf_number_calculation(self, daylength, potential_leaf_number): +# """ +# +# :param daylength: +# :param potential_leaf_number: +# :return: +# """ +# approx_final_leaf_number = min(potential_leaf_number, potential_leaf_number + self.param.sldl * (self.param.saturation_daylength - daylength)) +# return approx_final_leaf_number +# +# +# def potential_leaf_number_calculation(self, primary_induction_index): +# """ +# +# :self.param primary_induction_index: +# :return: +# """ +# potential_leaf_number = self.param.absolute_max_leaf_number - (self.param.absolute_max_leaf_number - self.param.absolute_min_leaf_number) * primary_induction_index +# return potential_leaf_number +# +# def test_vernalisation(self, primary_induction_index, potential_leaf_number, primordia_number): +# """ +# +# :self.param primary_induction_index: +# :self.param potential_leaf_number: +# :self.param primordia_number: +# :return: +# """ +# if(primary_induction_index == 1 or potential_leaf_number == self.param.absolute_min_leaf_number or potential_leaf_number <= primordia_number): +# return True diff --git a/lgrass/lgrass.lpy b/lgrass/lgrass.lpy index bcf2df7..44926a7 100644 --- a/lgrass/lgrass.lpy +++ b/lgrass/lgrass.lpy @@ -91,6 +91,9 @@ option_floraison = False # True or False ##### Activation sorties graphiques option_graphic_outputs = True +##### Choix du profil de longueur de feuilles +option_profile = "triangular" # triangular or plateau + #### Load flowering model from lgrass import flowering_functions @@ -240,13 +243,14 @@ scales['Entrenoeud']=4 parameters['Entrenoeud']=['ParamEntrenoeud'] class ParamApex: - def __init__(self, id_plante, id_talle, id_rang=1, topology=(0,), retard=0, total_emerged_leaves=0, total_created_leaves=0, day=0, primary_induction_index=0, secondary_induction_index=0, phenological_state='vegetative', primordia_number=3, spikelet_created=0, final_leaf_number=None, final_spikelet_number=None, organ_lengths_dict={}, terminal_spikelet_height=0, heading_date=0, appearance_date=None, id_geno=0, Premiecroiss=0, C=0, leaf_primary_induction_index=0, leaf_secondary_induction_index=0, leaf_phenological_state=None): # PARAMETRE + def __init__(self, id_plante, id_talle, id_rang=1, topology=(0,), retard=0, total_emerged_leaves=0, total_mature_leaves=0, total_created_leaves=0, day=0, primary_induction_index=0, secondary_induction_index=0, phenological_state='vegetative', primordia_number=1, spikelet_created=0, final_leaf_number=None, final_spikelet_number=None, organ_lengths_dict={}, terminal_spikelet_height=0, heading_date=0, appearance_date=None, id_geno=0, Premiecroiss=0, C=0, leaf_primary_induction_index=0, leaf_secondary_induction_index=0, leaf_phenological_state='vegetative', leaf_phases_dict={}): # PARAMETRE self.id_plante = id_plante self.id_talle = id_talle self.id_rang = id_rang self.topology=topology # Topological information self.retard = retard self.total_emerged_leaves = total_emerged_leaves + self.total_mature_leaves = total_mature_leaves self.total_created_leaves = total_created_leaves # number of leaves produced by the apex self.day = day self.primary_induction_index = primary_induction_index @@ -266,7 +270,8 @@ class ParamApex: self.leaf_primary_induction_index = leaf_primary_induction_index self.leaf_secondary_induction_index = leaf_secondary_induction_index self.leaf_phenological_state = leaf_phenological_state - + self.leaf_phases_dict = leaf_phases_dict + scales['apex']=4 parameters['apex']=['ParamApex'] @@ -560,7 +565,7 @@ def my_axialtree2mtg(tree, scale, scene, parameters, TREE=[]): def LongueurFeuilleCoupee(segments_feuille,ID): #Renvoie idLong si hauteur>HCOUP, renvoie -1 si hauteur ParamP[ID]['HCOUP']: - return x[0].idLong # Retourne l'id du 1er segment coupé + return x[0].idLong # Retourne l'id du 1er segment coup� return -1 ######## Fonction racinaires ######## @@ -795,7 +800,7 @@ def Start(): ligule_height_dict = {} ##### Definition des groupes de production ##### - surface_foliaire_emergee =[0.]*(nb_plantes) # Surface foliaire émergée totale obtenue a la fin d'un pas + surface_foliaire_emergee =[0.]*(nb_plantes) # Surface foliaire �merg�e totale obtenue a la fin d'un pas Surfoliaireencours=[0.]*(nb_plantes) # variable de calcul de la surface foliaire totale Premiecroiss=[ParamP[i]['Premiecroiss'] for i in range(nb_plantes)] @@ -873,7 +878,7 @@ def StartEach(lstring): daily_temperature = meteo.mean_temperature[meteo.experimental_day == current_day].iloc[0] dt = Tregul_timestep(daily_temperature) -#### Régression des talles : Détermination des zones où appliquer le Cut +#### R�gression des talles : D�termination des zones o� appliquer le Cut if option_tiller_regression == True and current_day > 1: mortality_zone = pd.DataFrame() for i in [i for i in range(len(lstring))]: @@ -949,7 +954,7 @@ def EndEach(lstring, lscene): # If the mother-tiller is reproductive but flowers are not formed: the young tillers survive # If the mother-tiller is reproductive and the formation of the flowers have start: the young # tillers die - # minimum number of leaf = 3 verifier comment est calculé Leaf_produced + # minimum number of leaf = 3 verifier comment est calcul� Leaf_produced # ------------------------------------------------------------------------------------------------ if option_tiller_regression == True and len(tiller_appearance) > 0: tiller_to_remove = pd.DataFrame() @@ -1017,7 +1022,7 @@ def EndEach(lstring, lscene): # Biomasse et surface des feuilles emergees uniquement Biomasse_aerienne[id_plante] += sum([x.biomass for x in les_feuilles_talle]) surface_foliaire_emergee[id_plante] += sum([x.surface_limbe for x in les_feuilles_talle]) #: N'ajoute que les surfaces de limbes emerges - # ajoute les surfaces des gaines emergees à partir de Seuil + # ajoute les surfaces des gaines emergees � partir de Seuil seuil_talle = Seuil[id_plante][id_talle] diametre_seuil_talle = max((2 / pi) * (paramManagement['CoefDirLonLarAjust'] * log(max(seuil_talle * 5,1)) - paramManagement['OrdOriLonLarAjust']), 0.1) surface_gaine_emergee = (seuil_talle * pi * diametre_seuil_talle) / 2 # Surface projetee @@ -1036,7 +1041,7 @@ def EndEach(lstring, lscene): # Approche RUE BiomassCree = BiomProd[id_plante] else: - # Approche croissance biomasse exponentielle (cf thèse Vincent Migault) + # Approche croissance biomasse exponentielle (cf th�se Vincent Migault) BiomassCree=t2[id_plante]*(Biomasse_aerienne[id_plante]+t1[id_plante])*(1+Beta[id_plante]*Alpha[id_plante]*(Biomasse_aerienne[id_plante])**(Alpha[id_plante]-1)) # Allocation aerien/racinaire + ratio offre/demande @@ -1189,11 +1194,17 @@ def Tregul_timestep(daily_temperature): dt = 0 return dt -def FoncCroiss(t, Ymax, tend, tmax): # fonction de croissance de feuille - if (t>tend): - return Ymax +def FoncCroiss(t, Ymax, tend, tmax, phase): # fonction de croissance de feuille + if t>tmax and phase == "cachee": + yTm = Ymax*(1+((tend-tmax)/(tend-tmax)))*(pow((tmax/tend),(tend/(tend-tmax)))) # passage a une fonction lineaire pour eviter de borner la croissance cachee des feuilles + yTm_1 = Ymax*(1+((tend-(tmax-dt))/(tend-tmax)))*(pow(((tmax-dt)/tend),(tend/(tend-tmax)))) + y = ((yTm - yTm_1)/dt) * t + yTm -((yTm - yTm_1)/dt)*tmax else: - return beta_function(t, Ymax, tend, tmax) + if t>tend: + y = Ymax + else: + y=Ymax*(1+((tend-t)/(tend-tmax)))*(pow((t/tend),(tend/(tend-tmax)))) + return y #def TpourY(Y, Ym, Te, Tm): # retrouver le temps T auquel la taille de la feuille valait Y # L=0 @@ -1224,13 +1235,13 @@ def FoncCroiss(t, Ymax, tend, tmax): # fonction de croissance de feuille # l=l+0.001 # return max(l-0.001,0) -def TpourY2(Y, Ym, Te, Tm): # retrouver le temps T auquel la taille de la feuille valait Y +def TpourY2(Y, Ym, Te, Tm, phase): # retrouver le temps T auquel la taille de la feuille valait Y curs1=0 curs2=Te newt=Te/2 while curs2-curs1>0.001: newt=curs1+(curs2-curs1)/2 - L=FoncCroiss(newt, Ym, Te, Tm) + L=FoncCroiss(newt, Ym, Te, Tm, phase) if L==Y: return newt elif LX.Ymax: NewYmax=X.Ymax elif NewYmax Seuil[X.id_plante][X.id_talle]: X.Phase='visible' X_apex.total_emerged_leaves += 1 # Ajoute une feuille visible a l apex + X_apex.leaf_phases_dict[X.id_rang] = X.Phase Seuil[X.id_plante][X.id_talle] *= 1. X.TailleEmergence = Seuil[X.id_plante][X.id_talle] TrueAge = X.age - dt #On pourrait affiner la determination de TrueAge qui en realite a eu lieu entre age-dt et age-2dt (soit on prend la moyenne soit au prorata des longueurs) - X.Ymax = X_apex.C * ((pow(paramManagement['T01'],(TrueAge+paramManagement['tb1'])*paramManagement['k1'])-paramManagement['Lpot'])-(pow(paramManagement['T02'],(TrueAge+paramManagement['tb2'])*paramManagement['k2']))) #Alban - # A REMETTRE SIMON - #if TrueAge < 118: - # X.Ymax = ParamP[genotype]['C']*((pow(paramManagement['T01'],(TrueAge+paramManagement['tb1'])*paramManagement['k1'])-paramManagement['Lpot'])-(pow(paramManagement['T02'],(TrueAge+paramManagement['tb2'])*paramManagement['k2']))) #Alban - #else: - # X.Ymax = ParamP[genotype]['C']*338.5554 - + + tmax_potcroiss = 166.588 #conversion des °C jour en heures pour manip a 17°C 118*24/17 + lmax_potcroiss = 338.5554 # mm + + if option_profile == "triangular": + X.Ymax = X_apex.C*((pow(paramManagement['T01'],(TrueAge+paramManagement['tb1'])*paramManagement['k1'])-paramManagement['Lpot'])-(pow(paramManagement['T02'],(TrueAge+paramManagement['tb2'])*paramManagement['k2']))) #Alban + elif option_profile == "plateau": + if TrueAge < tmax_potcroiss: + X.Ymax = X_apex.C*((pow(paramManagement['T01'],(TrueAge+paramManagement['tb1'])*paramManagement['k1'])-paramManagement['Lpot'])-(pow(paramManagement['T02'],(TrueAge+paramManagement['tb2'])*paramManagement['k2']))) #Alban + else: + X.Ymax = X_apex.C*lmax_potcroiss #X.Ymax=ParamP[genotype]['C']*(1*exp(0.032*(TrueAge+paramManagement['tb1']))-1*exp(0.047*(TrueAge+paramManagement['tb2']))-paramManagement['Lpot']) #TF @@ -1387,7 +1406,7 @@ Feuille(X, X_apex, X_phytomere): X.Taillefinalegaine = X.Ymax*X.rapportK LED = (((X.Taillefinalegaine / paramManagement['Rsalpha']) * 2) - X.Ymax) * Jled tm = LED * paramManagement['Kled'] - X.Difftps = TpourY2(Seuil[X.id_plante][X.id_talle], X.Ymax, LED, tm) - X.age + X.Difftps = TpourY2(Seuil[X.id_plante][X.id_talle], X.Ymax, LED, tm, X.Phase) - X.age ###### croissance ###### LEDGAINE = (((X.Taillefinalegaine / paramManagement['Rsalpha']) * 2) - X.Ymax) * Jled @@ -1397,18 +1416,20 @@ Feuille(X, X_apex, X_phytomere): if(X.Phase=='cachee'): inversea = X.age - dt - AccroissDemande = FoncCroiss(inversea+dt, X.Ymax, LEDGAINE, tm) - FoncCroiss(inversea, X.Ymax, LEDGAINE, tm) + AccroissDemande = FoncCroiss(inversea+dt, X.Ymax, LEDGAINE, tm, X.Phase) - FoncCroiss(inversea, X.Ymax, LEDGAINE, tm, X.Phase) X.Agecroiss = X.age if(X.Phase=='visible'): - AccroissDemande = (FoncCroiss(X.Agecroiss+dt, X.Ymax, LEDGAINE, tm) - FoncCroiss(X.Agecroiss, X.Ymax, LEDGAINE, tm)) + AccroissDemande = (FoncCroiss(X.Agecroiss+dt, X.Ymax, LEDGAINE, tm, X.Phase) - FoncCroiss(X.Agecroiss, X.Ymax, LEDGAINE, tm, X.Phase)) X.Agecroiss = X.age + X.Difftps Pourcent=PourcentageFeuilGrowthRealized[X.id_plante] if(X.Phase=='mature'): AccroissDemande=0 - - + + if not option_mophogenetic_regulation_by_carbone: + Pourcent = 1 #Forcage pour obtenir les longueurs potentielles + if Pourcent==1: Accroiss=AccroissDemande else: @@ -1424,7 +1445,7 @@ Feuille(X, X_apex, X_phytomere): # Accroiss=0 #taillefictive=TpourY() - limbefictif=0.973*FoncCroiss(X.Agecroiss-dt, X.Ymax, LEDGAINE, tm) + limbefictif=0.973*FoncCroiss(X.Agecroiss-dt, X.Ymax, LEDGAINE, tm, X.Phase) #if X.R==0.973 and limbefictif>(0.75*X.Taillefinalelimbe): # X.R=0.965 @@ -1448,7 +1469,9 @@ Feuille(X, X_apex, X_phytomere): if Accroiss==0: X.Besoinencroiss=0 X.Phase='mature' - + X_apex.total_mature_leaves+=1 + X_apex.leaf_phases_dict[X.id_rang] = X.Phase + X.biomass=BiomassFeuille(X.Taillefeuille,X.coupe,X.id_geno) # Remplissage des hauteurs d organes @@ -1457,15 +1480,18 @@ Feuille(X, X_apex, X_phytomere): if X.Phase!='mature': - if (X.Taillegaine< Taille_finale_gaine[X.id_plante][X.id_talle][X.id_rang-1] +13): + if (X.Taillegaine< Seuil[X.id_plante][X.id_talle] +13): if(X.Phase=='cachee'): - NextAccroiss=FoncCroiss(X.age+dt, X.Ymax, LEDGAINE, tm) - FoncCroiss(X.age, X.Ymax, LEDGAINE, tm) + NextAccroiss=FoncCroiss(X.age+dt, X.Ymax, LEDGAINE, tm, X.Phase) - FoncCroiss(X.age, X.Ymax, LEDGAINE, tm, X.Phase) else: # X.Phase=='visible' - NextAccroiss=(FoncCroiss(X.Agecroiss+dt, X.Ymax, LEDGAINE, tm) - FoncCroiss(X.Agecroiss, X.Ymax, LEDGAINE, tm)) - if (X.Taillegaine>0.98*X.Taillefinalegaine and X.Taillegaine<=Taille_finale_gaine[X.id_plante][X.id_talle][X.id_rang-1] -5 and X.Phase=='visible'): + NextAccroiss=(FoncCroiss(X.Agecroiss+dt, X.Ymax, LEDGAINE, tm, X.Phase) - FoncCroiss(X.Agecroiss, X.Ymax, LEDGAINE, tm, X.Phase)) + if (X.Taillegaine>0.98*X.Taillefinalegaine and X.Taillegaine<=Seuil[X.id_plante][X.id_talle] -5 and X.Phase=='visible'): NextAccroiss=1 - if (X.Taillegaine>=Taille_finale_gaine[X.id_plante][X.id_talle][X.id_rang-1] +13 and X.Phase=='visible'): - NextAccroiss=0 + if (X.Taillegaine>=Seuil[X.id_plante][X.id_talle] +13 and X.Phase=='visible'): + NextAccroiss=0 + if X_apex.leaf_phases_dict[X.id_rang] == 'visible' and X.Taillegaine>=Seuil[X.id_plante][X.id_talle]: + X_apex.leaf_phases_dict[X.id_rang] = 'ligulee' + long=X.Taillefeuille+NextAccroiss Next_feuil=BiomassFeuille(long,X.coupe,X.id_geno) @@ -1638,7 +1664,7 @@ Feuille(X, X_apex, X_phytomere): Taille_finale_gaine[X.id_plante][X.id_talle][X.id_rang]=X.Taillegaine if X.id_rang==1 and X.id_talle>0 and X.topology!=(0,0): # Premiere feuille de chaque talle sauf brin maitre et talle coleoptile - if les_feuilles.isin([(les_feuilles['Plante'] == X.id_plante) & (les_feuilles['Topology'] == X.topology[:-1]) & (les_feuilles['id_rang'] == max(1, X.topology[-1]))])['ObjetOrgane'].any(): # Feuille axillante de l'ordre précédent (le max sert a traiter les cas des 1ers rangs) + if les_feuilles.isin([(les_feuilles['Plante'] == X.id_plante) & (les_feuilles['Topology'] == X.topology[:-1]) & (les_feuilles['id_rang'] == max(1, X.topology[-1]))])['ObjetOrgane'].any(): # Feuille axillante de l'ordre pr�c�dent (le max sert a traiter les cas des 1ers rangs) feuille_ref = les_feuilles[(les_feuilles['Plante'] == X.id_plante) & (les_feuilles['Topology'] == X.topology[:-1]) & (les_feuilles['id_rang'] == max(1, X.topology[-1]))].iloc[0]['ObjetOrgane'] Seuil[X.id_plante][X.id_talle]=max(Seuil[X.id_plante][X.id_talle], feuille_ref.Taillegaine) else: # Si la feuille axillante a disparu @@ -1658,16 +1684,27 @@ SegFeuille(X): Entrenoeud(X_EN, X_AP, X_F, X_phytomere): + # -------------------------------------------------------------------------------------------------- + # ---------------------------------------- Internode growth ---------------------------------------- + # -------------------------------------------------------------------------------------------------- + # Two kinds of internodes exist: "short_internode" and "long_internode" + # Default internodes are "short_internode" and when the tiller is vegetative, it will only procuce + # short internodes. + # When the terminal apex of the tiller become "reproductive", all internodes bearing non-"mature" + # leaves turn to "long_internode". + # A "long_internode" starts to elongate when the previous leaf's state turn to "mature". + # From that time, the tiller elongate linearly until 5 mm more than the final length of the sheath. + # -------------------------------------------------------------------------------------------------- + if (X_EN.internode_type != 'long_internode' and X_AP.phenological_state == 'reproductive' and X_F.Phase != 'mature'): X_EN.internode_type = 'long_internode' - if (X_F.Phase == 'mature' and X_EN.internode_type == 'long_internode' and X_EN.length < X_F.Taillefinalegaine + 5): # condition pour arreter la croissance des entrenoeuds - X_EN.length += 5 # Remplissage des hauteurs d organes + if (X_EN.internode_type == 'long_internode' and X_AP.leaf_phases_dict[X_F.id_rang - 1] == 'ligulee' and X_EN.length < X_F.Taillefinalegaine + 5): # condition pour arreter la croissance des entrenoeuds + X_EN.length += 5 + # Remplissage des hauteurs d organes X_AP.organ_lengths_dict[X_EN.id_rang]['internode'] = X_EN.length - #produce Entrenoeud(X_EN, X_AP, X_F, X_phytomere) elif (X_F.Phase == 'mature' and ((X_EN.internode_type == 'long_internode' and X_EN.length >= X_F.Taillefinalegaine + 5) or X_EN.internode_type == 'short_internode')): # Remplissage des hauteurs d organes X_AP.organ_lengths_dict[X_EN.id_rang]['internode'] = X_EN.length - #produce Entrenoeud(X_EN, X_AP, X_F, X_phytomere) apex(X): @@ -1700,14 +1737,13 @@ apex(X): if option_floraison == True: if X.phenological_state == 'vegetative': - X.primary_induction_index += flowering_model.vernalisation_function(daily_temperature) - + X.primary_induction_index = min(1, X.primary_induction_index + flowering_model.vernalisation_function(daily_temperature)) if X.primary_induction_index >= 1: X.phenological_state = 'vernalized' elif (X.phenological_state == 'vernalized' and X.total_created_leaves > 1): print('vernalized') - X.secondary_induction_index += flowering_model.photoperiod_induction_function(daily_daylength) + X.secondary_induction_index = min(1, X.secondary_induction_index + flowering_model.photoperiod_induction_function(daily_daylength)) if X.secondary_induction_index >= 1: X.phenological_state = 'reproductive' print('reproductive') @@ -1726,17 +1762,18 @@ apex(X): if option_floraison == True: if X.leaf_phenological_state == 'vegetative': - X.leaf_primary_induction_index += flowering_model.param.leaf_primary_induction_coeff * flowering_model.vernalisation_function(daily_temperature) + X.leaf_primary_induction_index = min(1, X.leaf_primary_induction_index + flowering_model.param.leaf_primary_induction_coeff * flowering_model.vernalisation_function(daily_temperature)) if X.leaf_primary_induction_index >= 1: X.leaf_phenological_state = 'primary_induced' elif (X.leaf_phenological_state == 'primary_induced' and X.total_created_leaves > 1): - X.leaf_secondary_induction_index += flowering_model.param.leaf_secondary_induction_coeff * flowering_model.photoperiod_induction_function(daily_daylength) + X.leaf_secondary_induction_index = min(1, X.leaf_secondary_induction_index + flowering_model.param.leaf_secondary_induction_coeff * flowering_model.photoperiod_induction_function(daily_daylength)) if X.leaf_secondary_induction_index >= 1: X.leaf_phenological_state = 'secondary_induced' X.Premiecroiss = flowering_model.param.increase_growth_Premiecroiss * X.Premiecroiss - X.C = increase_growth_C * X.C + X.C = flowering_model.param.increase_growth_C * X.C + if groupe=='croissance': @@ -1778,6 +1815,7 @@ apex(X): if X.final_leaf_number is None: X.final_leaf_number = X.total_created_leaves + X.primordia_number X.primordia_number += flowering_model.param.coeff_primordia_emission_reproductive - 1 + X.leaf_phases_dict[YF.id_rang] = YF.Phase produce RollR(180) phytomere(YP, X) bourgeonRoot(Yb, YINT) ApexTal(YAT) Entrenoeud(YINT, X, YF, YP) FLW SB Feuille(YF, X, YP) FLW EB apex(X) elif X.retard==1: diff --git a/test/outputs/desired_output_induction.csv b/test/outputs/desired_output_induction.csv index d57dd84..1e19291 100644 --- a/test/outputs/desired_output_induction.csv +++ b/test/outputs/desired_output_induction.csv @@ -1,460 +1,460 @@ GDD,Date,Site,Day,Daily_mean_temperature,Daily_daylength,Id_plante,Id_talle,topology,Leaf_produced,Primordia_on_apex,Spikelet_number,Vernalisation_rate,Secondary_induction_rate,Heading_date -1.375706511600813,2018-11-13,LUSIGNAN,1,11.4,9.526388889,0,0,"(0,)",1,3,0,0.0112,0.0,0 -11.693505348606912,2018-11-14,LUSIGNAN,2,11.9,9.483888889,0,0,"(0,)",1,3,0,0.0214,0.0,0 -23.807626216310247,2018-11-15,LUSIGNAN,3,13.2,9.442222222,0,0,"(0,)",1,3,0,0.029000000000000005,0.0,0 -36.959128775703384,2018-11-16,LUSIGNAN,4,9.6,9.400833333,0,0,"(0,)",1,3,0,0.043800000000000006,0.0,0 -46.462319730726385,2018-11-17,LUSIGNAN,5,6.1,9.360277778,0,0,"(0,)",1,3,0,0.059900000000000016,0.0,0 -52.430793476001156,2018-11-18,LUSIGNAN,6,6.5,9.320555556,0,0,"(0,)",1,3,0,0.07640000000000001,0.0,0 -58.7412357304672,2018-11-19,LUSIGNAN,7,2.5,9.281944444,0,0,"(0,)",1,3,0,0.0889,0.0,0 -61.32261718615777,2018-11-20,LUSIGNAN,8,2.0,9.243611111,0,0,"(0,)",1,3,0,0.1009,0.0,0 -63.22431310058321,2018-11-21,LUSIGNAN,9,0.9,9.206388889,0,0,"(0,)",1,3,0,0.1118,0.0,0 -64.18051123310805,2018-11-22,LUSIGNAN,10,6.8,9.169722222,0,0,"(0,)",1,3,0,0.12860000000000002,0.0,0 -71.18501982406995,2018-11-23,LUSIGNAN,11,7.9,9.134166667,0,0,"(0,)",2,3,0,0.14650000000000002,0.0,0 -79.18619987072951,2018-11-24,LUSIGNAN,12,8.4,9.099722222,0,0,"(0,)",2,3,0,0.1637,0.0,0 -87.6352739376141,2018-11-25,LUSIGNAN,13,7.0,9.065833332999999,0,0,"(0,)",2,3,0,0.18070000000000006,0.0,0 -94.37263582541662,2018-11-26,LUSIGNAN,14,6.9,9.033055556,0,0,"(0,)",2,3,0,0.19760000000000005,0.0,0 -101.46817944598295,2018-11-27,LUSIGNAN,15,5.0,9.001111111,0,0,"(0,)",2,3,0,0.2126,0.0,0 -106.16382960359628,2018-11-28,LUSIGNAN,16,9.2,8.970277778,0,0,"(0,)",2,3,0,0.2282,0.0,0 -115.31945361127536,2018-11-29,LUSIGNAN,17,11.3,8.940555556,0,0,"(0,)",2,3,0,0.2396,0.0,0 -126.92752374561796,2018-11-30,LUSIGNAN,18,10.6,8.911944444,0,0,"(0,)",2,3,0,0.2524,0.0,0 -137.27917780251735,2018-12-01,LUSIGNAN,19,9.1,8.884444444,0,0,"(0,)",2,3,0,0.2682,0.0,0 -146.3472711622051,2018-12-02,LUSIGNAN,20,11.8,8.858055556,0,0,"(0,)",2,3,0,0.2786,0.0,0 -154.839668068561,2018-12-02,LUSIGNAN,20,11.8,8.858055556,0,1,"(0, 0)",0,3,0,0.0104,0.0,0 -158.37816677954262,2018-12-03,LUSIGNAN,21,13.4,8.8325,0,1,"(0, 0)",0,3,0,0.017599999999999998,0.0,0 -158.37816677954262,2018-12-03,LUSIGNAN,21,13.4,8.8325,0,0,"(0,)",3,3,0,0.2858,0.0,0 -171.68139576304822,2018-12-04,LUSIGNAN,22,11.1,8.808611111,0,1,"(0, 0)",0,3,0,0.0294,0.0,0 -171.68139576304822,2018-12-04,LUSIGNAN,22,11.1,8.808611111,0,0,"(0,)",3,3,0,0.2976,0.0,0 -183.1173393547612,2018-12-05,LUSIGNAN,23,8.8,8.785555556,0,1,"(0, 0)",0,3,0,0.0458,0.0,0 -183.1173393547612,2018-12-05,LUSIGNAN,23,8.8,8.785555556,0,0,"(0,)",3,3,0,0.314,0.0,0 -191.9214281244778,2018-12-06,LUSIGNAN,24,12.1,8.763611111,0,1,"(0, 0)",0,3,0,0.0556,0.0,0 -191.9214281244778,2018-12-06,LUSIGNAN,24,12.1,8.763611111,0,0,"(0,)",3,3,0,0.3238,0.0,0 -204.2006046851553,2018-12-07,LUSIGNAN,25,10.2,8.743333332999999,0,1,"(0, 0)",0,3,0,0.06920000000000001,0.0,0 -204.2006046851553,2018-12-07,LUSIGNAN,25,10.2,8.743333332999999,0,0,"(0,)",3,3,0,0.3374,0.0,0 -214.21666796856888,2018-12-08,LUSIGNAN,26,9.3,8.724166667,0,1,"(0, 0)",0,3,0,0.08460000000000001,0.0,0 -214.21666796856888,2018-12-08,LUSIGNAN,26,9.3,8.724166667,0,0,"(0,)",3,3,0,0.3528,0.0,0 -223.45957454270095,2018-12-09,LUSIGNAN,27,10.6,8.706388889,0,1,"(0, 0)",1,3,0,0.0974,0.0,0 -223.45957454270095,2018-12-09,LUSIGNAN,27,10.6,8.706388889,0,0,"(0,)",3,3,0,0.3656,0.0,0 -233.8112285996004,2018-12-10,LUSIGNAN,28,7.2,8.689444444,0,1,"(0, 0)",1,3,0,0.1146,0.0,0 -233.8112285996004,2018-12-10,LUSIGNAN,28,7.2,8.689444444,0,0,"(0,)",3,3,0,0.3828,0.0,0 -241.17948575946556,2018-12-11,LUSIGNAN,29,2.1,8.674444444,0,1,"(0, 0)",1,3,0,0.1267,0.0,0 -241.17948575946556,2018-12-11,LUSIGNAN,29,2.1,8.674444444,0,0,"(0,)",3,3,0,0.3949,0.0,0 -242.9590459965193,2018-12-12,LUSIGNAN,30,2.8,8.660277778,0,1,"(0, 0)",1,3,0,0.1395,0.0,0 -242.9590459965193,2018-12-12,LUSIGNAN,30,2.8,8.660277778,0,0,"(0,)",3,3,0,0.4077,0.0,0 -245.74530225975246,2018-12-13,LUSIGNAN,31,0.9,8.647777778,0,1,"(0, 0)",1,3,0,0.1504,0.0,0 -245.74530225975246,2018-12-13,LUSIGNAN,31,0.9,8.647777778,0,0,"(0,)",3,3,0,0.4186,0.0,0 -246.7015003922773,2018-12-14,LUSIGNAN,32,0.0,8.636666667,0,1,"(0, 0)",1,3,0,0.1604,0.0,0 -246.7015003922773,2018-12-14,LUSIGNAN,32,0.0,8.636666667,0,0,"(0,)",3,3,0,0.4286,0.0,0 -246.7815554881659,2018-12-15,LUSIGNAN,33,3.5,8.626666667,0,1,"(0, 0)",1,3,0,0.17390000000000005,0.0,0 -246.7815554881659,2018-12-15,LUSIGNAN,33,3.5,8.626666667,0,0,"(0,)",3,3,0,0.4421,0.0,0 -250.3088250957784,2018-12-16,LUSIGNAN,34,7.5,8.618333332999999,0,1,"(0, 0)",1,3,0,0.1914,0.0,0 -250.3088250957784,2018-12-16,LUSIGNAN,34,7.5,8.618333332999999,0,0,"(0,)",3,3,0,0.4596,0.0,0 -252.69638690657973,2018-12-16,LUSIGNAN,34,7.5,8.618333332999999,0,2,"(0, 1)",0,3,0,0.0175,0.0,0 -257.9490228903427,2018-12-17,LUSIGNAN,35,7.7,8.611388889,0,1,"(0, 0)",1,3,0,0.2091,0.0,0 -257.9490228903427,2018-12-17,LUSIGNAN,35,7.7,8.611388889,0,2,"(0, 1)",0,3,0,0.0352,0.0,0 -257.9490228903427,2018-12-17,LUSIGNAN,35,7.7,8.611388889,0,0,"(0,)",4,3,0,0.4773,0.0,0 -265.7699694451434,2018-12-18,LUSIGNAN,36,6.3,8.605555556,0,1,"(0, 0)",1,3,0,0.2254,0.0,0 -265.7699694451434,2018-12-18,LUSIGNAN,36,6.3,8.605555556,0,2,"(0, 1)",0,3,0,0.0515,0.0,0 -265.7699694451434,2018-12-18,LUSIGNAN,36,6.3,8.605555556,0,0,"(0,)",4,3,0,0.4936,0.0,0 -271.90943463944865,2018-12-19,LUSIGNAN,37,8.4,8.601388888999999,0,1,"(0, 0)",1,3,0,0.2426,0.0,0 -271.90943463944865,2018-12-19,LUSIGNAN,37,8.4,8.601388888999999,0,2,"(0, 1)",0,3,0,0.06870000000000001,0.0,0 -271.90943463944865,2018-12-19,LUSIGNAN,37,8.4,8.601388888999999,0,0,"(0,)",4,3,0,0.5108,0.0,0 -280.358508706333,2018-12-20,LUSIGNAN,38,8.3,8.598611111,0,1,"(0, 0)",1,3,0,0.26,0.0,0 -280.358508706333,2018-12-20,LUSIGNAN,38,8.3,8.598611111,0,2,"(0, 1)",0,3,0,0.08610000000000001,0.0,0 -280.358508706333,2018-12-20,LUSIGNAN,38,8.3,8.598611111,0,0,"(0,)",4,3,0,0.5282,0.0,0 -288.718344028619,2018-12-21,LUSIGNAN,39,10.6,8.5975,0,1,"(0, 0)",1,3,0,0.2728,0.0,0 -288.718344028619,2018-12-21,LUSIGNAN,39,10.6,8.5975,0,2,"(0, 1)",0,3,0,0.09890000000000003,0.0,0 -288.718344028619,2018-12-21,LUSIGNAN,39,10.6,8.5975,0,0,"(0,)",4,3,0,0.541,0.0,0 -299.069998085518,2018-12-22,LUSIGNAN,40,11.6,8.5975,0,1,"(0, 0)",1,3,0,0.2836,0.0,0 -299.069998085518,2018-12-22,LUSIGNAN,40,11.6,8.5975,0,2,"(0, 1)",0,3,0,0.10970000000000002,0.0,0 -299.069998085518,2018-12-22,LUSIGNAN,40,11.6,8.5975,0,0,"(0,)",4,3,0,0.5518000000000001,0.0,0 -308.83959710524465,2018-12-22,LUSIGNAN,40,11.6,8.5975,0,3,"(0, 0, 0)",0,3,0,0.010800000000000002,0.0,0 -310.9330826094718,2018-12-23,LUSIGNAN,41,11.8,8.598888889,0,3,"(0, 0, 0)",0,3,0,0.021200000000000004,0.0,0 -310.9330826094718,2018-12-23,LUSIGNAN,41,11.8,8.598888889,0,1,"(0, 0)",2,3,0,0.294,0.0,0 -310.9330826094718,2018-12-23,LUSIGNAN,41,11.8,8.598888889,0,2,"(0, 1)",0,3,0,0.1201,0.0,0 -310.9330826094718,2018-12-23,LUSIGNAN,41,11.8,8.598888889,0,0,"(0,)",4,3,0,0.5622,0.0,0 -322.96397822680933,2018-12-24,LUSIGNAN,42,11.2,8.602222222,0,3,"(0, 0, 0)",0,3,0,0.03280000000000001,0.0,0 -322.96397822680933,2018-12-24,LUSIGNAN,42,11.2,8.602222222,0,1,"(0, 0)",2,3,0,0.3056,0.0,0 -322.96397822680933,2018-12-24,LUSIGNAN,42,11.2,8.602222222,0,2,"(0, 1)",0,3,0,0.1317,0.0,0 -322.96397822680933,2018-12-24,LUSIGNAN,42,11.2,8.602222222,0,0,"(0,)",4,3,0,0.5738000000000001,0.0,0 -333.8084148008818,2018-12-25,LUSIGNAN,43,7.3,8.606388889,0,3,"(0, 0, 0)",0,3,0,0.050100000000000006,0.0,0 -333.8084148008818,2018-12-25,LUSIGNAN,43,7.3,8.606388889,0,1,"(0, 0)",2,3,0,0.3229,0.0,0 -333.8084148008818,2018-12-25,LUSIGNAN,43,7.3,8.606388889,0,2,"(0, 1)",0,3,0,0.14900000000000002,0.0,0 -333.8084148008818,2018-12-25,LUSIGNAN,43,7.3,8.606388889,0,0,"(0,)",4,3,0,0.5911000000000001,0.0,0 -340.80122877615423,2018-12-26,LUSIGNAN,44,1.1,8.6125,0,3,"(0, 0, 0)",0,3,0,0.0612,0.0,0 -340.80122877615423,2018-12-26,LUSIGNAN,44,1.1,8.6125,0,1,"(0, 0)",2,3,0,0.334,0.0,0 -340.80122877615423,2018-12-26,LUSIGNAN,44,1.1,8.6125,0,2,"(0, 1)",1,3,0,0.16010000000000002,0.0,0 -340.80122877615423,2018-12-26,LUSIGNAN,44,1.1,8.6125,0,0,"(0,)",4,3,0,0.6022000000000001,0.0,0 -341.9609110037058,2018-12-27,LUSIGNAN,45,2.7,8.619722222,0,3,"(0, 0, 0)",0,3,0,0.07390000000000001,0.0,0 -341.9609110037058,2018-12-27,LUSIGNAN,45,2.7,8.619722222,0,1,"(0, 0)",2,3,0,0.34669999999999995,0.0,0 -341.9609110037058,2018-12-27,LUSIGNAN,45,2.7,8.619722222,0,2,"(0, 1)",1,3,0,0.1728,0.0,0 -341.9609110037058,2018-12-27,LUSIGNAN,45,2.7,8.619722222,0,0,"(0,)",4,3,0,0.6149000000000001,0.0,0 -344.67852876969823,2018-12-28,LUSIGNAN,46,3.5,8.628055556,0,3,"(0, 0, 0)",0,3,0,0.0874,0.0,0 -344.67852876969823,2018-12-28,LUSIGNAN,46,3.5,8.628055556,0,1,"(0, 0)",2,3,0,0.3602,0.0,0 -344.67852876969823,2018-12-28,LUSIGNAN,46,3.5,8.628055556,0,2,"(0, 1)",1,3,0,0.1863,0.0,0 -344.67852876969823,2018-12-28,LUSIGNAN,46,3.5,8.628055556,0,0,"(0,)",4,3,0,0.6284000000000001,0.0,0 -348.20579837731077,2018-12-29,LUSIGNAN,47,1.6,8.638333333,0,3,"(0, 0, 0)",0,3,0,0.099,0.0,0 -348.20579837731077,2018-12-29,LUSIGNAN,47,1.6,8.638333333,0,1,"(0, 0)",2,3,0,0.3718,0.0,0 -348.20579837731077,2018-12-29,LUSIGNAN,47,1.6,8.638333333,0,2,"(0, 1)",1,3,0,0.1979,0.0,0 -348.20579837731077,2018-12-29,LUSIGNAN,47,1.6,8.638333333,0,0,"(0,)",4,3,0,0.6400000000000001,0.0,0 -349.7350876194223,2018-12-30,LUSIGNAN,48,5.5,8.649722222000001,0,3,"(0, 0, 0)",0,3,0,0.1145,0.0,0 -349.7350876194223,2018-12-30,LUSIGNAN,48,5.5,8.649722222000001,0,1,"(0, 0)",2,3,0,0.3873,0.0,0 -349.7350876194223,2018-12-30,LUSIGNAN,48,5.5,8.649722222000001,0,2,"(0, 1)",1,3,0,0.21340000000000006,0.0,0 -349.7350876194223,2018-12-30,LUSIGNAN,48,5.5,8.649722222000001,0,4,"(0, 2)",0,3,0,0.0155,0.0,0 -349.7350876194223,2018-12-30,LUSIGNAN,48,5.5,8.649722222000001,0,0,"(0,)",5,3,0,0.6555000000000001,0.0,0 -355.5549701430291,2018-12-31,LUSIGNAN,49,4.6,8.6625,0,3,"(0, 0, 0)",0,3,0,0.1291,0.0,0 -355.5549701430291,2018-12-31,LUSIGNAN,49,4.6,8.6625,0,1,"(0, 0)",2,3,0,0.4019,0.0,0 -355.5549701430291,2018-12-31,LUSIGNAN,49,4.6,8.6625,0,2,"(0, 1)",1,3,0,0.22800000000000006,0.0,0 -355.5549701430291,2018-12-31,LUSIGNAN,49,4.6,8.6625,0,4,"(0, 2)",0,3,0,0.0301,0.0,0 -355.5549701430291,2018-12-31,LUSIGNAN,49,4.6,8.6625,0,0,"(0,)",5,3,0,0.6701,0.0,0 -359.93518837170234,2019-01-01,LUSIGNAN,50,6.4,8.676666667000001,0,3,"(0, 0, 0)",0,3,0,0.1455,0.0,0 -359.93518837170234,2019-01-01,LUSIGNAN,50,6.4,8.676666667000001,0,1,"(0, 0)",2,3,0,0.4183,0.0,0 -359.93518837170234,2019-01-01,LUSIGNAN,50,6.4,8.676666667000001,0,2,"(0, 1)",1,3,0,0.24440000000000006,0.0,0 -359.93518837170234,2019-01-01,LUSIGNAN,50,6.4,8.676666667000001,0,4,"(0, 2)",0,3,0,0.0465,0.0,0 -359.93518837170234,2019-01-01,LUSIGNAN,50,6.4,8.676666667000001,0,0,"(0,)",5,3,0,0.6865,0.0,0 -366.57514566901375,2019-01-02,LUSIGNAN,51,4.9,8.692222222,0,3,"(0, 0, 0)",0,3,0,0.1604,0.0,0 -366.57514566901375,2019-01-02,LUSIGNAN,51,4.9,8.692222222,0,1,"(0, 0)",2,3,0,0.4332,0.0,0 -366.57514566901375,2019-01-02,LUSIGNAN,51,4.9,8.692222222,0,2,"(0, 1)",1,3,0,0.25930000000000003,0.0,0 -366.57514566901375,2019-01-02,LUSIGNAN,51,4.9,8.692222222,0,4,"(0, 2)",0,3,0,0.0614,0.0,0 -366.57514566901375,2019-01-02,LUSIGNAN,51,4.9,8.692222222,0,0,"(0,)",5,3,0,0.7014,0.0,0 -371.19174542036285,2019-01-03,LUSIGNAN,52,2.1,8.709166667,0,3,"(0, 0, 0)",0,3,0,0.1725,0.0,0 -371.19174542036285,2019-01-03,LUSIGNAN,52,2.1,8.709166667,0,1,"(0, 0)",2,3,0,0.4453,0.0,0 -371.19174542036285,2019-01-03,LUSIGNAN,52,2.1,8.709166667,0,2,"(0, 1)",1,3,0,0.27140000000000003,0.0,0 -371.19174542036285,2019-01-03,LUSIGNAN,52,2.1,8.709166667,0,4,"(0, 2)",0,3,0,0.0735,0.0,0 -371.19174542036285,2019-01-03,LUSIGNAN,52,2.1,8.709166667,0,0,"(0,)",5,3,0,0.7135,0.0,0 -373.32721770482766,2019-01-04,LUSIGNAN,53,2.3,8.727222222,0,3,"(0, 0, 0)",0,3,0,0.1848,0.0,0 -373.32721770482766,2019-01-04,LUSIGNAN,53,2.3,8.727222222,0,1,"(0, 0)",2,3,0,0.4576,0.0,0 -373.32721770482766,2019-01-04,LUSIGNAN,53,2.3,8.727222222,0,2,"(0, 1)",1,3,0,0.2837,0.0,0 -373.32721770482766,2019-01-04,LUSIGNAN,53,2.3,8.727222222,0,4,"(0, 2)",0,3,0,0.0858,0.0,0 -373.32721770482766,2019-01-04,LUSIGNAN,53,2.3,8.727222222,0,0,"(0,)",5,3,0,0.7258,0.0,0 -375.5856332602457,2019-01-05,LUSIGNAN,54,1.0,8.746944444,0,3,"(0, 0, 0)",1,3,0,0.1958,0.0,0 -375.5856332602457,2019-01-05,LUSIGNAN,54,1.0,8.746944444,0,1,"(0, 0)",2,3,0,0.4686,0.0,0 -375.5856332602457,2019-01-05,LUSIGNAN,54,1.0,8.746944444,0,2,"(0, 1)",1,3,0,0.2947,0.0,0 -375.5856332602457,2019-01-05,LUSIGNAN,54,1.0,8.746944444,0,4,"(0, 2)",0,3,0,0.0968,0.0,0 -375.5856332602457,2019-01-05,LUSIGNAN,54,1.0,8.746944444,0,0,"(0,)",5,3,0,0.7368,0.0,0 -376.57896380166994,2019-01-06,LUSIGNAN,55,2.9,8.7675,0,3,"(0, 0, 0)",1,3,0,0.2087,0.0,0 -376.57896380166994,2019-01-06,LUSIGNAN,55,2.9,8.7675,0,1,"(0, 0)",2,3,0,0.4815,0.0,0 -376.57896380166994,2019-01-06,LUSIGNAN,55,2.9,8.7675,0,2,"(0, 1)",1,3,0,0.30760000000000004,0.0,0 -376.57896380166994,2019-01-06,LUSIGNAN,55,2.9,8.7675,0,4,"(0, 2)",0,3,0,0.1097,0.0,0 -376.57896380166994,2019-01-06,LUSIGNAN,55,2.9,8.7675,0,0,"(0,)",5,3,0,0.7497,0.0,0 -379.4341890859216,2019-01-07,LUSIGNAN,56,4.9,8.789444443999999,0,3,"(0, 0, 0)",1,3,0,0.2236,0.0,0 -379.4341890859216,2019-01-07,LUSIGNAN,56,4.9,8.789444443999999,0,1,"(0, 0)",2,3,0,0.4964000000000001,0.0,0 -379.4341890859216,2019-01-07,LUSIGNAN,56,4.9,8.789444443999999,0,2,"(0, 1)",1,3,0,0.3225000000000001,0.0,0 -379.4341890859216,2019-01-07,LUSIGNAN,56,4.9,8.789444443999999,0,4,"(0, 2)",0,3,0,0.1246,0.0,0 -379.4341890859216,2019-01-07,LUSIGNAN,56,4.9,8.789444443999999,0,0,"(0,)",5,3,0,0.7646000000000001,0.0,0 -384.380545962367,2019-01-08,LUSIGNAN,57,7.5,8.812777778,0,3,"(0, 0, 0)",1,3,0,0.2411,0.0,0 -384.380545962367,2019-01-08,LUSIGNAN,57,7.5,8.812777778,0,1,"(0, 0)",2,3,0,0.5139,0.0,0 -384.380545962367,2019-01-08,LUSIGNAN,57,7.5,8.812777778,0,2,"(0, 1)",1,3,0,0.3400000000000001,0.0,0 -384.380545962367,2019-01-08,LUSIGNAN,57,7.5,8.812777778,0,4,"(0, 2)",0,3,0,0.1421,0.0,0 -384.380545962367,2019-01-08,LUSIGNAN,57,7.5,8.812777778,0,0,"(0,)",5,3,0,0.7821,0.0,0 -392.0207437569313,2019-01-09,LUSIGNAN,58,3.8,8.837222222000001,0,3,"(0, 0, 0)",1,3,0,0.2549,0.0,0 -392.0207437569313,2019-01-09,LUSIGNAN,58,3.8,8.837222222000001,0,1,"(0, 0)",2,3,0,0.5277000000000001,0.0,0 -392.0207437569313,2019-01-09,LUSIGNAN,58,3.8,8.837222222000001,0,2,"(0, 1)",1,3,0,0.3538000000000001,0.0,0 -392.0207437569313,2019-01-09,LUSIGNAN,58,3.8,8.837222222000001,0,4,"(0, 2)",0,3,0,0.1559,0.0,0 -392.0207437569313,2019-01-09,LUSIGNAN,58,3.8,8.837222222000001,0,0,"(0,)",5,3,0,0.7959,0.0,0 -395.77802352044375,2019-01-10,LUSIGNAN,59,1.8,8.862777778,0,3,"(0, 0, 0)",1,3,0,0.26669999999999994,0.0,0 -395.77802352044375,2019-01-10,LUSIGNAN,59,1.8,8.862777778,0,1,"(0, 0)",2,3,0,0.5395000000000001,0.0,0 -395.77802352044375,2019-01-10,LUSIGNAN,59,1.8,8.862777778,0,2,"(0, 1)",1,3,0,0.3656,0.0,0 -395.77802352044375,2019-01-10,LUSIGNAN,59,1.8,8.862777778,0,4,"(0, 2)",0,3,0,0.16770000000000002,0.0,0 -395.77802352044375,2019-01-10,LUSIGNAN,59,1.8,8.862777778,0,0,"(0,)",5,3,0,0.8077000000000001,0.0,0 -397.4063614538743,2019-01-11,LUSIGNAN,60,1.9,8.889722222,0,3,"(0, 0, 0)",1,3,0,0.2786,0.0,0 -397.4063614538743,2019-01-11,LUSIGNAN,60,1.9,8.889722222,0,1,"(0, 0)",2,3,0,0.5514000000000001,0.0,0 -397.4063614538743,2019-01-11,LUSIGNAN,60,1.9,8.889722222,0,2,"(0, 1)",1,3,0,0.3775000000000001,0.0,0 -397.4063614538743,2019-01-11,LUSIGNAN,60,1.9,8.889722222,0,4,"(0, 2)",0,3,0,0.1796,0.0,0 -397.4063614538743,2019-01-11,LUSIGNAN,60,1.9,8.889722222,0,0,"(0,)",5,3,0,0.8196000000000001,0.0,0 -399.42044549670686,2019-01-12,LUSIGNAN,61,5.2,8.917777778,0,3,"(0, 0, 0)",1,3,0,0.29379999999999995,0.0,0 -399.42044549670686,2019-01-12,LUSIGNAN,61,5.2,8.917777778,0,1,"(0, 0)",2,3,0,0.5666000000000001,0.0,0 -399.42044549670686,2019-01-12,LUSIGNAN,61,5.2,8.917777778,0,2,"(0, 1)",1,3,0,0.3927000000000001,0.0,0 -399.42044549670686,2019-01-12,LUSIGNAN,61,5.2,8.917777778,0,4,"(0, 2)",0,3,0,0.1948,0.0,0 -399.42044549670686,2019-01-12,LUSIGNAN,61,5.2,8.917777778,0,0,"(0,)",5,3,0,0.8348000000000001,0.0,0 -404.62124345520135,2019-01-13,LUSIGNAN,62,7.1,8.946944444,0,3,"(0, 0, 0)",1,3,0,0.31089999999999995,0.0,0 -404.62124345520135,2019-01-13,LUSIGNAN,62,7.1,8.946944444,0,1,"(0, 0)",3,3,0,0.5837000000000001,0.0,0 -404.62124345520135,2019-01-13,LUSIGNAN,62,7.1,8.946944444,0,2,"(0, 1)",1,3,0,0.4098000000000001,0.0,0 -404.62124345520135,2019-01-13,LUSIGNAN,62,7.1,8.946944444,0,4,"(0, 2)",0,3,0,0.2119,0.0,0 -404.62124345520135,2019-01-13,LUSIGNAN,62,7.1,8.946944444,0,0,"(0,)",5,3,0,0.8519000000000001,0.0,0 -411.89867027340796,2019-01-14,LUSIGNAN,63,8.4,8.976944443999999,0,3,"(0, 0, 0)",1,3,0,0.32809999999999995,0.0,0 -411.89867027340796,2019-01-14,LUSIGNAN,63,8.4,8.976944443999999,0,1,"(0, 0)",3,3,0,0.6009000000000001,0.0,0 -411.89867027340796,2019-01-14,LUSIGNAN,63,8.4,8.976944443999999,0,2,"(0, 1)",1,3,0,0.4270000000000001,0.0,0 -411.89867027340796,2019-01-14,LUSIGNAN,63,8.4,8.976944443999999,0,4,"(0, 2)",0,3,0,0.2291,0.0,0 -411.89867027340796,2019-01-14,LUSIGNAN,63,8.4,8.976944443999999,0,0,"(0,)",5,3,0,0.8691000000000001,0.0,0 -417.70740869439095,2019-01-14,LUSIGNAN,63,8.4,8.976944443999999,0,5,"(0, 1, 0)",0,3,0,0.017200000000000003,0.0,0 -420.3477443402923,2019-01-15,LUSIGNAN,64,7.1,9.008333333,0,3,"(0, 0, 0)",1,3,0,0.34519999999999995,0.0,0 -420.3477443402923,2019-01-15,LUSIGNAN,64,7.1,9.008333333,0,1,"(0, 0)",3,3,0,0.6180000000000001,0.0,0 -420.3477443402923,2019-01-15,LUSIGNAN,64,7.1,9.008333333,0,5,"(0, 1, 0)",0,3,0,0.034300000000000004,0.0,0 -420.3477443402923,2019-01-15,LUSIGNAN,64,7.1,9.008333333,0,2,"(0, 1)",2,3,0,0.4441000000000001,0.0,0 -420.3477443402923,2019-01-15,LUSIGNAN,64,7.1,9.008333333,0,4,"(0, 2)",1,3,0,0.2462,0.0,0 -420.3477443402923,2019-01-15,LUSIGNAN,64,7.1,9.008333333,0,0,"(0,)",5,3,0,0.8862000000000001,0.0,0 -427.1703319823609,2019-01-16,LUSIGNAN,65,2.8,9.040277778,0,3,"(0, 0, 0)",1,3,0,0.35799999999999993,0.0,0 -427.1703319823609,2019-01-16,LUSIGNAN,65,2.8,9.040277778,0,1,"(0, 0)",3,3,0,0.6308000000000001,0.0,0 -427.1703319823609,2019-01-16,LUSIGNAN,65,2.8,9.040277778,0,5,"(0, 1, 0)",0,3,0,0.0471,0.0,0 -427.1703319823609,2019-01-16,LUSIGNAN,65,2.8,9.040277778,0,2,"(0, 1)",2,3,0,0.4569,0.0,0 -427.1703319823609,2019-01-16,LUSIGNAN,65,2.8,9.040277778,0,4,"(0, 2)",1,3,0,0.259,0.0,0 -427.1703319823609,2019-01-16,LUSIGNAN,65,2.8,9.040277778,0,0,"(0,)",5,3,0,0.8990000000000001,0.0,0 -429.95658824559416,2019-01-17,LUSIGNAN,66,6.6,9.073888889,0,3,"(0, 0, 0)",1,3,0,0.3745999999999999,0.0,0 -429.95658824559416,2019-01-17,LUSIGNAN,66,6.6,9.073888889,0,1,"(0, 0)",3,3,0,0.6474000000000001,0.0,0 -429.95658824559416,2019-01-17,LUSIGNAN,66,6.6,9.073888889,0,5,"(0, 1, 0)",0,3,0,0.0637,0.0,0 -429.95658824559416,2019-01-17,LUSIGNAN,66,6.6,9.073888889,0,2,"(0, 1)",2,3,0,0.4735,0.0,0 -429.95658824559416,2019-01-17,LUSIGNAN,66,6.6,9.073888889,0,4,"(0, 2)",1,3,0,0.2756,0.0,0 -429.95658824559416,2019-01-17,LUSIGNAN,66,6.6,9.073888889,0,0,"(0,)",5,3,0,0.9156,0.0,0 -436.77888507459517,2019-01-18,LUSIGNAN,67,2.2,9.108055556,0,3,"(0, 0, 0)",1,3,0,0.3867999999999999,0.0,0 -436.77888507459517,2019-01-18,LUSIGNAN,67,2.2,9.108055556,0,1,"(0, 0)",3,3,0,0.6596000000000001,0.0,0 -436.77888507459517,2019-01-18,LUSIGNAN,67,2.2,9.108055556,0,5,"(0, 1, 0)",0,3,0,0.07590000000000001,0.0,0 -436.77888507459517,2019-01-18,LUSIGNAN,67,2.2,9.108055556,0,2,"(0, 1)",2,3,0,0.4857,0.0,0 -436.77888507459517,2019-01-18,LUSIGNAN,67,2.2,9.108055556,0,4,"(0, 2)",1,3,0,0.2878,0.0,0 -436.77888507459517,2019-01-18,LUSIGNAN,67,2.2,9.108055556,0,0,"(0,)",5,3,0,0.9278,0.0,0 -438.79257798194726,2019-01-19,LUSIGNAN,68,4.6,9.143055556,0,3,"(0, 0, 0)",1,3,0,0.4013999999999999,0.0,0 -438.79257798194726,2019-01-19,LUSIGNAN,68,4.6,9.143055556,0,1,"(0, 0)",3,3,0,0.6742,0.0,0 -438.79257798194726,2019-01-19,LUSIGNAN,68,4.6,9.143055556,0,5,"(0, 1, 0)",0,3,0,0.0905,0.0,0 -438.79257798194726,2019-01-19,LUSIGNAN,68,4.6,9.143055556,0,2,"(0, 1)",2,3,0,0.5003,0.0,0 -438.79257798194726,2019-01-19,LUSIGNAN,68,4.6,9.143055556,0,4,"(0, 2)",1,3,0,0.3024,0.0,0 -438.79257798194726,2019-01-19,LUSIGNAN,68,4.6,9.143055556,0,0,"(0,)",5,3,0,0.9424,0.0,0 -443.48566894124,2019-01-20,LUSIGNAN,69,6.2,9.179444444,0,3,"(0, 0, 0)",1,3,0,0.4175999999999999,0.0,0 -443.48566894124,2019-01-20,LUSIGNAN,69,6.2,9.179444444,0,1,"(0, 0)",3,3,0,0.6904,0.0,0 -443.48566894124,2019-01-20,LUSIGNAN,69,6.2,9.179444444,0,5,"(0, 1, 0)",0,3,0,0.10670000000000003,0.0,0 -443.48566894124,2019-01-20,LUSIGNAN,69,6.2,9.179444444,0,2,"(0, 1)",2,3,0,0.5165,0.0,0 -443.48566894124,2019-01-20,LUSIGNAN,69,6.2,9.179444444,0,4,"(0, 2)",1,3,0,0.3186,0.0,0 -443.48566894124,2019-01-20,LUSIGNAN,69,6.2,9.179444444,0,0,"(0,)",5,3,0,0.9586,0.0,0 -449.5396357450808,2019-01-21,LUSIGNAN,70,1.1,9.216388889,0,3,"(0, 0, 0)",1,3,0,0.4286999999999999,0.0,0 -449.5396357450808,2019-01-21,LUSIGNAN,70,1.1,9.216388889,0,1,"(0, 0)",3,3,0,0.7015,0.0,0 -449.5396357450808,2019-01-21,LUSIGNAN,70,1.1,9.216388889,0,5,"(0, 1, 0)",0,3,0,0.11780000000000003,0.0,0 -449.5396357450808,2019-01-21,LUSIGNAN,70,1.1,9.216388889,0,2,"(0, 1)",2,3,0,0.5276,0.0,0 -449.5396357450808,2019-01-21,LUSIGNAN,70,1.1,9.216388889,0,4,"(0, 2)",1,3,0,0.3297,0.0,0 -449.5396357450808,2019-01-21,LUSIGNAN,70,1.1,9.216388889,0,0,"(0,)",5,3,0,0.9697,0.0,0 -450.6993179726323,2019-01-22,LUSIGNAN,71,2.1,9.254166667,0,3,"(0, 0, 0)",1,3,0,0.4407999999999999,0.0,0 -450.6993179726323,2019-01-22,LUSIGNAN,71,2.1,9.254166667,0,1,"(0, 0)",3,3,0,0.7136,0.0,0 -450.6993179726323,2019-01-22,LUSIGNAN,71,2.1,9.254166667,0,5,"(0, 1, 0)",0,3,0,0.12990000000000002,0.0,0 -450.6993179726323,2019-01-22,LUSIGNAN,71,2.1,9.254166667,0,2,"(0, 1)",2,3,0,0.5397,0.0,0 -450.6993179726323,2019-01-22,LUSIGNAN,71,2.1,9.254166667,0,4,"(0, 2)",1,3,0,0.3418,0.0,0 -450.6993179726323,2019-01-22,LUSIGNAN,71,2.1,9.254166667,0,0,"(0,)",5,3,0,0.9818,0.0,0 -452.83479025709715,2019-01-23,LUSIGNAN,72,4.6,9.292777778,0,3,"(0, 0, 0)",1,3,0,0.4553999999999999,0.0,0 -452.83479025709715,2019-01-23,LUSIGNAN,72,4.6,9.292777778,0,1,"(0, 0)",3,3,0,0.7282,0.0,0 -452.83479025709715,2019-01-23,LUSIGNAN,72,4.6,9.292777778,0,5,"(0, 1, 0)",0,3,0,0.14450000000000002,0.0,0 -452.83479025709715,2019-01-23,LUSIGNAN,72,4.6,9.292777778,0,2,"(0, 1)",2,3,0,0.5542999999999999,0.0,0 -452.83479025709715,2019-01-23,LUSIGNAN,72,4.6,9.292777778,0,4,"(0, 2)",1,3,0,0.3564,0.0,0 -452.83479025709715,2019-01-23,LUSIGNAN,72,4.6,9.292777778,0,0,"(0,)",5,3,0,0.9964,0.0,0 -457.52788121638997,2019-01-24,LUSIGNAN,73,1.4,9.332222222,0,3,"(0, 0, 0)",1,3,0,0.4668,0.0,0 -457.52788121638997,2019-01-24,LUSIGNAN,73,1.4,9.332222222,0,1,"(0, 0)",3,3,0,0.7395999999999999,0.0,0 -457.52788121638997,2019-01-24,LUSIGNAN,73,1.4,9.332222222,0,5,"(0, 1, 0)",0,3,0,0.1559,0.0,0 -457.52788121638997,2019-01-24,LUSIGNAN,73,1.4,9.332222222,0,2,"(0, 1)",2,3,0,0.5656999999999999,0.0,0 -457.52788121638997,2019-01-24,LUSIGNAN,73,1.4,9.332222222,0,4,"(0, 2)",1,3,0,0.3678,0.0,0 -457.52788121638997,2019-01-24,LUSIGNAN,73,1.4,9.332222222,0,0,"(0,)",6,3,0,1.0078,0.0,0 -458.81646646885406,2019-01-25,LUSIGNAN,74,5.0,9.372777778,0,3,"(0, 0, 0)",2,3,0,0.4818,0.0,0 -458.81646646885406,2019-01-25,LUSIGNAN,74,5.0,9.372777778,0,1,"(0, 0)",3,3,0,0.7545999999999999,0.0,0 -458.81646646885406,2019-01-25,LUSIGNAN,74,5.0,9.372777778,0,5,"(0, 1, 0)",0,3,0,0.1709,0.0,0 -458.81646646885406,2019-01-25,LUSIGNAN,74,5.0,9.372777778,0,2,"(0, 1)",2,3,0,0.5806999999999999,0.0,0 -458.81646646885406,2019-01-25,LUSIGNAN,74,5.0,9.372777778,0,4,"(0, 2)",1,3,0,0.3828,0.0,0 -458.81646646885406,2019-01-25,LUSIGNAN,74,5.0,9.372777778,0,0,"(0,)",6,3,0,1.0078,0.0,0 -463.84752020915454,2019-01-26,LUSIGNAN,75,8.6,9.413611111,0,3,"(0, 0, 0)",2,3,0,0.4985999999999999,0.0,0 -463.84752020915454,2019-01-26,LUSIGNAN,75,8.6,9.413611111,0,1,"(0, 0)",3,3,0,0.7714,0.0,0 -463.84752020915454,2019-01-26,LUSIGNAN,75,8.6,9.413611111,0,5,"(0, 1, 0)",0,3,0,0.1877,0.0,0 -463.84752020915454,2019-01-26,LUSIGNAN,75,8.6,9.413611111,0,2,"(0, 1)",2,3,0,0.5974999999999999,0.0,0 -463.84752020915454,2019-01-26,LUSIGNAN,75,8.6,9.413611111,0,4,"(0, 2)",1,3,0,0.3996,0.0,0 -463.84752020915454,2019-01-26,LUSIGNAN,75,8.6,9.413611111,0,0,"(0,)",6,3,0,1.0078,0.0,0 -472.47450547606735,2019-01-27,LUSIGNAN,76,5.3,9.455277778,0,3,"(0, 0, 0)",2,3,0,0.5138999999999999,0.0,0 -472.47450547606735,2019-01-27,LUSIGNAN,76,5.3,9.455277778,0,1,"(0, 0)",3,3,0,0.7867,0.0,0 -472.47450547606735,2019-01-27,LUSIGNAN,76,5.3,9.455277778,0,5,"(0, 1, 0)",0,3,0,0.203,0.0,0 -472.47450547606735,2019-01-27,LUSIGNAN,76,5.3,9.455277778,0,2,"(0, 1)",2,3,0,0.6127999999999999,0.0,0 -472.47450547606735,2019-01-27,LUSIGNAN,76,5.3,9.455277778,0,4,"(0, 2)",1,3,0,0.4149,0.0,0 -472.47450547606735,2019-01-27,LUSIGNAN,76,5.3,9.455277778,0,0,"(0,)",6,3,0,1.0078,0.0,0 -477.7603305895752,2019-01-28,LUSIGNAN,77,5.8,9.498055556,0,3,"(0, 0, 0)",2,3,0,0.5297,0.0,0 -477.7603305895752,2019-01-28,LUSIGNAN,77,5.8,9.498055556,0,1,"(0, 0)",3,3,0,0.8025,0.0,0 -477.7603305895752,2019-01-28,LUSIGNAN,77,5.8,9.498055556,0,5,"(0, 1, 0)",0,3,0,0.2188,0.0,0 -477.7603305895752,2019-01-28,LUSIGNAN,77,5.8,9.498055556,0,2,"(0, 1)",2,3,0,0.6285999999999999,0.0,0 -477.7603305895752,2019-01-28,LUSIGNAN,77,5.8,9.498055556,0,4,"(0, 2)",1,3,0,0.4307,0.0,0 -477.7603305895752,2019-01-28,LUSIGNAN,77,5.8,9.498055556,0,0,"(0,)",6,3,0,1.0078,0.0,0 -483.4724479777278,2019-01-29,LUSIGNAN,78,3.9,9.541111111000001,0,3,"(0, 0, 0)",2,3,0,0.5436,0.0,0 -483.4724479777278,2019-01-29,LUSIGNAN,78,3.9,9.541111111000001,0,1,"(0, 0)",3,3,0,0.8164,0.0,0 -483.4724479777278,2019-01-29,LUSIGNAN,78,3.9,9.541111111000001,0,5,"(0, 1, 0)",0,3,0,0.2327,0.0,0 -483.4724479777278,2019-01-29,LUSIGNAN,78,3.9,9.541111111000001,0,2,"(0, 1)",2,3,0,0.6425,0.0,0 -483.4724479777278,2019-01-29,LUSIGNAN,78,3.9,9.541111111000001,0,4,"(0, 2)",1,3,0,0.4446,0.0,0 -483.4724479777278,2019-01-29,LUSIGNAN,78,3.9,9.541111111000001,0,0,"(0,)",6,3,0,1.0078,0.0,0 -487.3068840559447,2019-01-30,LUSIGNAN,79,3.1,9.585,0,3,"(0, 0, 0)",2,3,0,0.5567,0.0,0 -487.3068840559447,2019-01-30,LUSIGNAN,79,3.1,9.585,0,1,"(0, 0)",3,3,0,0.8295,0.0,0 -487.3068840559447,2019-01-30,LUSIGNAN,79,3.1,9.585,0,5,"(0, 1, 0)",1,3,0,0.2458,0.0,0 -487.3068840559447,2019-01-30,LUSIGNAN,79,3.1,9.585,0,2,"(0, 1)",2,3,0,0.6556,0.0,0 -487.3068840559447,2019-01-30,LUSIGNAN,79,3.1,9.585,0,4,"(0, 2)",1,3,0,0.4577,0.0,0 -487.3068840559447,2019-01-30,LUSIGNAN,79,3.1,9.585,0,0,"(0,)",6,3,0,1.0078,0.0,0 -490.5313070472091,2019-01-31,LUSIGNAN,80,5.7,9.629444443999999,0,3,"(0, 0, 0)",2,3,0,0.5724,0.0,0 -490.5313070472091,2019-01-31,LUSIGNAN,80,5.7,9.629444443999999,0,1,"(0, 0)",3,3,0,0.8452000000000001,0.0,0 -490.5313070472091,2019-01-31,LUSIGNAN,80,5.7,9.629444443999999,0,5,"(0, 1, 0)",1,3,0,0.2615,0.0,0 -490.5313070472091,2019-01-31,LUSIGNAN,80,5.7,9.629444443999999,0,2,"(0, 1)",2,3,0,0.6713,0.0,0 -490.5313070472091,2019-01-31,LUSIGNAN,80,5.7,9.629444443999999,0,4,"(0, 2)",1,3,0,0.4734,0.0,0 -490.5313070472091,2019-01-31,LUSIGNAN,80,5.7,9.629444443999999,0,0,"(0,)",6,3,0,1.0078,0.0,0 -496.15804398769063,2019-02-01,LUSIGNAN,81,5.6,9.674444444,0,3,"(0, 0, 0)",2,3,0,0.588,0.0,0 -496.15804398769063,2019-02-01,LUSIGNAN,81,5.6,9.674444444,0,1,"(0, 0)",3,3,0,0.8608,0.0,0 -496.15804398769063,2019-02-01,LUSIGNAN,81,5.6,9.674444444,0,5,"(0, 1, 0)",1,3,0,0.2771,0.0,0 -496.15804398769063,2019-02-01,LUSIGNAN,81,5.6,9.674444444,0,2,"(0, 1)",2,3,0,0.6869,0.0,0 -496.15804398769063,2019-02-01,LUSIGNAN,81,5.6,9.674444444,0,4,"(0, 2)",1,3,0,0.489,0.0,0 -496.15804398769063,2019-02-01,LUSIGNAN,81,5.6,9.674444444,0,0,"(0,)",6,3,0,1.0078,0.0,0 -502.0688791135044,2019-02-02,LUSIGNAN,82,2.2,9.720277778,0,3,"(0, 0, 0)",2,3,0,0.6002,0.0,0 -502.0688791135044,2019-02-02,LUSIGNAN,82,2.2,9.720277778,0,1,"(0, 0)",3,3,0,0.873,0.0,0 -502.0688791135044,2019-02-02,LUSIGNAN,82,2.2,9.720277778,0,5,"(0, 1, 0)",1,3,0,0.2893,0.0,0 -502.0688791135044,2019-02-02,LUSIGNAN,82,2.2,9.720277778,0,2,"(0, 1)",2,3,0,0.6990999999999999,0.0,0 -502.0688791135044,2019-02-02,LUSIGNAN,82,2.2,9.720277778,0,6,"(0, 2, 0)",0,3,0,0.0122,0.0,0 -502.0688791135044,2019-02-02,LUSIGNAN,82,2.2,9.720277778,0,4,"(0, 2)",2,3,0,0.5012,0.0,0 -502.0688791135044,2019-02-02,LUSIGNAN,82,2.2,9.720277778,0,0,"(0,)",6,3,0,1.0078,0.0,0 -504.0825720208565,2019-02-03,LUSIGNAN,83,2.8,9.766388889,0,3,"(0, 0, 0)",2,3,0,0.613,0.0,0 -504.0825720208565,2019-02-03,LUSIGNAN,83,2.8,9.766388889,0,1,"(0, 0)",3,3,0,0.8858,0.0,0 -504.0825720208565,2019-02-03,LUSIGNAN,83,2.8,9.766388889,0,5,"(0, 1, 0)",1,3,0,0.3021,0.0,0 -504.0825720208565,2019-02-03,LUSIGNAN,83,2.8,9.766388889,0,2,"(0, 1)",2,3,0,0.7119,0.0,0 -504.0825720208565,2019-02-03,LUSIGNAN,83,2.8,9.766388889,0,6,"(0, 2, 0)",0,3,0,0.025,0.0,0 -504.0825720208565,2019-02-03,LUSIGNAN,83,2.8,9.766388889,0,4,"(0, 2)",2,3,0,0.514,0.0,0 -504.0825720208565,2019-02-03,LUSIGNAN,83,2.8,9.766388889,0,0,"(0,)",6,3,0,1.0078,0.0,0 -506.86882828408966,2019-02-04,LUSIGNAN,84,0.0,9.813333333,0,3,"(0, 0, 0)",2,3,0,0.623,0.0,0 -506.86882828408966,2019-02-04,LUSIGNAN,84,0.0,9.813333333,0,1,"(0, 0)",4,3,0,0.8958,0.0,0 -506.86882828408966,2019-02-04,LUSIGNAN,84,0.0,9.813333333,0,5,"(0, 1, 0)",1,3,0,0.3121,0.0,0 -506.86882828408966,2019-02-04,LUSIGNAN,84,0.0,9.813333333,0,2,"(0, 1)",2,3,0,0.7219,0.0,0 -506.86882828408966,2019-02-04,LUSIGNAN,84,0.0,9.813333333,0,6,"(0, 2, 0)",0,3,0,0.035,0.0,0 -506.86882828408966,2019-02-04,LUSIGNAN,84,0.0,9.813333333,0,4,"(0, 2)",2,3,0,0.524,0.0,0 -506.86882828408966,2019-02-04,LUSIGNAN,84,0.0,9.813333333,0,0,"(0,)",6,3,0,1.0078,0.0,0 -506.94888337997816,2019-02-05,LUSIGNAN,85,4.9,9.860277778,0,3,"(0, 0, 0)",2,3,0,0.6379,0.0,0 -506.94888337997816,2019-02-05,LUSIGNAN,85,4.9,9.860277778,0,1,"(0, 0)",4,3,0,0.9107,0.0,0 -506.94888337997816,2019-02-05,LUSIGNAN,85,4.9,9.860277778,0,5,"(0, 1, 0)",1,3,0,0.327,0.0,0 -506.94888337997816,2019-02-05,LUSIGNAN,85,4.9,9.860277778,0,2,"(0, 1)",2,3,0,0.7368,0.0,0 -506.94888337997816,2019-02-05,LUSIGNAN,85,4.9,9.860277778,0,6,"(0, 2, 0)",0,3,0,0.0499,0.0,0 -506.94888337997816,2019-02-05,LUSIGNAN,85,4.9,9.860277778,0,4,"(0, 2)",2,3,0,0.5389,0.0,0 -506.94888337997816,2019-02-05,LUSIGNAN,85,4.9,9.860277778,0,0,"(0,)",6,3,0,1.0078,0.0,0 -511.89524025642373,2019-02-06,LUSIGNAN,86,9.4,9.908333333,0,3,"(0, 0, 0)",2,3,0,0.6531,0.0,0 -511.89524025642373,2019-02-06,LUSIGNAN,86,9.4,9.908333333,0,1,"(0, 0)",4,3,0,0.9259,0.0,0 -511.89524025642373,2019-02-06,LUSIGNAN,86,9.4,9.908333333,0,5,"(0, 1, 0)",1,3,0,0.3422,0.0,0 -511.89524025642373,2019-02-06,LUSIGNAN,86,9.4,9.908333333,0,2,"(0, 1)",3,3,0,0.752,0.0,0 -511.89524025642373,2019-02-06,LUSIGNAN,86,9.4,9.908333333,0,6,"(0, 2, 0)",0,3,0,0.0651,0.0,0 -511.89524025642373,2019-02-06,LUSIGNAN,86,9.4,9.908333333,0,4,"(0, 2)",2,3,0,0.5541,0.0,0 -511.89524025642373,2019-02-06,LUSIGNAN,86,9.4,9.908333333,0,0,"(0,)",6,3,0,1.0078,0.0,0 -521.2251738077221,2019-02-07,LUSIGNAN,87,9.1,9.956388889,0,3,"(0, 0, 0)",2,3,0,0.6689,0.0,0 -521.2251738077221,2019-02-07,LUSIGNAN,87,9.1,9.956388889,0,1,"(0, 0)",4,3,0,0.9417,0.0,0 -521.2251738077221,2019-02-07,LUSIGNAN,87,9.1,9.956388889,0,5,"(0, 1, 0)",1,3,0,0.358,0.0,0 -521.2251738077221,2019-02-07,LUSIGNAN,87,9.1,9.956388889,0,2,"(0, 1)",3,3,0,0.7678,0.0,0 -521.2251738077221,2019-02-07,LUSIGNAN,87,9.1,9.956388889,0,6,"(0, 2, 0)",0,3,0,0.0809,0.0,0 -521.2251738077221,2019-02-07,LUSIGNAN,87,9.1,9.956388889,0,4,"(0, 2)",2,3,0,0.5699000000000001,0.0,0 -521.2251738077221,2019-02-07,LUSIGNAN,87,9.1,9.956388889,0,0,"(0,)",6,3,0,1.0078,0.0,0 -530.2932671674107,2019-02-08,LUSIGNAN,88,8.2,10.00527778,0,3,"(0, 0, 0)",2,3,0,0.6865000000000001,0.0,0 -530.2932671674107,2019-02-08,LUSIGNAN,88,8.2,10.00527778,0,1,"(0, 0)",4,3,0,0.9593,0.0,0 -530.2932671674107,2019-02-08,LUSIGNAN,88,8.2,10.00527778,0,5,"(0, 1, 0)",1,3,0,0.3756,0.0,0 -530.2932671674107,2019-02-08,LUSIGNAN,88,8.2,10.00527778,0,2,"(0, 1)",3,3,0,0.7854000000000001,0.0,0 -530.2932671674107,2019-02-08,LUSIGNAN,88,8.2,10.00527778,0,6,"(0, 2, 0)",0,3,0,0.0985,0.0,0 -530.2932671674107,2019-02-08,LUSIGNAN,88,8.2,10.00527778,0,4,"(0, 2)",2,3,0,0.5875000000000001,0.0,0 -530.2932671674107,2019-02-08,LUSIGNAN,88,8.2,10.00527778,0,0,"(0,)",6,3,0,1.0078,0.0008796300000000201,0 -538.5636856268857,2019-02-09,LUSIGNAN,89,9.2,10.05444444,0,3,"(0, 0, 0)",2,3,0,0.7021000000000002,0.0,0 -538.5636856268857,2019-02-09,LUSIGNAN,89,9.2,10.05444444,0,1,"(0, 0)",4,3,0,0.9749,0.0,0 -538.5636856268857,2019-02-09,LUSIGNAN,89,9.2,10.05444444,0,5,"(0, 1, 0)",1,3,0,0.3912,0.0,0 -538.5636856268857,2019-02-09,LUSIGNAN,89,9.2,10.05444444,0,2,"(0, 1)",3,3,0,0.8010000000000002,0.0,0 -538.5636856268857,2019-02-09,LUSIGNAN,89,9.2,10.05444444,0,6,"(0, 2, 0)",0,3,0,0.1141,0.0,0 -538.5636856268857,2019-02-09,LUSIGNAN,89,9.2,10.05444444,0,4,"(0, 2)",2,3,0,0.6031000000000002,0.0,0 -538.5636856268857,2019-02-09,LUSIGNAN,89,9.2,10.05444444,0,0,"(0,)",6,3,0,1.0078,0.00995370333333323,0 -547.7193096345645,2019-02-10,LUSIGNAN,90,7.8,10.10361111,0,3,"(0, 0, 0)",2,3,0,0.7199000000000002,0.0,0 -547.7193096345645,2019-02-10,LUSIGNAN,90,7.8,10.10361111,0,1,"(0, 0)",4,3,0,0.9927,0.0,0 -547.7193096345645,2019-02-10,LUSIGNAN,90,7.8,10.10361111,0,5,"(0, 1, 0)",1,3,0,0.409,0.0,0 -547.7193096345645,2019-02-10,LUSIGNAN,90,7.8,10.10361111,0,2,"(0, 1)",3,3,0,0.8188000000000002,0.0,0 -547.7193096345645,2019-02-10,LUSIGNAN,90,7.8,10.10361111,0,6,"(0, 2, 0)",0,3,0,0.13190000000000002,0.0,0 -547.7193096345645,2019-02-10,LUSIGNAN,90,7.8,10.10361111,0,4,"(0, 2)",2,3,0,0.6209000000000002,0.0,0 -547.7193096345645,2019-02-10,LUSIGNAN,90,7.8,10.10361111,0,0,"(0,)",6,3,0,1.0078,0.02722222166666644,0 -555.630441539367,2019-02-11,LUSIGNAN,91,6.5,10.15361111,0,3,"(0, 0, 0)",3,3,0,0.7364000000000002,0.0,0 -555.630441539367,2019-02-11,LUSIGNAN,91,6.5,10.15361111,0,1,"(0, 0)",4,3,0,1.0092,0.0,0 -555.630441539367,2019-02-11,LUSIGNAN,91,6.5,10.15361111,0,5,"(0, 1, 0)",1,3,0,0.4255,0.0,0 -555.630441539367,2019-02-11,LUSIGNAN,91,6.5,10.15361111,0,2,"(0, 1)",3,3,0,0.8353000000000002,0.0,0 -555.630441539367,2019-02-11,LUSIGNAN,91,6.5,10.15361111,0,6,"(0, 2, 0)",0,3,0,0.14840000000000006,0.0,0 -555.630441539367,2019-02-11,LUSIGNAN,91,6.5,10.15361111,0,4,"(0, 2)",2,3,0,0.6374000000000002,0.0,0 -555.630441539367,2019-02-11,LUSIGNAN,91,6.5,10.15361111,0,0,"(0,)",6,3,0,1.0078,0.052824073333333096,0 -561.9408837938336,2019-02-12,LUSIGNAN,92,4.9,10.20416667,0,3,"(0, 0, 0)",3,3,0,0.7513000000000002,0.0,0 -561.9408837938336,2019-02-12,LUSIGNAN,92,4.9,10.20416667,0,1,"(0, 0)",4,3,0,1.0092,0.034027778333333224,0 -561.9408837938336,2019-02-12,LUSIGNAN,92,4.9,10.20416667,0,5,"(0, 1, 0)",1,3,0,0.4404,0.0,0 -561.9408837938336,2019-02-12,LUSIGNAN,92,4.9,10.20416667,0,2,"(0, 1)",3,3,0,0.8502000000000002,0.0,0 -561.9408837938336,2019-02-12,LUSIGNAN,92,4.9,10.20416667,0,6,"(0, 2, 0)",0,3,0,0.16330000000000006,0.0,0 -561.9408837938336,2019-02-12,LUSIGNAN,92,4.9,10.20416667,0,4,"(0, 2)",2,3,0,0.6523000000000002,0.0,0 -561.9408837938336,2019-02-12,LUSIGNAN,92,4.9,10.20416667,0,0,"(0,)",6,3,0,1.0078,0.08685185166666631,0 -566.8872406702799,2019-02-13,LUSIGNAN,93,6.3,10.25472222,0,3,"(0, 0, 0)",3,3,0,0.7676000000000002,0.0,0 -566.8872406702799,2019-02-13,LUSIGNAN,93,6.3,10.25472222,0,1,"(0, 0)",4,3,0,1.0092,0.0764814816666665,0 -566.8872406702799,2019-02-13,LUSIGNAN,93,6.3,10.25472222,0,5,"(0, 1, 0)",1,3,0,0.4567,0.0,0 -566.8872406702799,2019-02-13,LUSIGNAN,93,6.3,10.25472222,0,2,"(0, 1)",3,3,0,0.8665000000000002,0.0,0 -566.8872406702799,2019-02-13,LUSIGNAN,93,6.3,10.25472222,0,6,"(0, 2, 0)",0,3,0,0.17960000000000004,0.0,0 -566.8872406702799,2019-02-13,LUSIGNAN,93,6.3,10.25472222,0,4,"(0, 2)",2,3,0,0.6686000000000002,0.0,0 -566.8872406702799,2019-02-13,LUSIGNAN,93,6.3,10.25472222,0,0,"(0,)",7,4,0,1.0078,0.1293055549999996,0 -567.2965383499003,2019-02-13,LUSIGNAN,93,6.3,10.25472222,0,7,"(0, 4)",0,3,0,0.016300000000000002,0.0,0 -573.0267058645843,2019-02-14,LUSIGNAN,94,6.6,10.30555556,0,3,"(0, 0, 0)",3,3,0,0.7842000000000001,0.0,0 -573.0267058645843,2019-02-14,LUSIGNAN,94,6.6,10.30555556,0,1,"(0, 0)",4,3,0,1.0092,0.1274074083333332,0 -573.0267058645843,2019-02-14,LUSIGNAN,94,6.6,10.30555556,0,5,"(0, 1, 0)",2,3,0,0.4733,0.0,0 -573.0267058645843,2019-02-14,LUSIGNAN,94,6.6,10.30555556,0,2,"(0, 1)",3,3,0,0.8831000000000001,0.0,0 -573.0267058645843,2019-02-14,LUSIGNAN,94,6.6,10.30555556,0,6,"(0, 2, 0)",1,3,0,0.19620000000000004,0.0,0 -573.0267058645843,2019-02-14,LUSIGNAN,94,6.6,10.30555556,0,4,"(0, 2)",2,3,0,0.6852000000000001,0.0,0 -573.0267058645843,2019-02-14,LUSIGNAN,94,6.6,10.30555556,0,7,"(0, 4)",0,3,0,0.0329,0.0,0 -573.0267058645843,2019-02-14,LUSIGNAN,94,6.6,10.30555556,0,0,"(0,)",7,4,0,1.0078,0.1802314816666663,0 -579.8490026935854,2019-02-15,LUSIGNAN,95,7.5,10.35694444,0,3,"(0, 0, 0)",3,3,0,0.8017000000000001,0.0,0 -579.8490026935854,2019-02-15,LUSIGNAN,95,7.5,10.35694444,0,1,"(0, 0)",4,3,0,1.0092,0.1868981483333331,0 -579.8490026935854,2019-02-15,LUSIGNAN,95,7.5,10.35694444,0,5,"(0, 1, 0)",2,3,0,0.4908,0.0,0 -579.8490026935854,2019-02-15,LUSIGNAN,95,7.5,10.35694444,0,2,"(0, 1)",3,3,0,0.9006000000000001,0.0,0 -579.8490026935854,2019-02-15,LUSIGNAN,95,7.5,10.35694444,0,6,"(0, 2, 0)",1,3,0,0.21370000000000008,0.0,0 -579.8490026935854,2019-02-15,LUSIGNAN,95,7.5,10.35694444,0,4,"(0, 2)",2,3,0,0.7027000000000001,0.0,0 -579.8490026935854,2019-02-15,LUSIGNAN,95,7.5,10.35694444,0,7,"(0, 4)",0,3,0,0.0504,0.0,0 -579.8490026935854,2019-02-15,LUSIGNAN,95,7.5,10.35694444,0,0,"(0,)",7,4,0,1.0078,0.2397222216666662,0 -587.4892004881497,2019-02-16,LUSIGNAN,96,8.2,10.40861111,0,3,"(0, 0, 0)",3,3,0,0.8193000000000001,0.0,0 -587.4892004881497,2019-02-16,LUSIGNAN,96,8.2,10.40861111,0,1,"(0, 0)",4,3,0,1.0092,0.2549999999999999,0 -587.4892004881497,2019-02-16,LUSIGNAN,96,8.2,10.40861111,0,5,"(0, 1, 0)",2,3,0,0.5084,0.0,0 -587.4892004881497,2019-02-16,LUSIGNAN,96,8.2,10.40861111,0,2,"(0, 1)",3,3,0,0.9182,0.0,0 -587.4892004881497,2019-02-16,LUSIGNAN,96,8.2,10.40861111,0,6,"(0, 2, 0)",1,3,0,0.2313000000000001,0.0,0 -587.4892004881497,2019-02-16,LUSIGNAN,96,8.2,10.40861111,0,4,"(0, 2)",2,3,0,0.7203000000000002,0.0,0 -587.4892004881497,2019-02-16,LUSIGNAN,96,8.2,10.40861111,0,7,"(0, 4)",0,3,0,0.068,0.0,0 -587.4892004881497,2019-02-16,LUSIGNAN,96,8.2,10.40861111,0,0,"(0,)",7,4,0,1.0078,0.307824073333333,0 -595.7596189476246,2019-02-17,LUSIGNAN,97,10.9,10.46027778,0,3,"(0, 0, 0)",3,3,0,0.8315000000000001,0.0,0 -595.7596189476246,2019-02-17,LUSIGNAN,97,10.9,10.46027778,0,1,"(0, 0)",4,3,0,1.0092,0.3317129633333333,0 -595.7596189476246,2019-02-17,LUSIGNAN,97,10.9,10.46027778,0,5,"(0, 1, 0)",2,3,0,0.5206,0.0,0 -595.7596189476246,2019-02-17,LUSIGNAN,97,10.9,10.46027778,0,2,"(0, 1)",3,3,0,0.9304,0.0,0 -595.7596189476246,2019-02-17,LUSIGNAN,97,10.9,10.46027778,0,6,"(0, 2, 0)",1,3,0,0.24350000000000005,0.0,0 -595.7596189476246,2019-02-17,LUSIGNAN,97,10.9,10.46027778,0,4,"(0, 2)",2,3,0,0.7325000000000002,0.0,0 -595.7596189476246,2019-02-17,LUSIGNAN,97,10.9,10.46027778,0,7,"(0, 4)",0,3,0,0.08020000000000001,0.0,0 -595.7596189476246,2019-02-17,LUSIGNAN,97,10.9,10.46027778,0,0,"(0,)",7,4,0,1.0078,0.3845370366666664,0 -606.3593267453708,2019-02-18,LUSIGNAN,98,8.9,10.5125,0,3,"(0, 0, 0)",3,3,0,0.8477000000000001,0.0,0 -606.3593267453708,2019-02-18,LUSIGNAN,98,8.9,10.5125,0,1,"(0, 0)",4,3,0,1.0092,0.4171296299999998,0 -606.3593267453708,2019-02-18,LUSIGNAN,98,8.9,10.5125,0,5,"(0, 1, 0)",2,3,0,0.5367999999999999,0.0,0 -606.3593267453708,2019-02-18,LUSIGNAN,98,8.9,10.5125,0,2,"(0, 1)",3,3,0,0.9466,0.0,0 -606.3593267453708,2019-02-18,LUSIGNAN,98,8.9,10.5125,0,6,"(0, 2, 0)",1,3,0,0.25970000000000004,0.0,0 -606.3593267453708,2019-02-18,LUSIGNAN,98,8.9,10.5125,0,4,"(0, 2)",3,3,0,0.7487000000000001,0.0,0 -606.3593267453708,2019-02-18,LUSIGNAN,98,8.9,10.5125,0,7,"(0, 4)",0,3,0,0.0964,0.0,0 -606.3593267453708,2019-02-18,LUSIGNAN,98,8.9,10.5125,0,0,"(0,)",7,4,0,1.0078,0.4699537033333329,0 -615.2516448498047,2019-02-19,LUSIGNAN,99,9.1,10.565,0,3,"(0, 0, 0)",3,3,0,0.8635000000000002,0.0,0 -615.2516448498047,2019-02-19,LUSIGNAN,99,9.1,10.565,0,1,"(0, 0)",5,4,0,1.0092,0.5112962966666664,0 -615.2516448498047,2019-02-19,LUSIGNAN,99,9.1,10.565,0,5,"(0, 1, 0)",2,3,0,0.5526,0.0,0 -615.2516448498047,2019-02-19,LUSIGNAN,99,9.1,10.565,0,2,"(0, 1)",4,3,0,0.9624,0.0,0 -615.2516448498047,2019-02-19,LUSIGNAN,99,9.1,10.565,0,6,"(0, 2, 0)",1,3,0,0.2755,0.0,0 -615.2516448498047,2019-02-19,LUSIGNAN,99,9.1,10.565,0,4,"(0, 2)",3,3,0,0.7645000000000002,0.0,0 -615.2516448498047,2019-02-19,LUSIGNAN,99,9.1,10.565,0,7,"(0, 4)",0,3,0,0.11220000000000002,0.0,0 -615.2516448498047,2019-02-19,LUSIGNAN,99,9.1,10.565,0,0,"(0,)",7,4,0,1.0078,0.5641203699999995,0 -624.3197382094934,2019-02-20,LUSIGNAN,100,7.5,10.6175,0,3,"(0, 0, 0)",3,3,0,0.8810000000000001,0.0,0 -624.3197382094934,2019-02-20,LUSIGNAN,100,7.5,10.6175,0,1,"(0, 0)",5,4,0,1.0092,0.6142129633333331,0 -624.3197382094934,2019-02-20,LUSIGNAN,100,7.5,10.6175,0,5,"(0, 1, 0)",2,3,0,0.5700999999999999,0.0,0 -624.3197382094934,2019-02-20,LUSIGNAN,100,7.5,10.6175,0,2,"(0, 1)",4,3,0,0.9799,0.0,0 -624.3197382094934,2019-02-20,LUSIGNAN,100,7.5,10.6175,0,6,"(0, 2, 0)",1,3,0,0.29300000000000004,0.0,0 -624.3197382094934,2019-02-20,LUSIGNAN,100,7.5,10.6175,0,4,"(0, 2)",3,3,0,0.7820000000000001,0.0,0 -624.3197382094934,2019-02-20,LUSIGNAN,100,7.5,10.6175,0,7,"(0, 4)",0,3,0,0.12970000000000004,0.0,0 -624.3197382094934,2019-02-20,LUSIGNAN,100,7.5,10.6175,0,0,"(0,)",7,4,0,1.0078,0.6670370366666661,0 -631.9599360040578,2019-02-21,LUSIGNAN,101,9.2,10.67027778,0,3,"(0, 0, 0)",3,3,0,0.8966000000000001,0.0,0 -631.9599360040578,2019-02-21,LUSIGNAN,101,9.2,10.67027778,0,1,"(0, 0)",5,4,0,1.0092,0.7259259266666663,0 -631.9599360040578,2019-02-21,LUSIGNAN,101,9.2,10.67027778,0,5,"(0, 1, 0)",2,3,0,0.5856999999999999,0.0,0 -631.9599360040578,2019-02-21,LUSIGNAN,101,9.2,10.67027778,0,2,"(0, 1)",4,3,0,0.9955,0.0,0 -631.9599360040578,2019-02-21,LUSIGNAN,101,9.2,10.67027778,0,6,"(0, 2, 0)",1,3,0,0.30860000000000004,0.0,0 -631.9599360040578,2019-02-21,LUSIGNAN,101,9.2,10.67027778,0,4,"(0, 2)",3,3,0,0.7976000000000001,0.0,0 -631.9599360040578,2019-02-21,LUSIGNAN,101,9.2,10.67027778,0,7,"(0, 4)",0,3,0,0.14530000000000004,0.0,0 -631.9599360040578,2019-02-21,LUSIGNAN,101,9.2,10.67027778,0,0,"(0,)",7,4,0,1.0078,0.7787499999999994,0 -641.1155600117365,2019-02-22,LUSIGNAN,102,9.6,10.72305556,0,3,"(0, 0, 0)",3,3,0,0.9114,0.0,0 -641.1155600117365,2019-02-22,LUSIGNAN,102,9.6,10.72305556,0,1,"(0, 0)",5,4,0,1.0092,0.8464351866666664,0 -641.1155600117365,2019-02-22,LUSIGNAN,102,9.6,10.72305556,0,5,"(0, 1, 0)",2,3,0,0.6004999999999999,0.0,0 -641.1155600117365,2019-02-22,LUSIGNAN,102,9.6,10.72305556,0,2,"(0, 1)",4,3,0,1.0103,0.0,0 -641.1155600117365,2019-02-22,LUSIGNAN,102,9.6,10.72305556,0,6,"(0, 2, 0)",1,3,0,0.3234,0.0,0 -641.1155600117365,2019-02-22,LUSIGNAN,102,9.6,10.72305556,0,4,"(0, 2)",3,3,0,0.8124000000000001,0.0,0 -641.1155600117365,2019-02-22,LUSIGNAN,102,9.6,10.72305556,0,7,"(0, 4)",0,3,0,0.16010000000000005,0.0,0 -641.1155600117365,2019-02-22,LUSIGNAN,102,9.6,10.72305556,0,0,"(0,)",7,4,0,1.0078,0.8992592599999994,0 -650.61875096676,2019-02-23,LUSIGNAN,103,10.6,10.77666667,0,3,"(0, 0, 0)",3,3,0,0.9242,0.0,0 -650.61875096676,2019-02-23,LUSIGNAN,103,10.6,10.77666667,0,1,"(0, 0)",5,4,0,1.0092,0.9758796316666662,0 -650.61875096676,2019-02-23,LUSIGNAN,103,10.6,10.77666667,0,5,"(0, 1, 0)",2,3,0,0.6133,0.0,0 -650.61875096676,2019-02-23,LUSIGNAN,103,10.6,10.77666667,0,2,"(0, 1)",4,3,0,1.0103,0.12944444499999985,0 -650.61875096676,2019-02-23,LUSIGNAN,103,10.6,10.77666667,0,6,"(0, 2, 0)",1,3,0,0.3362,0.0,0 -650.61875096676,2019-02-23,LUSIGNAN,103,10.6,10.77666667,0,4,"(0, 2)",3,3,0,0.8252000000000002,0.0,0 -650.61875096676,2019-02-23,LUSIGNAN,103,10.6,10.77666667,0,7,"(0, 4)",0,3,0,0.17290000000000005,0.0,0 -650.61875096676,2019-02-23,LUSIGNAN,103,10.6,10.77666667,0,0,"(0,)",7,4,0,1.0078,1.0287037049999994,0 -661.6173834022161,2019-02-24,LUSIGNAN,104,9.1,10.83,0,3,"(0, 0, 0)",4,3,0,0.9400000000000002,0.0,0 -661.6173834022161,2019-02-24,LUSIGNAN,104,9.1,10.83,0,1,"(0, 0)",5,4,0,1.0092,1.1142129649999997,0 -661.6173834022161,2019-02-24,LUSIGNAN,104,9.1,10.83,0,5,"(0, 1, 0)",2,3,0,0.6291,0.0,0 -661.6173834022161,2019-02-24,LUSIGNAN,104,9.1,10.83,0,2,"(0, 1)",4,3,0,1.0103,0.2677777783333332,0 -661.6173834022161,2019-02-24,LUSIGNAN,104,9.1,10.83,0,6,"(0, 2, 0)",2,3,0,0.35200000000000004,0.0,0 -661.6173834022161,2019-02-24,LUSIGNAN,104,9.1,10.83,0,4,"(0, 2)",3,3,0,0.8410000000000002,0.0,0 -661.6173834022161,2019-02-24,LUSIGNAN,104,9.1,10.83,0,7,"(0, 4)",0,3,0,0.18870000000000006,0.0,0 -661.6173834022161,2019-02-24,LUSIGNAN,104,9.1,10.83,0,0,"(0,)",7,4,0,1.0078,1.0287037049999994,0 +1.375706511600813,2018-11-13,LUSIGNAN,1,11.4,9.526388889,0,0,"(0,)",1,1,0,0.0112,0.0,0 +11.693505348606912,2018-11-14,LUSIGNAN,2,11.9,9.483888889,0,0,"(0,)",1,1,0,0.0214,0.0,0 +23.807626216310247,2018-11-15,LUSIGNAN,3,13.2,9.442222222,0,0,"(0,)",1,1,0,0.029000000000000005,0.0,0 +36.959128775703384,2018-11-16,LUSIGNAN,4,9.6,9.400833333,0,0,"(0,)",1,1,0,0.043800000000000006,0.0,0 +46.462319730726385,2018-11-17,LUSIGNAN,5,6.1,9.360277778,0,0,"(0,)",1,1,0,0.059900000000000016,0.0,0 +52.430793476001156,2018-11-18,LUSIGNAN,6,6.5,9.320555556,0,0,"(0,)",1,1,0,0.07640000000000001,0.0,0 +58.7412357304672,2018-11-19,LUSIGNAN,7,2.5,9.281944444,0,0,"(0,)",1,1,0,0.0889,0.0,0 +61.32261718615777,2018-11-20,LUSIGNAN,8,2.0,9.243611111,0,0,"(0,)",1,1,0,0.1009,0.0,0 +63.22431310058321,2018-11-21,LUSIGNAN,9,0.9,9.206388889,0,0,"(0,)",1,1,0,0.1118,0.0,0 +64.18051123310805,2018-11-22,LUSIGNAN,10,6.8,9.169722222,0,0,"(0,)",1,1,0,0.12860000000000002,0.0,0 +71.18501982406995,2018-11-23,LUSIGNAN,11,7.9,9.134166667,0,0,"(0,)",2,1,0,0.14650000000000002,0.0,0 +79.18619987072951,2018-11-24,LUSIGNAN,12,8.4,9.099722222,0,0,"(0,)",2,1,0,0.1637,0.0,0 +87.6352739376141,2018-11-25,LUSIGNAN,13,7.0,9.065833332999999,0,0,"(0,)",2,1,0,0.18070000000000006,0.0,0 +94.37263582541662,2018-11-26,LUSIGNAN,14,6.9,9.033055556,0,0,"(0,)",2,1,0,0.19760000000000005,0.0,0 +101.46817944598295,2018-11-27,LUSIGNAN,15,5.0,9.001111111,0,0,"(0,)",2,1,0,0.2126,0.0,0 +106.16382960359628,2018-11-28,LUSIGNAN,16,9.2,8.970277778,0,0,"(0,)",2,1,0,0.2282,0.0,0 +115.31945361127536,2018-11-29,LUSIGNAN,17,11.3,8.940555556,0,0,"(0,)",2,1,0,0.2396,0.0,0 +126.92752374561796,2018-11-30,LUSIGNAN,18,10.6,8.911944444,0,0,"(0,)",2,1,0,0.2524,0.0,0 +137.27917780251735,2018-12-01,LUSIGNAN,19,9.1,8.884444444,0,0,"(0,)",2,1,0,0.2682,0.0,0 +146.3472711622051,2018-12-02,LUSIGNAN,20,11.8,8.858055556,0,0,"(0,)",2,1,0,0.2786,0.0,0 +154.839668068561,2018-12-02,LUSIGNAN,20,11.8,8.858055556,0,1,"(0, 0)",0,1,0,0.0104,0.0,0 +158.37816677954262,2018-12-03,LUSIGNAN,21,13.4,8.8325,0,1,"(0, 0)",0,1,0,0.017599999999999998,0.0,0 +158.37816677954262,2018-12-03,LUSIGNAN,21,13.4,8.8325,0,0,"(0,)",3,1,0,0.2858,0.0,0 +171.68139576304822,2018-12-04,LUSIGNAN,22,11.1,8.808611111,0,1,"(0, 0)",0,1,0,0.0294,0.0,0 +171.68139576304822,2018-12-04,LUSIGNAN,22,11.1,8.808611111,0,0,"(0,)",3,1,0,0.2976,0.0,0 +183.1173393547612,2018-12-05,LUSIGNAN,23,8.8,8.785555556,0,1,"(0, 0)",0,1,0,0.0458,0.0,0 +183.1173393547612,2018-12-05,LUSIGNAN,23,8.8,8.785555556,0,0,"(0,)",3,1,0,0.314,0.0,0 +191.9214281244778,2018-12-06,LUSIGNAN,24,12.1,8.763611111,0,1,"(0, 0)",0,1,0,0.0556,0.0,0 +191.9214281244778,2018-12-06,LUSIGNAN,24,12.1,8.763611111,0,0,"(0,)",3,1,0,0.3238,0.0,0 +204.2006046851553,2018-12-07,LUSIGNAN,25,10.2,8.743333332999999,0,1,"(0, 0)",0,1,0,0.06920000000000001,0.0,0 +204.2006046851553,2018-12-07,LUSIGNAN,25,10.2,8.743333332999999,0,0,"(0,)",3,1,0,0.3374,0.0,0 +214.21666796856888,2018-12-08,LUSIGNAN,26,9.3,8.724166667,0,1,"(0, 0)",0,1,0,0.08460000000000001,0.0,0 +214.21666796856888,2018-12-08,LUSIGNAN,26,9.3,8.724166667,0,0,"(0,)",3,1,0,0.3528,0.0,0 +223.45957454270095,2018-12-09,LUSIGNAN,27,10.6,8.706388889,0,1,"(0, 0)",1,1,0,0.0974,0.0,0 +223.45957454270095,2018-12-09,LUSIGNAN,27,10.6,8.706388889,0,0,"(0,)",3,1,0,0.3656,0.0,0 +233.8112285996004,2018-12-10,LUSIGNAN,28,7.2,8.689444444,0,1,"(0, 0)",1,1,0,0.1146,0.0,0 +233.8112285996004,2018-12-10,LUSIGNAN,28,7.2,8.689444444,0,0,"(0,)",3,1,0,0.3828,0.0,0 +241.17948575946556,2018-12-11,LUSIGNAN,29,2.1,8.674444444,0,1,"(0, 0)",1,1,0,0.1267,0.0,0 +241.17948575946556,2018-12-11,LUSIGNAN,29,2.1,8.674444444,0,0,"(0,)",3,1,0,0.3949,0.0,0 +242.9590459965193,2018-12-12,LUSIGNAN,30,2.8,8.660277778,0,1,"(0, 0)",1,1,0,0.1395,0.0,0 +242.9590459965193,2018-12-12,LUSIGNAN,30,2.8,8.660277778,0,0,"(0,)",3,1,0,0.4077,0.0,0 +245.74530225975246,2018-12-13,LUSIGNAN,31,0.9,8.647777778,0,1,"(0, 0)",1,1,0,0.1504,0.0,0 +245.74530225975246,2018-12-13,LUSIGNAN,31,0.9,8.647777778,0,0,"(0,)",3,1,0,0.4186,0.0,0 +246.7015003922773,2018-12-14,LUSIGNAN,32,0.0,8.636666667,0,1,"(0, 0)",1,1,0,0.1604,0.0,0 +246.7015003922773,2018-12-14,LUSIGNAN,32,0.0,8.636666667,0,0,"(0,)",3,1,0,0.4286,0.0,0 +246.7815554881659,2018-12-15,LUSIGNAN,33,3.5,8.626666667,0,1,"(0, 0)",1,1,0,0.17390000000000005,0.0,0 +246.7815554881659,2018-12-15,LUSIGNAN,33,3.5,8.626666667,0,0,"(0,)",3,1,0,0.4421,0.0,0 +250.3088250957784,2018-12-16,LUSIGNAN,34,7.5,8.618333332999999,0,1,"(0, 0)",1,1,0,0.1914,0.0,0 +250.3088250957784,2018-12-16,LUSIGNAN,34,7.5,8.618333332999999,0,0,"(0,)",3,1,0,0.4596,0.0,0 +252.69638690657973,2018-12-16,LUSIGNAN,34,7.5,8.618333332999999,0,2,"(0, 1)",0,1,0,0.0175,0.0,0 +257.9490228903427,2018-12-17,LUSIGNAN,35,7.7,8.611388889,0,1,"(0, 0)",1,1,0,0.2091,0.0,0 +257.9490228903427,2018-12-17,LUSIGNAN,35,7.7,8.611388889,0,2,"(0, 1)",0,1,0,0.0352,0.0,0 +257.9490228903427,2018-12-17,LUSIGNAN,35,7.7,8.611388889,0,0,"(0,)",4,1,0,0.4773,0.0,0 +265.7699694451434,2018-12-18,LUSIGNAN,36,6.3,8.605555556,0,1,"(0, 0)",1,1,0,0.2254,0.0,0 +265.7699694451434,2018-12-18,LUSIGNAN,36,6.3,8.605555556,0,2,"(0, 1)",0,1,0,0.0515,0.0,0 +265.7699694451434,2018-12-18,LUSIGNAN,36,6.3,8.605555556,0,0,"(0,)",4,1,0,0.4936,0.0,0 +271.90943463944865,2018-12-19,LUSIGNAN,37,8.4,8.601388888999999,0,1,"(0, 0)",1,1,0,0.2426,0.0,0 +271.90943463944865,2018-12-19,LUSIGNAN,37,8.4,8.601388888999999,0,2,"(0, 1)",0,1,0,0.06870000000000001,0.0,0 +271.90943463944865,2018-12-19,LUSIGNAN,37,8.4,8.601388888999999,0,0,"(0,)",4,1,0,0.5108,0.0,0 +280.358508706333,2018-12-20,LUSIGNAN,38,8.3,8.598611111,0,1,"(0, 0)",1,1,0,0.26,0.0,0 +280.358508706333,2018-12-20,LUSIGNAN,38,8.3,8.598611111,0,2,"(0, 1)",0,1,0,0.08610000000000001,0.0,0 +280.358508706333,2018-12-20,LUSIGNAN,38,8.3,8.598611111,0,0,"(0,)",4,1,0,0.5282,0.0,0 +288.718344028619,2018-12-21,LUSIGNAN,39,10.6,8.5975,0,1,"(0, 0)",1,1,0,0.2728,0.0,0 +288.718344028619,2018-12-21,LUSIGNAN,39,10.6,8.5975,0,2,"(0, 1)",0,1,0,0.09890000000000003,0.0,0 +288.718344028619,2018-12-21,LUSIGNAN,39,10.6,8.5975,0,0,"(0,)",4,1,0,0.541,0.0,0 +299.069998085518,2018-12-22,LUSIGNAN,40,11.6,8.5975,0,1,"(0, 0)",1,1,0,0.2836,0.0,0 +299.069998085518,2018-12-22,LUSIGNAN,40,11.6,8.5975,0,2,"(0, 1)",0,1,0,0.10970000000000002,0.0,0 +299.069998085518,2018-12-22,LUSIGNAN,40,11.6,8.5975,0,0,"(0,)",4,1,0,0.5518000000000001,0.0,0 +308.83959710524465,2018-12-22,LUSIGNAN,40,11.6,8.5975,0,3,"(0, 0, 0)",0,1,0,0.010800000000000002,0.0,0 +310.9330826094718,2018-12-23,LUSIGNAN,41,11.8,8.598888889,0,3,"(0, 0, 0)",0,1,0,0.021200000000000004,0.0,0 +310.9330826094718,2018-12-23,LUSIGNAN,41,11.8,8.598888889,0,1,"(0, 0)",2,1,0,0.294,0.0,0 +310.9330826094718,2018-12-23,LUSIGNAN,41,11.8,8.598888889,0,2,"(0, 1)",0,1,0,0.1201,0.0,0 +310.9330826094718,2018-12-23,LUSIGNAN,41,11.8,8.598888889,0,0,"(0,)",4,1,0,0.5622,0.0,0 +322.96397822680933,2018-12-24,LUSIGNAN,42,11.2,8.602222222,0,3,"(0, 0, 0)",0,1,0,0.03280000000000001,0.0,0 +322.96397822680933,2018-12-24,LUSIGNAN,42,11.2,8.602222222,0,1,"(0, 0)",2,1,0,0.3056,0.0,0 +322.96397822680933,2018-12-24,LUSIGNAN,42,11.2,8.602222222,0,2,"(0, 1)",0,1,0,0.1317,0.0,0 +322.96397822680933,2018-12-24,LUSIGNAN,42,11.2,8.602222222,0,0,"(0,)",4,1,0,0.5738000000000001,0.0,0 +333.8084148008818,2018-12-25,LUSIGNAN,43,7.3,8.606388889,0,3,"(0, 0, 0)",0,1,0,0.050100000000000006,0.0,0 +333.8084148008818,2018-12-25,LUSIGNAN,43,7.3,8.606388889,0,1,"(0, 0)",2,1,0,0.3229,0.0,0 +333.8084148008818,2018-12-25,LUSIGNAN,43,7.3,8.606388889,0,2,"(0, 1)",0,1,0,0.14900000000000002,0.0,0 +333.8084148008818,2018-12-25,LUSIGNAN,43,7.3,8.606388889,0,0,"(0,)",4,1,0,0.5911000000000001,0.0,0 +340.80122877615423,2018-12-26,LUSIGNAN,44,1.1,8.6125,0,3,"(0, 0, 0)",0,1,0,0.0612,0.0,0 +340.80122877615423,2018-12-26,LUSIGNAN,44,1.1,8.6125,0,1,"(0, 0)",2,1,0,0.334,0.0,0 +340.80122877615423,2018-12-26,LUSIGNAN,44,1.1,8.6125,0,2,"(0, 1)",1,1,0,0.16010000000000002,0.0,0 +340.80122877615423,2018-12-26,LUSIGNAN,44,1.1,8.6125,0,0,"(0,)",4,1,0,0.6022000000000001,0.0,0 +341.9609110037058,2018-12-27,LUSIGNAN,45,2.7,8.619722222,0,3,"(0, 0, 0)",0,1,0,0.07390000000000001,0.0,0 +341.9609110037058,2018-12-27,LUSIGNAN,45,2.7,8.619722222,0,1,"(0, 0)",2,1,0,0.34669999999999995,0.0,0 +341.9609110037058,2018-12-27,LUSIGNAN,45,2.7,8.619722222,0,2,"(0, 1)",1,1,0,0.1728,0.0,0 +341.9609110037058,2018-12-27,LUSIGNAN,45,2.7,8.619722222,0,0,"(0,)",4,1,0,0.6149000000000001,0.0,0 +344.67852876969823,2018-12-28,LUSIGNAN,46,3.5,8.628055556,0,3,"(0, 0, 0)",0,1,0,0.0874,0.0,0 +344.67852876969823,2018-12-28,LUSIGNAN,46,3.5,8.628055556,0,1,"(0, 0)",2,1,0,0.3602,0.0,0 +344.67852876969823,2018-12-28,LUSIGNAN,46,3.5,8.628055556,0,2,"(0, 1)",1,1,0,0.1863,0.0,0 +344.67852876969823,2018-12-28,LUSIGNAN,46,3.5,8.628055556,0,0,"(0,)",4,1,0,0.6284000000000001,0.0,0 +348.20579837731077,2018-12-29,LUSIGNAN,47,1.6,8.638333333,0,3,"(0, 0, 0)",0,1,0,0.099,0.0,0 +348.20579837731077,2018-12-29,LUSIGNAN,47,1.6,8.638333333,0,1,"(0, 0)",2,1,0,0.3718,0.0,0 +348.20579837731077,2018-12-29,LUSIGNAN,47,1.6,8.638333333,0,2,"(0, 1)",1,1,0,0.1979,0.0,0 +348.20579837731077,2018-12-29,LUSIGNAN,47,1.6,8.638333333,0,0,"(0,)",4,1,0,0.6400000000000001,0.0,0 +349.7350876194223,2018-12-30,LUSIGNAN,48,5.5,8.649722222000001,0,3,"(0, 0, 0)",0,1,0,0.1145,0.0,0 +349.7350876194223,2018-12-30,LUSIGNAN,48,5.5,8.649722222000001,0,1,"(0, 0)",2,1,0,0.3873,0.0,0 +349.7350876194223,2018-12-30,LUSIGNAN,48,5.5,8.649722222000001,0,2,"(0, 1)",1,1,0,0.21340000000000006,0.0,0 +349.7350876194223,2018-12-30,LUSIGNAN,48,5.5,8.649722222000001,0,4,"(0, 2)",0,1,0,0.0155,0.0,0 +349.7350876194223,2018-12-30,LUSIGNAN,48,5.5,8.649722222000001,0,0,"(0,)",5,1,0,0.6555000000000001,0.0,0 +355.5549701430291,2018-12-31,LUSIGNAN,49,4.6,8.6625,0,3,"(0, 0, 0)",0,1,0,0.1291,0.0,0 +355.5549701430291,2018-12-31,LUSIGNAN,49,4.6,8.6625,0,1,"(0, 0)",2,1,0,0.4019,0.0,0 +355.5549701430291,2018-12-31,LUSIGNAN,49,4.6,8.6625,0,2,"(0, 1)",1,1,0,0.22800000000000006,0.0,0 +355.5549701430291,2018-12-31,LUSIGNAN,49,4.6,8.6625,0,4,"(0, 2)",0,1,0,0.0301,0.0,0 +355.5549701430291,2018-12-31,LUSIGNAN,49,4.6,8.6625,0,0,"(0,)",5,1,0,0.6701,0.0,0 +359.93518837170234,2019-01-01,LUSIGNAN,50,6.4,8.676666667000001,0,3,"(0, 0, 0)",0,1,0,0.1455,0.0,0 +359.93518837170234,2019-01-01,LUSIGNAN,50,6.4,8.676666667000001,0,1,"(0, 0)",2,1,0,0.4183,0.0,0 +359.93518837170234,2019-01-01,LUSIGNAN,50,6.4,8.676666667000001,0,2,"(0, 1)",1,1,0,0.24440000000000006,0.0,0 +359.93518837170234,2019-01-01,LUSIGNAN,50,6.4,8.676666667000001,0,4,"(0, 2)",0,1,0,0.0465,0.0,0 +359.93518837170234,2019-01-01,LUSIGNAN,50,6.4,8.676666667000001,0,0,"(0,)",5,1,0,0.6865,0.0,0 +366.57514566901375,2019-01-02,LUSIGNAN,51,4.9,8.692222222,0,3,"(0, 0, 0)",0,1,0,0.1604,0.0,0 +366.57514566901375,2019-01-02,LUSIGNAN,51,4.9,8.692222222,0,1,"(0, 0)",2,1,0,0.4332,0.0,0 +366.57514566901375,2019-01-02,LUSIGNAN,51,4.9,8.692222222,0,2,"(0, 1)",1,1,0,0.25930000000000003,0.0,0 +366.57514566901375,2019-01-02,LUSIGNAN,51,4.9,8.692222222,0,4,"(0, 2)",0,1,0,0.0614,0.0,0 +366.57514566901375,2019-01-02,LUSIGNAN,51,4.9,8.692222222,0,0,"(0,)",5,1,0,0.7014,0.0,0 +371.19174542036285,2019-01-03,LUSIGNAN,52,2.1,8.709166667,0,3,"(0, 0, 0)",0,1,0,0.1725,0.0,0 +371.19174542036285,2019-01-03,LUSIGNAN,52,2.1,8.709166667,0,1,"(0, 0)",2,1,0,0.4453,0.0,0 +371.19174542036285,2019-01-03,LUSIGNAN,52,2.1,8.709166667,0,2,"(0, 1)",1,1,0,0.27140000000000003,0.0,0 +371.19174542036285,2019-01-03,LUSIGNAN,52,2.1,8.709166667,0,4,"(0, 2)",0,1,0,0.0735,0.0,0 +371.19174542036285,2019-01-03,LUSIGNAN,52,2.1,8.709166667,0,0,"(0,)",5,1,0,0.7135,0.0,0 +373.32721770482766,2019-01-04,LUSIGNAN,53,2.3,8.727222222,0,3,"(0, 0, 0)",0,1,0,0.1848,0.0,0 +373.32721770482766,2019-01-04,LUSIGNAN,53,2.3,8.727222222,0,1,"(0, 0)",2,1,0,0.4576,0.0,0 +373.32721770482766,2019-01-04,LUSIGNAN,53,2.3,8.727222222,0,2,"(0, 1)",1,1,0,0.2837,0.0,0 +373.32721770482766,2019-01-04,LUSIGNAN,53,2.3,8.727222222,0,4,"(0, 2)",0,1,0,0.0858,0.0,0 +373.32721770482766,2019-01-04,LUSIGNAN,53,2.3,8.727222222,0,0,"(0,)",5,1,0,0.7258,0.0,0 +375.5856332602457,2019-01-05,LUSIGNAN,54,1.0,8.746944444,0,3,"(0, 0, 0)",1,1,0,0.1958,0.0,0 +375.5856332602457,2019-01-05,LUSIGNAN,54,1.0,8.746944444,0,1,"(0, 0)",2,1,0,0.4686,0.0,0 +375.5856332602457,2019-01-05,LUSIGNAN,54,1.0,8.746944444,0,2,"(0, 1)",1,1,0,0.2947,0.0,0 +375.5856332602457,2019-01-05,LUSIGNAN,54,1.0,8.746944444,0,4,"(0, 2)",0,1,0,0.0968,0.0,0 +375.5856332602457,2019-01-05,LUSIGNAN,54,1.0,8.746944444,0,0,"(0,)",5,1,0,0.7368,0.0,0 +376.57896380166994,2019-01-06,LUSIGNAN,55,2.9,8.7675,0,3,"(0, 0, 0)",1,1,0,0.2087,0.0,0 +376.57896380166994,2019-01-06,LUSIGNAN,55,2.9,8.7675,0,1,"(0, 0)",2,1,0,0.4815,0.0,0 +376.57896380166994,2019-01-06,LUSIGNAN,55,2.9,8.7675,0,2,"(0, 1)",1,1,0,0.30760000000000004,0.0,0 +376.57896380166994,2019-01-06,LUSIGNAN,55,2.9,8.7675,0,4,"(0, 2)",0,1,0,0.1097,0.0,0 +376.57896380166994,2019-01-06,LUSIGNAN,55,2.9,8.7675,0,0,"(0,)",5,1,0,0.7497,0.0,0 +379.4341890859216,2019-01-07,LUSIGNAN,56,4.9,8.789444443999999,0,3,"(0, 0, 0)",1,1,0,0.2236,0.0,0 +379.4341890859216,2019-01-07,LUSIGNAN,56,4.9,8.789444443999999,0,1,"(0, 0)",2,1,0,0.4964000000000001,0.0,0 +379.4341890859216,2019-01-07,LUSIGNAN,56,4.9,8.789444443999999,0,2,"(0, 1)",1,1,0,0.3225000000000001,0.0,0 +379.4341890859216,2019-01-07,LUSIGNAN,56,4.9,8.789444443999999,0,4,"(0, 2)",0,1,0,0.1246,0.0,0 +379.4341890859216,2019-01-07,LUSIGNAN,56,4.9,8.789444443999999,0,0,"(0,)",5,1,0,0.7646000000000001,0.0,0 +384.380545962367,2019-01-08,LUSIGNAN,57,7.5,8.812777778,0,3,"(0, 0, 0)",1,1,0,0.2411,0.0,0 +384.380545962367,2019-01-08,LUSIGNAN,57,7.5,8.812777778,0,1,"(0, 0)",2,1,0,0.5139,0.0,0 +384.380545962367,2019-01-08,LUSIGNAN,57,7.5,8.812777778,0,2,"(0, 1)",1,1,0,0.3400000000000001,0.0,0 +384.380545962367,2019-01-08,LUSIGNAN,57,7.5,8.812777778,0,4,"(0, 2)",0,1,0,0.1421,0.0,0 +384.380545962367,2019-01-08,LUSIGNAN,57,7.5,8.812777778,0,0,"(0,)",5,1,0,0.7821,0.0,0 +392.0207437569313,2019-01-09,LUSIGNAN,58,3.8,8.837222222000001,0,3,"(0, 0, 0)",1,1,0,0.2549,0.0,0 +392.0207437569313,2019-01-09,LUSIGNAN,58,3.8,8.837222222000001,0,1,"(0, 0)",2,1,0,0.5277000000000001,0.0,0 +392.0207437569313,2019-01-09,LUSIGNAN,58,3.8,8.837222222000001,0,2,"(0, 1)",1,1,0,0.3538000000000001,0.0,0 +392.0207437569313,2019-01-09,LUSIGNAN,58,3.8,8.837222222000001,0,4,"(0, 2)",0,1,0,0.1559,0.0,0 +392.0207437569313,2019-01-09,LUSIGNAN,58,3.8,8.837222222000001,0,0,"(0,)",5,1,0,0.7959,0.0,0 +395.77802352044375,2019-01-10,LUSIGNAN,59,1.8,8.862777778,0,3,"(0, 0, 0)",1,1,0,0.26669999999999994,0.0,0 +395.77802352044375,2019-01-10,LUSIGNAN,59,1.8,8.862777778,0,1,"(0, 0)",2,1,0,0.5395000000000001,0.0,0 +395.77802352044375,2019-01-10,LUSIGNAN,59,1.8,8.862777778,0,2,"(0, 1)",1,1,0,0.3656,0.0,0 +395.77802352044375,2019-01-10,LUSIGNAN,59,1.8,8.862777778,0,4,"(0, 2)",0,1,0,0.16770000000000002,0.0,0 +395.77802352044375,2019-01-10,LUSIGNAN,59,1.8,8.862777778,0,0,"(0,)",5,1,0,0.8077000000000001,0.0,0 +397.4063614538743,2019-01-11,LUSIGNAN,60,1.9,8.889722222,0,3,"(0, 0, 0)",1,1,0,0.2786,0.0,0 +397.4063614538743,2019-01-11,LUSIGNAN,60,1.9,8.889722222,0,1,"(0, 0)",2,1,0,0.5514000000000001,0.0,0 +397.4063614538743,2019-01-11,LUSIGNAN,60,1.9,8.889722222,0,2,"(0, 1)",1,1,0,0.3775000000000001,0.0,0 +397.4063614538743,2019-01-11,LUSIGNAN,60,1.9,8.889722222,0,4,"(0, 2)",0,1,0,0.1796,0.0,0 +397.4063614538743,2019-01-11,LUSIGNAN,60,1.9,8.889722222,0,0,"(0,)",5,1,0,0.8196000000000001,0.0,0 +399.42044549670686,2019-01-12,LUSIGNAN,61,5.2,8.917777778,0,3,"(0, 0, 0)",1,1,0,0.29379999999999995,0.0,0 +399.42044549670686,2019-01-12,LUSIGNAN,61,5.2,8.917777778,0,1,"(0, 0)",2,1,0,0.5666000000000001,0.0,0 +399.42044549670686,2019-01-12,LUSIGNAN,61,5.2,8.917777778,0,2,"(0, 1)",1,1,0,0.3927000000000001,0.0,0 +399.42044549670686,2019-01-12,LUSIGNAN,61,5.2,8.917777778,0,4,"(0, 2)",0,1,0,0.1948,0.0,0 +399.42044549670686,2019-01-12,LUSIGNAN,61,5.2,8.917777778,0,0,"(0,)",5,1,0,0.8348000000000001,0.0,0 +404.62124345520135,2019-01-13,LUSIGNAN,62,7.1,8.946944444,0,3,"(0, 0, 0)",1,1,0,0.31089999999999995,0.0,0 +404.62124345520135,2019-01-13,LUSIGNAN,62,7.1,8.946944444,0,1,"(0, 0)",3,1,0,0.5837000000000001,0.0,0 +404.62124345520135,2019-01-13,LUSIGNAN,62,7.1,8.946944444,0,2,"(0, 1)",1,1,0,0.4098000000000001,0.0,0 +404.62124345520135,2019-01-13,LUSIGNAN,62,7.1,8.946944444,0,4,"(0, 2)",0,1,0,0.2119,0.0,0 +404.62124345520135,2019-01-13,LUSIGNAN,62,7.1,8.946944444,0,0,"(0,)",5,1,0,0.8519000000000001,0.0,0 +411.89867027340796,2019-01-14,LUSIGNAN,63,8.4,8.976944443999999,0,3,"(0, 0, 0)",1,1,0,0.32809999999999995,0.0,0 +411.89867027340796,2019-01-14,LUSIGNAN,63,8.4,8.976944443999999,0,1,"(0, 0)",3,1,0,0.6009000000000001,0.0,0 +411.89867027340796,2019-01-14,LUSIGNAN,63,8.4,8.976944443999999,0,2,"(0, 1)",1,1,0,0.4270000000000001,0.0,0 +411.89867027340796,2019-01-14,LUSIGNAN,63,8.4,8.976944443999999,0,4,"(0, 2)",0,1,0,0.2291,0.0,0 +411.89867027340796,2019-01-14,LUSIGNAN,63,8.4,8.976944443999999,0,0,"(0,)",5,1,0,0.8691000000000001,0.0,0 +417.70740869439095,2019-01-14,LUSIGNAN,63,8.4,8.976944443999999,0,5,"(0, 1, 0)",0,1,0,0.017200000000000003,0.0,0 +420.3477443402923,2019-01-15,LUSIGNAN,64,7.1,9.008333333,0,3,"(0, 0, 0)",1,1,0,0.34519999999999995,0.0,0 +420.3477443402923,2019-01-15,LUSIGNAN,64,7.1,9.008333333,0,1,"(0, 0)",3,1,0,0.6180000000000001,0.0,0 +420.3477443402923,2019-01-15,LUSIGNAN,64,7.1,9.008333333,0,5,"(0, 1, 0)",0,1,0,0.034300000000000004,0.0,0 +420.3477443402923,2019-01-15,LUSIGNAN,64,7.1,9.008333333,0,2,"(0, 1)",2,1,0,0.4441000000000001,0.0,0 +420.3477443402923,2019-01-15,LUSIGNAN,64,7.1,9.008333333,0,4,"(0, 2)",1,1,0,0.2462,0.0,0 +420.3477443402923,2019-01-15,LUSIGNAN,64,7.1,9.008333333,0,0,"(0,)",5,1,0,0.8862000000000001,0.0,0 +427.1703319823609,2019-01-16,LUSIGNAN,65,2.8,9.040277778,0,3,"(0, 0, 0)",1,1,0,0.35799999999999993,0.0,0 +427.1703319823609,2019-01-16,LUSIGNAN,65,2.8,9.040277778,0,1,"(0, 0)",3,1,0,0.6308000000000001,0.0,0 +427.1703319823609,2019-01-16,LUSIGNAN,65,2.8,9.040277778,0,5,"(0, 1, 0)",0,1,0,0.0471,0.0,0 +427.1703319823609,2019-01-16,LUSIGNAN,65,2.8,9.040277778,0,2,"(0, 1)",2,1,0,0.4569,0.0,0 +427.1703319823609,2019-01-16,LUSIGNAN,65,2.8,9.040277778,0,4,"(0, 2)",1,1,0,0.259,0.0,0 +427.1703319823609,2019-01-16,LUSIGNAN,65,2.8,9.040277778,0,0,"(0,)",5,1,0,0.8990000000000001,0.0,0 +429.95658824559416,2019-01-17,LUSIGNAN,66,6.6,9.073888889,0,3,"(0, 0, 0)",1,1,0,0.3745999999999999,0.0,0 +429.95658824559416,2019-01-17,LUSIGNAN,66,6.6,9.073888889,0,1,"(0, 0)",3,1,0,0.6474000000000001,0.0,0 +429.95658824559416,2019-01-17,LUSIGNAN,66,6.6,9.073888889,0,5,"(0, 1, 0)",0,1,0,0.0637,0.0,0 +429.95658824559416,2019-01-17,LUSIGNAN,66,6.6,9.073888889,0,2,"(0, 1)",2,1,0,0.4735,0.0,0 +429.95658824559416,2019-01-17,LUSIGNAN,66,6.6,9.073888889,0,4,"(0, 2)",1,1,0,0.2756,0.0,0 +429.95658824559416,2019-01-17,LUSIGNAN,66,6.6,9.073888889,0,0,"(0,)",5,1,0,0.9156,0.0,0 +436.77888507459517,2019-01-18,LUSIGNAN,67,2.2,9.108055556,0,3,"(0, 0, 0)",1,1,0,0.3867999999999999,0.0,0 +436.77888507459517,2019-01-18,LUSIGNAN,67,2.2,9.108055556,0,1,"(0, 0)",3,1,0,0.6596000000000001,0.0,0 +436.77888507459517,2019-01-18,LUSIGNAN,67,2.2,9.108055556,0,5,"(0, 1, 0)",0,1,0,0.07590000000000001,0.0,0 +436.77888507459517,2019-01-18,LUSIGNAN,67,2.2,9.108055556,0,2,"(0, 1)",2,1,0,0.4857,0.0,0 +436.77888507459517,2019-01-18,LUSIGNAN,67,2.2,9.108055556,0,4,"(0, 2)",1,1,0,0.2878,0.0,0 +436.77888507459517,2019-01-18,LUSIGNAN,67,2.2,9.108055556,0,0,"(0,)",5,1,0,0.9278,0.0,0 +438.79257798194726,2019-01-19,LUSIGNAN,68,4.6,9.143055556,0,3,"(0, 0, 0)",1,1,0,0.4013999999999999,0.0,0 +438.79257798194726,2019-01-19,LUSIGNAN,68,4.6,9.143055556,0,1,"(0, 0)",3,1,0,0.6742,0.0,0 +438.79257798194726,2019-01-19,LUSIGNAN,68,4.6,9.143055556,0,5,"(0, 1, 0)",0,1,0,0.0905,0.0,0 +438.79257798194726,2019-01-19,LUSIGNAN,68,4.6,9.143055556,0,2,"(0, 1)",2,1,0,0.5003,0.0,0 +438.79257798194726,2019-01-19,LUSIGNAN,68,4.6,9.143055556,0,4,"(0, 2)",1,1,0,0.3024,0.0,0 +438.79257798194726,2019-01-19,LUSIGNAN,68,4.6,9.143055556,0,0,"(0,)",5,1,0,0.9424,0.0,0 +443.48566894124,2019-01-20,LUSIGNAN,69,6.2,9.179444444,0,3,"(0, 0, 0)",1,1,0,0.4175999999999999,0.0,0 +443.48566894124,2019-01-20,LUSIGNAN,69,6.2,9.179444444,0,1,"(0, 0)",3,1,0,0.6904,0.0,0 +443.48566894124,2019-01-20,LUSIGNAN,69,6.2,9.179444444,0,5,"(0, 1, 0)",0,1,0,0.10670000000000003,0.0,0 +443.48566894124,2019-01-20,LUSIGNAN,69,6.2,9.179444444,0,2,"(0, 1)",2,1,0,0.5165,0.0,0 +443.48566894124,2019-01-20,LUSIGNAN,69,6.2,9.179444444,0,4,"(0, 2)",1,1,0,0.3186,0.0,0 +443.48566894124,2019-01-20,LUSIGNAN,69,6.2,9.179444444,0,0,"(0,)",5,1,0,0.9586,0.0,0 +449.5396357450808,2019-01-21,LUSIGNAN,70,1.1,9.216388889,0,3,"(0, 0, 0)",1,1,0,0.4286999999999999,0.0,0 +449.5396357450808,2019-01-21,LUSIGNAN,70,1.1,9.216388889,0,1,"(0, 0)",3,1,0,0.7015,0.0,0 +449.5396357450808,2019-01-21,LUSIGNAN,70,1.1,9.216388889,0,5,"(0, 1, 0)",0,1,0,0.11780000000000003,0.0,0 +449.5396357450808,2019-01-21,LUSIGNAN,70,1.1,9.216388889,0,2,"(0, 1)",2,1,0,0.5276,0.0,0 +449.5396357450808,2019-01-21,LUSIGNAN,70,1.1,9.216388889,0,4,"(0, 2)",1,1,0,0.3297,0.0,0 +449.5396357450808,2019-01-21,LUSIGNAN,70,1.1,9.216388889,0,0,"(0,)",5,1,0,0.9697,0.0,0 +450.6993179726323,2019-01-22,LUSIGNAN,71,2.1,9.254166667,0,3,"(0, 0, 0)",1,1,0,0.4407999999999999,0.0,0 +450.6993179726323,2019-01-22,LUSIGNAN,71,2.1,9.254166667,0,1,"(0, 0)",3,1,0,0.7136,0.0,0 +450.6993179726323,2019-01-22,LUSIGNAN,71,2.1,9.254166667,0,5,"(0, 1, 0)",0,1,0,0.12990000000000002,0.0,0 +450.6993179726323,2019-01-22,LUSIGNAN,71,2.1,9.254166667,0,2,"(0, 1)",2,1,0,0.5397,0.0,0 +450.6993179726323,2019-01-22,LUSIGNAN,71,2.1,9.254166667,0,4,"(0, 2)",1,1,0,0.3418,0.0,0 +450.6993179726323,2019-01-22,LUSIGNAN,71,2.1,9.254166667,0,0,"(0,)",5,1,0,0.9818,0.0,0 +452.83479025709715,2019-01-23,LUSIGNAN,72,4.6,9.292777778,0,3,"(0, 0, 0)",1,1,0,0.4553999999999999,0.0,0 +452.83479025709715,2019-01-23,LUSIGNAN,72,4.6,9.292777778,0,1,"(0, 0)",3,1,0,0.7282,0.0,0 +452.83479025709715,2019-01-23,LUSIGNAN,72,4.6,9.292777778,0,5,"(0, 1, 0)",0,1,0,0.14450000000000002,0.0,0 +452.83479025709715,2019-01-23,LUSIGNAN,72,4.6,9.292777778,0,2,"(0, 1)",2,1,0,0.5542999999999999,0.0,0 +452.83479025709715,2019-01-23,LUSIGNAN,72,4.6,9.292777778,0,4,"(0, 2)",1,1,0,0.3564,0.0,0 +452.83479025709715,2019-01-23,LUSIGNAN,72,4.6,9.292777778,0,0,"(0,)",5,1,0,0.9964,0.0,0 +457.52788121638997,2019-01-24,LUSIGNAN,73,1.4,9.332222222,0,3,"(0, 0, 0)",1,1,0,0.4668,0.0,0 +457.52788121638997,2019-01-24,LUSIGNAN,73,1.4,9.332222222,0,1,"(0, 0)",3,1,0,0.7395999999999999,0.0,0 +457.52788121638997,2019-01-24,LUSIGNAN,73,1.4,9.332222222,0,5,"(0, 1, 0)",0,1,0,0.1559,0.0,0 +457.52788121638997,2019-01-24,LUSIGNAN,73,1.4,9.332222222,0,2,"(0, 1)",2,1,0,0.5656999999999999,0.0,0 +457.52788121638997,2019-01-24,LUSIGNAN,73,1.4,9.332222222,0,4,"(0, 2)",1,1,0,0.3678,0.0,0 +457.52788121638997,2019-01-24,LUSIGNAN,73,1.4,9.332222222,0,0,"(0,)",6,1,0,1.0,0.0,0 +458.81646646885406,2019-01-25,LUSIGNAN,74,5.0,9.372777778,0,3,"(0, 0, 0)",2,1,0,0.4818,0.0,0 +458.81646646885406,2019-01-25,LUSIGNAN,74,5.0,9.372777778,0,1,"(0, 0)",3,1,0,0.7545999999999999,0.0,0 +458.81646646885406,2019-01-25,LUSIGNAN,74,5.0,9.372777778,0,5,"(0, 1, 0)",0,1,0,0.1709,0.0,0 +458.81646646885406,2019-01-25,LUSIGNAN,74,5.0,9.372777778,0,2,"(0, 1)",2,1,0,0.5806999999999999,0.0,0 +458.81646646885406,2019-01-25,LUSIGNAN,74,5.0,9.372777778,0,4,"(0, 2)",1,1,0,0.3828,0.0,0 +458.81646646885406,2019-01-25,LUSIGNAN,74,5.0,9.372777778,0,0,"(0,)",6,1,0,1.0,0.0,0 +463.84752020915454,2019-01-26,LUSIGNAN,75,8.6,9.413611111,0,3,"(0, 0, 0)",2,1,0,0.4985999999999999,0.0,0 +463.84752020915454,2019-01-26,LUSIGNAN,75,8.6,9.413611111,0,1,"(0, 0)",3,1,0,0.7714,0.0,0 +463.84752020915454,2019-01-26,LUSIGNAN,75,8.6,9.413611111,0,5,"(0, 1, 0)",0,1,0,0.1877,0.0,0 +463.84752020915454,2019-01-26,LUSIGNAN,75,8.6,9.413611111,0,2,"(0, 1)",2,1,0,0.5974999999999999,0.0,0 +463.84752020915454,2019-01-26,LUSIGNAN,75,8.6,9.413611111,0,4,"(0, 2)",1,1,0,0.3996,0.0,0 +463.84752020915454,2019-01-26,LUSIGNAN,75,8.6,9.413611111,0,0,"(0,)",6,1,0,1.0,0.0,0 +472.47450547606735,2019-01-27,LUSIGNAN,76,5.3,9.455277778,0,3,"(0, 0, 0)",2,1,0,0.5138999999999999,0.0,0 +472.47450547606735,2019-01-27,LUSIGNAN,76,5.3,9.455277778,0,1,"(0, 0)",3,1,0,0.7867,0.0,0 +472.47450547606735,2019-01-27,LUSIGNAN,76,5.3,9.455277778,0,5,"(0, 1, 0)",0,1,0,0.203,0.0,0 +472.47450547606735,2019-01-27,LUSIGNAN,76,5.3,9.455277778,0,2,"(0, 1)",2,1,0,0.6127999999999999,0.0,0 +472.47450547606735,2019-01-27,LUSIGNAN,76,5.3,9.455277778,0,4,"(0, 2)",1,1,0,0.4149,0.0,0 +472.47450547606735,2019-01-27,LUSIGNAN,76,5.3,9.455277778,0,0,"(0,)",6,1,0,1.0,0.0,0 +477.7603305895752,2019-01-28,LUSIGNAN,77,5.8,9.498055556,0,3,"(0, 0, 0)",2,1,0,0.5297,0.0,0 +477.7603305895752,2019-01-28,LUSIGNAN,77,5.8,9.498055556,0,1,"(0, 0)",3,1,0,0.8025,0.0,0 +477.7603305895752,2019-01-28,LUSIGNAN,77,5.8,9.498055556,0,5,"(0, 1, 0)",0,1,0,0.2188,0.0,0 +477.7603305895752,2019-01-28,LUSIGNAN,77,5.8,9.498055556,0,2,"(0, 1)",2,1,0,0.6285999999999999,0.0,0 +477.7603305895752,2019-01-28,LUSIGNAN,77,5.8,9.498055556,0,4,"(0, 2)",1,1,0,0.4307,0.0,0 +477.7603305895752,2019-01-28,LUSIGNAN,77,5.8,9.498055556,0,0,"(0,)",6,1,0,1.0,0.0,0 +483.4724479777278,2019-01-29,LUSIGNAN,78,3.9,9.541111111000001,0,3,"(0, 0, 0)",2,1,0,0.5436,0.0,0 +483.4724479777278,2019-01-29,LUSIGNAN,78,3.9,9.541111111000001,0,1,"(0, 0)",3,1,0,0.8164,0.0,0 +483.4724479777278,2019-01-29,LUSIGNAN,78,3.9,9.541111111000001,0,5,"(0, 1, 0)",0,1,0,0.2327,0.0,0 +483.4724479777278,2019-01-29,LUSIGNAN,78,3.9,9.541111111000001,0,2,"(0, 1)",2,1,0,0.6425,0.0,0 +483.4724479777278,2019-01-29,LUSIGNAN,78,3.9,9.541111111000001,0,4,"(0, 2)",1,1,0,0.4446,0.0,0 +483.4724479777278,2019-01-29,LUSIGNAN,78,3.9,9.541111111000001,0,0,"(0,)",6,1,0,1.0,0.0,0 +487.3068840559447,2019-01-30,LUSIGNAN,79,3.1,9.585,0,3,"(0, 0, 0)",2,1,0,0.5567,0.0,0 +487.3068840559447,2019-01-30,LUSIGNAN,79,3.1,9.585,0,1,"(0, 0)",3,1,0,0.8295,0.0,0 +487.3068840559447,2019-01-30,LUSIGNAN,79,3.1,9.585,0,5,"(0, 1, 0)",1,1,0,0.2458,0.0,0 +487.3068840559447,2019-01-30,LUSIGNAN,79,3.1,9.585,0,2,"(0, 1)",2,1,0,0.6556,0.0,0 +487.3068840559447,2019-01-30,LUSIGNAN,79,3.1,9.585,0,4,"(0, 2)",1,1,0,0.4577,0.0,0 +487.3068840559447,2019-01-30,LUSIGNAN,79,3.1,9.585,0,0,"(0,)",6,1,0,1.0,0.0,0 +490.5313070472091,2019-01-31,LUSIGNAN,80,5.7,9.629444443999999,0,3,"(0, 0, 0)",2,1,0,0.5724,0.0,0 +490.5313070472091,2019-01-31,LUSIGNAN,80,5.7,9.629444443999999,0,1,"(0, 0)",3,1,0,0.8452000000000001,0.0,0 +490.5313070472091,2019-01-31,LUSIGNAN,80,5.7,9.629444443999999,0,5,"(0, 1, 0)",1,1,0,0.2615,0.0,0 +490.5313070472091,2019-01-31,LUSIGNAN,80,5.7,9.629444443999999,0,2,"(0, 1)",2,1,0,0.6713,0.0,0 +490.5313070472091,2019-01-31,LUSIGNAN,80,5.7,9.629444443999999,0,4,"(0, 2)",1,1,0,0.4734,0.0,0 +490.5313070472091,2019-01-31,LUSIGNAN,80,5.7,9.629444443999999,0,0,"(0,)",6,1,0,1.0,0.0,0 +496.15804398769063,2019-02-01,LUSIGNAN,81,5.6,9.674444444,0,3,"(0, 0, 0)",2,1,0,0.588,0.0,0 +496.15804398769063,2019-02-01,LUSIGNAN,81,5.6,9.674444444,0,1,"(0, 0)",3,1,0,0.8608,0.0,0 +496.15804398769063,2019-02-01,LUSIGNAN,81,5.6,9.674444444,0,5,"(0, 1, 0)",1,1,0,0.2771,0.0,0 +496.15804398769063,2019-02-01,LUSIGNAN,81,5.6,9.674444444,0,2,"(0, 1)",2,1,0,0.6869,0.0,0 +496.15804398769063,2019-02-01,LUSIGNAN,81,5.6,9.674444444,0,4,"(0, 2)",1,1,0,0.489,0.0,0 +496.15804398769063,2019-02-01,LUSIGNAN,81,5.6,9.674444444,0,0,"(0,)",6,1,0,1.0,0.0,0 +502.0688791135044,2019-02-02,LUSIGNAN,82,2.2,9.720277778,0,3,"(0, 0, 0)",2,1,0,0.6002,0.0,0 +502.0688791135044,2019-02-02,LUSIGNAN,82,2.2,9.720277778,0,1,"(0, 0)",3,1,0,0.873,0.0,0 +502.0688791135044,2019-02-02,LUSIGNAN,82,2.2,9.720277778,0,5,"(0, 1, 0)",1,1,0,0.2893,0.0,0 +502.0688791135044,2019-02-02,LUSIGNAN,82,2.2,9.720277778,0,2,"(0, 1)",2,1,0,0.6990999999999999,0.0,0 +502.0688791135044,2019-02-02,LUSIGNAN,82,2.2,9.720277778,0,6,"(0, 2, 0)",0,1,0,0.0122,0.0,0 +502.0688791135044,2019-02-02,LUSIGNAN,82,2.2,9.720277778,0,4,"(0, 2)",2,1,0,0.5012,0.0,0 +502.0688791135044,2019-02-02,LUSIGNAN,82,2.2,9.720277778,0,0,"(0,)",6,1,0,1.0,0.0,0 +504.0825720208565,2019-02-03,LUSIGNAN,83,2.8,9.766388889,0,3,"(0, 0, 0)",2,1,0,0.613,0.0,0 +504.0825720208565,2019-02-03,LUSIGNAN,83,2.8,9.766388889,0,1,"(0, 0)",3,1,0,0.8858,0.0,0 +504.0825720208565,2019-02-03,LUSIGNAN,83,2.8,9.766388889,0,5,"(0, 1, 0)",1,1,0,0.3021,0.0,0 +504.0825720208565,2019-02-03,LUSIGNAN,83,2.8,9.766388889,0,2,"(0, 1)",2,1,0,0.7119,0.0,0 +504.0825720208565,2019-02-03,LUSIGNAN,83,2.8,9.766388889,0,6,"(0, 2, 0)",0,1,0,0.025,0.0,0 +504.0825720208565,2019-02-03,LUSIGNAN,83,2.8,9.766388889,0,4,"(0, 2)",2,1,0,0.514,0.0,0 +504.0825720208565,2019-02-03,LUSIGNAN,83,2.8,9.766388889,0,0,"(0,)",6,1,0,1.0,0.0,0 +506.86882828408966,2019-02-04,LUSIGNAN,84,0.0,9.813333333,0,3,"(0, 0, 0)",2,1,0,0.623,0.0,0 +506.86882828408966,2019-02-04,LUSIGNAN,84,0.0,9.813333333,0,1,"(0, 0)",4,1,0,0.8958,0.0,0 +506.86882828408966,2019-02-04,LUSIGNAN,84,0.0,9.813333333,0,5,"(0, 1, 0)",1,1,0,0.3121,0.0,0 +506.86882828408966,2019-02-04,LUSIGNAN,84,0.0,9.813333333,0,2,"(0, 1)",2,1,0,0.7219,0.0,0 +506.86882828408966,2019-02-04,LUSIGNAN,84,0.0,9.813333333,0,6,"(0, 2, 0)",0,1,0,0.035,0.0,0 +506.86882828408966,2019-02-04,LUSIGNAN,84,0.0,9.813333333,0,4,"(0, 2)",2,1,0,0.524,0.0,0 +506.86882828408966,2019-02-04,LUSIGNAN,84,0.0,9.813333333,0,0,"(0,)",6,1,0,1.0,0.0,0 +506.94888337997816,2019-02-05,LUSIGNAN,85,4.9,9.860277778,0,3,"(0, 0, 0)",2,1,0,0.6379,0.0,0 +506.94888337997816,2019-02-05,LUSIGNAN,85,4.9,9.860277778,0,1,"(0, 0)",4,1,0,0.9107,0.0,0 +506.94888337997816,2019-02-05,LUSIGNAN,85,4.9,9.860277778,0,5,"(0, 1, 0)",1,1,0,0.327,0.0,0 +506.94888337997816,2019-02-05,LUSIGNAN,85,4.9,9.860277778,0,2,"(0, 1)",2,1,0,0.7368,0.0,0 +506.94888337997816,2019-02-05,LUSIGNAN,85,4.9,9.860277778,0,6,"(0, 2, 0)",0,1,0,0.0499,0.0,0 +506.94888337997816,2019-02-05,LUSIGNAN,85,4.9,9.860277778,0,4,"(0, 2)",2,1,0,0.5389,0.0,0 +506.94888337997816,2019-02-05,LUSIGNAN,85,4.9,9.860277778,0,0,"(0,)",6,1,0,1.0,0.0,0 +511.89524025642373,2019-02-06,LUSIGNAN,86,9.4,9.908333333,0,3,"(0, 0, 0)",2,1,0,0.6531,0.0,0 +511.89524025642373,2019-02-06,LUSIGNAN,86,9.4,9.908333333,0,1,"(0, 0)",4,1,0,0.9259,0.0,0 +511.89524025642373,2019-02-06,LUSIGNAN,86,9.4,9.908333333,0,5,"(0, 1, 0)",1,1,0,0.3422,0.0,0 +511.89524025642373,2019-02-06,LUSIGNAN,86,9.4,9.908333333,0,2,"(0, 1)",3,1,0,0.752,0.0,0 +511.89524025642373,2019-02-06,LUSIGNAN,86,9.4,9.908333333,0,6,"(0, 2, 0)",0,1,0,0.0651,0.0,0 +511.89524025642373,2019-02-06,LUSIGNAN,86,9.4,9.908333333,0,4,"(0, 2)",2,1,0,0.5541,0.0,0 +511.89524025642373,2019-02-06,LUSIGNAN,86,9.4,9.908333333,0,0,"(0,)",6,1,0,1.0,0.0,0 +521.2251738077221,2019-02-07,LUSIGNAN,87,9.1,9.956388889,0,3,"(0, 0, 0)",2,1,0,0.6689,0.0,0 +521.2251738077221,2019-02-07,LUSIGNAN,87,9.1,9.956388889,0,1,"(0, 0)",4,1,0,0.9417,0.0,0 +521.2251738077221,2019-02-07,LUSIGNAN,87,9.1,9.956388889,0,5,"(0, 1, 0)",1,1,0,0.358,0.0,0 +521.2251738077221,2019-02-07,LUSIGNAN,87,9.1,9.956388889,0,2,"(0, 1)",3,1,0,0.7678,0.0,0 +521.2251738077221,2019-02-07,LUSIGNAN,87,9.1,9.956388889,0,6,"(0, 2, 0)",0,1,0,0.0809,0.0,0 +521.2251738077221,2019-02-07,LUSIGNAN,87,9.1,9.956388889,0,4,"(0, 2)",2,1,0,0.5699000000000001,0.0,0 +521.2251738077221,2019-02-07,LUSIGNAN,87,9.1,9.956388889,0,0,"(0,)",6,1,0,1.0,0.0,0 +530.2932671674107,2019-02-08,LUSIGNAN,88,8.2,10.00527778,0,3,"(0, 0, 0)",2,1,0,0.6865000000000001,0.0,0 +530.2932671674107,2019-02-08,LUSIGNAN,88,8.2,10.00527778,0,1,"(0, 0)",4,1,0,0.9593,0.0,0 +530.2932671674107,2019-02-08,LUSIGNAN,88,8.2,10.00527778,0,5,"(0, 1, 0)",1,1,0,0.3756,0.0,0 +530.2932671674107,2019-02-08,LUSIGNAN,88,8.2,10.00527778,0,2,"(0, 1)",3,1,0,0.7854000000000001,0.0,0 +530.2932671674107,2019-02-08,LUSIGNAN,88,8.2,10.00527778,0,6,"(0, 2, 0)",0,1,0,0.0985,0.0,0 +530.2932671674107,2019-02-08,LUSIGNAN,88,8.2,10.00527778,0,4,"(0, 2)",2,1,0,0.5875000000000001,0.0,0 +530.2932671674107,2019-02-08,LUSIGNAN,88,8.2,10.00527778,0,0,"(0,)",6,1,0,1.0,0.0008796300000000201,0 +538.5636856268857,2019-02-09,LUSIGNAN,89,9.2,10.05444444,0,3,"(0, 0, 0)",2,1,0,0.7021000000000002,0.0,0 +538.5636856268857,2019-02-09,LUSIGNAN,89,9.2,10.05444444,0,1,"(0, 0)",4,1,0,0.9749,0.0,0 +538.5636856268857,2019-02-09,LUSIGNAN,89,9.2,10.05444444,0,5,"(0, 1, 0)",1,1,0,0.3912,0.0,0 +538.5636856268857,2019-02-09,LUSIGNAN,89,9.2,10.05444444,0,2,"(0, 1)",3,1,0,0.8010000000000002,0.0,0 +538.5636856268857,2019-02-09,LUSIGNAN,89,9.2,10.05444444,0,6,"(0, 2, 0)",0,1,0,0.1141,0.0,0 +538.5636856268857,2019-02-09,LUSIGNAN,89,9.2,10.05444444,0,4,"(0, 2)",2,1,0,0.6031000000000002,0.0,0 +538.5636856268857,2019-02-09,LUSIGNAN,89,9.2,10.05444444,0,0,"(0,)",6,1,0,1.0,0.00995370333333323,0 +547.7193096345645,2019-02-10,LUSIGNAN,90,7.8,10.10361111,0,3,"(0, 0, 0)",2,1,0,0.7199000000000002,0.0,0 +547.7193096345645,2019-02-10,LUSIGNAN,90,7.8,10.10361111,0,1,"(0, 0)",4,1,0,0.9927,0.0,0 +547.7193096345645,2019-02-10,LUSIGNAN,90,7.8,10.10361111,0,5,"(0, 1, 0)",1,1,0,0.409,0.0,0 +547.7193096345645,2019-02-10,LUSIGNAN,90,7.8,10.10361111,0,2,"(0, 1)",3,1,0,0.8188000000000002,0.0,0 +547.7193096345645,2019-02-10,LUSIGNAN,90,7.8,10.10361111,0,6,"(0, 2, 0)",0,1,0,0.13190000000000002,0.0,0 +547.7193096345645,2019-02-10,LUSIGNAN,90,7.8,10.10361111,0,4,"(0, 2)",2,1,0,0.6209000000000002,0.0,0 +547.7193096345645,2019-02-10,LUSIGNAN,90,7.8,10.10361111,0,0,"(0,)",6,1,0,1.0,0.02722222166666644,0 +555.630441539367,2019-02-11,LUSIGNAN,91,6.5,10.15361111,0,3,"(0, 0, 0)",3,1,0,0.7364000000000002,0.0,0 +555.630441539367,2019-02-11,LUSIGNAN,91,6.5,10.15361111,0,1,"(0, 0)",4,1,0,1.0,0.0,0 +555.630441539367,2019-02-11,LUSIGNAN,91,6.5,10.15361111,0,5,"(0, 1, 0)",1,1,0,0.4255,0.0,0 +555.630441539367,2019-02-11,LUSIGNAN,91,6.5,10.15361111,0,2,"(0, 1)",3,1,0,0.8353000000000002,0.0,0 +555.630441539367,2019-02-11,LUSIGNAN,91,6.5,10.15361111,0,6,"(0, 2, 0)",0,1,0,0.14840000000000006,0.0,0 +555.630441539367,2019-02-11,LUSIGNAN,91,6.5,10.15361111,0,4,"(0, 2)",2,1,0,0.6374000000000002,0.0,0 +555.630441539367,2019-02-11,LUSIGNAN,91,6.5,10.15361111,0,0,"(0,)",6,1,0,1.0,0.052824073333333096,0 +561.9408837938336,2019-02-12,LUSIGNAN,92,4.9,10.20416667,0,3,"(0, 0, 0)",3,1,0,0.7513000000000002,0.0,0 +561.9408837938336,2019-02-12,LUSIGNAN,92,4.9,10.20416667,0,1,"(0, 0)",4,1,0,1.0,0.034027778333333224,0 +561.9408837938336,2019-02-12,LUSIGNAN,92,4.9,10.20416667,0,5,"(0, 1, 0)",1,1,0,0.4404,0.0,0 +561.9408837938336,2019-02-12,LUSIGNAN,92,4.9,10.20416667,0,2,"(0, 1)",3,1,0,0.8502000000000002,0.0,0 +561.9408837938336,2019-02-12,LUSIGNAN,92,4.9,10.20416667,0,6,"(0, 2, 0)",0,1,0,0.16330000000000006,0.0,0 +561.9408837938336,2019-02-12,LUSIGNAN,92,4.9,10.20416667,0,4,"(0, 2)",2,1,0,0.6523000000000002,0.0,0 +561.9408837938336,2019-02-12,LUSIGNAN,92,4.9,10.20416667,0,0,"(0,)",6,1,0,1.0,0.08685185166666631,0 +566.8872406702799,2019-02-13,LUSIGNAN,93,6.3,10.25472222,0,3,"(0, 0, 0)",3,1,0,0.7676000000000002,0.0,0 +566.8872406702799,2019-02-13,LUSIGNAN,93,6.3,10.25472222,0,1,"(0, 0)",4,1,0,1.0,0.0764814816666665,0 +566.8872406702799,2019-02-13,LUSIGNAN,93,6.3,10.25472222,0,5,"(0, 1, 0)",1,1,0,0.4567,0.0,0 +566.8872406702799,2019-02-13,LUSIGNAN,93,6.3,10.25472222,0,2,"(0, 1)",3,1,0,0.8665000000000002,0.0,0 +566.8872406702799,2019-02-13,LUSIGNAN,93,6.3,10.25472222,0,6,"(0, 2, 0)",0,1,0,0.17960000000000004,0.0,0 +566.8872406702799,2019-02-13,LUSIGNAN,93,6.3,10.25472222,0,4,"(0, 2)",2,1,0,0.6686000000000002,0.0,0 +566.8872406702799,2019-02-13,LUSIGNAN,93,6.3,10.25472222,0,0,"(0,)",7,2,0,1.0,0.1293055549999996,0 +567.2965383499003,2019-02-13,LUSIGNAN,93,6.3,10.25472222,0,7,"(0, 4)",0,1,0,0.016300000000000002,0.0,0 +573.0267058645843,2019-02-14,LUSIGNAN,94,6.6,10.30555556,0,3,"(0, 0, 0)",3,1,0,0.7842000000000001,0.0,0 +573.0267058645843,2019-02-14,LUSIGNAN,94,6.6,10.30555556,0,1,"(0, 0)",4,1,0,1.0,0.1274074083333332,0 +573.0267058645843,2019-02-14,LUSIGNAN,94,6.6,10.30555556,0,5,"(0, 1, 0)",2,1,0,0.4733,0.0,0 +573.0267058645843,2019-02-14,LUSIGNAN,94,6.6,10.30555556,0,2,"(0, 1)",3,1,0,0.8831000000000001,0.0,0 +573.0267058645843,2019-02-14,LUSIGNAN,94,6.6,10.30555556,0,6,"(0, 2, 0)",1,1,0,0.19620000000000004,0.0,0 +573.0267058645843,2019-02-14,LUSIGNAN,94,6.6,10.30555556,0,4,"(0, 2)",2,1,0,0.6852000000000001,0.0,0 +573.0267058645843,2019-02-14,LUSIGNAN,94,6.6,10.30555556,0,7,"(0, 4)",0,1,0,0.0329,0.0,0 +573.0267058645843,2019-02-14,LUSIGNAN,94,6.6,10.30555556,0,0,"(0,)",7,2,0,1.0,0.1802314816666663,0 +579.8490026935854,2019-02-15,LUSIGNAN,95,7.5,10.35694444,0,3,"(0, 0, 0)",3,1,0,0.8017000000000001,0.0,0 +579.8490026935854,2019-02-15,LUSIGNAN,95,7.5,10.35694444,0,1,"(0, 0)",4,1,0,1.0,0.1868981483333331,0 +579.8490026935854,2019-02-15,LUSIGNAN,95,7.5,10.35694444,0,5,"(0, 1, 0)",2,1,0,0.4908,0.0,0 +579.8490026935854,2019-02-15,LUSIGNAN,95,7.5,10.35694444,0,2,"(0, 1)",3,1,0,0.9006000000000001,0.0,0 +579.8490026935854,2019-02-15,LUSIGNAN,95,7.5,10.35694444,0,6,"(0, 2, 0)",1,1,0,0.21370000000000008,0.0,0 +579.8490026935854,2019-02-15,LUSIGNAN,95,7.5,10.35694444,0,4,"(0, 2)",2,1,0,0.7027000000000001,0.0,0 +579.8490026935854,2019-02-15,LUSIGNAN,95,7.5,10.35694444,0,7,"(0, 4)",0,1,0,0.0504,0.0,0 +579.8490026935854,2019-02-15,LUSIGNAN,95,7.5,10.35694444,0,0,"(0,)",7,2,0,1.0,0.2397222216666662,0 +587.4892004881497,2019-02-16,LUSIGNAN,96,8.2,10.40861111,0,3,"(0, 0, 0)",3,1,0,0.8193000000000001,0.0,0 +587.4892004881497,2019-02-16,LUSIGNAN,96,8.2,10.40861111,0,1,"(0, 0)",4,1,0,1.0,0.2549999999999999,0 +587.4892004881497,2019-02-16,LUSIGNAN,96,8.2,10.40861111,0,5,"(0, 1, 0)",2,1,0,0.5084,0.0,0 +587.4892004881497,2019-02-16,LUSIGNAN,96,8.2,10.40861111,0,2,"(0, 1)",3,1,0,0.9182,0.0,0 +587.4892004881497,2019-02-16,LUSIGNAN,96,8.2,10.40861111,0,6,"(0, 2, 0)",1,1,0,0.2313000000000001,0.0,0 +587.4892004881497,2019-02-16,LUSIGNAN,96,8.2,10.40861111,0,4,"(0, 2)",2,1,0,0.7203000000000002,0.0,0 +587.4892004881497,2019-02-16,LUSIGNAN,96,8.2,10.40861111,0,7,"(0, 4)",0,1,0,0.068,0.0,0 +587.4892004881497,2019-02-16,LUSIGNAN,96,8.2,10.40861111,0,0,"(0,)",7,2,0,1.0,0.307824073333333,0 +595.7596189476246,2019-02-17,LUSIGNAN,97,10.9,10.46027778,0,3,"(0, 0, 0)",3,1,0,0.8315000000000001,0.0,0 +595.7596189476246,2019-02-17,LUSIGNAN,97,10.9,10.46027778,0,1,"(0, 0)",4,1,0,1.0,0.3317129633333333,0 +595.7596189476246,2019-02-17,LUSIGNAN,97,10.9,10.46027778,0,5,"(0, 1, 0)",2,1,0,0.5206,0.0,0 +595.7596189476246,2019-02-17,LUSIGNAN,97,10.9,10.46027778,0,2,"(0, 1)",3,1,0,0.9304,0.0,0 +595.7596189476246,2019-02-17,LUSIGNAN,97,10.9,10.46027778,0,6,"(0, 2, 0)",1,1,0,0.24350000000000005,0.0,0 +595.7596189476246,2019-02-17,LUSIGNAN,97,10.9,10.46027778,0,4,"(0, 2)",2,1,0,0.7325000000000002,0.0,0 +595.7596189476246,2019-02-17,LUSIGNAN,97,10.9,10.46027778,0,7,"(0, 4)",0,1,0,0.08020000000000001,0.0,0 +595.7596189476246,2019-02-17,LUSIGNAN,97,10.9,10.46027778,0,0,"(0,)",7,2,0,1.0,0.3845370366666664,0 +606.3593267453708,2019-02-18,LUSIGNAN,98,8.9,10.5125,0,3,"(0, 0, 0)",3,1,0,0.8477000000000001,0.0,0 +606.3593267453708,2019-02-18,LUSIGNAN,98,8.9,10.5125,0,1,"(0, 0)",4,1,0,1.0,0.4171296299999998,0 +606.3593267453708,2019-02-18,LUSIGNAN,98,8.9,10.5125,0,5,"(0, 1, 0)",2,1,0,0.5367999999999999,0.0,0 +606.3593267453708,2019-02-18,LUSIGNAN,98,8.9,10.5125,0,2,"(0, 1)",3,1,0,0.9466,0.0,0 +606.3593267453708,2019-02-18,LUSIGNAN,98,8.9,10.5125,0,6,"(0, 2, 0)",1,1,0,0.25970000000000004,0.0,0 +606.3593267453708,2019-02-18,LUSIGNAN,98,8.9,10.5125,0,4,"(0, 2)",3,1,0,0.7487000000000001,0.0,0 +606.3593267453708,2019-02-18,LUSIGNAN,98,8.9,10.5125,0,7,"(0, 4)",0,1,0,0.0964,0.0,0 +606.3593267453708,2019-02-18,LUSIGNAN,98,8.9,10.5125,0,0,"(0,)",7,2,0,1.0,0.4699537033333329,0 +615.2516448498047,2019-02-19,LUSIGNAN,99,9.1,10.565,0,3,"(0, 0, 0)",3,1,0,0.8635000000000002,0.0,0 +615.2516448498047,2019-02-19,LUSIGNAN,99,9.1,10.565,0,1,"(0, 0)",5,2,0,1.0,0.5112962966666664,0 +615.2516448498047,2019-02-19,LUSIGNAN,99,9.1,10.565,0,5,"(0, 1, 0)",2,1,0,0.5526,0.0,0 +615.2516448498047,2019-02-19,LUSIGNAN,99,9.1,10.565,0,2,"(0, 1)",4,1,0,0.9624,0.0,0 +615.2516448498047,2019-02-19,LUSIGNAN,99,9.1,10.565,0,6,"(0, 2, 0)",1,1,0,0.2755,0.0,0 +615.2516448498047,2019-02-19,LUSIGNAN,99,9.1,10.565,0,4,"(0, 2)",3,1,0,0.7645000000000002,0.0,0 +615.2516448498047,2019-02-19,LUSIGNAN,99,9.1,10.565,0,7,"(0, 4)",0,1,0,0.11220000000000002,0.0,0 +615.2516448498047,2019-02-19,LUSIGNAN,99,9.1,10.565,0,0,"(0,)",7,2,0,1.0,0.5641203699999995,0 +624.3197382094934,2019-02-20,LUSIGNAN,100,7.5,10.6175,0,3,"(0, 0, 0)",3,1,0,0.8810000000000001,0.0,0 +624.3197382094934,2019-02-20,LUSIGNAN,100,7.5,10.6175,0,1,"(0, 0)",5,2,0,1.0,0.6142129633333331,0 +624.3197382094934,2019-02-20,LUSIGNAN,100,7.5,10.6175,0,5,"(0, 1, 0)",2,1,0,0.5700999999999999,0.0,0 +624.3197382094934,2019-02-20,LUSIGNAN,100,7.5,10.6175,0,2,"(0, 1)",4,1,0,0.9799,0.0,0 +624.3197382094934,2019-02-20,LUSIGNAN,100,7.5,10.6175,0,6,"(0, 2, 0)",1,1,0,0.29300000000000004,0.0,0 +624.3197382094934,2019-02-20,LUSIGNAN,100,7.5,10.6175,0,4,"(0, 2)",3,1,0,0.7820000000000001,0.0,0 +624.3197382094934,2019-02-20,LUSIGNAN,100,7.5,10.6175,0,7,"(0, 4)",0,1,0,0.12970000000000004,0.0,0 +624.3197382094934,2019-02-20,LUSIGNAN,100,7.5,10.6175,0,0,"(0,)",7,2,0,1.0,0.6670370366666661,0 +631.9599360040578,2019-02-21,LUSIGNAN,101,9.2,10.67027778,0,3,"(0, 0, 0)",3,1,0,0.8966000000000001,0.0,0 +631.9599360040578,2019-02-21,LUSIGNAN,101,9.2,10.67027778,0,1,"(0, 0)",5,2,0,1.0,0.7259259266666663,0 +631.9599360040578,2019-02-21,LUSIGNAN,101,9.2,10.67027778,0,5,"(0, 1, 0)",2,1,0,0.5856999999999999,0.0,0 +631.9599360040578,2019-02-21,LUSIGNAN,101,9.2,10.67027778,0,2,"(0, 1)",4,1,0,0.9955,0.0,0 +631.9599360040578,2019-02-21,LUSIGNAN,101,9.2,10.67027778,0,6,"(0, 2, 0)",1,1,0,0.30860000000000004,0.0,0 +631.9599360040578,2019-02-21,LUSIGNAN,101,9.2,10.67027778,0,4,"(0, 2)",3,1,0,0.7976000000000001,0.0,0 +631.9599360040578,2019-02-21,LUSIGNAN,101,9.2,10.67027778,0,7,"(0, 4)",0,1,0,0.14530000000000004,0.0,0 +631.9599360040578,2019-02-21,LUSIGNAN,101,9.2,10.67027778,0,0,"(0,)",7,2,0,1.0,0.7787499999999994,0 +641.1155600117365,2019-02-22,LUSIGNAN,102,9.6,10.72305556,0,3,"(0, 0, 0)",3,1,0,0.9114,0.0,0 +641.1155600117365,2019-02-22,LUSIGNAN,102,9.6,10.72305556,0,1,"(0, 0)",5,2,0,1.0,0.8464351866666664,0 +641.1155600117365,2019-02-22,LUSIGNAN,102,9.6,10.72305556,0,5,"(0, 1, 0)",2,1,0,0.6004999999999999,0.0,0 +641.1155600117365,2019-02-22,LUSIGNAN,102,9.6,10.72305556,0,2,"(0, 1)",4,1,0,1.0,0.0,0 +641.1155600117365,2019-02-22,LUSIGNAN,102,9.6,10.72305556,0,6,"(0, 2, 0)",1,1,0,0.3234,0.0,0 +641.1155600117365,2019-02-22,LUSIGNAN,102,9.6,10.72305556,0,4,"(0, 2)",3,1,0,0.8124000000000001,0.0,0 +641.1155600117365,2019-02-22,LUSIGNAN,102,9.6,10.72305556,0,7,"(0, 4)",0,1,0,0.16010000000000005,0.0,0 +641.1155600117365,2019-02-22,LUSIGNAN,102,9.6,10.72305556,0,0,"(0,)",7,2,0,1.0,0.8992592599999994,0 +650.61875096676,2019-02-23,LUSIGNAN,103,10.6,10.77666667,0,3,"(0, 0, 0)",3,1,0,0.9242,0.0,0 +650.61875096676,2019-02-23,LUSIGNAN,103,10.6,10.77666667,0,1,"(0, 0)",5,2,0,1.0,0.9758796316666662,0 +650.61875096676,2019-02-23,LUSIGNAN,103,10.6,10.77666667,0,5,"(0, 1, 0)",2,1,0,0.6133,0.0,0 +650.61875096676,2019-02-23,LUSIGNAN,103,10.6,10.77666667,0,2,"(0, 1)",4,1,0,1.0,0.12944444499999985,0 +650.61875096676,2019-02-23,LUSIGNAN,103,10.6,10.77666667,0,6,"(0, 2, 0)",1,1,0,0.3362,0.0,0 +650.61875096676,2019-02-23,LUSIGNAN,103,10.6,10.77666667,0,4,"(0, 2)",3,1,0,0.8252000000000002,0.0,0 +650.61875096676,2019-02-23,LUSIGNAN,103,10.6,10.77666667,0,7,"(0, 4)",0,1,0,0.17290000000000005,0.0,0 +650.61875096676,2019-02-23,LUSIGNAN,103,10.6,10.77666667,0,0,"(0,)",7,2,0,1.0,1.0,0 +661.6173834022161,2019-02-24,LUSIGNAN,104,9.1,10.83,0,3,"(0, 0, 0)",4,1,0,0.9400000000000002,0.0,0 +661.6173834022161,2019-02-24,LUSIGNAN,104,9.1,10.83,0,1,"(0, 0)",5,2,0,1.0,1.0,0 +661.6173834022161,2019-02-24,LUSIGNAN,104,9.1,10.83,0,5,"(0, 1, 0)",2,1,0,0.6291,0.0,0 +661.6173834022161,2019-02-24,LUSIGNAN,104,9.1,10.83,0,2,"(0, 1)",4,1,0,1.0,0.2677777783333332,0 +661.6173834022161,2019-02-24,LUSIGNAN,104,9.1,10.83,0,6,"(0, 2, 0)",2,1,0,0.35200000000000004,0.0,0 +661.6173834022161,2019-02-24,LUSIGNAN,104,9.1,10.83,0,4,"(0, 2)",3,1,0,0.8410000000000002,0.0,0 +661.6173834022161,2019-02-24,LUSIGNAN,104,9.1,10.83,0,7,"(0, 4)",0,1,0,0.18870000000000006,0.0,0 +661.6173834022161,2019-02-24,LUSIGNAN,104,9.1,10.83,0,0,"(0,)",7,2,0,1.0,1.0,0