[MeteoAlerte] Update for OH3 (#8801)

* [MeteoAlerte] Update for OH3
Replaced old gif pictures with svg nicer pictures
Added a missing alert report (vague-submersion)
Added end of validity report timestamp
Some code cleansing.

Signed-off-by: clinique <gael@lhopital.org>
This commit is contained in:
Gaël L'hopital 2020-10-19 19:04:05 +02:00 committed by GitHub
parent ac1e4d8a83
commit 08ce65a939
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
61 changed files with 775 additions and 126 deletions

View File

@ -27,7 +27,8 @@ The Météo Alerte information that are retrieved is available as these channels
| Channel ID | Item Type | Description |
|-----------------------|-----------|-----------------------------------------------|
| observation-time | DateTime | Date and time of alert creation |
| observation-time | DateTime | Date and time of report validity start |
| end-time | DateTime | Date and time of report validity end |
| comment | String | General comments on alerts for the department |
| vent | String | Wind alert level (*) |
| pluie-inondation | String | Rain alert level (*) |
@ -37,6 +38,7 @@ The Météo Alerte information that are retrieved is available as these channels
| canicule | String | Heat alert level (*) |
| grand-froid | String | Cold alert level (*) |
| avalanches | String | Avalanche alert level (*) |
| vague-submersion | String | Wave submersion alert level (*) |
| pluie-inondation-icon | Image | Pictogram of the Rain alert level |
| vent-icon | Image | Pictogram of the Wind alert level |
| orage-icon | Image | Pictogram of Storm alert level |
@ -45,6 +47,7 @@ The Météo Alerte information that are retrieved is available as these channels
| canicule-icon | Image | Pictogram of Heat alert level |
| grand-froid-icon | Image | Pictogram of Cold alert level |
| avalanches-icon | Image | Pictogram of Avalanche alert level |
| vague-submersion-icon | Image | Pictogram of Wave Submersion alert level |
(*) Each alert level is described by a color :

View File

@ -12,9 +12,6 @@
*/
package org.openhab.binding.meteoalerte.internal;
import java.util.Collections;
import java.util.Set;
import org.eclipse.jdt.annotation.NonNullByDefault;
import org.openhab.core.thing.ThingTypeUID;
@ -33,6 +30,7 @@ public class MeteoAlerteBindingConstants {
public static final ThingTypeUID THING_TYPE_METEO_ALERT = new ThingTypeUID(BINDING_ID, "department");
// List of all Channel id's
public static final String WAVE = "vague-submersion";
public static final String AVALANCHE = "avalanches";
public static final String HEAT = "canicule";
public static final String FREEZE = "grand-froid";
@ -41,16 +39,7 @@ public class MeteoAlerteBindingConstants {
public static final String STORM = "orage";
public static final String RAIN = "pluie-inondation";
public static final String WIND = "vent";
public static final String WIND_ICON = "vent-icon";
public static final String RAIN_ICON = "pluie-inondation-icon";
public static final String STORM_ICON = "orage-icon";
public static final String FLOOD_ICON = "inondation-icon";
public static final String SNOW_ICON = "neige-icon";
public static final String HEAT_ICON = "canicule-icon";
public static final String FREEZE_ICON = "grand-froid-icon";
public static final String AVALANCHE_ICON = "avalanches-icon";
public static final String OBSERVATION_TIME = "observation-time";
public static final String END_TIME = "end-time";
public static final String COMMENT = "comment";
public static final Set<ThingTypeUID> SUPPORTED_THING_TYPES_UIDS = Collections.singleton(THING_TYPE_METEO_ALERT);
}

View File

@ -23,5 +23,5 @@ import org.eclipse.jdt.annotation.NonNullByDefault;
@NonNullByDefault
public class MeteoAlerteConfiguration {
public String department = "";
public Integer refresh = 1440;
public int refresh = 1440;
}

View File

@ -12,7 +12,7 @@
*/
package org.openhab.binding.meteoalerte.internal;
import static org.openhab.binding.meteoalerte.internal.MeteoAlerteBindingConstants.*;
import static org.openhab.binding.meteoalerte.internal.MeteoAlerteBindingConstants.THING_TYPE_METEO_ALERT;
import java.time.ZonedDateTime;
@ -43,31 +43,25 @@ import com.google.gson.JsonDeserializer;
@NonNullByDefault
public class MeteoAlerteHandlerFactory extends BaseThingHandlerFactory {
private final Gson gson;
// Needed for converting UTC time to local time
private final TimeZoneProvider timeZoneProvider;
@Activate
public MeteoAlerteHandlerFactory(@Reference TimeZoneProvider timeZoneProvider) {
this.timeZoneProvider = timeZoneProvider;
this.gson = new GsonBuilder()
.registerTypeAdapter(ZonedDateTime.class, (JsonDeserializer<ZonedDateTime>) (json, type,
jsonDeserializationContext) -> ZonedDateTime.parse(json.getAsJsonPrimitive().getAsString()))
this.gson = new GsonBuilder().registerTypeAdapter(ZonedDateTime.class,
(JsonDeserializer<ZonedDateTime>) (json, type, jsonDeserializationContext) -> ZonedDateTime
.parse(json.getAsJsonPrimitive().getAsString())
.withZoneSameInstant(timeZoneProvider.getTimeZone()))
.create();
}
@Override
public boolean supportsThingType(ThingTypeUID thingTypeUID) {
return SUPPORTED_THING_TYPES_UIDS.contains(thingTypeUID);
return THING_TYPE_METEO_ALERT.equals(thingTypeUID);
}
@Override
protected @Nullable ThingHandler createHandler(Thing thing) {
ThingTypeUID thingTypeUID = thing.getThingTypeUID();
if (thingTypeUID.equals(THING_TYPE_METEO_ALERT)) {
return new MeteoAlerteHandler(thing, timeZoneProvider, gson);
}
return null;
return supportsThingType(thingTypeUID) ? new MeteoAlerteHandler(thing, gson) : null;
}
}

View File

@ -14,24 +14,24 @@ package org.openhab.binding.meteoalerte.internal.handler;
import static org.openhab.binding.meteoalerte.internal.MeteoAlerteBindingConstants.*;
import java.io.BufferedInputStream;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.MalformedURLException;
import java.net.URL;
import java.time.ZonedDateTime;
import java.util.AbstractMap;
import java.util.Arrays;
import java.util.List;
import java.util.Map;
import java.util.concurrent.ScheduledFuture;
import java.util.concurrent.TimeUnit;
import java.util.stream.Collectors;
import org.eclipse.jdt.annotation.NonNullByDefault;
import org.eclipse.jdt.annotation.Nullable;
import org.openhab.binding.meteoalerte.internal.MeteoAlerteConfiguration;
import org.openhab.binding.meteoalerte.internal.json.ApiResponse;
import org.openhab.core.i18n.TimeZoneProvider;
import org.openhab.binding.meteoalerte.internal.json.ResponseFieldDTO.AlertLevel;
import org.openhab.core.io.net.http.HttpUtil;
import org.openhab.core.library.types.DateTimeType;
import org.openhab.core.library.types.RawType;
@ -44,6 +44,7 @@ import org.openhab.core.thing.binding.BaseThingHandler;
import org.openhab.core.types.Command;
import org.openhab.core.types.RefreshType;
import org.openhab.core.types.UnDefType;
import org.osgi.framework.Bundle;
import org.osgi.framework.FrameworkUtil;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@ -62,18 +63,21 @@ public class MeteoAlerteHandler extends BaseThingHandler {
+ "facet=etat_vent&facet=etat_pluie_inondation&facet=etat_orage&facet=etat_inondation&facet=etat_neige&facet=etat_canicule&"
+ "facet=etat_grand_froid&facet=etat_avalanches&refine.nom_dept=";
private static final int TIMEOUT_MS = 30000;
private static final List<String> ALERT_LEVELS = Arrays.asList("Vert", "Jaune", "Orange", "Rouge");
private final Logger logger = LoggerFactory.getLogger(MeteoAlerteHandler.class);
private static final Map<AlertLevel, String> ALERT_COLORS = Map.ofEntries(
new AbstractMap.SimpleEntry<AlertLevel, String>(AlertLevel.GREEN, "00ff00"),
new AbstractMap.SimpleEntry<AlertLevel, String>(AlertLevel.YELLOW, "ffff00"),
new AbstractMap.SimpleEntry<AlertLevel, String>(AlertLevel.ORANGE, "ff6600"),
new AbstractMap.SimpleEntry<AlertLevel, String>(AlertLevel.RED, "ff0000"),
new AbstractMap.SimpleEntry<AlertLevel, String>(AlertLevel.UNKNOWN, "b3b3b3"));
private final Logger logger = LoggerFactory.getLogger(MeteoAlerteHandler.class);
// Time zone provider representing time zone configured in openHAB configuration
private final TimeZoneProvider timeZoneProvider;
private final Gson gson;
private @Nullable ScheduledFuture<?> refreshJob;
private String queryUrl = "";
public MeteoAlerteHandler(Thing thing, TimeZoneProvider timeZoneProvider, Gson gson) {
public MeteoAlerteHandler(Thing thing, Gson gson) {
super(thing);
this.timeZoneProvider = timeZoneProvider;
this.gson = gson;
}
@ -120,7 +124,6 @@ public class MeteoAlerteHandler extends BaseThingHandler {
updateStatus(ThingStatus.OFFLINE, ThingStatusDetail.CONFIGURATION_ERROR,
String.format("Querying '%s' raised : %s", queryUrl, e.getMessage()));
} catch (IOException e) {
logger.warn("Error opening connection to Meteo Alerte webservice : {}", e.getMessage());
updateStatus(ThingStatus.OFFLINE, ThingStatusDetail.COMMUNICATION_ERROR, e.getMessage());
}
}
@ -133,74 +136,49 @@ public class MeteoAlerteHandler extends BaseThingHandler {
private void updateChannels(ApiResponse apiResponse) {
Arrays.stream(apiResponse.getRecords()).findFirst()
.ifPresent((record) -> record.getResponseFieldDTO().ifPresent(fields -> {
updateAlertString(WIND, fields.getVent());
updateAlertString(RAIN, fields.getPluieInondation());
updateAlertString(STORM, fields.getOrage());
updateAlertString(FLOOD, fields.getInondation());
updateAlertString(SNOW, fields.getNeige());
updateAlertString(HEAT, fields.getCanicule());
updateAlertString(FREEZE, fields.getGrandFroid());
updateAlertString(AVALANCHE, fields.getAvalanches());
fields.getDateInsert().ifPresent(date -> updateDate(OBSERVATION_TIME, date));
updateAlert(WIND, fields.getVent());
updateAlert(RAIN, fields.getPluieInondation());
updateAlert(STORM, fields.getOrage());
updateAlert(FLOOD, fields.getInondation());
updateAlert(SNOW, fields.getNeige());
updateAlert(HEAT, fields.getCanicule());
updateAlert(FREEZE, fields.getGrandFroid());
updateAlert(AVALANCHE, fields.getAvalanches());
updateAlert(WAVE, fields.getVagueSubmersion());
updateState(COMMENT, new StringType(fields.getVigilanceComment()));
updateIcon(WIND, fields.getVent());
updateIcon(RAIN, fields.getPluieInondation());
updateIcon(STORM, fields.getOrage());
updateIcon(FLOOD, fields.getInondation());
updateIcon(SNOW, fields.getNeige());
updateIcon(HEAT, fields.getCanicule());
updateIcon(FREEZE, fields.getGrandFroid());
updateIcon(AVALANCHE, fields.getAvalanches());
fields.getDateInsert().ifPresent(date -> updateDate(OBSERVATION_TIME, date));
fields.getDatePrevue().ifPresent(date -> updateDate(END_TIME, date));
}));
}
public void updateIcon(String channelId, String value) {
String iconChannelId = channelId + "-icon";
if (isLinked(iconChannelId)) {
String pictoName = channelId + (!value.isEmpty() ? "_" + value.toLowerCase() : "");
byte[] image = getImage("picto" + File.separator + pictoName + ".gif");
if (image != null) {
RawType picto = new RawType(image, "image/gif");
updateState(iconChannelId, picto);
}
}
}
private byte @Nullable [] getImage(String iconPath) {
URL url = FrameworkUtil.getBundle(getClass()).getResource(iconPath);
logger.debug("Path to icon image resource is: {}", url);
try (InputStream in = new BufferedInputStream(url.openStream())) {
ByteArrayOutputStream bos = new ByteArrayOutputStream();
int next = in.read();
while (next > -1) {
bos.write(next);
next = in.read();
}
bos.flush();
return bos.toByteArray();
public @Nullable String getResource(String iconPath) {
Bundle bundle = FrameworkUtil.getBundle(getClass());
try (InputStream stream = bundle.getResource(iconPath).openStream()) {
return new BufferedReader(new InputStreamReader(stream)).lines().collect(Collectors.joining("\n"));
} catch (IOException e) {
logger.debug("I/O exception occurred getting image data: {}", e.getMessage(), e);
logger.warn("Unable to load ressource '{}' : {}", iconPath, e.getMessage());
}
return null;
}
public void updateAlertString(String channelId, String value) {
if (!value.isEmpty() && isLinked(channelId)) {
int level = ALERT_LEVELS.indexOf(value);
if (level != -1) {
updateState(channelId, new StringType(Integer.toString(level)));
} else {
updateState(channelId, UnDefType.UNDEF);
logger.warn("Value {} is not a valid alert level for channel {}", value, channelId);
public void updateAlert(String channelId, AlertLevel value) {
String channelIcon = channelId + "-icon";
if (isLinked(channelId)) {
updateState(channelId, value != AlertLevel.UNKNOWN ? new StringType(value.name()) : UnDefType.UNDEF);
}
if (isLinked(channelIcon)) {
String resource = getResource(String.format("picto/%s.svg", channelId));
if (resource != null) {
resource = resource.replaceAll(ALERT_COLORS.get(AlertLevel.UNKNOWN), ALERT_COLORS.get(value));
}
updateState(channelIcon,
resource != null ? new RawType(resource.getBytes(), "image/svg+xml") : UnDefType.UNDEF);
}
}
public void updateDate(String channelId, ZonedDateTime zonedDateTime) {
if (isLinked(channelId)) {
ZonedDateTime localDateTime = zonedDateTime.withZoneSameInstant(timeZoneProvider.getTimeZone());
updateState(channelId, new DateTimeType(localDateTime));
updateState(channelId, new DateTimeType(zonedDateTime));
}
}
}

View File

@ -28,33 +28,45 @@ import com.google.gson.annotations.SerializedName;
*/
@NonNullByDefault
public class ResponseFieldDTO {
public enum AlertLevel {
UNKNOWN,
@SerializedName("Vert")
GREEN,
@SerializedName("Jaune")
YELLOW,
@SerializedName("Orange")
ORANGE,
@SerializedName("Rouge")
RED;
}
@SerializedName("nom_reg")
private String nomReg = "";
@SerializedName("typeprev")
private String typePrev = "";
@SerializedName("etat_canicule")
private String canicule = "";
private AlertLevel canicule = AlertLevel.UNKNOWN;
@SerializedName("nom_dept")
private String nomDept = "";
@SerializedName("etat_grand_froid")
private String grandFroid = "";
private AlertLevel grandFroid = AlertLevel.UNKNOWN;;
@SerializedName("noversion")
private String noVersion = "";
@SerializedName("etat_pluie_inondation")
private String pluieInondation = "";
private AlertLevel pluieInondation = AlertLevel.UNKNOWN;;
@SerializedName("etat_neige")
private String neige = "";
private AlertLevel neige = AlertLevel.UNKNOWN;;
@SerializedName("etat_vent")
private String vent = "";
private AlertLevel vent = AlertLevel.UNKNOWN;;
@SerializedName("etat_inondation")
private String inondation = "";
private AlertLevel inondation = AlertLevel.UNKNOWN;;
@SerializedName("etat_avalanches")
private String avalanches = "";
private AlertLevel avalanches = AlertLevel.UNKNOWN;;
@SerializedName("etat_orage")
private String orage = "";
private AlertLevel orage = AlertLevel.UNKNOWN;
private int echeance;
@SerializedName("etat_vague_submersion")
private String vagueSubmersion = "";
private AlertLevel vagueSubmersion = AlertLevel.UNKNOWN;;
private String dep = "";
@SerializedName("vigilancecommentaire_texte")
private String vigilanceComment = "";
@ -85,7 +97,7 @@ public class ResponseFieldDTO {
return typePrev;
}
public String getCanicule() {
public AlertLevel getCanicule() {
return canicule;
}
@ -93,7 +105,7 @@ public class ResponseFieldDTO {
return nomDept;
}
public String getGrandFroid() {
public AlertLevel getGrandFroid() {
return grandFroid;
}
@ -101,15 +113,15 @@ public class ResponseFieldDTO {
return noVersion;
}
public String getPluieInondation() {
public AlertLevel getPluieInondation() {
return pluieInondation;
}
public String getNeige() {
public AlertLevel getNeige() {
return neige;
}
public String getVent() {
public AlertLevel getVent() {
return vent;
}
@ -121,15 +133,15 @@ public class ResponseFieldDTO {
return Optional.empty();
}
public String getInondation() {
public AlertLevel getInondation() {
return inondation;
}
public String getAvalanches() {
public AlertLevel getAvalanches() {
return avalanches;
}
public String getOrage() {
public AlertLevel getOrage() {
return orage;
}
@ -137,7 +149,7 @@ public class ResponseFieldDTO {
return echeance;
}
public String getVagueSubmersion() {
public AlertLevel getVagueSubmersion() {
return vagueSubmersion;
}

View File

@ -9,6 +9,9 @@
<description>Fournit les niveaux d'alerte météo pour un département.</description>
<channels>
<channel id="vague-submersion" typeId="alert-level">
<label>Etat Vague Submersion</label>
</channel>
<channel id="vent" typeId="alert-level">
<label>Etat Vent</label>
</channel>
@ -33,32 +36,40 @@
<channel id="avalanches" typeId="alert-level">
<label>Etat Avalanches</label>
</channel>
<channel id="vague-submersion-icon" typeId="condition-icon">
<label>Icône Vague Submersion</label>
</channel>
<channel id="vent-icon" typeId="condition-icon">
<label>Etat Vent</label>
<label>Icône Vent</label>
</channel>
<channel id="pluie-inondation-icon" typeId="condition-icon">
<label>Etat Pluie Inondation</label>
<label>Icône Pluie Inondation</label>
</channel>
<channel id="orage-icon" typeId="condition-icon">
<label>Etat Orage</label>
<label>Icône Orage</label>
</channel>
<channel id="inondation-icon" typeId="condition-icon">
<label>Etat Inondation</label>
<label>Icône Inondation</label>
</channel>
<channel id="neige-icon" typeId="condition-icon">
<label>Etat Neige</label>
<label>Icône Neige</label>
</channel>
<channel id="canicule-icon" typeId="condition-icon">
<label>Etat Canicule</label>
<label>Icône Canicule</label>
</channel>
<channel id="grand-froid-icon" typeId="condition-icon">
<label>Etat Grand Froid</label>
<label>Icône Grand Froid</label>
</channel>
<channel id="avalanches-icon" typeId="condition-icon">
<label>Etat Avalanches</label>
<label>Icône Avalanches</label>
</channel>
<channel id="comment" typeId="comment"/>
<channel id="observation-time" typeId="observation-time"/>
<channel id="observation-time" typeId="timestamp">
<label>Début de validité</label>
</channel>
<channel id="end-time" typeId="timestamp">
<label>Fin de validité</label>
</channel>
</channels>
<config-description>
@ -178,10 +189,10 @@
<label>Alerte</label>
<state readOnly="true">
<options>
<option value="0">Vert</option>
<option value="1">Jaune</option>
<option value="2">Orange</option>
<option value="3">Rouge</option>
<option value="GREEN">Vert</option>
<option value="YELLOW">Jaune</option>
<option value="ORANGE">Orange</option>
<option value="RED">Rouge</option>
</options>
</state>
</channel-type>
@ -192,10 +203,10 @@
<state readOnly="true" pattern="%s"/>
</channel-type>
<channel-type id="observation-time" advanced="true">
<channel-type id="timestamp" advanced="true">
<item-type>DateTime</item-type>
<label>Heure d'observation</label>
<description>Date et heure d'observation.</description>
<category>time</category>
<state readOnly="true"/>
</channel-type>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,70 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
viewBox="0 0 9.7895803 9.7895803"
version="1.1"
id="svg8"
sodipodi:docname="avalanches.svg"
width="9.7895803"
height="9.7895803"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)">
<metadata
id="metadata14">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs12" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1627"
inkscape:window-height="847"
id="namedview10"
showgrid="false"
inkscape:zoom="26.5625"
inkscape:cx="0.35839858"
inkscape:cy="4.8271842"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="svg8" />
<g
id="g6"
transform="translate(-122.86117,-110.00997)">
<path
style="fill:#000000;stroke-width:0.32188"
d="m 127.75596,119.79955 h -4.89479 v -4.89479 -4.89479 h 4.89479 4.89479 v 4.89479 4.89479 z m 0.01,-0.43194 4.62048,-0.0456 v -4.46023 -4.46024 h -4.60952 -4.60952 l -0.011,4.50582 -0.011,4.50583 z m 1.30694,-0.35123 c -0.0265,0 -1.08198,-1.43139 -2.34542,-3.18088 -2.23411,-3.09356 -2.31144,-3.16177 -2.81702,-2.4846 -0.28592,0.38296 -0.51985,0.52007 -0.51985,0.3047 0,-0.21537 0.2188,-0.68464 0.48622,-1.04282 0.45514,-0.6096 0.51696,-0.60096 0.96705,0.1351 0.26445,0.43249 0.58144,0.78634 0.7044,0.78634 0.12297,0 0.22358,-0.33984 0.22358,-0.7552 0,-0.41536 0.1871,-1.0321 0.41577,-1.37054 0.22868,-0.33844 0.69629,-0.61535 1.03913,-0.61535 0.35102,0 0.85239,0.43092 1.14759,0.98635 0.28832,0.54249 0.60606,1.86694 0.70608,2.94323 0.12407,1.33519 0.34189,2.08365 0.6856,2.35589 0.27706,0.21945 0.50199,0.78928 0.49984,1.26629 -0.004,0.85947 -0.007,0.85886 -0.33072,-0.0677 -0.17976,-0.51426 -0.4459,-0.86669 -0.59142,-0.78317 -0.14552,0.0835 -0.25513,0.46023 -0.24357,0.83713 0.0116,0.3769 -7.2e-4,0.68527 -0.0273,0.68527 z m -0.66072,-2.04838 c 0.22131,-0.0623 0.4379,-0.47937 0.4813,-0.92676 0.0434,-0.44738 -0.10391,-1.03799 -0.32736,-1.31245 -0.22345,-0.27446 -0.58638,-0.39673 -0.80652,-0.27171 -0.22013,0.12502 -0.40024,0.55002 -0.40024,0.94445 0,0.39442 0.14635,0.93374 0.32522,1.19847 0.17887,0.26473 0.50629,0.43033 0.7276,0.368 z m -1.60099,-1.86745 c 0.12484,0 0.2955,-0.26432 0.37927,-0.58737 0.0838,-0.32306 0.45368,-0.58738 0.82205,-0.58738 0.41896,0 0.66976,-0.21995 0.66976,-0.58737 0,-0.32306 -0.23812,-0.9398 -0.52916,-1.37055 -0.29104,-0.43074 -0.74348,-0.78316 -1.00542,-0.78316 -0.26194,0 -0.61912,0.21145 -0.79375,0.4699 -0.17462,0.25844 -0.3175,0.79866 -0.3175,1.20049 0,0.40183 0.12325,1.07143 0.27389,1.48802 0.15064,0.41658 0.37603,0.75742 0.50086,0.75742 z"
id="path1277" />
<path
style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke-width:0.0668173"
d="m 123.20793,114.88335 v -4.47676 h 4.57699 4.57699 v 4.43249 4.43249 l -2.71706,0.0443 c -1.49438,0.0244 -3.55402,0.0443 -4.57699,0.0443 h -1.85993 z m 5.94674,3.53406 c 0,-0.35563 0.0352,-0.602 0.10544,-0.7378 l 0.10543,-0.20389 0.15334,0.14406 c 0.16014,0.15044 0.27344,0.37849 0.50776,1.02205 0.0769,0.21131 0.1678,0.3842 0.20191,0.3842 0.10424,0 0.0694,-0.96396 -0.0479,-1.32736 -0.0605,-0.18724 -0.24021,-0.49304 -0.39942,-0.67956 -0.34297,-0.4018 -0.45484,-0.73864 -0.59711,-1.79797 -0.25079,-1.8673 -0.46424,-2.81595 -0.77243,-3.43293 -0.18582,-0.37202 -0.70167,-0.89519 -0.96995,-0.98373 -0.56461,-0.18634 -1.28297,0.35104 -1.54669,1.15701 -0.0814,0.24884 -0.1482,0.57958 -0.14841,0.735 -4.2e-4,0.31938 -0.11341,0.7837 -0.19072,0.7837 -0.088,0 -0.39417,-0.35273 -0.72656,-0.83715 -0.39648,-0.57783 -0.51493,-0.60878 -0.84666,-0.22124 -0.26783,0.3129 -0.64111,1.01086 -0.64111,1.19875 0,0.26264 0.16444,0.20365 0.54393,-0.19512 0.4061,-0.42674 0.48125,-0.44867 0.75066,-0.21906 0.23902,0.20371 0.89298,1.05182 2.24622,2.9131 1.84026,2.53114 2.13639,2.91586 2.20957,2.87063 0.0345,-0.0213 0.0627,-0.27904 0.0627,-0.57269 z"
id="path1307" />
<path
style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke-width:0.0668173"
d="m 126.57575,114.77814 c -0.31079,-0.53031 -0.44606,-1.06635 -0.45401,-1.79908 -0.009,-0.78995 0.11487,-1.19099 0.45984,-1.49388 0.31583,-0.27731 0.57949,-0.32223 0.86296,-0.14704 0.55498,0.343 1.10692,1.24806 1.16135,1.90434 0.0351,0.42337 -0.0989,0.56739 -0.60193,0.64691 -0.46763,0.0739 -0.64956,0.22061 -0.88099,0.71034 -0.10683,0.22605 -0.23403,0.42628 -0.28268,0.44494 -0.0537,0.0206 -0.15772,-0.0842 -0.26454,-0.26653 z"
id="path1309" />
<path
style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke-width:0.0668173"
d="m 127.97475,116.81722 c -0.61915,-0.39664 -0.75613,-1.93645 -0.20443,-2.29794 0.18143,-0.11888 0.43789,-0.0612 0.67278,0.15141 0.48262,0.43676 0.55408,1.58356 0.13008,2.08746 -0.19437,0.23099 -0.31195,0.2426 -0.59843,0.0591 z"
id="path1311" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 297 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 285 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 274 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 251 B

View File

@ -0,0 +1,74 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
viewBox="0 0 9.7895832 9.7895832"
version="1.1"
id="svg1393"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
sodipodi:docname="canicule.svg"
width="9.7895832"
height="9.7895832">
<metadata
id="metadata12">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs10" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1017"
id="namedview8"
showgrid="false"
inkscape:zoom="13.28125"
inkscape:cx="32"
inkscape:cy="21.356251"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-93.416825,-184.13111)">
<g
id="g1354"
transform="translate(83.544975,194.58786)">
<path
style="fill:#000000;stroke-width:0.32188"
d="M 14.766642,-0.6671688 H 9.87185 v -4.8947916 -4.8947916 h 4.894792 4.894791 v 4.8947916 4.8947916 z m 0,-0.3915833 h 4.630208 v -4.5032083 -4.5032086 h -4.630208 -4.630209 v 4.5032086 4.5032083 z m -0.15538,-0.7831667 c -0.268103,0 -0.602405,-0.3178666 -0.742892,-0.7063701 -0.156089,-0.4316497 -0.161285,-0.9266052 -0.01336,-1.2726458 0.13314,-0.3114517 0.243894,-1.7557101 0.246123,-3.2094632 0.0036,-2.3801332 0.05672,-2.6431874 0.533218,-2.6431874 0.475006,0 0.529167,0.2610555 0.529167,2.5506049 0,1.4028329 0.141664,2.8863302 0.31481,3.2966614 0.246885,0.5850823 0.239895,0.8796528 -0.0324,1.3652283 -0.190964,0.3405443 -0.566565,0.6191719 -0.834668,0.6191719 z m 0.02309,-6.2653332 c 0.145521,0 0.264583,-0.2643188 0.264583,-0.587375 0,-0.3230563 -0.119062,-0.587375 -0.264583,-0.587375 -0.145521,0 -0.264583,0.2643187 -0.264583,0.587375 0,0.3230562 0.119062,0.587375 0.264583,0.587375 z"
id="path1281" />
<path
style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke-width:0.0668173"
d="m 38.368978,-21.102496 v -16.920055 h 17.425131 17.425132 v 16.920055 16.9200556 H 55.794109 38.368978 Z m 19.192737,12.9286171 c 0.786446,-0.815923 1.280189,-1.6082285 1.506975,-2.4182291 0.351645,-1.255953 0.3343,-1.389389 -0.61121,-4.70201 -0.534112,-1.871277 -0.8623,-5.917059 -1.10622,-13.63706 -0.129136,-4.087135 -0.312249,-6.641055 -0.501234,-6.99083 -0.608382,-1.125998 -2.519368,-1.050578 -3.080353,0.121569 -0.227044,0.474398 -0.390561,2.95042 -0.537035,8.131952 -0.225981,7.994135 -0.487079,11.165905 -1.123743,13.651051 -0.464979,1.814988 -0.328379,3.353342 0.441552,4.9726541 0.686845,1.4445636 1.552219,2.084422 2.819069,2.084422 0.890867,0 1.173124,-0.1562479 2.192199,-1.213519 z"
id="path1313"
transform="scale(0.26458333)" />
<path
style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke-width:0.0668173"
d="m 54.954766,-31.154804 c -0.825191,-0.911826 -0.339229,-4.283341 0.539143,-3.740477 0.472358,0.291934 0.771976,1.835308 0.548579,2.825817 -0.280059,1.241745 -0.570607,1.486066 -1.087722,0.91466 z"
id="path1315"
transform="scale(0.26458333)" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 949 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 211 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 203 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 184 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 263 B

View File

@ -0,0 +1,79 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
viewBox="0 0 9.7895832 9.7895832"
version="1.1"
id="svg1393"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
sodipodi:docname="grand-froid.svg"
width="9.7895832"
height="9.7895832">
<metadata
id="metadata13">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs11" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1017"
id="namedview9"
showgrid="false"
inkscape:zoom="13.28125"
inkscape:cx="31.999998"
inkscape:cy="31.999996"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-297.16489,-250.29584)">
<g
id="g1358"
transform="translate(275.6,260.88623)">
<path
style="fill:#000000;stroke-width:0.32188"
d="m 26.459684,-0.8008028 h -4.894792 v -4.8947916 -4.8947916 h 4.894792 4.894791 v 4.8947916 4.8947916 z m 0,-0.3915833 h 4.630208 v -4.5032083 -4.5032086 h -4.630208 -4.630209 v 4.5032086 4.5032083 z M 26.31061,-1.5839695 c -0.264635,0 -0.535253,-0.1321593 -0.601373,-0.2936875 -0.06612,-0.1615281 -0.05663,-1.9236531 0.02108,-3.9158332 0.124687,-3.1962107 0.199213,-3.6221458 0.63377,-3.6221458 0.430231,0 0.492468,0.3249209 0.492468,2.5710349 0,1.4140691 0.127324,2.9231392 0.282943,3.3534893 0.205991,0.5696468 0.19718,0.935397 -0.0324,1.3447981 -0.173438,0.3092894 -0.531861,0.5623442 -0.796496,0.5623442 z m 0.01678,-3.5242499 c 0.145521,0 0.264583,-0.8810625 0.264583,-1.9579166 0,-1.0768542 -0.119062,-1.9579167 -0.264583,-1.9579167 -0.145521,0 -0.264583,0.8810625 -0.264583,1.9579167 0,1.0768541 0.119062,1.9579166 0.264583,1.9579166 z"
id="path1279" />
<path
style="opacity:0.190323;fill:#008080;fill-opacity:1;stroke-width:0.252538"
d="m 82.563152,-21.607572 v -16.920055 h 17.425131 17.425127 v 16.920055 16.9200553 H 99.988283 82.563152 Z M 101.4081,-6.7687896 c 1.09153,-0.9583771 1.84981,-2.4800962 1.85763,-3.7279074 0.003,-0.486578 -0.22121,-1.677631 -0.49837,-2.646786 -0.61938,-2.165879 -0.96818,-6.366224 -1.22714,-14.777542 -0.2113,-6.863316 -0.32257,-7.448118 -1.47204,-7.736619 -1.366107,-0.34287 -1.95345,0.589065 -2.332094,3.700323 -0.387742,3.186007 -0.772713,12.731798 -0.775663,19.233389 l -0.0026,5.7269136 0.665402,0.5234055 c 1.063626,0.8366488 2.635405,0.7140667 3.784875,-0.2951767 z"
id="path1317"
transform="scale(0.26458333)" />
</g>
<path
style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke-width:0.0668173"
d="M 1.0974911,18.433415 V 1.6477006 H 18.41892 35.740348 V 18.433415 35.219129 H 18.41892 1.0974911 Z M 19.015268,33.903324 c 0.788791,-0.329579 2.189287,-1.96572 2.524361,-2.949104 0.3712,-1.089412 0.344714,-1.695791 -0.172083,-3.939834 C 20.774155,24.437761 20.443,20.732679 20.209559,14.058415 20.0063,8.2471094 19.795346,5.6919819 19.457625,4.9507637 19.211291,4.4101201 18.238005,4.0895385 17.59043,4.335746 c -1.419113,0.5395457 -1.947735,5.6308277 -2.149758,20.704812 -0.102384,7.639421 -0.09346,7.958025 0.230916,8.246564 0.956292,0.850638 2.223621,1.084191 3.34368,0.616202 z"
id="path833"
transform="matrix(0.26458333,0,0,0.26458333,297.16489,250.29584)" />
<path
style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke-width:0.0668173"
d="m 17.811435,20.397701 c -0.378489,-1.042188 -0.509504,-2.393811 -0.590422,-6.091107 -0.09033,-4.127449 0.0745,-6.67487 0.504813,-7.8018485 0.172393,-0.451492 0.199122,-0.4615376 0.421701,-0.1584932 0.940863,1.2809953 0.940384,12.7177667 -5.86e-4,13.9957537 -0.201202,0.273264 -0.253348,0.28192 -0.335506,0.0557 z"
id="path835"
transform="matrix(0.26458333,0,0,0.26458333,297.16489,250.29584)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 962 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 204 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 197 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 936 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,69 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
viewBox="0 0 9.7895832 9.7895832"
version="1.1"
id="svg1393"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
sodipodi:docname="inondation.svg"
width="9.7895832"
height="9.7895832">
<metadata
id="metadata11">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs9" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1017"
id="namedview7"
showgrid="false"
inkscape:zoom="13.28125"
inkscape:cx="32"
inkscape:cy="20.943708"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-52.954474,-125.5259)">
<g
id="g1371"
transform="translate(62.392847,115.8038)">
<path
style="fill:#000000;stroke-width:0.32188"
d="M -9.438373,14.616889 V 9.7220969 h 4.894792 4.89479095 V 14.616889 19.51168 H -4.543581 -9.438373 Z m 9.52499995,0 V 10.11368 H -4.543581 -9.17379 v 2.180097 c 0,2.075406 0.02859,2.16784 0.595313,1.924873 0.327422,-0.140372 0.932974,-0.609257 1.345671,-1.041967 l 0.750358,-0.786745 0.645938,0.898105 c 0.860196,1.196005 2.253584,1.197735 3.112244,0.0039 0.548344,-0.762411 0.676197,-0.806869 0.867263,-0.301574 0.123257,0.325967 0.581231,0.86826 1.01772095,1.205094 0.443833,0.342503 0.605269,0.613492 0.366278,0.614841 -0.235037,0.0013 -0.74105295,-0.362802 -1.12447895,-0.809175 l -0.69714,-0.811589 -0.69714,0.811588 c -0.867719,1.010171 -1.577534,1.024222 -2.654264,0.05254 -0.827969,-0.747189 -0.849716,-0.747172 -1.841881,0.0015 -0.552211,0.416669 -1.157439,0.75758 -1.344951,0.75758 -0.23686,0 -0.340931,0.657425 -0.340931,2.153708 v 2.153708 h 4.630209 4.63020795 z M -1.594659,16.353881 c -0.641189,-0.746452 -0.739524,-0.761433 -1.285177,-0.195792 -0.808842,0.838472 -2.379468,0.774277 -3.155338,-0.128967 -0.624976,-0.727577 -0.64851,-0.727577 -1.255618,0 -0.340287,0.407812 -0.873405,0.737605 -1.184705,0.732875 -0.391488,-0.006 -0.219295,-0.241516 0.558478,-0.764021 0.618464,-0.415482 1.124479,-0.955914 1.124479,-1.20096 0,-0.245046 0.366323,0.01066 0.81405,0.56823 1.070375,1.332978 2.239677,1.332249 3.180648,-0.002 0.673613,-0.955136 0.725974,-0.970932 0.877427,-0.264695 0.08859,0.41308 0.546644,1.035111 1.01790795,1.382291 0.47194,0.347678 0.664877,0.642484 0.429503,0.656278 -0.235037,0.01377 -0.73978195,-0.338691 -1.12165495,-0.783256 z"
id="path1225" />
<path
style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke-width:0.0668173"
d="m -34.542754,65.202413 c 0.07777,-3.784916 0.26455,-7.290867 0.415075,-7.791002 0.236883,-0.787068 0.519671,-1.0323 2.103118,-1.823816 1.006189,-0.502962 2.953106,-1.713161 4.326481,-2.68933 1.373376,-0.97617 2.756658,-1.774854 3.07396,-1.774854 0.317303,0 1.068727,0.397287 1.669833,0.88286 4.388442,3.544984 5.250451,4.00616 7.201769,3.852961 1.747561,-0.137202 2.900313,-0.934853 5.181739,-3.585525 l 1.8413944,-2.139421 0.8535511,0.936504 c 2.8130627,3.086456 3.398537,3.653318 4.4847515,4.342173 1.3549404,0.859279 1.8064659,0.939512 2.0286616,0.360481 0.1073489,-0.279747 -0.5646475,-1.099355 -2.2258459,-2.714785 -1.584005,-1.540361 -2.6301796,-2.802288 -3.1290232,-3.774321 -1.0206506,-1.988806 -1.4858258,-1.912819 -3.5284725,0.576383 -2.013984,2.454271 -3.446776,3.355628 -5.546629,3.489337 -2.753584,0.175335 -4.429197,-0.879719 -6.985902,-4.398694 -0.847595,-1.166605 -1.603106,-2.121101 -1.678913,-2.121101 -0.07581,0 -1.34103,1.167797 -2.811607,2.595103 -3.876779,3.762711 -5.918991,5.000783 -6.798341,4.121432 -0.368238,-0.368237 -0.431272,-1.337366 -0.511326,-7.861423 l -0.09131,-7.441408 H -17.217036 0.23571924 V 55.164022 72.084077 H -17.224214 -34.684147 Z m 33.2548425,-0.757615 c -0.011541,-0.433476 -0.6346789,-1.116324 -2.2896093,-2.50899 -1.7678629,-1.487703 -3.1077141,-3.446221 -3.6392765,-5.319692 -0.5497629,-1.937612 -1.007756,-1.914908 -2.5471578,0.126269 -1.8865739,2.501514 -3.1625869,3.738629 -4.5212689,4.383439 -2.683958,1.273768 -4.666502,0.50201 -8.217064,-3.19871 -1.324778,-1.380805 -2.580423,-2.510554 -2.790322,-2.510554 -0.209899,0 -0.516585,0.373199 -0.681525,0.82933 -0.376293,1.040621 -1.729622,2.37242 -4.546298,4.473971 -2.406408,1.795445 -2.993863,2.782846 -1.649428,2.772373 1.324658,-0.01032 2.912943,-0.98178 4.752533,-2.906851 0.991149,-1.037205 1.96814,-1.885827 2.171091,-1.885827 0.202951,0 1.093537,0.731032 1.979079,1.624516 2.19947,2.219196 3.967073,3.014104 6.709091,3.017147 2.45079,0.0027 4.131935,-0.669737 6.14575,-2.458289 0.7265402,-0.645272 1.5065042,-1.173222 1.7332506,-1.173222 0.2267464,0 1.2936519,0.905395 2.3709038,2.011989 1.0772494,1.106594 2.3368743,2.242592 2.7991655,2.524437 0.9378787,0.571802 2.2341039,0.687742 2.2210856,0.198664 z"
id="path1285"
transform="scale(0.26458333)" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1009 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,69 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
viewBox="0 0 9.7895832 9.7895832"
version="1.1"
id="svg1393"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
sodipodi:docname="neige.svg"
width="9.7895832"
height="9.7895832">
<metadata
id="metadata11">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs9" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1017"
id="namedview7"
showgrid="false"
inkscape:zoom="13.28125"
inkscape:cx="32"
inkscape:cy="31.999999"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-42.484524,-105.98452)">
<g
id="g1362"
transform="translate(58.404184,115.7731)">
<path
style="fill:#000000;stroke-width:0.32188"
d="m -15.91966,-4.8937868 v -4.894792 h 4.894792 4.8947916 v 4.894792 4.89479122 h -4.8947916 -4.894792 z m 9.5250003,0 v -4.503209 h -4.6302083 -4.630208 v 4.503209 4.50320792 h 4.630208 4.6302083 z m -2.7575558,3.2241205 c -1.3426915,-1.1316125 -1.4408305,-1.6962305 -0.4412138,-2.5384175 0.4476353,-0.377137 0.7770746,-0.861916 0.732087,-1.077287 -0.044987,-0.215371 -0.6382777,-0.668805 -1.3184227,-1.007631 -1.29152,-0.643394 -2.129231,-1.459359 -0.977395,-0.952023 1.4306217,0.630129 2.3957751,1.364246 2.5437095,1.934802 0.1214908,0.468568 0.269897,0.506894 0.6861442,0.177196 0.6981238,-0.552964 0.3214717,-1.117238 -1.3229928,-1.982015 -0.6849714,-0.360207 -1.0072769,-0.664709 -0.7162356,-0.676671 0.7235301,-0.02974 2.778125,1.388767 2.778125,1.918035 0,0.235918 -0.3564348,0.729117 -0.792077,1.095999 -0.4356426,0.366882 -0.7928301,0.802068 -0.79375,0.967081 -9.261e-4,0.165013 0.4150457,0.594127 0.9243687,0.953589 0.5093229,0.359461 0.9260416,0.801666 0.9260416,0.9826784 0,0.4116586 -1.3929669,-0.6337804 -1.9572785,-1.4689614 -0.4162184,-0.616003 -0.9531381,-0.480201 -0.9531381,0.241075 0,0.206145 0.4167187,0.668913 0.9260416,1.028374 0.5093229,0.3594612 0.9260417,0.7971417 0.9260417,0.9726231 0,0.42440782 0.018881,0.43357992 -1.1700558,-0.5684466 z m -4.3722895,0.117056 c -0.237019,-0.2167985 -0.249346,-0.3847375 -0.04215,-0.5742555 0.354773,-0.324508 0.390963,-1.39638 0.04715,-1.39638 -0.135126,0 -0.418609,0.255928 -0.62996,0.568728 -0.211352,0.312801 -0.457981,0.459644 -0.548066,0.32632 -0.319084,-0.472245 -0.155491,-0.813229 0.50849,-1.059869 0.738112,-0.274176 0.643098,-1.009929 -0.13042,-1.009929 -0.266885,0 -0.553777,-0.264318 -0.63754,-0.587375 -0.08889,-0.342848 -0.004,-0.587375 0.203879,-0.587375 0.195896,0 0.504394,0.264319 0.685552,0.587375 0.457644,0.816113 0.79375,0.733207 0.79375,-0.195791 0,-0.430742 -0.123757,-0.783167 -0.275015,-0.783167 -0.158558,0 -0.130548,-0.230378 0.06614,-0.544041 0.430665,-0.68677 0.698303,-0.108042 0.53494,1.15673 -0.14775,1.143899 0.451461,1.325807 0.650812,0.197574 0.07943,-0.449554 0.28392,-0.670696 0.504397,-0.54548 0.557802,0.316792 0.445465,1.229768 -0.168843,1.372211 -0.744003,0.172516 -0.782151,0.880726 -0.05566,1.033428 0.64113,0.134762 0.779199,0.639408 0.295889,1.081487 -0.164682,0.150634 -0.408723,-0.01518 -0.542313,-0.368473 -0.13359,-0.353294 -0.356038,-0.642353 -0.494328,-0.642353 -0.366777,0 -0.308201,1.473065 0.06592,1.6576296 0.210471,0.1038323 0.180113,0.2345021 -0.09014,0.3879859 -0.22412,0.1272846 -0.558233,0.093543 -0.742474,-0.07498 z"
id="path1231" />
<path
style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke-width:0.0668173"
d="m -59.110743,-18.577114 v -16.920055 h 17.425132 17.425131 v 16.920055 16.9200549 h -17.425131 -17.425132 z m 29.041886,14.6410952 c 0,-0.9403308 -1.013671,-2.0990439 -3.558588,-4.0677732 -2.88909,-2.234978 -3.690923,-3.42008 -3.222723,-4.76316 0.572646,-1.642691 2.024642,-1.441013 3.345267,0.464648 1.610723,2.3242749 5.640992,5.5944822 6.894751,5.5944822 1.32439,0 0.206273,-1.7031223 -2.554376,-3.8908352 -1.169524,-0.926806 -2.535041,-2.137411 -3.034483,-2.690233 -0.865827,-0.958366 -0.891131,-1.03721 -0.543899,-1.694584 0.200298,-0.379198 1.238099,-1.541768 2.306221,-2.583488 2.124738,-2.072212 3.398287,-3.831379 3.398287,-4.694084 0,-2.279253 -10.331279,-8.844638 -11.034438,-7.012233 -0.200604,0.522764 0.36773,0.960936 3.784599,2.917837 3.876877,2.220356 5.482073,3.729265 5.482073,5.153238 0,0.581028 -1.917361,2.372552 -2.539201,2.372552 -0.358579,0 -0.664319,-0.376923 -1.094197,-1.348952 -0.328113,-0.741923 -1.026052,-1.778433 -1.550976,-2.303355 -1.260284,-1.260286 -4.266177,-3.205453 -6.851552,-4.433763 -2.417085,-1.148355 -3.251741,-1.39918 -3.471695,-1.043287 -0.271166,0.438757 2.192805,2.318985 5.326075,4.064268 3.278733,1.826307 5.037341,3.110148 5.271684,3.848501 0.220112,0.693508 -0.921845,2.47999 -2.470391,3.864693 -4.162203,3.721822 -3.706313,5.644509 2.582028,10.8895601 3.116101,2.5991124 3.535534,2.7599741 3.535534,1.3559681 z m -17.754887,-1.8684539 0.708563,-0.6118797 -0.699454,-0.7329566 c -0.3847,-0.4031241 -0.810858,-1.1213981 -0.947018,-1.5961597 -0.380853,-1.3279593 -0.302129,-3.3279073 0.156786,-3.9831013 0.379306,-0.541534 0.433038,-0.55133 0.867502,-0.158145 0.254733,0.23053 0.709399,0.948004 1.010368,1.594387 0.30097,0.646383 0.723702,1.3741151 0.939406,1.6171831 0.966,1.0885479 2.586751,-0.055432 2.586751,-1.8258181 0,-1.110422 -0.461152,-1.601556 -2.020305,-2.151658 -2.758113,-0.973118 -2.680707,-2.65506 0.174389,-3.78929 1.350749,-0.536605 1.845916,-1.303052 1.845916,-2.857209 0,-1.449239 -0.818361,-2.571143 -1.875493,-2.571143 -0.735092,0 -1.166141,0.697109 -1.639616,2.651651 -0.325517,1.343762 -0.888602,2.399112 -1.280052,2.399112 -0.62669,0 -0.839754,-1.24031 -0.790415,-4.60125 0.03082,-2.099778 -0.0566,-3.674497 -0.22106,-3.981793 -0.565483,-1.056615 -1.757741,-0.345475 -2.524572,1.505817 -0.293929,0.709608 -0.267709,0.820428 0.323816,1.368636 0.752823,0.697692 1.082642,2.337373 0.821049,4.081802 -0.29734,1.982805 -1.000795,1.801127 -2.696915,-0.69652 -1.919661,-2.826826 -4.167386,-2.864653 -3.64147,-0.06128 0.234204,1.248419 1.254406,2.337284 2.365138,2.524324 1.54676,0.260464 1.813078,0.379144 2.209933,0.984822 0.619507,0.945487 0.04882,1.778238 -1.931931,2.819093 -1.833934,0.963706 -2.410758,1.769212 -2.113905,2.951967 0.399064,1.5899974 1.636198,1.5102964 2.852799,-0.18379 0.446854,-0.622234 1.142395,-1.366266 1.545646,-1.653406 l 0.733183,-0.522073 0.396399,0.565938 c 0.701739,1.001873 0.318559,3.2821667 -0.768656,4.5742477 -0.783591,0.931247 -0.759984,1.3167263 0.135475,2.2121861 0.970048,0.9700495 2.438909,1.0233957 3.477743,0.1263095 z"
id="path1301"
transform="scale(0.26458333)" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 367 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 341 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 423 B

View File

@ -0,0 +1,69 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
viewBox="0 0 9.7895832 9.7895832"
version="1.1"
id="svg1393"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
sodipodi:docname="orage.svg"
width="9.7895832"
height="9.7895832">
<metadata
id="metadata11">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs9" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1017"
id="namedview7"
showgrid="false"
inkscape:zoom="13.28125"
inkscape:cx="32"
inkscape:cy="31.999998"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-37.514146,-156.95462)">
<g
id="g1338"
transform="translate(52.995969,178.23579)">
<path
style="fill:#000000;stroke-width:0.32188"
d="m -15.481823,-16.386376 v -4.894792 h 4.894792 4.8947909 v 4.894792 4.894791 h -4.8947909 -4.894792 z m 9.5249999,0 v -4.503209 h -4.6302079 -4.630209 v 4.503209 4.503208 h 4.630209 4.6302079 z m -3.4277969,1.975914 c -0.699178,-1.067625 -0.985125,-1.273847 -1.357425,-0.978959 -0.259411,0.205472 -0.540516,0.373586 -0.624679,0.373586 -0.14667,0 -1.469266,-4.166683 -1.469266,-4.628749 0,-0.123135 0.399437,0.349099 0.887638,1.04941 0.714204,1.024506 1.024381,1.222497 1.5875,1.013323 0.384924,-0.142983 0.699862,-0.174686 0.699862,-0.07045 0,0.104235 0.296155,1.180613 0.658122,2.391951 0.361967,1.211338 0.623448,2.202433 0.581069,2.202433 -0.04238,0 -0.475648,-0.608645 -0.962821,-1.352545 z"
id="path1229" />
<path
style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke-width:0.0668173"
d="m -57.342976,-62.013674 v -16.920055 h 17.298862 17.298863 v 16.920055 16.920055 h -17.298863 -17.298862 z m 25.495988,11.681235 c -0.115675,-0.5216 -1.211855,-4.497414 -2.435955,-8.835143 -2.497331,-8.849558 -2.097406,-8.206971 -4.660215,-7.487884 -2.522853,0.707877 -3.043724,0.362106 -6.566264,-4.358897 -2.506029,-3.358647 -3.292223,-4.047308 -3.058651,-2.6792 0.384231,2.250573 4.3726,15.091497 5.122745,16.493157 0.362776,0.677852 0.692494,0.621744 2.276495,-0.387386 0.757492,-0.482581 1.557191,-0.880329 1.77711,-0.883884 0.661111,-0.01069 2.13698,1.672056 4.595323,5.239455 1.280637,1.858383 2.436729,3.53313 2.569094,3.721657 0.409976,0.583934 0.600688,0.171805 0.380318,-0.821875 z"
id="path1299"
transform="scale(0.26458333)" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1023 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 232 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 233 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 979 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,74 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
viewBox="0 0 9.7895832 9.7895832"
version="1.1"
id="svg1393"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
sodipodi:docname="pluie-inondation.svg"
width="9.7895832"
height="9.7895832">
<metadata
id="metadata12">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs10" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1017"
id="namedview8"
showgrid="false"
inkscape:zoom="13.28125"
inkscape:cx="31.999996"
inkscape:cy="31.999997"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-213.68884,-291.55193)">
<g
id="g1367"
transform="translate(242.17017,290.64973)">
<path
style="fill:#000000;stroke-width:0.32188"
d="m -23.586534,10.691786 h -4.894792 V 5.7969944 0.90220321 h 4.894792 4.894791 V 5.7969944 10.691786 Z m 0,-0.391583 c 2.546614,0 4.630208,-0.15711 4.630208,-0.3491326 0,-0.192023 -0.327422,-0.47007 -0.727604,-0.617884 -0.400183,-0.147812 -0.928675,-0.536888 -1.174427,-0.864612 -0.400418,-0.533978 -0.509578,-0.530809 -1.051059,0.03051 -0.33233,0.344504 -1.027502,0.626371 -1.544827,0.626371 -0.517324,0 -1.202174,-0.271166 -1.521886,-0.602591 -0.523232,-0.542399 -0.659945,-0.542399 -1.368649,0 -0.433044,0.331425 -1.031391,0.602591 -1.329659,0.602591 -0.305661,0 -0.542306,0.256311 -0.542306,0.587375 0,0.4997336 0.690857,0.5873746 4.630209,0.5873746 z m 4.43177,-1.1900776 c 0.109141,0.0084 0.198438,-1.746797 0.198438,-3.9005056 V 1.2937865 h -4.630208 -4.630209 v 3.7689896 3.7689893 l 0.842535,-0.24939 c 0.463394,-0.137165 1.052906,-0.531158 1.310027,-0.875541 0.430504,-0.57661 0.523671,-0.56075 1.177522,0.200442 0.390516,0.454626 1.094635,0.826593 1.564708,0.826593 0.470073,0 1.168392,-0.365214 1.551818,-0.811587 0.383427,-0.446374 0.69714,-0.61408 0.69714,-0.37268 0,0.241399 0.386953,0.687822 0.859896,0.992052 0.472943,0.304229 0.949193,0.560041 1.058333,0.568471 z m -3.868855,-2.34608 c -0.01856,-0.0065 -0.242108,-0.191517 -0.49677,-0.411041 -0.321478,-0.277121 -0.46302,-0.8884646 -0.46302,-1.9998536 v -1.60072 l 0.794827,1.4802375 c 0.613853,1.1432021 0.726963,1.6012601 0.49677,2.0117611 -0.163932,0.292338 -0.313245,0.526165 -0.331807,0.519616 z m -2.711194,-0.852637 c -0.285632,0.06293 -0.603728,-0.01049 -0.70688,-0.163159 -0.103152,-0.152666 -0.184347,-0.9971084 -0.180432,-1.8765393 l 0.0071,-1.5989653 0.779041,1.3705417 c 0.428472,0.7537979 0.743365,1.5467541 0.699762,1.762125 -0.0436,0.2153709 -0.312976,0.4430699 -0.598608,0.5059969 z m 4.705918,-0.310205 c -0.266789,0 -0.564445,-0.1174753 -0.661459,-0.2610559 -0.09701,-0.1435803 -0.176389,-0.9500567 -0.176389,-1.7921692 V 2.0168645 l 0.661459,1.1634259 c 0.363802,0.6398842 0.661458,1.4463604 0.661458,1.7921693 0,0.3486349 -0.216101,0.6287437 -0.485069,0.6287437 z"
id="path1273" />
<path
style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke-width:0.0668173"
d="m -74.743427,33.085246 c -2.610825,-1.553157 -3.918869,-2.713108 -4.565276,-4.048404 -0.305371,-0.630816 -0.664657,-1.146939 -0.798409,-1.146939 -0.133754,0 -1.090955,0.802414 -2.127116,1.783143 -4.312977,4.082245 -7.69676,4.120595 -11.608036,0.131555 -2.755571,-2.810357 -3.100725,-2.878881 -4.649725,-0.92311 -1.092005,1.37877 -3.524801,2.943678 -5.532681,3.558919 -0.92365,0.28302 -1.87823,0.575835 -2.1213,0.650705 -0.41726,0.128522 -0.44194,-0.654622 -0.44194,-14.023029 V 4.9089325 h 17.460022 17.460025 l -0.162574,13.3213865 c -0.159971,13.108053 -0.290409,15.727479 -0.791096,15.886687 -0.138896,0.04417 -1.093748,-0.420125 -2.121894,-1.03176 z m -11.129306,-9.085733 c 0.766657,-1.557303 0.785334,-1.670445 0.501458,-3.037867 -0.263529,-1.269411 -2.33473,-5.601423 -4.535748,-9.486722 l -0.786844,-1.38896 0.09441,5.555839 c 0.05939,3.494784 0.212151,5.930577 0.411797,6.565992 0.319699,1.017509 2.569863,3.409265 3.207436,3.409265 0.171146,0 0.669517,-0.727896 1.107491,-1.617547 z m -10.794946,-1.756864 c 2.574636,-1.089727 2.280523,-2.851098 -1.671486,-10.010111 -2.649535,-4.7996071 -2.518795,-4.911557 -2.359435,2.020306 0.0751,3.264055 0.25862,6.343716 0.40795,6.84369 0.416269,1.393762 1.916544,1.868369 3.622971,1.146115 z m 18.133385,-1.242442 c 1.157549,-0.888739 1.249356,-2.213251 0.342068,-4.93507 -0.604935,-1.814777 -3.931587,-8.2122382 -4.430743,-8.520734 -0.481174,-0.2973818 -0.113282,10.883897 0.412627,12.540889 0.157743,0.497004 1.706427,1.210178 2.64401,1.217575 0.34724,0.0027 0.811658,-0.133457 1.032038,-0.30266 z"
id="path1287"
transform="scale(0.26458333)" />
<path
style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke-width:0.0668173"
d="m -102.75038,38.462361 c -3.28057,-0.343476 -4.29074,-1.134834 -3.47133,-2.719396 0.36256,-0.70112 1.53957,-1.281012 2.60952,-1.285662 0.50515,-0.0022 2.79586,-1.224366 4.566649,-2.436463 2.098632,-1.436502 2.620636,-1.419891 4.403348,0.140119 3.669587,3.211173 8.264142,3.170399 12.048576,-0.106925 0.880388,-0.762416 1.744843,-1.386212 1.921014,-1.386212 0.176168,0 1.150592,0.832128 2.165383,1.849173 1.366595,1.369629 2.336256,2.082409 3.739113,2.748558 1.748713,0.830378 3.292549,2.042887 2.98839,2.347046 -0.263125,0.263125 -2.971614,0.635647 -6.397655,0.879925 -4.230321,0.301623 -21.607824,0.280293 -24.573008,-0.03016 z"
id="path1289"
transform="scale(0.26458333)" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,74 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
viewBox="0 0 9.7895832 9.7895832"
version="1.1"
id="svg1393"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
sodipodi:docname="vague-submersion.svg"
width="9.7895832"
height="9.7895832">
<metadata
id="metadata12">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs10" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1017"
id="namedview8"
showgrid="false"
inkscape:zoom="13.28125"
inkscape:cx="32"
inkscape:cy="32"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-67.082348,-79.138244)">
<g
id="g1343"
transform="translate(70.44034,99.149881)">
<path
style="fill:#000000;stroke-width:0.32188"
d="m 1.5367999,-10.222054 h -4.894792 v -4.894791 -4.894792 h 4.894792 4.894791 v 4.894792 4.894791 z m -4.328005,-0.391583 c 0.166212,0 1.148478,-0.369793 2.18281205,-0.821762 1.034335,-0.45197 2.33065095,-1.192227 2.88070295,-1.645017 0.719979,-0.59267 0.948483,-0.993152 0.815827,-1.429842 -0.101347,-0.333623 -0.168559,-1.103822 -0.149359,-1.711554 0.02236,-0.707725 -0.0807,-1.049325 -0.28666,-0.950193 -0.176863,0.08512 -0.59838,0.890732 -0.936705,1.790237 -0.494216,1.313974 -0.76090195,1.635464 -1.35666495,1.635464 -0.407842,0 -0.888844,-0.262705 -1.068896,-0.583788 -0.180051,-0.321084 -0.274311,-1.118784 -0.209467,-1.772666 0.07172,-0.723234 0.0094,-1.135338 -0.15919205,-1.05218 -0.152401,0.07518 -0.660127,0.916937 -1.128281,1.870562 -0.582348,1.186238 -0.856737,2.197658 -0.868755,3.202301 -0.01023,0.854945 0.108691,1.468438 0.284638,1.468438 z m -0.182326,-3.915833 c 0.06593,0 0.309796,-0.592329 0.541918,-1.316285 0.232121,-0.723957 0.71956,-1.516913 1.083196,-1.762125 0.36363705,-0.245212 0.83414905,-0.44584 1.04558305,-0.44584 0.211434,0 0.384425,0.06103 0.384425,0.135629 0,0.0746 -0.186557,0.689096 -0.414572,1.365555 -0.228015,0.676458 -0.340051,1.408381 -0.248969,1.626495 0.09108,0.218114 0.452045,0.396571 0.802139,0.396571 0.392771,0 0.754084,-0.337407 0.94348995,-0.881063 0.168825,-0.484584 0.550956,-1.277541 0.849179,-1.762125 0.313769,-0.509845 0.852038,-0.881062 1.277548,-0.881062 0.732152,0 0.733469,0.0048 0.305347,1.108801 -0.236486,0.60984 -0.353748,1.402796 -0.260581,1.762125 0.09317,0.359328 0.262481,0.653324 0.376254,0.653324 0.113772,0 0.712821,-0.684494 1.33122,-1.521097 0.774207,-1.047388 1.124362,-1.840056 1.124362,-2.545291 v -1.024196 h -4.630208 -4.630209 v 2.545292 c 0,1.39991 0.05394,2.545292 0.119878,2.545292 z"
id="path1275" />
<path
style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke-width:0.0668173"
d="m -0.03156687,-55.188295 c -2.68648453,-0.789302 -2.75584083,-1.879675 -0.56826864,-8.933927 1.28187424,-4.133653 1.27535118,-4.193704 -0.45634019,-4.201038 -0.5491467,-0.0023 -1.6344213,0.357001 -2.7228331,0.901511 -1.3838423,0.692308 -2.0390283,1.212338 -2.784015,2.209709 -1.2275515,1.643418 -2.1722944,3.523075 -3.0672323,6.102555 -0.9636739,2.777598 -1.3293649,3.661803 -1.5144549,3.661803 -0.247356,0 -0.488862,-6.320022 -0.488862,-12.793105 v -5.894717 H 5.7915582 23.21669 l -0.003,2.335977 c -0.0036,2.771047 -0.414437,4.48012 -1.659978,6.904732 -1.514072,2.947355 -6.76188,9.699651 -7.53845,9.699651 -0.18305,0 -0.588407,-0.59413 -0.900792,-1.32029 -0.781301,-1.816183 -0.588955,-3.766155 0.775202,-7.858884 1.25837,-3.775339 1.213347,-3.954122 -0.994827,-3.950439 -1.116353,0.0019 -1.706316,0.165896 -2.750608,0.764784 -1.6963054,0.97281 -2.5471713,2.143109 -4.3996555,6.051376 -0.8229435,1.736199 -1.7360231,3.645341 -2.0290658,4.242536 -0.8173637,1.665714 -2.3177799,2.4977 -3.74707657,2.077766 z"
id="path1303"
transform="scale(0.26458333)" />
<path
style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke-width:0.0668173"
d="m -11.003538,-41.14346 c -0.499971,-1.1966 -0.506177,-6.34419 -0.01045,-8.668739 0.446195,-2.092289 1.3240593,-4.68241 2.3542887,-6.94628 1.0398291,-2.284964 3.4916911,-6.625705 4.2205179,-7.471943 l 0.5920615,-0.68744 0.1389329,0.631345 c 0.076413,0.34724 0.1718918,2.506441 0.2121752,4.798225 0.068606,3.903094 0.1131052,4.237697 0.7029318,5.285567 0.8118101,1.442239 2.34707707,2.29095 4.1418085,2.289633 2.3906442,-0.0017 3.2602601,-1.04539 5.4409539,-6.529744 1.2415426,-3.122428 1.8801633,-4.427347 2.7053779,-5.528008 1.1763757,-1.569036 1.3364947,-1.151057 1.6204167,4.230014 0.120922,2.291783 0.291481,4.738819 0.379019,5.437856 0.146924,1.173258 0.09311,1.357576 -0.699919,2.397308 -2.2610602,2.964448 -8.6312968,6.796894 -16.493502,9.92278 -4.917835,1.955251 -4.843316,1.943459 -5.304611,0.839426 z"
id="path1305"
transform="scale(0.26458333)" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 751 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 751 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 751 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 769 B

View File

@ -0,0 +1,84 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
viewBox="0 0 9.7895832 9.7895823"
version="1.1"
id="svg1393"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
sodipodi:docname="vent.svg"
width="9.7895832"
height="9.7895823">
<metadata
id="metadata14">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs12" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1017"
id="namedview10"
showgrid="false"
inkscape:zoom="13.28125"
inkscape:cx="32"
inkscape:cy="31.999995"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-88.559827,-201.95268)">
<g
id="g1334"
transform="translate(116.89975,212.88496)">
<path
style="fill:#000000;stroke-width:0.32188"
d="m -28.339923,-6.0374836 v -4.8947914 h 4.894792 4.894791 v 4.8947914 4.8947913 h -4.894791 -4.894792 z m 9.525,0 v -4.5032084 h -4.630208 -4.630209 v 4.5032084 4.5032083 h 4.630209 4.630208 z m -6.740151,2.6564089 c -0.101453,-0.8003685 -0.421703,-1.9483185 -0.711668,-2.5509997 -0.412181,-0.8567068 -0.474665,-1.3294857 -0.286386,-2.1669299 0.429131,-1.9087327 1.247988,-1.9234387 3.84907,-0.069128 1.627579,1.1603009 2.244868,1.7839224 2.05052,2.0715564 -0.152928,0.2263344 -0.278052,0.820163 -0.278052,1.3196193 0,0.7399641 -0.110224,0.871056 -0.595312,0.7080179 -4.02829,-1.3539068 -3.949533,-1.3660533 -3.739623,0.5767467 0.213412,1.9752254 -0.0399,2.0727715 -0.288549,0.1111173 z m 4.423658,-2.2648255 c 0.09601,-0.7433231 0.01472,-0.9789583 -0.337723,-0.9789583 -0.427718,0 -0.785367,0.7278782 -0.785367,1.5983597 0,0.1977562 0.224245,0.3595569 0.498322,0.3595569 0.321436,0 0.543206,-0.3474946 0.624768,-0.9789583 z m -2.018756,-0.7940597 c 0.308139,-1.4570385 0.152978,-1.905917 -0.525594,-1.5205358 -0.566903,0.3219607 -0.805475,1.6464842 -0.420286,2.3333868 0.472245,0.8421508 0.623334,0.7123108 0.94588,-0.812851 z m -2.279334,-0.4981653 c 0,-0.6030383 0.14089,-1.3049514 0.31309,-1.5598069 0.404598,-0.598805 0.156983,-0.960134 -0.429653,-0.6269661 -0.600339,0.3409497 -0.942027,1.7353344 -0.636614,2.5979355 0.366142,1.0341199 0.753177,0.8228356 0.753177,-0.4111625 z"
id="path1227" />
<path
style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke-width:0.0668173"
d="m -106.08284,-22.870263 v -16.920055 h 17.425135 17.425132 v 16.920055 16.9200556 h -17.425132 -17.425135 z m 10.81498,11.277634 c -0.447433,-5.172736 -0.415715,-6.456802 0.170433,-6.89956 0.83042,-0.627274 2.934812,-0.239723 8.637337,1.590676 2.888743,0.92723 5.583292,1.740653 5.987889,1.807605 0.988512,0.16358 1.41043,-0.457383 1.412852,-2.07938 0.0026,-1.739213 0.453599,-4.40253 0.89645,-5.293832 0.200384,-0.403304 0.364334,-0.951541 0.364334,-1.218304 0,-1.494929 -8.954701,-8.602326 -14.034904,-11.139584 -5.06359,-2.52896 -7.031584,-1.721977 -8.450551,3.465179 -0.86214,3.151599 -0.65628,5.348055 0.842332,8.987518 1.282528,3.114693 2.414366,7.404584 3.051768,11.566813 0.218534,1.4270197 0.533279,2.8475468 0.699434,3.1567267 0.301058,0.5602053 0.302765,0.5596674 0.495144,-0.1557858 0.106175,-0.394861 0.07354,-2.0994934 -0.07252,-3.7880719 z"
id="path1291"
transform="scale(0.26458333)" />
<path
style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke-width:0.0668173"
d="m -83.469174,-18.158671 c -0.396334,-0.289806 -0.445622,-0.593038 -0.338645,-2.083439 0.204356,-2.84709 1.609047,-4.920231 3.083108,-4.550265 1.004814,0.252192 1.154814,2.338457 0.356082,4.95257 -0.540444,1.768783 -1.941661,2.528531 -3.100545,1.681134 z"
id="path1293"
transform="scale(0.26458333)" />
<path
style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke-width:0.0668173"
d="m -90.661282,-20.902399 c -1.288027,-2.25525 -1.26429,-5.293999 0.05976,-7.649972 0.699313,-1.244339 2.224113,-2.160656 2.888048,-1.73555 0.690099,0.441859 0.543579,4.316706 -0.283948,7.50921 -0.951681,3.671475 -1.441538,4.016511 -2.663856,1.876312 z"
id="path1295"
transform="scale(0.26458333)" />
<path
style="opacity:1;fill:#b3b3b3;fill-opacity:1;stroke-width:0.0668173"
d="m -97.978494,-23.024495 c -2.029146,-2.579643 -1.475266,-8.576596 0.998559,-10.811548 1.094164,-0.988512 2.337623,-1.22194 2.617938,-0.491451 0.08797,0.229244 -0.17227,1.097568 -0.586571,1.95717 -0.864808,1.794329 -1.279457,3.812982 -1.299535,6.326581 -0.01487,1.862375 -0.412534,3.447641 -0.905127,3.608287 -0.15842,0.05166 -0.529788,-0.213403 -0.825264,-0.589039 z"
id="path1297"
transform="scale(0.26458333)" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 294 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 287 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB