Subversion Repositories eFlore/Applications.cel

Rev

Rev 1695 | Rev 1699 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1654 aurelien 1
<?php
1656 raphael 2
 
3
/**
4
* @category  PHP
5
* @package   jrest
6
* @author    Raphaël Droz <raphael@tela-botania.org>
7
* @copyright 2013 Tela-Botanica
8
* @license   http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
9
* @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
10
*/
11
 
12
define('SEPARATEUR_IMAGES', ",");
13
 
1654 aurelien 14
Class FormateurGroupeColonne {
1656 raphael 15
 
16
	static $cache = Array();
17
 
1654 aurelien 18
	/*
19
	* @param $fieldSets: un liste de noms de colonnes ou de sets de colonnes
20
	*		séparés par des virgules
21
	* 		eg: "espece" ou "champs-etendus", ...
22
	*
23
	* @return: un tableau associatif déjà ordonné
24
	* 		clé: abbrev [machine-name] de la colonne (eg: "espece" ou "mot-clef")
25
	* 		valeur: des données relative à cette colonne, cf GenColInfo
26
	*
27
	* @TODO: fonction commune à la génération en CSV
28
	*
29
	*/
30
	static function nomEnsembleVersListeColonnes($groupe_de_champs = 'standard') {
31
		if(! $groupe_de_champs) $groupe_de_champs = 'standard';
32
		$groupe_de_champs = array_flip(explode(',', $groupe_de_champs));
1656 raphael 33
		$colonnes = Array();
1654 aurelien 34
 
35
		if(isset($groupe_de_champs['standard'])) {
36
			$colonnes += Array(
37
				'nom_sel'			=> self::GenColInfo('nom_sel', 'Espèce'),
38
				'nom_sel_nn'		=> self::GenColInfo('nom_sel_nn', 'Numéro nomenclatural', 0, NULL, NULL, FALSE),
1656 raphael 39
				'nom_ret'			=> self::GenColInfo('nom_ret', 'Nom retenu', 0, NULL, NULL, FALSE),
40
				'nom_ret_nn'		=> self::GenColInfo('nom_ret_nn', 'Numéro nomenclatural nom retenu', 0, NULL, NULL, FALSE),
41
				'nt'				=> self::GenColInfo('nt', 'Numéro taxonomique', 0, NULL, NULL, FALSE),
42
				'famille'			=> self::GenColInfo('famille', 'Famille', 0, NULL, NULL, FALSE),
43
				'nom_referentiel'	=> self::GenColInfo('nom_referentiel', 'Referentiel taxonomique'),
44
				'zone_geo'			=> self::GenColInfo('zone_geo', 'Commune'),
1654 aurelien 45
				'ce_zone_geo'		=> self::GenColInfo('ce_zone_geo', 'Identifiant Commune', 0, 'convertirCodeZoneGeoVersDepartement'),
1656 raphael 46
				'date_observation'	=> self::GenColInfo('date_observation', 'Date', 0, 'formaterDate'),
47
				'lieudit'			=> self::GenColInfo('lieudit', 'Lieu-dit'),
48
				'station'			=> self::GenColInfo('station', 'Station'),
49
				'milieu'			=> self::GenColInfo('milieu', 'Milieu'),
50
				'commentaire'		=> self::GenColInfo('commentaire', 'Notes'),
51
				'latitude'			=> self::GenColInfo('latitude', 'Latitude', 1),
1654 aurelien 52
				'longitude'			=> self::GenColInfo('longitude', 'Longitude', 1),
53
				'geodatum'			=> self::GenColInfo('geodatum', 'Référentiel Géographique', 1, NULL, NULL, FALSE),
54
			);
55
		}
56
 
57
		if(isset($groupe_de_champs['avance'])) {
1656 raphael 58
			$colonnes += array(
59
			   // TODO: importable = FALSE car pas de merge de données importées
60
			   'ordre'				=> self::GenColInfo('ordre', 'Ordre', 1, NULL, NULL, FALSE),
61
			   'id_observation'		=> self::GenColInfo('id_observation', 'Identifiant', 1, NULL, NULL, FALSE),
62
 
63
			   'mots_cles_texte'	=> self::GenColInfo('mots_cles_texte', 'Mots Clés', 1),
64
			   'commentaire'		=> self::GenColInfo('commentaire', 'Commentaires', 1),
65
			   'date_creation'		=> self::GenColInfo('date_creation', 'Date Création', 1, NULL, NULL, FALSE),
66
			   'date_modification'	=> self::GenColInfo('date_modification', 'Date Modification', 1, NULL, NULL, FALSE),
67
 
68
			   // rappel transmission = 1, signifie simplement "public"
69
			   // des données importées peuvent être d'emblée "publiques"
70
			   // "importable" = TRUE
71
			   'transmission'		=> self::GenColInfo('transmission', 'Transmis', 1),
72
			   'date_transmission'	=> self::GenColInfo('date_transmission', 'Date Transmission', 1, NULL, NULL, FALSE),
73
			   'abondance'			=> self::GenColInfo('abondance', 'Abondance', 1),
74
			   'certitude'			=> self::GenColInfo('certitude', 'Certitude', 1),
75
			   'phenologie'			=> self::GenColInfo('phenologie', 'Phénologie', 1),
76
 
77
			   // XXX: getImages() dépend du contexte de Cel, et doit être appelée comme cas particulier
78
			   // cf ExportXLS::traiterLigneObservation()
1687 raphael 79
			   'images'				=> self::GenColInfo('images', 'Image(s)', 1, NULL, NULL /* cas particulier 'getImages' */, TRUE),
1685 raphael 80
 
81
			   /* 'nom_commun'			=> self::GenColInfo('nom_commun', 'Nom Commun', 1, NULL, 'getNomCommun', FALSE),
82
				  'nom-commun'			=> self::GenColInfo('nom-commun', 'Nom Commun', 1, NULL, 'getNomCommun_v2'),
83
				  'nom-commun'			=> self::GenColInfo('nom-commun', 'Nom Commun', 1, NULL, 'getNomCommun_v3'), */
1694 raphael 84
			   'nom-commun'			=> self::GenColInfo('nom-commun', 'Nom Commun', 1, NULL, NULL /* cas particu 'getNomCommun_v4' */, TRUE, 'getNomCommun_preload'),
1685 raphael 85
 
1654 aurelien 86
			);
87
		}
1656 raphael 88
 
1654 aurelien 89
		return $colonnes;
90
	}
1694 raphael 91
 
92
	static function preload($colonnes, $cel, $ids) {
93
		$result = array();
94
		foreach($colonnes as $abbrev => $colonne) {
95
			if(!$colonne['preload']) continue;
96
			$result[$abbrev] = call_user_func(array(__CLASS__, $colonne['preload']), $cel, $ids);
97
		}
98
		return $result;
99
	}
1654 aurelien 100
 
1656 raphael 101
	public static function getIntitulesColonnes($colonnes) {
1671 aurelien 102
		return array_map(array('FormateurGroupeColonne', 'retournerNomItem'), $colonnes);
1654 aurelien 103
	}
104
 
1671 aurelien 105
	public static function retournerNomItem(&$item) {
106
		return $item['nom'];
107
	}
1694 raphael 108
 
1656 raphael 109
	public static function getLigneObservation(&$obs, &$colonnes, $cel = false) {
1659 aurelien 110
 
1654 aurelien 111
		$ligne_formatee = array();
112
		foreach($colonnes as $abbrev => $colonne) {
113
			$valeur = null;
114
			if($colonne['extra'] == 2) continue;
115
 
116
			// valeur direct depuis cel_obs ?
117
			if(isset($obs[$abbrev])) $valeur = $obs[$abbrev];
118
 
119
			// pré-processeur de la champs
120
			if(function_exists($colonne['fonction'])) {
121
				$valeur = $colonne['fonction']($valeur);
122
			} elseif(method_exists(__CLASS__, $colonne['fonction'])) {
123
				$valeur = call_user_func(array(__CLASS__, $colonne['fonction']), $valeur);
124
			} elseif($colonne['fonction']) {
125
				die("méthode {$colonne['fonction']} introuvable");
126
			}
127
			// fonction pour obtenir des champs (étendus)
128
			elseif(function_exists($colonne['fonction_data'])) {
129
				$valeur = $colonne['fonction_data']($obs);
130
			}
1687 raphael 131
			elseif(method_exists(__CLASS__, $colonne['fonction_data'])) {
1654 aurelien 132
				$valeur = call_user_func(array(__CLASS__, $colonne['fonction_data']), $obs);
133
			}
134
 
135
			// // cette section devrait être vide:
136
			// // cas particuliers ingérable avec l'architecture actuelle:
137
			if(false && $abbrev == 'date_observation' && $valeur == "0000-00-00") {
138
				/* blah */
139
			}
1685 raphael 140
			// ici à cause du passage de $cel ($this), TODO: DB en Singleton !
1656 raphael 141
			if($abbrev == 'images') {
142
				$valeur = FormateurGroupeColonne::getImages($obs, $cel->id_utilisateur, $cel);
143
			}
1685 raphael 144
			if($abbrev == 'nom-commun') {
145
				$valeur = FormateurGroupeColonne::getNomCommun_v4($obs, $cel);
146
			}
1654 aurelien 147
 
148
			if($valeur == null) {
149
				$valeur = "";
150
			}
151
 
152
			// // fin de section "cas particuliers"
153
			$ligne_formatee[] = $valeur;
154
		}
1694 raphael 155
 
156
		// TODO:
157
		// taxon => (code_catminat) => syntaxon => données baseveg
158
 
1654 aurelien 159
		return $ligne_formatee;
160
	}
161
 
162
	/*
163
	* Wrapper générant un tableau associatif:
1694 raphael 164
	* Ne pas changer les valeurs par défaut du prototype sans réflexion sur l'implication pour nomEnsembleVersListeColonnes()
1654 aurelien 165
 
166
	* @param $abbrev (obligatoire): nom court de colonne, largement utilisé lors de l'import.
167
	*		  En effet chaque ligne importée est accessible à l'aide du `define` de $abbrev en majuscule, préfixé de "C_"
168
	*		  Exemple: $ligne[C_LONGITUDE] pour "longitude".
169
	*		  cf: ImportXLS::detectionEntete()
170
 
171
	* @param $nom (obligatoire): nom complet de colonne (utilisé pour la ligne d'en-tête)
172
 
173
	* @param $is_extra:
174
	* Si 0, la colonne est une colonne standard
175
	* Si 1, la colonne est extra [le plus souvent générée automatiquement]
176
	*		 (auquel cas une bordure bleue entoure son nom dans la ligne d'entête)
177
	* Si 2, la colonne n'est pas traité à l'export, mais une définition peut lui être donnée
178
	*		 qui pourra être utilisée à l'import, exemple: "image"
179
 
180
	* @param $fonction (optionnel): un nom d'un fonction de préprocessing
181
	* 		  $fonction doit prendre comme seul argument la valeur d'origine et retourner la valeur transformée
182
 
183
	* @param $fonction_data (optionnel): une *méthode* d'obtention de donnée
184
	* 		  $fonction_data doit prendre comme premier argument le tableau des champs de l'enregistrement existant
185
	*		  $fonction_data doit retourner une valeur
186
 
187
	* @param $importable (optionnel): défini si la colonne est traitée (ou absolument ignorée par PHPExcel) lors de
188
	*		  l'import.
1694 raphael 189
 
190
	* @param $preload (optionnel): défini une fonction de préchargement massif de donnée potentiellement utilisable par $fonction_data.
191
	*		  Utile, notamment, dans le cadre de l'export
1654 aurelien 192
 
193
	*/
1694 raphael 194
	static function GenColInfo($abbrev, $nom, $is_extra = 0, $fonction = NULL, $fonction_data = NULL, $importable = TRUE, $preload = NULL) {
1654 aurelien 195
		return Array('abbrev' => $abbrev,
1656 raphael 196
					 'nom' => $nom,
197
					 'extra' => $is_extra ? 1 : 0,
198
					 'fonction' => $fonction,
199
					 'fonction_data' => $fonction_data,
1694 raphael 200
					 'importable' => $importable,
201
					 'preload' => $preload,
1654 aurelien 202
		);
203
	}
204
 
1656 raphael 205
	static function formaterDate($date_heure_mysql) {
1671 aurelien 206
		//return "";
1654 aurelien 207
		if (!$date_heure_mysql || $date_heure_mysql == "0000-00-00 00:00:00") return "00/00/0000";
1671 aurelien 208
		// malheureusement pas disponible en php < 5.3
209
		//$date_format = DateTime::createFromFormat("Y-m-d H:i:s", $date_heure_mysql);
210
		$val = explode(' ', $date_heure_mysql);
211
		$date = explode('-', $val[0]);
212
		$heure = explode(':', $val[1]);
213
		$timestamp = mktime((int) $heure[0], (int) $heure[1], (int) $heure[2], (int) $date[1], (int) $date[2], (int) $date[0]);
1654 aurelien 214
		if(!$timestamp) return "00/00/0000";
1656 raphael 215
		// TODO: les widgets ne font malheureusement pas usage de l'heure dans le CEL
216
		// TODO: si modification, ne pas oublier de modifier le format d'import correspondant
1698 raphael 217
		//	dans ImportXLS, traiterDateObs() (actuellement: "Y/m/d" car utilisation de strtotime() qui ne lit pas tout)
218
		// $date_formatee = strftime('%d/%m/%Y', $timestamp);
219
		$date_formatee = strftime('%Y/%m/%d', $timestamp);
1654 aurelien 220
		if(!$date_formatee) return "00/00/0000";
221
		return $date_formatee;
222
	}
223
 
1656 raphael 224
	static function getImages($obs, $id_utilisateur, $cel) {
225
		if(! $id_utilisateur) return NULL;
226
		$rec = $cel->requeter(
1654 aurelien 227
			sprintf("SELECT GROUP_CONCAT(nom_original SEPARATOR '%s') FROM cel_images i"
1656 raphael 228
					." LEFT JOIN cel_obs_images oi ON (i.id_image = oi.id_image)"
229
					." LEFT JOIN cel_obs o ON (oi.id_observation = o.id_observation)"
230
					." WHERE ce_utilisateur = %d",
231
					SEPARATEUR_IMAGES,
232
					$id_utilisateur));
233
		return $rec ? array_pop($rec) : NULL;
1654 aurelien 234
	}
235
 
236
	public static function convertirCodeZoneGeoVersDepartement($code_zone_geo) {
237
		$code_departement = '';
238
		if(self::estUnCodeInseeDepartement($code_zone_geo)) {
239
			$code_departement = substr(ltrim($code_zone_geo,'INSEE-C:'),0,2);
240
		}
241
 
242
		return $code_departement;
243
	}
244
 
245
	public static function estUnCodeInseeDepartement($code_a_tester) {
246
		return preg_match('/^INSEE-C:[0-9]{5}/',$code_a_tester);
247
	}
248
 
249
 
250
	// TODO: référentiel ne devrait pas être généré au moment d'un Config::get,
251
	// comme dans Config::get('nomsVernaRechercheLimiteeTpl')
252
	// Par exemple, la variable pour "nva" ?
253
	function getNomCommun($obs) {
254
		$langue = 'fra';
255
		list($referentiel) = explode(':', strtolower($obs['nom_referentiel']));
256
		if($referentiel == 'bdtfx') $referentiel = 'nvjfl';
257
		else return '';
258
 
259
		$cache_id = $referentiel . '-' . $obs['nt'] . '-' . $langue;
1657 raphael 260
		if(isset(self::$cache['getNomCommun'][$cache_id])) {
1656 raphael 261
			//debug: error_log("require url_service_nom_attribution: OK ! (pour \"{$obs['nom_ret']}\")");
1657 raphael 262
			return self::$cache['getNomCommun'][$cache_id];
1654 aurelien 263
		}
264
		// pas de cache:
265
		//debug: error_log("require url_service_nom_attribution pour \"{$obs['nom_ret']}\"");
266
 
267
		// pour bdtfx:
268
		// /service:eflore:0.1/nvjfl/noms-vernaculaires/attributions?masque.nt=X&masque.lg=fra&retour.champs=num_statut
269
		// /projet/services/modules/0.1/nvjfl/NomsVernaculaires.php
270
		$url = str_replace(Array('{referentiel}', '{valeur}', '{langue}'),
1656 raphael 271
						   Array($referentiel, $obs['nt'], $langue),
1657 raphael 272
						   self::$config['eflore']['url_service_nom_attribution']) . // TODO !
1656 raphael 273
			"&retour.champs=num_statut";
1654 aurelien 274
		$noms = @json_decode(file_get_contents($url));
275
		if(! $noms) return '';
1673 raphael 276
		$noms = array_filter((array)($noms->resultat), array($this, retournerNumStatutUn)); // XXX: php 5.3
1654 aurelien 277
		$nom = array_pop($noms)->nom_vernaculaire;
278
 
279
		// cache
1657 raphael 280
		self::$cache['getNomCommun'][$cache_id] = $nom;
1654 aurelien 281
		return $nom;
282
	}
283
 
1671 aurelien 284
	private function retournerNumStatutUn(&$item) {
285
		return ($item->num_statut == 1);
286
	}
1673 raphael 287
 
288
	private function retournerNumStatutUnArr(&$item) {
289
		return ($item['num_statut'] == 1);
290
	}
1671 aurelien 291
 
1656 raphael 292
	// si getNomCommun_v2 ou getNomCommun_v3 sont utilisés
293
	/* require_once('/home/raphael/eflore/framework/framework/Framework.php');
294
	Framework::setCheminAppli("/home/raphael/eflore/projets/services/index.php");
295
	Framework::setInfoAppli(Config::get('info'));
296
	require_once('/home/raphael/eflore/projets/services/modules/0.1/Projets.php');*/
1654 aurelien 297
 
298
	/* Tente de bootstraper le framework au plus court et d'initialiser une instance de
1656 raphael 299
	   NomsVernaculaires pour obtenir le nom commun */
1654 aurelien 300
	function getNomCommun_v2($obs) {
301
		static $service;
1656 raphael 302
		$service = new Projets();
1654 aurelien 303
 
304
		$langue = 'fra';
305
		list($referentiel) = explode(':', strtolower($obs['nom_referentiel']));
306
		if($referentiel == 'bdtfx') $referentiel = 'nvjfl';
307
		else return '';
308
 
309
		$cache_id = $referentiel . '-' . $obs['nt'] . '-' . $langue;
1657 raphael 310
		if(isset(self::$cache['getNomCommun'][$cache_id])) {
1656 raphael 311
			error_log("require NomsVernaculaires.php: OK ! (pour \"{$obs['nom_ret']}\")");
1657 raphael 312
			return self::$cache['getNomCommun'][$cache_id];
1654 aurelien 313
		}
314
		// pas de cache:
315
		error_log("require NomsVernaculaires.php pour \"{$obs['nom_ret']}\"");
316
 
1656 raphael 317
		$donnees = Array('masque.nt' => $obs['nt'],
318
						 'masque.lg' => $langue,
319
						 'retour.champs' => 'num_statut');
1654 aurelien 320
		$noms = $service->consulter(Array('nvjfl', 'noms-vernaculaires'), $donnees);
321
 
322
		if(! $noms) return '';
1673 raphael 323
		$noms = array_filter((array)($noms->resultat), array($this, retournerNumStatutUn)); // XXX: php 5.3
1654 aurelien 324
		$nom = array_pop($noms)->nom_vernaculaire;
325
 
1656 raphael 326
		// cache
1657 raphael 327
		self::$cache['getNomCommun'][$cache_id] = $nom;
1654 aurelien 328
		return $nom;
329
	}
330
 
331
 
332
	/* Effectue un bootstraping plus sage que ci-dessus, mais le gain d'efficacité
1656 raphael 333
	   n'est pas aussi retentissant qu'espéré */
1654 aurelien 334
	static $service;
335
	function getNomCommun_v3($obs) {
336
		if(! $this->service) $this->service = new Projets();
337
 
338
		$langue = 'fra';
339
		list($referentiel) = explode(':', strtolower($obs['nom_referentiel']));
340
		if($referentiel == 'bdtfx') $referentiel = 'nvjfl';
341
		else return '';
342
 
343
		$cache_id = $referentiel . '-' . $obs['nt'] . '-' . $langue;
1657 raphael 344
		if(isset(self::$cache['getNomCommun'][$cache_id])) {
1656 raphael 345
			error_log("require NomsVernaculaires.php: OK ! (pour \"{$obs['nom_ret']}\")");
1657 raphael 346
			return self::$cache['getNomCommun'][$cache_id];
1654 aurelien 347
		}
348
		// pas de cache:
1656 raphael 349
		error_log("require NomsVernaculaires.php pour \"{$obs['nom_ret']}\"");
1654 aurelien 350
 
351
		$donnees = Array('masque.nt' => $obs['nt'],
1656 raphael 352
						 'masque.lg' => $langue,
353
						 'retour.champs' => 'conseil_emploi');
354
		$this->service->initialiserRessourcesEtParametres(Array('nvjfl', 'noms-vernaculaires', 'attributions'), $donnees);
1654 aurelien 355
		try {
1656 raphael 356
			$noms = $this->service->traiterRessources();
357
		} catch(Exception $e) {
358
			return '';
1654 aurelien 359
		}
1656 raphael 360
		if(! $noms) return '';
1673 raphael 361
		$noms = array_filter($noms['resultat'], array($this, retournerNumStatutUnArr)); // XXX: php 5.3
1656 raphael 362
		$premier_nom = array_pop($noms);
1654 aurelien 363
		$nom = $premier_nom['nom_vernaculaire'];
364
 
365
		// cache
1657 raphael 366
		self::$cache['getNomCommun'][$cache_id] = $nom;
1654 aurelien 367
		return $nom;
368
	}
1685 raphael 369
 
1694 raphael 370
	/* Cette fonction initialise le cache des noms communs en 1 fois, sur la liste des observations à exporter.
371
	   Ainsi, les appels successifs à getNomCommun_v4() ne sont pas couteux (pas de requête SQL)
372
	 */
373
	static function getNomCommun_preload($cel, $obsids) {
374
		if(!$obsids) return;
375
		if(!$cel->executerRequete("SHOW TABLES LIKE 'cel_references'", Cel::SQL_RETOUR_LIGNE)) return NULL;
376
 
377
		// CREATE INDEX i_nom_referentiel ON cel_obs (nom_referentiel(5));
378
		$req = sprintf("SELECT r.referentiel, r.num_taxon, r.nom_commun FROM cel_references r" .
379
					   " INNER JOIN cel_obs c ON (r.referentiel = substring_index(c.nom_referentiel, ':', 1) and r.num_taxon = c.nt)" .
380
					   " WHERE c.id_observation IN (%s)",
381
					   implode(',', $obsids));
382
		$res = $cel->requeter($req);
383
		foreach($res as $v) {
384
			self::$cache['getNomCommun'][$v['referentiel'] . '-' . $v['num_taxon'] . '-' . 'fra'] = $v['nom_commun'];
385
		}
386
		return NULL;
387
	}
388
 
1685 raphael 389
	static function getNomCommun_v4($obs, $cel) {
1689 raphael 390
		static $is_table = false;
1685 raphael 391
		if(! $obs['nt']) return NULL;
1689 raphael 392
 
393
		if(!$is_table) {
394
			// une seule fois
395
			if(! $cel->executerRequete("SHOW TABLES LIKE 'cel_references'", Cel::SQL_RETOUR_LIGNE)) return NULL;
396
			$is_table = true;
397
		}
1685 raphael 398
		$langue = 'fra';
399
		list($referentiel) = explode(':', strtolower($obs['nom_referentiel']));
400
		$cache_id = $referentiel . '-' . $obs['nt'] . '-' . $langue;
401
 
402
		if(isset(self::$cache['getNomCommun'][$cache_id])) return self::$cache['getNomCommun'][$cache_id];
1695 raphael 403
		// XXX: problème de valeurs NULL ?
404
		if(array_key_exists($cache_id, self::$cache['getNomCommun'])) return self::$cache['getNomCommun'][$cache_id];
1685 raphael 405
 
406
		// pas de cache:
407
		$nom = $cel->executerRequete(sprintf("SELECT nom_commun FROM cel_references " .
408
											 "WHERE referentiel = '%s' AND num_taxon = %d LIMIT 1",
409
											 $referentiel,
410
											 $obs['nt']),
411
									 Cel::SQL_RETOUR_LIGNE);
412
 
413
		if(! $nom) return NULL;
414
		$nom = $nom["nom_commun"];
415
 
416
		// cache
417
		self::$cache['getNomCommun'][$cache_id] = $nom;
418
		return $nom;
419
	}
1654 aurelien 420
 
1685 raphael 421
 
1654 aurelien 422
}