Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • applications/etuc/hubl
  • applications/hubl
  • decentral1se/hubl
  • rngadam/hubl
  • jvtrudel/hubl
  • 3wc/hubl
6 results
Show changes
Showing
with 10081 additions and 5350 deletions
FROM python:3.6
LABEL maintainer="Plup <plup@plup.io>"
# get server address
ARG serve
# fix bug in manager install
ENV PATH="/root/.local/bin:${PATH}"
# install a LDP server with required functions
WORKDIR /app
RUN pip install git+https://git.startinblox.com/djangoldp-packages/server-manager.git
RUN sib startproject sibserver
COPY docker/packages.yml /app/sibserver/
RUN sed -i 's#SERVER#'"${serve:-http://localhost:8000}"'#' /app/sibserver/packages.yml
RUN cd /app/sibserver && sib install server
# fix invalid HTTP_HOST
RUN sed -i 's/ALLOWED_HOSTS\s=\s\[\]/ALLOWED_HOSTS=\["\*"\]/' /app/sibserver/server/settings.py
# run the dev server
EXPOSE 8000
ENTRYPOINT ["python", "/app/sibserver/manage.py"]
CMD ["runserver", "0.0.0.0:8000"]
# vim: ft=dockerfile:
---
version: '3'
services:
front:
environment:
- SERVER=http://127.0.0.1
ports:
- 80:80
server:
build:
args:
serve: http://127.0.0.1
---
version: '3'
services:
front:
build:
context: ../
dockerfile: docker/front.docker
environment:
- SERVER=http://server.org:8000
networks:
- web
server:
build:
context: ../
dockerfile: docker/djangoldp.docker
args:
serve: http://server.org:8000
networks:
web:
aliases:
- server.org
db:
e2e:
image: cypress/included:4.3.0
environment:
- CYPRESS_baseUrl=https://front
volumes:
- ../cypress:/cypress
- ../cypress.json:/cypress.json
networks:
- web
networks:
web:
db:
FROM node:12 AS builder
LABEL maintainer="Plup <plup@plup.io>"
# install dependencies
WORKDIR /build
ADD package.json package-lock.json ./
ADD src/ src/
RUN npm install --only=production
# build the app
ADD docker/config.json .
RUN npm run build
# change index to template
RUN mv /build/dist/index.html /build/dist/index.tpl
# generate a self signed certificate
RUN openssl req -x509 -newkey rsa:4096 -keyout /tmp/key.pem -out /tmp/cert.pem -days 365 -nodes -subj '/CN=localhost'
# serve
FROM nginx:latest
COPY --from=builder /build/dist /var/www
COPY --from=builder /tmp/*.pem /etc/nginx/
WORKDIR /var/www
# get specific config
COPY docker/nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 443
# get server address
ENV SERVER http://localhost:8000
# replace addresses at runtime
CMD /bin/bash -c "envsubst '\$SERVER' < index.tpl > index.html && \
exec nginx -g 'daemon off;'"
# vim: ft=dockerfile:
server {
listen 443 ssl default_server;
root /var/www/;
ssl_certificate /etc/nginx/cert.pem;
ssl_certificate_key /etc/nginx/key.pem;
try_files $uri $uri/ index.html =404;
}
ldppackages:
djangoldp_dashboard: djangoldp_dashboard
djangoldp_account: djangoldp_account
djangoldp_circle: djangoldp_circle
djangoldp_notification: djangoldp_notification
djangoldp_profile: djangoldp_profile
djangoldp_project: djangoldp_project
oidc_provider: 'git+https://github.com/jblemee/django-oidc-provider.git@develop'
server:
site_url: SERVER
allowed_hosts:
- '*'
db_host: database
db_name: postgres
db_user: postgres
db_pass: postgres
smtp_host:
smtp_user:
smtp_pass:
admin_email: test@startinblox.com
admin_name: admin
admin_pass: admin
xmpp_url: https://jabber.happy-dev.fr
jabber_host: 'none'
default_client: SERVER
registration_open: True
<!DOCTYPE html>
<html lang="{{ @root.client.i18n.lang }}" translate="no">
{{> head }}
<body class="bg-color-grey">
{{> integrated/autoLogin }}
{{> integrated/registering }}
<div class="notLoggedIn" style="visibility: hidden; overflow: hidden; white-space: nowrap;">
{{> integrated/menu-left }}
<main id="content" class="segment three-quarter sm-full text-top">
{{> integrated/menu-top }}
{{> widgets }}
{{#each @root.components as | component |}}
{{#unless component.parameters.disabled}}
{{#if component.route}}
<div id="{{component.route}}" data-view="{{component.route}}" hidden="">
{{#if (includes component.integration "replacement")}}
<{{component.parameters.replacement}}{{mergeAttributes component.attributes}}></{{component.parameters.replacement}}>
{{else}}
{{#if (includes component.integration "routing")}}
<div class="scrollbar-content whitespace-normal padding-top-xlarge padding-right-xsmall padding-bottom-xlarge padding-left-xsmall sm-padding-top-medium">
<solid-{{component.type}}{{mergeAttributes component.attributes}}></solid-{{component.type}}>
</div>
{{/if}}
{{#if (any_are component.type "about" "rocketchat" "chat" "circles" "events" "job-board" "polls" "directory" "projects" "resources")}}
{{> (get_legacy_view component.type) component=component }}
{{/if}}
{{/if}}
</div>
{{else}}
{{#if (includes component.integration "replacement")}}
{{#if (includes component.integration "routing")}}
<{{component.parameters.replacement}}{{mergeAttributes component.attributes}}></{{component.parameters.replacement}}>
{{/if}}
{{else}}
{{#if (is component.type "admin")}}
{{> (get_legacy_view "admin") }}
{{/if}}
{{#if (is component.type "analytics")}}
<solid-analytics type="{{component.parameters.type}}" url="{{component.parameters.url}}" id="{{component.parameters.id}}"></solid-analytics>
{{/if}}
{{#if (is component.type "notification")}}
{{> notifications }}
{{/if}}
{{#if (is component.type "lang")}}
<orbit-lang hidden="" lang="{{component.parameters.name}}" file="{{component.parameters.file}}"></orbit-lang>
{{/if}}
{{/if}}
{{/if}}
{{/unless}}
{{/each}}
{{#if (hasComponent "circles")}}
<div class="scrollbar-content bg-color-white" id="{{getRoute 'circles' true}}-left" hidden="" data-view="{{getRoute 'circles' true}}-left" no-render="">
{{> (get_legacy_view "circles/circle-left")}}
</div>
{{/if}}
{{#if (hasComponent "projects")}}
<div class="scrollbar-content bg-color-white" id="{{getRoute 'projects' true}}-left" hidden="" data-view="{{getRoute 'projects' true}}-left" no-render="">
{{> (get_legacy_view "projects/project-left")}}
</div>
{{/if}}
</main>
</div>
<div class="loggedIn-loader bg-color-grey global-loader">
<div>
<solid-loader position="none"></solid-loader>
<div id="something-goes-wrong" hidden="">
<br />
<span data-trans="errors.somethingGoesWrong"></span>
<span>&nbsp;</span>
<a data-trans='errors.reload' href="/"></a>
</div>
</div>
</div>
{{#if @root.client.i18n}}
<orbit-fallback-lang hidden="" lang="{{@root.client.i18n.lang}}"{{#if @root.client.i18n.force}} force="{{@root.client.i18n.force}}"{{/if}}></orbit-fallback-lang>
{{/if}}
<div id="swal-content-text" hidden="" data-trans="success"></div>
</body>
</html>
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@helpers/*": ["./src/helpers/*"],
"@partials/*": ["./src/partials/*"],
"@styles/*": ["./src/styles/*"]
}
}
}
This diff is collapsed.
{
"name": "hubl",
"version": "1.0.0",
"name": "orbit",
"version": "2.0.0",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://git.startinblox.com/applications/hubl.git"
},
"scripts": {
"build": "run-p copy:* build:*",
"build:css": "node-sass src/styles/index.scss -o dist/styles/",
"build:js": "babel 'src/scripts/*.js' -o dist/scripts/index.js",
"build:jscomponents": "babel 'src/components/*.js' --out-dir dist/components/",
"build:html": "pug src/index.pug -o dist/ --obj config.json",
"copy:font": "copyfiles -f src/fonts/* dist/fonts",
"copy:image": "copyfiles -f src/images/* dist/images",
"serve": "pushstate-server -d ./dist -p 3000",
"watch": "run-p copy:* watch:* serve",
"watch:css": "npm run build:css && npm run build:css -- -w",
"watch:js": "babel --watch \"src/scripts/*.js\" -o dist/scripts/index.js",
"watch:jscomponents": "babel --watch \"src/components/*.js\" --out-dir dist/components/",
"watch:pug": "pug --watch src/index.pug -o dist/ --obj config.json",
"watch": "vite",
"build": "vite build",
"serve": "vite preview",
"cypress:open": "cypress open",
"cypress:verify": "cypress verify",
"cypress:info": "cypress info",
"test": "cypress run"
},
"release": {
"branches": [
"master"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"releaseRules": [
{
"type": "major",
"release": "major"
},
{
"type": "minor",
"release": "minor"
},
{
"type": "*",
"release": "patch"
}
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/gitlab"
]
},
"browserslist": [
"last 2 Chrome versions"
],
"dependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.9.0",
"copyfiles": "^2.1.1",
"include-media": "^1.4.9",
"node-sass": "^4.14.0",
"normalize.css": "^8.0.1",
"npm-run-all": "^4.1.5",
"pug": "^2.0.4",
"pug-cli": "^1.0.0-alpha6",
"pushstate-server": "^3.1.0"
"@lit/task": "^1.0.1",
"@startinblox/orbit-styling-framework": "^1.9.21",
"autoprefixer": "^10.4.20",
"cssnano": "^7.0.6",
"default-composer": "^0.6.0",
"lit": "^3.2.1",
"markdown-it": "^14.1.0",
"markdown-it-link-attributes": "^4.0.1",
"postcss": "^8.4.47",
"postcss-preset-env": "^9.6.0",
"postcss-scss": "^4.0.9",
"sass": "^1.80.6",
"sweetalert2": "^11.14.5",
"vite": "^5.4.10",
"vite-plugin-handlebars": "^2.0.0",
"vite-plugin-html": "^3.2.2",
"vite-plugin-pwa": "^0.20.5"
},
"devDependencies": {
"cypress": "^4.5.0",
"cypress-terminal-report": "^1.2.1"
"cypress": "^13.15.2",
"cypress-localstorage-commands": "^2.2.6"
}
}
const autoprefixer = require("autoprefixer");
const cssnano = require("cssnano");
const postcssPresetEnv = require("postcss-preset-env");
module.exports = {
syntax: "postcss-scss",
plugins: [autoprefixer, cssnano, postcssPresetEnv],
};
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^.*$ "$1/index.html" [L]
</IfModule>
\ No newline at end of file
:root {
--color-text: #636363;
--color-primary: #FF0055;
--color-secondary: #0068FF;
--color-third: #00E3B4;
--color-heading: #2E3F58;
}
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 511.998 511.998" style="enable-background:new 0 0 511.998 511.998;" xml:space="preserve">
<g>
<g>
<path d="M142.235,281.001c-3.839-1.558-8.212,0.292-9.769,4.131c-3.134,7.728-10.557,12.722-18.911,12.722
c-5.447,0-10.577-2.125-14.438-5.976c-1.948-1.948-3.451-4.213-4.468-6.734c-1.551-3.842-5.921-5.699-9.762-4.148
c-3.841,1.551-5.698,5.921-4.148,9.762c1.776,4.4,4.391,8.345,7.778,11.733c6.7,6.683,15.592,10.363,25.038,10.363
c14.491,0,27.371-8.668,32.812-22.084C147.923,286.932,146.073,282.558,142.235,281.001z"/>
</g>
</g>
<g>
<g>
<path d="M79.057,239.767c-4.142,0-7.5,3.358-7.5,7.5v3.329c0,4.142,3.358,7.5,7.5,7.5c4.142,0,7.5-3.358,7.5-7.5v-3.329
C86.557,243.125,83.199,239.767,79.057,239.767z"/>
</g>
</g>
<g>
<g>
<path d="M148.053,239.767c-4.142,0-7.5,3.358-7.5,7.5v3.329c0,4.142,3.358,7.5,7.5,7.5c4.142,0,7.5-3.358,7.5-7.5v-3.329
C155.553,243.125,152.195,239.767,148.053,239.767z"/>
</g>
</g>
<g>
<g>
<path d="M310.487,223.502c-3.837-1.557-8.212,0.292-9.769,4.131c-4.78,11.784-16.098,19.399-28.835,19.399
c-8.305,0-16.125-3.238-22.013-9.112c-2.97-2.971-5.264-6.428-6.817-10.275c-1.551-3.841-5.922-5.699-9.762-4.147
c-3.841,1.549-5.698,5.92-4.147,9.761c2.312,5.728,5.716,10.864,10.126,15.274c8.726,8.705,20.309,13.499,32.613,13.499
c18.874,0,35.648-11.29,42.735-28.761C316.175,229.433,314.325,225.059,310.487,223.502z"/>
</g>
</g>
<g>
<g>
<path d="M224.148,166.656c-4.142,0-7.5,3.358-7.5,7.5v4.606c0,4.142,3.358,7.5,7.5,7.5c4.142,0,7.5-3.358,7.5-7.5v-4.606
C231.648,170.014,228.29,166.656,224.148,166.656z"/>
</g>
</g>
<g>
<g>
<path d="M319.62,166.656c-4.142,0-7.5,3.358-7.5,7.5v4.606c0,4.142,3.358,7.5,7.5,7.5c4.142,0,7.5-3.358,7.5-7.5v-4.606
C327.12,170.014,323.762,166.656,319.62,166.656z"/>
</g>
</g>
<g>
<g>
<path d="M470.324,341.652c-3.253-2.564-7.968-2.007-10.533,1.246c-2.564,3.252-2.007,7.969,1.246,10.533
c19.487,15.364,30.664,38.39,30.664,63.173c0,44.331-36.065,80.396-80.396,80.396s-80.396-36.065-80.396-80.396
s36.065-80.396,80.396-80.396c8.367,0,16.608,1.278,24.495,3.797c3.947,1.261,8.166-0.916,9.427-4.861s-0.916-8.167-4.861-9.427
c-9.365-2.992-19.143-4.509-29.061-4.509c-21.24,0-40.879,6.98-56.749,18.763c-10.571-4.521-21.796-6.811-33.437-6.811h-5.95
v-17.15c10.07-4.674,19.408-11,27.645-18.843c17.398-16.575,28.308-38.376,31.167-62.005h15.056
c16.415,0,29.769-13.354,29.769-29.769v-10.536c0-11.659-6.741-21.768-16.526-26.65V78.83c0-28.408-23.112-51.52-51.52-51.52
h-13.208C328.802,10.667,311.24,0,292.358,0h-62.36c-16.889,0-33.311,4.773-47.489,13.804c-3.494,2.225-4.522,6.861-2.296,10.355
c2.225,3.493,6.859,4.522,10.355,2.296C202.333,18.961,215.968,15,229.998,15h62.36c13.713,0,26.439,7.966,32.429,20.307
l1.36,2.79c1.257,2.578,3.874,4.213,6.741,4.213h17.87c20.137,0,36.52,16.383,36.52,36.52v86.259H374.74v-35.598
c0-26-11.061-50.917-30.348-68.363c-3.117-2.82-7.516-3.727-11.478-2.366c-3.968,1.362-6.886,4.784-7.616,8.932
c-5.869,33.367-34.77,57.585-68.719,57.585h-80.051h-12.132c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h4.632v24.81
h-12.54V88.51c0-15.812,4.94-30.871,14.287-43.55c2.458-3.334,1.748-8.029-1.587-10.487c-3.333-2.458-8.029-1.748-10.487,1.587
c-11.261,15.275-17.213,33.413-17.213,52.45v79.698c-9.785,4.883-16.525,14.991-16.525,26.649v10.536
c0,0.103,0.007,0.204,0.008,0.307h-1.243c-1.486,0-2.947-0.5-4.115-1.41l-24.381-18.969c-3.123-2.42-7.112-3.26-10.944-2.298
c-3.831,0.959-6.954,3.578-8.57,7.19l-5.137,11.514c-1.08,2.413-3.483,3.972-6.124,3.972h-12.32v-35.71
c0-6.198,5.047-11.24,11.25-11.24h20.53c4.142,0,7.5-3.358,7.5-7.5v-6.82c0-2.895,2.355-5.25,5.25-5.25h23.75
c4.142,0,7.5-3.358,7.5-7.5c0-4.142-3.358-7.5-7.5-7.5h-23.75c-10.938,0-19.879,8.718-20.239,19.57h-13.04
c-14.474,0-26.25,11.771-26.25,26.24v38.17v5.04v25.43h-8.25c-13.008,0-23.59,10.587-23.59,23.6v7.61
c0,13.013,10.583,23.6,23.59,23.6h9.058c3.712,25.562,19.989,46.865,42.252,57.67v8.99h-2.22
c-32.375,0-59.583,24.243-63.29,56.388l-7.17,61.958c-0.327,2.822,0.569,5.658,2.459,7.78c1.893,2.125,4.612,3.343,7.461,3.343
h90.06c4.142,0,7.5-3.358,7.5-7.5c0-4.142-3.358-7.5-7.5-7.5H59.597v-41.74c0-4.142-3.358-7.5-7.5-7.5c-4.142,0-7.5,3.358-7.5,7.5
v41.74h-21.53l6.522-56.361c2.833-24.576,23.637-43.109,48.389-43.109h2.682c2.631,15.786,16.378,27.86,32.898,27.86
c8.904,0,17.279-3.472,23.583-9.776c4.986-4.986,8.192-11.27,9.318-18.083h2.679c0.016,0,0.032,0.001,0.049,0.001
c-5.902,9.998-9.841,21.34-11.249,33.536l-9.922,85.752c-0.349,3.095,0.641,6.202,2.715,8.523
c2.071,2.318,5.041,3.647,8.147,3.647h240.674c9.938,3.518,20.624,5.44,31.752,5.44c52.602,0,95.396-42.794,95.396-95.396
C506.7,387.198,493.441,359.879,470.324,341.652z M139.963,194.857c0-8.144,6.625-14.769,14.769-14.769h21.796
c4.142,0,7.5-3.358,7.5-7.5v-32.31h72.551c39.088,0,72.669-26.436,82.147-63.718c13.421,14.253,21.014,33.22,21.014,52.93v43.098
c0,4.142,3.358,7.5,7.5,7.5h21.796c8.144,0,14.769,6.625,14.769,14.769v10.536c0,8.144-6.625,14.769-14.769,14.769h-21.933
c-3.992,0-7.284,3.126-7.49,7.112c-1.165,22.499-10.806,43.463-27.146,59.031c-8.108,7.72-17.467,13.718-27.592,17.818
c-0.092,0.037-0.182,0.076-0.272,0.116c-10.286,4.125-21.359,6.289-32.72,6.289c-11.579,0-22.65-2.246-32.795-6.325
c-0.122-0.053-0.248-0.098-0.373-0.145c-30.658-12.487-52.758-41.793-54.561-76.783c-0.206-3.987-3.498-7.114-7.49-7.114h-21.932
c-8.144,0-14.769-6.625-14.769-14.769V194.857z M300.168,321.588v31.522c0,7.552-2.943,14.659-8.288,20.011
c-5.33,5.339-12.43,8.279-19.992,8.279c-15.599,0-28.29-12.691-28.29-28.29v-31.517c8.995,2.564,18.485,3.935,28.286,3.935
C281.567,325.528,291.068,324.181,300.168,321.588z M131.918,369.6c0,4.897-1.912,9.505-5.384,12.977
c-3.471,3.472-8.079,5.383-12.976,5.383c-10.124,0-18.36-8.236-18.36-18.36v-13.085c5.888,1.451,12.034,2.235,18.36,2.235
c6.257,0,12.413-0.761,18.36-2.227V369.6z M149.138,360.1h-2.22v-9.018c7.019-3.412,13.546-7.901,19.335-13.414
c8.632-8.23,15.303-18.494,19.29-29.68c1.39-3.902-0.646-8.192-4.547-9.583c-3.898-1.389-8.191,0.645-9.583,4.547
c-3.203,8.989-8.567,17.24-15.507,23.857c-5.696,5.424-12.273,9.635-19.388,12.503c-0.013,0.006-0.027,0.011-0.04,0.017
c-7.204,2.898-14.961,4.42-22.919,4.42c-8.089,0-15.822-1.569-22.911-4.416c-0.078-0.033-0.159-0.06-0.239-0.091
c-21.449-8.721-36.916-29.217-38.18-53.69c-0.206-3.986-3.499-7.113-7.49-7.113h-15.85c-4.737,0-8.59-3.858-8.59-8.6v-7.61
c0-4.742,3.854-8.6,8.59-8.6h15.75c4.142,0,7.5-3.358,7.5-7.5V220.7h12.32c8.547,0,16.326-5.043,19.819-12.854l3.988-8.939
l22.133,17.22c3.786,2.949,8.52,4.574,13.329,4.574h5.484c5.212,8.657,14.7,14.461,25.52,14.461h15.053
c4.357,36.119,27.298,66.234,58.813,80.851v17.147h-5.95c-24.803,0-47.329,10.647-62.999,27.814
C156.187,360.398,152.669,360.1,149.138,360.1z M194.344,491.56v-60.638c0-4.142-3.358-7.5-7.5-7.5c-4.142,0-7.5,3.358-7.5,7.5
v60.638h-35.901l9.396-81.2c4.093-35.459,34.104-62.2,69.809-62.2h5.95v4.95c0,23.87,19.42,43.29,43.29,43.29
c11.573,0,22.443-4.503,30.607-12.681c8.172-8.185,12.673-19.055,12.673-30.609v-4.95h5.95c7.133,0,14.073,1.048,20.742,3.111
c-16.081,17.083-25.951,40.076-25.951,65.333c0,30.372,14.268,57.473,36.452,74.956H194.344z"/>
</g>
</g>
<g>
<g>
<path d="M464.565,394.219h-30.876v-30.876c0-5.91-4.808-10.718-10.718-10.718h-23.334c-5.91,0-10.718,4.808-10.718,10.718v30.876
h-30.876c-5.91,0-10.718,4.808-10.718,10.718v23.334c0,5.91,4.808,10.718,10.718,10.718h30.876v30.876
c0,5.91,4.808,10.718,10.718,10.718h23.334c5.91,0,10.718-4.808,10.718-10.718v-30.876h30.876c5.91,0,10.719-4.808,10.719-10.718
v-23.334C475.284,399.027,470.475,394.219,464.565,394.219z M460.285,423.99h-30.876c-5.91,0-10.719,4.809-10.719,10.719v30.875
h-14.771v-30.875c0-5.91-4.808-10.719-10.718-10.719h-30.876v-0.001v-14.771h30.876c5.91,0,10.718-4.809,10.718-10.719v-30.875
h14.771V398.5c0,5.91,4.809,10.719,10.719,10.719h30.876V423.99z"/>
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 511.998 511.998" style="enable-background:new 0 0 511.998 511.998;" xml:space="preserve">
<g>
<g>
<path d="M142.235,281.001c-3.839-1.558-8.212,0.292-9.769,4.131c-3.134,7.728-10.557,12.722-18.911,12.722
c-5.447,0-10.577-2.125-14.438-5.976c-1.948-1.948-3.451-4.213-4.468-6.734c-1.551-3.842-5.921-5.699-9.762-4.148
c-3.841,1.551-5.698,5.921-4.148,9.762c1.776,4.4,4.391,8.345,7.778,11.733c6.7,6.683,15.592,10.363,25.038,10.363
c14.491,0,27.371-8.668,32.812-22.084C147.923,286.932,146.073,282.558,142.235,281.001z"/>
</g>
</g>
<g>
<g>
<path d="M79.057,239.767c-4.142,0-7.5,3.358-7.5,7.5v3.329c0,4.142,3.358,7.5,7.5,7.5c4.142,0,7.5-3.358,7.5-7.5v-3.329
C86.557,243.125,83.199,239.767,79.057,239.767z"/>
</g>
</g>
<g>
<g>
<path d="M148.053,239.767c-4.142,0-7.5,3.358-7.5,7.5v3.329c0,4.142,3.358,7.5,7.5,7.5c4.142,0,7.5-3.358,7.5-7.5v-3.329
C155.553,243.125,152.195,239.767,148.053,239.767z"/>
</g>
</g>
<g>
<g>
<path d="M310.487,223.502c-3.837-1.557-8.212,0.292-9.769,4.131c-4.78,11.784-16.098,19.399-28.835,19.399
c-8.305,0-16.125-3.238-22.013-9.112c-2.97-2.971-5.264-6.428-6.817-10.275c-1.551-3.841-5.922-5.699-9.762-4.147
c-3.841,1.549-5.698,5.92-4.147,9.761c2.312,5.728,5.716,10.864,10.126,15.274c8.726,8.705,20.309,13.499,32.613,13.499
c18.874,0,35.648-11.29,42.735-28.761C316.175,229.433,314.325,225.059,310.487,223.502z"/>
</g>
</g>
<g>
<g>
<path d="M224.148,166.656c-4.142,0-7.5,3.358-7.5,7.5v4.606c0,4.142,3.358,7.5,7.5,7.5c4.142,0,7.5-3.358,7.5-7.5v-4.606
C231.648,170.014,228.29,166.656,224.148,166.656z"/>
</g>
</g>
<g>
<g>
<path d="M319.62,166.656c-4.142,0-7.5,3.358-7.5,7.5v4.606c0,4.142,3.358,7.5,7.5,7.5c4.142,0,7.5-3.358,7.5-7.5v-4.606
C327.12,170.014,323.762,166.656,319.62,166.656z"/>
</g>
</g>
<g>
<g>
<path d="M470.324,341.652c-3.253-2.564-7.968-2.007-10.533,1.246c-2.564,3.252-2.007,7.969,1.246,10.533
c19.487,15.364,30.664,38.39,30.664,63.173c0,44.331-36.065,80.396-80.396,80.396s-80.396-36.065-80.396-80.396
s36.065-80.396,80.396-80.396c8.367,0,16.608,1.278,24.495,3.797c3.947,1.261,8.166-0.916,9.427-4.861s-0.916-8.167-4.861-9.427
c-9.365-2.992-19.143-4.509-29.061-4.509c-21.24,0-40.879,6.98-56.749,18.763c-10.571-4.521-21.796-6.811-33.437-6.811h-5.95
v-17.15c10.07-4.674,19.408-11,27.645-18.843c17.398-16.575,28.308-38.376,31.167-62.005h15.056
c16.415,0,29.769-13.354,29.769-29.769v-10.536c0-11.659-6.741-21.768-16.526-26.65V78.83c0-28.408-23.112-51.52-51.52-51.52
h-13.208C328.802,10.667,311.24,0,292.358,0h-62.36c-16.889,0-33.311,4.773-47.489,13.804c-3.494,2.225-4.522,6.861-2.296,10.355
c2.225,3.493,6.859,4.522,10.355,2.296C202.333,18.961,215.968,15,229.998,15h62.36c13.713,0,26.439,7.966,32.429,20.307
l1.36,2.79c1.257,2.578,3.874,4.213,6.741,4.213h17.87c20.137,0,36.52,16.383,36.52,36.52v86.259H374.74v-35.598
c0-26-11.061-50.917-30.348-68.363c-3.117-2.82-7.516-3.727-11.478-2.366c-3.968,1.362-6.886,4.784-7.616,8.932
c-5.869,33.367-34.77,57.585-68.719,57.585h-80.051h-12.132c-4.142,0-7.5,3.358-7.5,7.5c0,4.142,3.358,7.5,7.5,7.5h4.632v24.81
h-12.54V88.51c0-15.812,4.94-30.871,14.287-43.55c2.458-3.334,1.748-8.029-1.587-10.487c-3.333-2.458-8.029-1.748-10.487,1.587
c-11.261,15.275-17.213,33.413-17.213,52.45v79.698c-9.785,4.883-16.525,14.991-16.525,26.649v10.536
c0,0.103,0.007,0.204,0.008,0.307h-1.243c-1.486,0-2.947-0.5-4.115-1.41l-24.381-18.969c-3.123-2.42-7.112-3.26-10.944-2.298
c-3.831,0.959-6.954,3.578-8.57,7.19l-5.137,11.514c-1.08,2.413-3.483,3.972-6.124,3.972h-12.32v-35.71
c0-6.198,5.047-11.24,11.25-11.24h20.53c4.142,0,7.5-3.358,7.5-7.5v-6.82c0-2.895,2.355-5.25,5.25-5.25h23.75
c4.142,0,7.5-3.358,7.5-7.5c0-4.142-3.358-7.5-7.5-7.5h-23.75c-10.938,0-19.879,8.718-20.239,19.57h-13.04
c-14.474,0-26.25,11.771-26.25,26.24v38.17v5.04v25.43h-8.25c-13.008,0-23.59,10.587-23.59,23.6v7.61
c0,13.013,10.583,23.6,23.59,23.6h9.058c3.712,25.562,19.989,46.865,42.252,57.67v8.99h-2.22
c-32.375,0-59.583,24.243-63.29,56.388l-7.17,61.958c-0.327,2.822,0.569,5.658,2.459,7.78c1.893,2.125,4.612,3.343,7.461,3.343
h90.06c4.142,0,7.5-3.358,7.5-7.5c0-4.142-3.358-7.5-7.5-7.5H59.597v-41.74c0-4.142-3.358-7.5-7.5-7.5c-4.142,0-7.5,3.358-7.5,7.5
v41.74h-21.53l6.522-56.361c2.833-24.576,23.637-43.109,48.389-43.109h2.682c2.631,15.786,16.378,27.86,32.898,27.86
c8.904,0,17.279-3.472,23.583-9.776c4.986-4.986,8.192-11.27,9.318-18.083h2.679c0.016,0,0.032,0.001,0.049,0.001
c-5.902,9.998-9.841,21.34-11.249,33.536l-9.922,85.752c-0.349,3.095,0.641,6.202,2.715,8.523
c2.071,2.318,5.041,3.647,8.147,3.647h240.674c9.938,3.518,20.624,5.44,31.752,5.44c52.602,0,95.396-42.794,95.396-95.396
C506.7,387.198,493.441,359.879,470.324,341.652z M139.963,194.857c0-8.144,6.625-14.769,14.769-14.769h21.796
c4.142,0,7.5-3.358,7.5-7.5v-32.31h72.551c39.088,0,72.669-26.436,82.147-63.718c13.421,14.253,21.014,33.22,21.014,52.93v43.098
c0,4.142,3.358,7.5,7.5,7.5h21.796c8.144,0,14.769,6.625,14.769,14.769v10.536c0,8.144-6.625,14.769-14.769,14.769h-21.933
c-3.992,0-7.284,3.126-7.49,7.112c-1.165,22.499-10.806,43.463-27.146,59.031c-8.108,7.72-17.467,13.718-27.592,17.818
c-0.092,0.037-0.182,0.076-0.272,0.116c-10.286,4.125-21.359,6.289-32.72,6.289c-11.579,0-22.65-2.246-32.795-6.325
c-0.122-0.053-0.248-0.098-0.373-0.145c-30.658-12.487-52.758-41.793-54.561-76.783c-0.206-3.987-3.498-7.114-7.49-7.114h-21.932
c-8.144,0-14.769-6.625-14.769-14.769V194.857z M300.168,321.588v31.522c0,7.552-2.943,14.659-8.288,20.011
c-5.33,5.339-12.43,8.279-19.992,8.279c-15.599,0-28.29-12.691-28.29-28.29v-31.517c8.995,2.564,18.485,3.935,28.286,3.935
C281.567,325.528,291.068,324.181,300.168,321.588z M131.918,369.6c0,4.897-1.912,9.505-5.384,12.977
c-3.471,3.472-8.079,5.383-12.976,5.383c-10.124,0-18.36-8.236-18.36-18.36v-13.085c5.888,1.451,12.034,2.235,18.36,2.235
c6.257,0,12.413-0.761,18.36-2.227V369.6z M149.138,360.1h-2.22v-9.018c7.019-3.412,13.546-7.901,19.335-13.414
c8.632-8.23,15.303-18.494,19.29-29.68c1.39-3.902-0.646-8.192-4.547-9.583c-3.898-1.389-8.191,0.645-9.583,4.547
c-3.203,8.989-8.567,17.24-15.507,23.857c-5.696,5.424-12.273,9.635-19.388,12.503c-0.013,0.006-0.027,0.011-0.04,0.017
c-7.204,2.898-14.961,4.42-22.919,4.42c-8.089,0-15.822-1.569-22.911-4.416c-0.078-0.033-0.159-0.06-0.239-0.091
c-21.449-8.721-36.916-29.217-38.18-53.69c-0.206-3.986-3.499-7.113-7.49-7.113h-15.85c-4.737,0-8.59-3.858-8.59-8.6v-7.61
c0-4.742,3.854-8.6,8.59-8.6h15.75c4.142,0,7.5-3.358,7.5-7.5V220.7h12.32c8.547,0,16.326-5.043,19.819-12.854l3.988-8.939
l22.133,17.22c3.786,2.949,8.52,4.574,13.329,4.574h5.484c5.212,8.657,14.7,14.461,25.52,14.461h15.053
c4.357,36.119,27.298,66.234,58.813,80.851v17.147h-5.95c-24.803,0-47.329,10.647-62.999,27.814
C156.187,360.398,152.669,360.1,149.138,360.1z M194.344,491.56v-60.638c0-4.142-3.358-7.5-7.5-7.5c-4.142,0-7.5,3.358-7.5,7.5
v60.638h-35.901l9.396-81.2c4.093-35.459,34.104-62.2,69.809-62.2h5.95v4.95c0,23.87,19.42,43.29,43.29,43.29
c11.573,0,22.443-4.503,30.607-12.681c8.172-8.185,12.673-19.055,12.673-30.609v-4.95h5.95c7.133,0,14.073,1.048,20.742,3.111
c-16.081,17.083-25.951,40.076-25.951,65.333c0,30.372,14.268,57.473,36.452,74.956H194.344z"/>
</g>
</g>
<g>
<g>
<path d="M464.565,394.219h-30.876v-30.876c0-5.91-4.808-10.718-10.718-10.718h-23.334c-5.91,0-10.718,4.808-10.718,10.718v30.876
h-30.876c-5.91,0-10.718,4.808-10.718,10.718v23.334c0,5.91,4.808,10.718,10.718,10.718h30.876v30.876
c0,5.91,4.808,10.718,10.718,10.718h23.334c5.91,0,10.718-4.808,10.718-10.718v-30.876h30.876c5.91,0,10.719-4.808,10.719-10.718
v-23.334C475.284,399.027,470.475,394.219,464.565,394.219z M460.285,423.99h-30.876c-5.91,0-10.719,4.809-10.719,10.719v30.875
h-14.771v-30.875c0-5.91-4.808-10.719-10.718-10.719h-30.876v-0.001v-14.771h30.876c5.91,0,10.718-4.809,10.718-10.719v-30.875
h14.771V398.5c0,5.91,4.809,10.719,10.719,10.719h30.876V423.99z"/>
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>
public/images/alien.webp

3.32 KiB

<?xml version="1.0" encoding="UTF-8"?>
<svg width="34px" height="34px" viewBox="0 0 34 34" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>003-appointment</title>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Circle---Survey-Vote" transform="translate(-1388.000000, -440.000000)" fill="#3C3F57">
<g id="Menu-droite" transform="translate(1370.000000, 72.000000)">
<g id="003-appointment" transform="translate(18.000000, 368.000000)">
<path d="M30.6796875,2.921875 L27.5143008,2.921875 L27.5143008,1.9921875 C27.5143008,0.893695312 26.6206055,0 25.5221133,0 C24.4236211,0 23.5299258,0.893695312 23.5299258,1.9921875 L23.5299258,2.921875 L12.3736758,2.921875 L12.3736758,1.9921875 C12.3736758,0.893695312 11.4799805,0 10.3814883,0 C9.28299609,0 8.38930078,0.893695312 8.38930078,1.9921875 L8.38930078,2.94644531 C8.33285547,2.93083984 8.2736875,2.921875 8.21226172,2.921875 L5.56637109,2.921875 C3.73555078,2.921875 2.24605859,4.41136719 2.24605859,6.2421875 L2.24605859,17.5533633 C2.24605859,17.920125 2.54342578,18.2174258 2.91012109,18.2174258 C3.27681641,18.2174258 3.57418359,17.920125 3.57418359,17.5533633 L3.57418359,9.76171875 L27.5143008,9.76171875 C27.8809961,9.76171875 28.1783633,9.46441797 28.1783633,9.09765625 C28.1783633,8.73089453 27.8809961,8.43359375 27.5143008,8.43359375 L3.57418359,8.43359375 L3.57418359,6.2421875 C3.57418359,5.14369531 4.46787891,4.25 5.56637109,4.25 L8.21226172,4.25 C8.2736875,4.25 8.33285547,4.24096875 8.38930078,4.22542969 L8.38930078,5.08007812 C8.38930078,6.17857031 9.28299609,7.07226562 10.3814883,7.07226562 C11.4799805,7.07226562 12.3736758,6.17857031 12.3736758,5.08007812 L12.3736758,4.25 L23.5299258,4.25 L23.5299258,5.08007812 C23.5299258,6.17857031 24.4236211,7.07226562 25.5221133,7.07226562 C26.6206055,7.07226562 27.5143008,6.17857031 27.5143008,5.08007812 L27.5143008,4.25 L30.6796875,4.25 C31.7781797,4.25 32.671875,5.14369531 32.671875,6.2421875 L32.671875,31.4761641 C32.671875,32.1354453 32.1355117,32.671875 31.4761641,32.671875 C30.8168164,32.671875 30.2804531,32.1354453 30.2804531,31.4761641 L30.2804531,29.7583008 C30.2804531,29.3915391 29.9830859,29.0942383 29.6163906,29.0942383 L21.8919492,29.0942383 C21.5252539,29.0942383 21.2278867,29.3915391 21.2278867,29.7583008 C21.2278867,30.1250625 21.5252539,30.4223633 21.8919492,30.4223633 L28.9523281,30.4223633 L28.9523281,31.4761641 C28.9523281,31.9085352 29.0617656,32.3157383 29.2541445,32.671875 L2.5234375,32.671875 C1.86435547,32.671875 1.328125,32.1356445 1.328125,31.4765625 L1.328125,30.4223633 L16.1915039,30.4223633 C16.5581992,30.4223633 16.8555664,30.1250625 16.8555664,29.7583008 C16.8555664,29.3915391 16.5581992,29.0942383 16.1915039,29.0942383 L9.55645703,29.0942383 C10.7168398,28.0948906 11.4536836,26.6166875 11.4536836,24.96875 C11.4536836,21.9661914 9.01092969,19.5234375 6.00837109,19.5234375 C3.0058125,19.5234375 0.563058594,21.9661914 0.563058594,24.96875 C0.563058594,26.6166875 1.29990234,28.0948906 2.46028516,29.0942383 L0.6640625,29.0942383 C0.297367187,29.0942383 0,29.3915391 0,29.7583008 L0,31.4765625 C0,32.8679727 1.13202734,34 2.5234375,34 L31.4761641,34 C32.8677734,34 34,32.8678398 34,31.4761641 L34,6.2421875 C34,4.41136719 32.5105078,2.921875 30.6796875,2.921875 Z M11.0455508,5.08007812 C11.0455508,5.44624219 10.7476523,5.74414062 10.3814883,5.74414062 C10.0153242,5.74414062 9.71742578,5.44624219 9.71742578,5.08007812 L9.71742578,1.9921875 C9.71742578,1.62602344 10.0153242,1.328125 10.3814883,1.328125 C10.7476523,1.328125 11.0455508,1.62602344 11.0455508,1.9921875 L11.0455508,5.08007812 Z M26.1861758,5.08007812 C26.1861758,5.44624219 25.8882773,5.74414062 25.5221133,5.74414062 C25.1559492,5.74414062 24.8580508,5.44624219 24.8580508,5.08007812 L24.8580508,1.9921875 C24.8580508,1.62602344 25.1559492,1.328125 25.5221133,1.328125 C25.8882773,1.328125 26.1861758,1.62602344 26.1861758,1.9921875 L26.1861758,5.08007812 Z M1.89118359,24.96875 C1.89118359,22.6985195 3.73814062,20.8515625 6.00837109,20.8515625 C8.27860156,20.8515625 10.1255586,22.6985195 10.1255586,24.96875 C10.1255586,27.2389805 8.27860156,29.0859375 6.00837109,29.0859375 C3.73814062,29.0859375 1.89118359,27.2389805 1.89118359,24.96875 Z" id="Shape" fill-rule="nonzero"></path>
<path d="M31.200865,8.74905 C31.04285,8.59095 30.82355,8.5 30.6,8.5 C30.376365,8.5 30.15715,8.59095 29.99905,8.74905 C29.84095,8.90715 29.75,9.12645 29.75,9.35 C29.75,9.57355 29.840865,9.79285 29.99905,9.95095 C30.157235,10.10905 30.376365,10.2 30.6,10.2 C30.82355,10.2 31.04285,10.10905 31.200865,9.95095 C31.358965,9.79285 31.45,9.57355 31.45,9.35 C31.45,9.12645 31.35905,8.90715 31.200865,8.74905 Z" id="Path"></path>
<path d="M20.150865,29.1483242 C19.99285,28.9901451 19.77355,28.9 19.55,28.9 C19.32645,28.9 19.10715,28.9901451 18.94905,29.1483242 C18.79095,29.3073537 18.7,29.525913 18.7,29.7495748 C18.7,29.974087 18.790865,30.1926463 18.94905,30.3516758 C19.10715,30.5098549 19.32645,30.6 19.55,30.6 C19.77355,30.6 19.99285,30.5098549 20.150865,30.3516758 C20.308965,30.1926463 20.4,29.9732366 20.4,29.7495748 C20.4,29.525913 20.30905,29.3073537 20.150865,29.1483242 Z" id="Path"></path>
<path d="M15.3,20.4 C13.8939434,20.4 12.75,21.5439434 12.75,22.95 C12.75,24.3560566 13.8939434,25.5 15.3,25.5 C16.7060566,25.5 17.85,24.3560566 17.85,22.95 C17.85,21.5439434 16.7060566,20.4 15.3,20.4 Z M15.3,24.1578947 C14.6339803,24.1578947 14.0921053,23.6160197 14.0921053,22.95 C14.0921053,22.2839803 14.6339803,21.7421053 15.3,21.7421053 C15.9660197,21.7421053 16.5078947,22.2839803 16.5078947,22.95 C16.5078947,23.6160197 15.9660197,24.1578947 15.3,24.1578947 Z" id="Shape" fill-rule="nonzero"></path>
<path d="M21.25,20.4 C19.8439434,20.4 18.7,21.5439434 18.7,22.95 C18.7,24.3560566 19.8439434,25.5 21.25,25.5 C22.6560566,25.5 23.8,24.3560566 23.8,22.95 C23.8,21.5439434 22.6560566,20.4 21.25,20.4 Z M21.25,24.1578947 C20.5839803,24.1578947 20.0421053,23.6160197 20.0421053,22.95 C20.0421053,22.2839803 20.5839803,21.7421053 21.25,21.7421053 C21.9160197,21.7421053 22.4578947,22.2839803 22.4578947,22.95 C22.4578947,23.6160197 21.9160197,24.1578947 21.25,24.1578947 Z" id="Shape" fill-rule="nonzero"></path>
<path d="M27.2,20.4 C25.7939434,20.4 24.65,21.5439434 24.65,22.95 C24.65,24.3560566 25.7939434,25.5 27.2,25.5 C28.6060566,25.5 29.75,24.3560566 29.75,22.95 C29.75,21.5439434 28.6060566,20.4 27.2,20.4 Z M27.2,24.1578947 C26.5339803,24.1578947 25.9921053,23.6160197 25.9921053,22.95 C25.9921053,22.2839803 26.5339803,21.7421053 27.2,21.7421053 C27.8660197,21.7421053 28.4078947,22.2839803 28.4078947,22.95 C28.4078947,23.6160197 27.8660197,24.1578947 27.2,24.1578947 Z" id="Shape" fill-rule="nonzero"></path>
<path d="M8.5,13.6 C7.09394342,13.6 5.95,14.7439434 5.95,16.15 C5.95,17.5560566 7.09394342,18.7 8.5,18.7 C9.90605658,18.7 11.05,17.5560566 11.05,16.15 C11.05,14.7439434 9.90605658,13.6 8.5,13.6 Z M8.5,17.3578947 C7.83398026,17.3578947 7.29210526,16.8160197 7.29210526,16.15 C7.29210526,15.4839803 7.83398026,14.9421053 8.5,14.9421053 C9.16601974,14.9421053 9.70789474,15.4839803 9.70789474,16.15 C9.70789474,16.8160197 9.16601974,17.3578947 8.5,17.3578947 Z" id="Shape" fill-rule="nonzero"></path>
<path d="M21.25,13.6 C19.8439434,13.6 18.7,14.7439434 18.7,16.15 C18.7,17.5560566 19.8439434,18.7 21.25,18.7 C22.6560566,18.7 23.8,17.5560566 23.8,16.15 C23.8,14.7439434 22.6560566,13.6 21.25,13.6 Z M21.25,17.3578947 C20.5839803,17.3578947 20.0421053,16.8160197 20.0421053,16.15 C20.0421053,15.4839803 20.5839803,14.9421053 21.25,14.9421053 C21.9160197,14.9421053 22.4578947,15.4839803 22.4578947,16.15 C22.4578947,16.8160197 21.9160197,17.3578947 21.25,17.3578947 Z" id="Shape" fill-rule="nonzero"></path>
<path d="M27.2,13.6 C25.7939434,13.6 24.65,14.7439434 24.65,16.15 C24.65,17.5560566 25.7939434,18.7 27.2,18.7 C28.6060566,18.7 29.75,17.5560566 29.75,16.15 C29.75,14.7439434 28.6060566,13.6 27.2,13.6 Z M27.2,17.3578947 C26.5339803,17.3578947 25.9921053,16.8160197 25.9921053,16.15 C25.9921053,15.4839803 26.5339803,14.9421053 27.2,14.9421053 C27.8660197,14.9421053 28.4078947,15.4839803 28.4078947,16.15 C28.4078947,16.8160197 27.8660197,17.3578947 27.2,17.3578947 Z" id="Shape" fill-rule="nonzero"></path>
<path d="M15.3,13.6 C13.8939434,13.6 12.75,14.7439434 12.75,16.15 C12.75,17.5560566 13.8939434,18.7 15.3,18.7 C16.7060566,18.7 17.85,17.5560566 17.85,16.15 C17.85,14.7439434 16.7060566,13.6 15.3,13.6 Z M15.3,17.3578947 C14.6339803,17.3578947 14.0921053,16.8160197 14.0921053,16.15 C14.0921053,15.4839803 14.6339803,14.9421053 15.3,14.9421053 C15.9660197,14.9421053 16.5078947,15.4839803 16.5078947,16.15 C16.5078947,16.8160197 15.9660197,17.3578947 15.3,17.3578947 Z" id="Shape" fill-rule="nonzero"></path>
<path d="M8.30810749,23.1587132 C8.05218529,22.8804289 7.63744195,22.8804289 7.38145423,23.1587132 L5.24772092,25.4795545 L4.51854577,24.686462 C4.26262357,24.4081777 3.84788023,24.4081777 3.59189251,24.686462 C3.33603583,24.9647463 3.33603583,25.4159874 3.59189251,25.6943429 L4.78442705,26.991269 C4.90734309,27.1248882 5.07396115,27.2 5.24772092,27.2 C5.42148069,27.2 5.58809876,27.1248882 5.71101479,26.991269 L8.30810749,24.1665229 C8.56396417,23.8882386 8.56396417,23.4369975 8.30810749,23.1587132 Z" id="Path"></path>
</g>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" width="1em" height="1em" style="-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); transform: rotate(360deg);" preserveAspectRatio="xMidYMid meet" viewBox="0 0 1024 1024"><path d="M512 0Q373 0 255 68.5T68.5 255T0 512t68.5 257T255 955.5t257 68.5t257-68.5T955.5 769t68.5-257t-68.5-257T769 68.5T512 0zm0 961q-73 0-141.5-22.5T247 874t-96.5-97t-64-123.5T64 512q0-91 35.5-174T195 195t143-95.5T512 64t174 35.5T829 195t95.5 143T960 512t-35.5 174T829 829.5t-143 96T512 961zm224-481H376l116-116q9-9 9-22.5t-9.5-23T469 309t-23 10L257 513l189 194q3 2 5.5 4t5.5 3t6 1.5t6 .5q13 0 23-9q4-5 6.5-11t2.5-12t-2.5-12t-6.5-11L374 544h362q14 0 23-9.5t9-23t-9-22.5t-23-9z" fill="#FF6765"/></svg>
\ No newline at end of file
File moved