Compare commits

..

2 commits

Author SHA1 Message Date
LeSim
c6bc7cf98e
Merge pull request #9022 from mfo/US/fix-sections
correctif(sections.numerotation-automatique): ETQ administrateur, je souhaite que la numerotation automatique des titres de section fonctionne meme quand si deux titres de sections se succèdent
2023-05-10 07:23:49 +00:00
LeSim
79282aad48
Merge pull request #9020 from demarches-simplifiees/add_administration_header
Ajouter des bannières visant soit les instructeurs / admins soit les usagers
2023-05-10 07:20:29 +00:00
2540 changed files with 25458 additions and 362166 deletions

View file

@ -1,2 +0,0 @@
APP_HOST="test.host" # must match host defined in spec/rails_helper.rb
APP_HOST_LEGACY="test-legacy.host"

View file

@ -20,8 +20,7 @@ module.exports = {
'prettier/prettier': 'error', 'prettier/prettier': 'error',
'react-hooks/rules-of-hooks': 'error', 'react-hooks/rules-of-hooks': 'error',
'react-hooks/exhaustive-deps': 'error', 'react-hooks/exhaustive-deps': 'error',
'react/prop-types': 'off', 'react/prop-types': 'off'
'react/no-deprecated': 'off'
}, },
settings: { settings: {
react: { version: 'detect' } react: { version: 'detect' }

View file

@ -11,7 +11,7 @@ runs:
using: composite using: composite
steps: steps:
- name: Save test reports - name: Save test reports
uses: actions/cache@v4 uses: actions/cache@v3
with: with:
path: ${{ inputs.results_path }} path: ${{ inputs.results_path }}
key: tests-reports-${{ github.ref }}-${{ github.sha }}-${{ github.run_id }} key: tests-reports-${{ github.ref }}-${{ github.sha }}-${{ github.run_id }}

View file

@ -5,7 +5,7 @@ runs:
using: composite using: composite
steps: steps:
- name: Assets cache - name: Assets cache
uses: actions/cache@v4 uses: actions/cache@v3
with: with:
path: | path: |
public/assets public/assets
@ -20,5 +20,7 @@ runs:
- name: Precompile assets - name: Precompile assets
env: env:
RAILS_ENV: test RAILS_ENV: test
run: bin/rails assets:precompile --trace run: |
rm bin/yarn
bin/rails assets:precompile --trace
shell: bash shell: bash

View file

@ -9,18 +9,15 @@ runs:
with: with:
bundler-cache: true bundler-cache: true
- name: Check YJIT support - name: Setup Node
run: | uses: actions/setup-node@v3
ruby --yjit -v with:
shell: bash cache: 'yarn'
- name: Setup Bun
uses: oven-sh/setup-bun@v1
- name: Install Node modules - name: Install Node modules
run: | run: |
bun --version node --version
bun install yarn install --frozen-lockfile
shell: bash shell: bash
- name: Setup environment variables - name: Setup environment variables

View file

@ -31,7 +31,7 @@ runs:
# #
# The actual retrieval uses the `restore-keys` instead. # The actual retrieval uses the `restore-keys` instead.
- name: Restore previous runs timings - name: Restore previous runs timings
uses: actions/cache@v4 uses: actions/cache@v3
with: with:
path: ${{ inputs.results_path }} path: ${{ inputs.results_path }}
key: single-instance-report-${{ github.sha }}-${{ env.dummy_random_value }} key: single-instance-report-${{ github.sha }}-${{ env.dummy_random_value }}

View file

@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
services: services:
postgres: postgres:
image: postgis/postgis:14-3.3 image: postgres:14
env: env:
POSTGRES_USER: tps_test POSTGRES_USER: tps_test
POSTGRES_DB: tps_test POSTGRES_DB: tps_test
@ -21,7 +21,7 @@ jobs:
ports: [ "5432:5432" ] ports: [ "5432:5432" ]
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v3
- name: Setup the app code and dependancies - name: Setup the app code and dependancies
uses: ./.github/actions/ci-setup-rails uses: ./.github/actions/ci-setup-rails
@ -36,29 +36,29 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v3
- name: Setup Bun - name: Setup Node
uses: oven-sh/setup-bun@v1 uses: actions/setup-node@v3
with:
cache: 'yarn'
- name: Install Node modules - name: Install Node modules
run: | run: |
bun --version node --version
bun install yarn install --frozen-lockfile
shell: bash shell: bash
- name: Run tests - name: Run tests
run: | run: |
bun run test yarn test
unit_tests: unit_tests:
name: Unit tests name: Unit tests
runs-on: ubuntu-latest runs-on: ubuntu-latest
env:
RUBY_YJIT_ENABLE: "1"
services: services:
postgres: postgres:
image: postgis/postgis:14-3.3 image: postgres:14
env: env:
POSTGRES_USER: tps_test POSTGRES_USER: tps_test
POSTGRES_DB: tps_test POSTGRES_DB: tps_test
@ -70,12 +70,7 @@ jobs:
instances: [0, 1, 2, 3, 4, 5] instances: [0, 1, 2, 3, 4, 5]
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v3
- name: Install build dependancies
# - fonts pickable by ImageMagick
# - rust for YJIT support
run: sudo apt-get update && sudo apt-get install -y gsfonts rustc redis-server
- name: Setup the app runtime and dependencies - name: Setup the app runtime and dependencies
uses: ./.github/actions/ci-setup-rails uses: ./.github/actions/ci-setup-rails
@ -95,19 +90,17 @@ jobs:
bin/rspec $SPEC_FILES --format progress --format RspecJunitFormatter --out tmp/rspec_${{ github.job }}_${{ strategy.job-index }}.junit.xml bin/rspec $SPEC_FILES --format progress --format RspecJunitFormatter --out tmp/rspec_${{ github.job }}_${{ strategy.job-index }}.junit.xml
- name: Upload test results for this instance - name: Upload test results for this instance
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v3
with: with:
name: rspec-results-${{ github.job }}-${{ strategy.job-index }} name: test-reports
path: tmp/rspec_${{ github.job }}_${{ strategy.job-index }}.junit.xml path: tmp/rspec_${{ github.job }}_${{ strategy.job-index }}.junit.xml
system_tests: system_tests:
name: System tests name: System tests
runs-on: ubuntu-latest runs-on: ubuntu-latest
env:
RUBY_YJIT_ENABLE: "1"
services: services:
postgres: postgres:
image: postgis/postgis:14-3.3 image: postgres:14
env: env:
POSTGRES_USER: tps_test POSTGRES_USER: tps_test
POSTGRES_DB: tps_test POSTGRES_DB: tps_test
@ -119,7 +112,7 @@ jobs:
instances: [0, 1] instances: [0, 1]
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v3
- name: Setup the app runtime and dependencies - name: Setup the app runtime and dependencies
uses: ./.github/actions/ci-setup-rails uses: ./.github/actions/ci-setup-rails
@ -139,9 +132,9 @@ jobs:
RAILS_ENV=test bin/rspec $SPEC_FILES --format progress --format RspecJunitFormatter --out tmp/rspec_${{ github.job }}_${{ strategy.job-index }}.junit.xml RAILS_ENV=test bin/rspec $SPEC_FILES --format progress --format RspecJunitFormatter --out tmp/rspec_${{ github.job }}_${{ strategy.job-index }}.junit.xml
- name: Upload test results for this instance - name: Upload test results for this instance
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v3
with: with:
name: rspec-results-${{ github.job }}-${{ strategy.job-index }} name: test-reports
path: tmp/rspec_${{ github.job }}_${{ strategy.job-index }}.junit.xml path: tmp/rspec_${{ github.job }}_${{ strategy.job-index }}.junit.xml
save_test_reports: save_test_reports:
@ -150,14 +143,13 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v3
- name: Collect test results from all instances - name: Collect test results from all instances
uses: actions/download-artifact@v4 uses: actions/download-artifact@v3
with: with:
name: test-reports
path: tmp path: tmp
pattern: rspec-results-*
merge-multiple: true
- name: Save test results and timing data, to better split future tests - name: Save test results and timing data, to better split future tests
uses: ./.github/actions/ci-save-split-tests uses: ./.github/actions/ci-save-split-tests

View file

@ -38,11 +38,11 @@ jobs:
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v4 uses: actions/checkout@v3
# Initializes the CodeQL tools for scanning. # Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL - name: Initialize CodeQL
uses: github/codeql-action/init@v3 uses: github/codeql-action/init@v2
with: with:
languages: ${{ matrix.language }} languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file. # If you wish to specify custom queries, you can do so here or in a config file.
@ -53,7 +53,7 @@ jobs:
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below) # If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild - name: Autobuild
uses: github/codeql-action/autobuild@v3 uses: github/codeql-action/autobuild@v2
# Command-line programs to run using the OS shell. # Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl # 📚 https://git.io/JvXDl
@ -67,4 +67,4 @@ jobs:
# make release # make release
- name: Perform CodeQL Analysis - name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3 uses: github/codeql-action/analyze@v2

View file

@ -1,12 +0,0 @@
name: Git Checks
on: [pull_request]
jobs:
block-fixup:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Block Fixup Commit Merge
uses: 13rac1/block-fixup-merge-action@v2.0.0

View file

@ -1,42 +0,0 @@
name: Rails Schema Check
on:
push:
branches: [main]
paths:
- 'db/migrate/**'
- 'db/schema.rb'
pull_request:
branches: [main]
paths:
- 'db/migrate/**'
- 'db/schema.rb'
jobs:
check-migration-and-schema:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 2 # Fetch the last 2 commits to be able to compare with the base branch
- name: Check for migration and schema.rb changes
run: |
#!/bin/bash
set -e
latest_migration_file=$(ls -v db/migrate/*.rb | tail -n 1)
latest_migration_version=$(basename $latest_migration_file | grep -oE '^[0-9]+')
# Get the schema version, without underscores
schema_version=$(grep -oE 'define.version: [0-9_]+' db/schema.rb | cut -d ' ' -f 2 | tr -d _)
if [ "$latest_migration_version" != "$schema_version" ]; then
echo "schema.rb version does not match the latest migration version. Have you forgotten to update the schema.rb?"
echo " SCHEMA VERSION = $schema_version (config/schema.rb)"
echo " LATEST MIGRATION VERSION = $latest_migration_version ($latest_migration_file)"
exit 1
fi

18
.github/workflows/rebase.yml vendored Normal file
View file

@ -0,0 +1,18 @@
on:
issue_comment:
types: [created]
name: Automatic Rebase
jobs:
rebase:
name: Rebase
if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/rebase')
runs-on: ubuntu-latest
steps:
- name: Checkout the latest code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Automatic Rebase
uses: cirrus-actions/rebase@1.5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

19
.github/workflows/sentry-release.yml vendored Normal file
View file

@ -0,0 +1,19 @@
on:
push:
tags:
- '*'
name: Publish release on Sentry
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Sentry Release
uses: getsentry/action-release@v1
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
SENTRY_PROJECT: rails
with:
environment: production
version: ${{ github.ref }}

1
.gitignore vendored
View file

@ -28,7 +28,6 @@ yarn-debug.log*
/.idea /.idea
/public/assets /public/assets
/spec/support/spec_config.local.rb /spec/support/spec_config.local.rb
/config/initializers/config.local.rb
# Local Netlify folder # Local Netlify folder
.netlify .netlify

1
.node-version Normal file
View file

@ -0,0 +1 @@
16.14.0

View file

@ -636,9 +636,6 @@ Performance/FixedSize:
Performance/FlatMap: Performance/FlatMap:
Enabled: true Enabled: true
Performance/OpenStruct:
Enabled: true
Performance/RangeInclude: Performance/RangeInclude:
Enabled: true Enabled: true
@ -746,7 +743,6 @@ Rails/CreateTableWithTimestamps:
- db/migrate/2017*.rb - db/migrate/2017*.rb
- db/migrate/2018*.rb - db/migrate/2018*.rb
- db/migrate/20200630140356_create_traitements.rb - db/migrate/20200630140356_create_traitements.rb
- db/migrate/20230630091637_create_dossier_assignments.rb
Rails/Date: Rails/Date:
Enabled: false Enabled: false
@ -803,8 +799,6 @@ Rails/FindById:
Rails/FindEach: Rails/FindEach:
Enabled: true Enabled: true
Exclude:
- spec/**/*
Rails/FreezeTime: Rails/FreezeTime:
Enabled: true Enabled: true
@ -1438,6 +1432,7 @@ Style/SymbolLiteral:
Style/SymbolProc: Style/SymbolProc:
Enabled: true Enabled: true
IgnoredMethods: [after]
Style/TernaryParentheses: Style/TernaryParentheses:
Enabled: false Enabled: false

View file

@ -1 +1 @@
3.3.0 3.2.2

View file

@ -1,8 +1,6 @@
exclude: exclude:
- 'app/assets/stylesheets/reset.scss' - 'app/assets/stylesheets/reset.scss'
- 'app/assets/stylesheets/direct_uploads.scss' - 'app/assets/stylesheets/direct_uploads.scss'
- 'app/assets/stylesheets/dsfr_override.scss'
- 'app/assets/stylesheets/manager.scss'
linters: linters:
BangFormat: BangFormat:
@ -152,7 +150,7 @@ linters:
properties: {} properties: {}
PseudoElement: PseudoElement:
enabled: false # otherwise rules on ::marker fails enabled: true
# To enable later # To enable later
QualifyingElement: QualifyingElement:

View file

@ -41,11 +41,11 @@ demarches-simplifiees.fr est **compliqué à héberger**. Parmi les problématiq
- **Utilisation de services externes** : demarches-simplifiees.fr sinterconnecte à de nombreux services externes : des APIs (API Entreprise, API Carto, la Base Adresse Nationale, etc.) mais aussi des services pour le stockage externe des pièces-jointes, lanalyse anti-virus ou lenvoi des emails. Le fonctionnement de demarches-simplifiees.fr dépend de la disponibilité de ces services externes. - **Utilisation de services externes** : demarches-simplifiees.fr sinterconnecte à de nombreux services externes : des APIs (API Entreprise, API Carto, la Base Adresse Nationale, etc.) mais aussi des services pour le stockage externe des pièces-jointes, lanalyse anti-virus ou lenvoi des emails. Le fonctionnement de demarches-simplifiees.fr dépend de la disponibilité de ces services externes.
- **Mises à jour** : le schéma de la base de données change régulièrement. Nous codons également des scripts pour harmoniser les anciennes données. Parfois des modifications ponctuelles sont effectuées sur des démarches anciennes, pour les mettre en conformité avec de nouvelles règles métiers. Nous maintenons également les dépendances logicielles utilisées notamment en réagissant rapidement lorsquune faille de sécurité est signalée. Ces mises à jour fréquentes en production sont indispensables au bon fonctionnement de loutil. - **Mises à jour** : le schéma de la base de données change régulièrement. Nous codons également des scripts pour harmoniser les anciennes données. Parfois des modifications ponctuelles sont effectuées sur des démarches anciennes, pour les mettre en conformité avec de nouvelles règles métiers. Nous maintenons également les dépendances logicielles utilisées notamment en réagissant rapidement lorsquune faille de sécurité est signalée. Ces mises à jour fréquentes en production sont indispensables au bon fonctionnement de loutil.
Si vous souhaitez adapter demarches-simplifiees.fr à vos besoins, nous vous recommandons de **proposer vos modifications à la base de code principale** (par exemple en créant une issue) **plutôt que dhéberger une autre instance vous-même**. Si vous souhaitez adapter demarches-simplifiees.fr à votre besoin, nous vous recommandons de **proposer vos modifications à la base de code principale** (par exemple en créant une issue) **plutôt que dhéberger une autre instance vous-même**.
Dans le cas où vous envisagez dhéberger une instance de demarches-simplifiees.fr vous-même, nous ne disposons malheureusement pas des moyens pour vous accompagner, ni dassurer de support technique concernant votre installation. Dans le cas où vous envisagez dhéberger une instance de demarches-simplifiees.fr vous-même, nous n'avons malheureusement pas les moyens de vous accompagner, ni dassurer de support technique concernant votre installation.
Toutefois, certains acteurs (le ministère des armées, ladministration autonome en Polynésie française, l'association Adullact) ont déployé des instances séparées. Nous proposons aux personnes intéressées de les mettre en relation avec ces acteurs existants, pour obtenir un retour dexpérience et bénéficier de leur retour. Toutefois, certains acteurs (le ministère des armées, ladministration autonome en Polynésie française) ont déployé des instances séparées. Nous proposons aux personnes intéressées de les mettre en relation avec ces acteurs existants, afin de disposer dun retour dexpérience, et de bénéficier de leur retour.
## Bonnes pratiques de code ## Bonnes pratiques de code

41
Gemfile
View file

@ -1,18 +1,16 @@
source 'https://rubygems.org' source 'https://rubygems.org'
gem 'rails', '~> 7.0.8' # allows update to security fixes at any time gem 'rails', '~> 7.0.4' # allows update to security fixes at any time
gem 'aasm' gem 'aasm'
gem 'acsv' gem 'acsv'
gem 'active_link_to' # Automatically set a class on active links
gem 'active_model_serializers' gem 'active_model_serializers'
gem 'activestorage-openstack' gem 'activestorage-openstack'
gem 'active_storage_validations' gem 'active_storage_validations'
gem 'addressable'
gem 'administrate' gem 'administrate'
gem 'administrate-field-enum' # Allow using Field::Enum in administrate gem 'administrate-field-enum' # Allow using Field::Enum in administrate
gem 'after_commit_everywhere'
gem 'after_party' gem 'after_party'
gem 'ancestry'
gem 'anchored' gem 'anchored'
gem 'bcrypt' gem 'bcrypt'
gem 'bootsnap', '>= 1.4.4', require: false # Reduces boot times through caching; required in config/boot.rb gem 'bootsnap', '>= 1.4.4', require: false # Reduces boot times through caching; required in config/boot.rb
@ -23,27 +21,24 @@ gem 'chunky_png'
gem 'clamav-client', require: 'clamav/client' gem 'clamav-client', require: 'clamav/client'
gem 'daemons' gem 'daemons'
gem 'deep_cloneable' # Enable deep clone of active record models gem 'deep_cloneable' # Enable deep clone of active record models
gem 'delayed_cron_job', require: false # Cron jobs gem 'delayed_cron_job' # Cron jobs
gem 'delayed_job_active_record' gem 'delayed_job_active_record'
gem 'delayed_job_web' gem 'delayed_job_web'
gem 'devise', git: 'https://github.com/heartcombo/devise.git', ref: "edffc79bf05d7f1c58ba50ffeda645e2e4ae0cb1" # Gestion des comptes utilisateurs, drop ref on next release: 4.9.4 gem 'devise' # Gestion des comptes utilisateurs
gem 'devise-i18n' gem 'devise-i18n'
gem 'devise-two-factor' gem 'devise-two-factor'
gem 'discard' gem 'discard'
gem 'dotenv-rails', require: 'dotenv/rails-now' # dotenv should always be loaded before rails gem 'dotenv-rails', require: 'dotenv/rails-now' # dotenv should always be loaded before rails
gem 'dry-monads' gem 'elastic-apm'
gem 'faraday-jwt'
gem 'flipper' gem 'flipper'
gem 'flipper-active_record' gem 'flipper-active_record'
gem 'flipper-active_support_cache_store'
gem 'flipper-ui' gem 'flipper-ui'
gem 'fugit' gem 'fugit'
gem 'geocoder' gem 'geocoder'
gem 'geo_coord', require: "geo/coord" gem 'geo_coord', require: "geo/coord"
gem 'gitlab-sidekiq-fetcher', require: 'sidekiq-reliable-fetch', git: 'https://github.com/demarches-simplifiees/reliable-fetch.git'
gem 'gon' gem 'gon'
gem 'graphql', '2.0.24' gem 'graphql'
gem 'graphql-batch', '0.5.1' gem 'graphql-batch'
gem 'graphql-rails_logger' gem 'graphql-rails_logger'
gem 'groupdate' gem 'groupdate'
gem 'haml-rails' gem 'haml-rails'
@ -57,13 +52,11 @@ gem 'invisible_captcha'
gem 'json_schemer' gem 'json_schemer'
gem 'jwt' gem 'jwt'
gem 'kaminari' gem 'kaminari'
gem 'kredis'
gem 'listen' # Required by ActiveSupport::EventedFileUpdateChecker gem 'listen' # Required by ActiveSupport::EventedFileUpdateChecker
gem 'lograge' gem 'lograge'
gem 'logstash-event' gem 'logstash-event'
gem 'maintenance_tasks' gem 'mailjet', require: false
gem 'matrix' # needed by prawn and not default in ruby 3.1 gem 'matrix' # needed by prawn and not default in ruby 3.1
gem 'mini_magick'
gem 'net-imap', require: false # See https://github.com/mikel/mail/pull/1439 gem 'net-imap', require: false # See https://github.com/mikel/mail/pull/1439
gem 'net-pop', require: false # same gem 'net-pop', require: false # same
gem 'net-smtp', require: false # same gem 'net-smtp', require: false # same
@ -77,34 +70,27 @@ gem 'puma' # Use Puma as the app server
gem 'pundit' gem 'pundit'
gem 'rack-attack' gem 'rack-attack'
gem 'rails-i18n' # Locales par défaut gem 'rails-i18n' # Locales par défaut
gem 'rails-pg-extras'
gem 'rake-progressbar', require: false gem 'rake-progressbar', require: false
gem 'redcarpet' gem 'redcarpet'
gem 'redis'
gem 'rexml' # add missing gem due to ruby3 (https://github.com/Shopify/bootsnap/issues/325) gem 'rexml' # add missing gem due to ruby3 (https://github.com/Shopify/bootsnap/issues/325)
gem 'rgeo-geojson'
gem 'rqrcode' gem 'rqrcode'
gem 'saml_idp' gem 'saml_idp'
gem 'sanitize-url'
gem 'sassc-rails' # Use SCSS for stylesheets gem 'sassc-rails' # Use SCSS for stylesheets
gem 'sentry-delayed_job' gem 'sentry-delayed_job'
gem 'sentry-rails' gem 'sentry-rails'
gem 'sentry-ruby' gem 'sentry-ruby'
gem 'sentry-sidekiq'
gem 'sib-api-v3-sdk' gem 'sib-api-v3-sdk'
gem 'sidekiq'
gem 'sidekiq-cron'
gem 'skylight' gem 'skylight'
gem 'spreadsheet_architect' gem 'spreadsheet_architect'
gem 'strong_migrations' # lint database migrations gem 'strong_migrations' # lint database migrations
gem 'sys-proctable'
gem 'turbo-rails' gem 'turbo-rails'
gem 'typhoeus' gem 'typhoeus'
gem 'ulid-ruby', require: 'ulid' gem 'ulid-ruby', require: 'ulid'
gem 'view_component' gem 'view_component'
gem 'vite_rails' gem 'vite_rails'
gem 'warden' gem 'warden'
gem 'webrick', require: false
gem 'yabeda-prometheus'
gem 'yabeda-sidekiq'
gem 'zipline' gem 'zipline'
gem 'zxcvbn-ruby', require: 'zxcvbn' gem 'zxcvbn-ruby', require: 'zxcvbn'
@ -118,17 +104,17 @@ group :test do
gem 'rack_session_access' gem 'rack_session_access'
gem 'rails-controller-testing' gem 'rails-controller-testing'
gem 'rspec_junit_formatter' gem 'rspec_junit_formatter'
gem 'rspec-retry'
gem 'selenium-devtools' gem 'selenium-devtools'
gem 'selenium-webdriver' gem 'selenium-webdriver'
gem 'shoulda-matchers', require: false gem 'shoulda-matchers', require: false
gem 'timecop' gem 'timecop'
gem 'vcr' gem 'vcr'
gem 'webdrivers'
gem 'webmock' gem 'webmock'
end end
group :development do group :development do
gem 'benchmark-ips', require: false gem 'annotate'
gem 'brakeman', require: false gem 'brakeman', require: false
gem 'haml-lint' gem 'haml-lint'
gem 'letter_opener_web' gem 'letter_opener_web'
@ -146,8 +132,9 @@ end
group :development, :test do group :development, :test do
gem 'graphql-schema_comparator' gem 'graphql-schema_comparator'
gem 'irb'
gem 'mina', require: false # Deploy gem 'mina', require: false # Deploy
gem 'pry-byebug' # Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'pry-rails'
gem 'rspec-rails' gem 'rspec-rails'
gem 'simple_xlsx_reader' gem 'simple_xlsx_reader'
gem 'spring' # Spring speeds up development by keeping your application running in the background gem 'spring' # Spring speeds up development by keeping your application running in the background

File diff suppressed because it is too large Load diff

View file

@ -17,38 +17,18 @@ Vous souhaitez y apporter des changements ou des améliorations ? Lisez notre [
#### Tous environnements #### Tous environnements
- postgresql - postgresql
- imagemagick et gsfonts pour générer les filigranes sur les titres d'identité ou générer des minitiatures d'images.
> [!WARNING]
> Pensez à restreindre la policy d'ImageMagick pour bloquer l'exploitation d'images malveillantes.
> La configuration par défaut est généralement insuffisante pour des images provenant du web.
> Par exemple sous debian/ubuntu dans `/etc/ImageMagick-6/policy.xml` :
```xml
<!-- en plus de la policy par défaut, ajoutez à la fin du fichier -->
<policymap>
<policy domain="coder" rights="none" pattern="*"/>
<policy domain="coder" rights="read | write" pattern="{JPG,JPEG,PNG,JSON}"/>
<policy domain="module" rights="none" pattern="{MSL,MVG,PS,SVG,URL,XPS}"/>
</policymap>
```
Nous sommes en cours de migration de `delayed_job` vers `sidekiq` pour le traitement des jobs asynchrones.
Pour faire tourner sidekiq, vous aurez besoin de :
- redis
#### Développement #### Développement
- rbenv : voir https://github.com/rbenv/rbenv-installer#rbenv-installer--doctor-scripts - rbenv : voir https://github.com/rbenv/rbenv-installer#rbenv-installer--doctor-scripts
- Bun : voir https://bun.sh/docs/installation - Yarn : voir https://yarnpkg.com/en/docs/install
#### Tests #### Tests
- Chrome - Chrome
- chromedriver : - chromedriver :
* Mac : `brew install chromedriver` * Mac : `brew install chromedriver`
* Linux : voir https://developer.chrome.com/blog/chrome-for-testing * Linux : voir https://sites.google.com/a/chromium.org/chromedriver/downloads
Si l'emplacement d'installation de Chrome n'est pas standard, ou que vous utilisez Brave ou Chromium à la place, Si l'emplacement d'installation de Chrome n'est pas standard, ou que vous utilisez Brave ou Chromium à la place,
il peut être nécessaire d'overrider pour votre machine le path vers le binaire Chrome, par exemple : il peut être nécessaire d'overrider pour votre machine le path vers le binaire Chrome, par exemple :
@ -62,7 +42,8 @@ Selenium::WebDriver::Chrome.path = "/Applications/Brave Browser.app/Contents/Mac
Webdrivers::Chromedriver.required_version = "103.0.5060.53" Webdrivers::Chromedriver.required_version = "103.0.5060.53"
``` ```
Il est également possible de faire une installation et mise à jour automatique lors de l'exécution de `bin/update` en définissant la variable d'environnement `UPDATE_WEBDRIVER`. Les binaires seront installés dans le repertoire `~/.local/bin/` qui doit être rajouté manuellement dans le path. Il peut être également pertinent de désactiver la mise à jour automatique du webdriver
en définissant une variable d'environnement `SKIP_UPDATE_WEBDRIVER` lors de l'exécution de `bin/update`.
### Création des rôles de la base de données ### Création des rôles de la base de données

View file

@ -4,5 +4,3 @@
//= link administrate/application.css //= link administrate/application.css
//= link administrate/application.js //= link administrate/application.js
//= link manager.css //= link manager.css
//= link attestation.css
//= link_tree ../../../node_modules/@gouvfr/dsfr/dist/artwork

Binary file not shown.

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

View file

@ -1,264 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="101.279"
height="36.731998"
viewBox="0 -66 264.401 99.7"
version="1.1"
id="svg10"
sodipodi:docname="centered_marianne.svg"
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs14" />
<sodipodi:namedview
id="namedview12"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="true"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
showguides="true"
inkscape:zoom="7.6027607"
inkscape:cx="47.416986"
inkscape:cy="40.971959"
inkscape:window-width="1920"
inkscape:window-height="1001"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1"
inkscape:current-layer="svg10">
<sodipodi:guide
position="0.48560973,44.16242"
orientation="1,0"
id="guide2738"
inkscape:locked="false" />
<sodipodi:guide
position="65.557313,99.195115"
orientation="0,-1"
id="guide2740"
inkscape:locked="false" />
<sodipodi:guide
position="102.46365,0.2372419"
orientation="0,-1"
id="guide2742"
inkscape:locked="false" />
<sodipodi:guide
position="264.17169,44.16242"
orientation="1,0"
id="guide2744"
inkscape:locked="false" />
</sodipodi:namedview>
<path
d="m 83.85,21.4 c 0,0 0.1,0 0,0 0.4,-0.2 0.6,-0.3 0.8,-0.5 h -0.1 c -0.2,0.1 -0.4,0.3 -0.7,0.5 m 36.5,-12.2 -0.2,0.2 c 0.1,0 0.2,0 0.2,-0.2"
fill="#1f356c"
id="path2" />
<g
id="g2474"
transform="matrix(0.44680172,0,0,0.44680172,121.11143,-8.3604936)">
<g
id="g4026-0-6"
transform="matrix(0.71886577,0,0,0.71886577,-1831.0169,126.70432)">
<g
id="g5762-0-7-2-5-3-7"
transform="translate(341.65802,-1227.5096)">
<path
style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:36.8112;stroke-dasharray:36.8112, 36.8112;stop-color:#000000"
id="path15082-0-7-1-4-8-4"
transform="matrix(-0.13997337,-0.99015527,0.9913098,-0.13154798,0,0)"
d="m -1228.1049,1792.0285 a 153.87494,155.69708 0 0 1 74.9878,203.6158 153.87494,155.69708 0 0 1 -199.2052,81.1693 153.87494,155.69708 0 0 1 -85.3961,-199.3748" />
<g
id="g17548-0-7-0-0-48-3"
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-opacity:1">
<path
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:2.21555px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 2179.0586,980.41016 68.1567,34.64154 -33.1573,33.3093 z"
id="path16488-9-4-0-4-5-0" />
<path
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.90178px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 2178.7295,980.09664 13.4477,-69.92761"
id="path16492-7-1-8-8-0-1" />
<path
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.90178px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 2248.6571,1052.7138 -34.5991,-4.3528 17.1173,59.488"
id="path16687-6-3-9-4-5-5" />
</g>
<path
style="fill:none;stroke:#ffffff;stroke-width:1.90178px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 2178.7295,980.09664 -44.3771,54.79906 79.7056,13.4653 -113.997,39.989 131.1143,19.499 -120.6924,27.5676 36.3085,36.3086 -84.4267,4.8658"
id="path1783-8-7-1-5-0-9" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.90178px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 2178.7295,980.09664 -82.7028,-3.69809 96.1505,-66.22952 -105.2277,-36.98095 9.7495,102.2019 37.6534,59.50572 -34.2914,53.4543 -54.4629,-29.921 88.7543,-23.5333"
id="path1818-1-8-4-5-0-4" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.90178px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 2110.4829,1135.4166 2100.061,1088.35"
id="path1853-9-6-6-2-3-7" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.90178px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 2062.3647,1176.591 48.1182,-41.1744 -73.2896,-4.0343 62.8677,-43.0323"
id="path1890-4-3-6-6-4-0" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.90178px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 2045.5981,1058.429 50.4286,-82.03045 -79.341,-23.86953 70.2638,-79.34094"
id="path1925-8-5-7-9-1-1" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.90178px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 2016.6857,952.52902 28.9124,105.89998 -8.4048,72.9533"
id="path1960-9-8-7-6-5-5" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.90178px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 2016.6857,952.52902 -42.0238,-22.18856 -13.4476,72.61714 z"
id="path1995-3-1-8-2-1-2" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.90178px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 2045.5981,1058.429 -44.0409,11.7667 2.6895,-39.3343 z"
id="path2030-4-6-3-5-9-3" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.90178px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 2004.2467,1030.8614 12.439,-78.33238"
id="path2065-4-7-6-0-4-4" />
</g>
</g>
<path
d="m 2406.453,273.19883 q 0,9.58068 -3.0186,17.65207 -3.0186,8.00577 -8.5964,13.78043 -5.5122,5.77466 -13.3211,8.99009 -7.8089,3.21543 -17.3239,3.21543 h -31.7606 v -87.14481 h 31.7606 q 9.515,0 17.3239,3.21544 7.8089,3.21543 13.3211,8.99008 5.5778,5.77466 8.5964,13.78043 3.0186,8.00578 3.0186,17.52084 z m -17.5209,0 q 0,-6.95584 -1.7061,-12.46801 -1.7062,-5.51217 -4.9216,-9.38382 -3.1498,-3.87164 -7.7433,-5.9059 -4.5935,-2.09987 -10.3681,-2.09987 h -14.4367 v 59.78081 h 14.4367 q 5.7746,0 10.3681,-2.03425 4.5935,-2.03425 7.7433,-5.9059 3.2154,-3.87164 4.9216,-9.38381 1.7061,-5.5778 1.7061,-12.59925 z"
style="font-weight:bold;font-size:134.392px;line-height:1.15;font-family:Carlito;-inkscape-font-specification:'Carlito Bold';white-space:pre;inline-size:492.011;display:inline;fill:#ffffff;stroke-width:1.90178"
id="path1922"
transform="matrix(0.71886579,0,0,0.71886579,-1759.6753,-214.44053)" />
<path
d="m 2489.3324,308.43735 q -6.5621,4.92159 -13.9773,7.1527 -7.4152,2.1655 -15.7491,2.1655 -10.565,0 -19.1613,-3.28106 -8.5308,-3.34667 -14.6335,-9.25257 -6.1028,-5.97152 -9.4495,-14.10854 -3.281,-8.20263 -3.281,-17.91455 0,-9.77755 3.1498,-17.91456 3.1498,-8.20264 8.9901,-14.10854 5.9059,-5.9059 14.1741,-9.18695 8.3339,-3.28105 18.5708,-3.28105 5.3153,0 9.9088,0.85307 4.5935,0.85307 8.5307,2.36236 3.9373,1.50928 7.1527,3.60916 3.2811,2.09987 5.9059,4.6591 l -4.9216,7.74329 q -1.1155,1.83739 -3.0185,2.29673 -1.8374,0.39373 -4.0029,-0.91869 -2.0343,-1.2468 -4.0685,-2.29674 -2.0343,-1.11556 -4.3966,-1.90301 -2.2968,-0.85308 -5.1185,-1.31242 -2.8217,-0.45935 -6.4965,-0.45935 -6.1683,0 -11.0899,2.1655 -4.9216,2.09987 -8.3995,5.97151 -3.4779,3.87165 -5.381,9.44944 -1.8373,5.51217 -1.8373,12.27115 0,7.34956 2.0342,13.12421 2.0343,5.77466 5.709,9.77755 3.7404,3.93726 8.9901,6.03714 5.2497,2.03425 11.6806,2.03425 4.331,0 7.7433,-0.85307 3.4779,-0.9187 6.8246,-2.4936 v -15.2241 h -10.0401 q -1.5749,0 -2.5592,-0.91869 -0.9187,-0.9187 -0.9187,-2.23112 v -9.71192 h 29.1358 z"
style="font-weight:bold;font-size:134.392px;line-height:1.15;font-family:Carlito;-inkscape-font-specification:'Carlito Bold';white-space:pre;inline-size:492.011;display:inline;fill:#ffffff;stroke-width:1.90178"
id="path1924"
transform="matrix(0.71886579,0,0,0.71886579,-1759.6753,-214.44053)" />
<path
d="m 2512.2342,229.69204 q 1.1155,0 1.903,0.13124 0.7874,0.0656 1.378,0.39373 0.6562,0.26248 1.1812,0.78745 0.5906,0.52497 1.3124,1.37805 l 42.9162,56.56538 q -0.3937,-4.33099 -0.3937,-8.20264 v -51.05321 h 15.1584 v 87.14481 h -8.8588 q -2.0343,0 -3.4123,-0.65621 -1.3124,-0.72183 -2.6248,-2.29674 l -42.785,-56.23727 q 0.3937,4.0685 0.3937,7.54642 v 51.6438 h -15.2241 v -87.14481 z"
style="font-weight:bold;font-size:134.392px;line-height:1.15;font-family:Carlito;-inkscape-font-specification:'Carlito Bold';white-space:pre;inline-size:492.011;display:inline;fill:#000000;stroke-width:1.90178"
id="path1926"
transform="matrix(0.71886579,0,0,0.71886579,-1759.6753,-214.44053)" />
<path
d="m 2626.8086,307.38742 q 5.1841,0 9.2526,-1.77177 4.1341,-1.83739 6.9558,-5.05283 2.8217,-3.28105 4.2654,-7.74329 1.5093,-4.46223 1.5093,-9.84316 v -52.36563 h 11.943 v 52.36563 q 0,7.4808 -2.3624,13.84605 -2.3623,6.36525 -6.7589,11.02434 -4.331,4.6591 -10.6307,7.34957 -6.2996,2.62484 -14.1741,2.62484 -7.8745,0 -14.1742,-2.62484 -6.234,-2.69047 -10.6306,-7.34957 -4.3966,-4.65909 -6.759,-11.02434 -2.3623,-6.36525 -2.3623,-13.84605 v -52.36563 h 11.943 v 52.30001 q 0,5.38093 1.4437,9.90878 1.5093,4.46224 4.331,7.74329 2.8217,3.21544 6.8902,5.05283 4.1341,1.77177 9.3182,1.77177 z"
style="font-size:134.392px;line-height:1.15;font-family:Carlito;-inkscape-font-specification:Carlito;white-space:pre;inline-size:492.011;display:inline;fill:#000000;stroke-width:1.90178"
id="path1928"
transform="matrix(0.71886579,0,0,0.71886579,-1759.6753,-214.44053)" />
<path
d="m 2724.7152,285.40435 q 0.8531,1.50928 1.5093,3.08419 0.7219,1.57491 1.3781,3.21543 0.6562,-1.70614 1.3124,-3.28105 0.7218,-1.57491 1.5093,-3.01857 l 30.4482,-52.82498 q 0.7874,-1.37804 1.7061,-1.64053 0.9187,-0.3281 2.4936,-0.3281 h 8.7932 v 86.22611 h -10.565 v -62.93063 q 0,-1.31242 0.066,-2.88732 0.1312,-1.64053 0.2625,-3.28106 l -30.7763,54.07178 q -1.5093,2.69047 -4.331,2.69047 h -1.7062 q -2.8217,0 -4.331,-2.69047 l -31.4981,-54.00616 q 0.3937,3.28106 0.3937,6.10276 v 62.93063 h -10.4993 v -86.22611 h 8.7932 q 1.5749,0 2.428,0.3281 0.9187,0.26249 1.7717,1.70615 l 30.8419,52.75936 z"
style="font-size:134.392px;line-height:1.15;font-family:Carlito;-inkscape-font-specification:Carlito;white-space:pre;inline-size:492.011;display:inline;fill:#000000;stroke-width:1.90178"
id="path1930"
transform="matrix(0.71886579,0,0,0.71886579,-1759.6753,-214.44053)" />
<g
aria-label="Délégation GénéraleNumérique"
id="text13534"
style="font-size:23.8194px;line-height:1.25;fill:#000000;stroke-width:0.893227">
<path
d="m 51.335571,39.553977 q 0,1.721324 -0.511745,3.128622 -0.500114,1.407299 -1.418929,2.419158 -0.907184,1.000229 -2.198177,1.546865 -1.279363,0.546637 -2.837859,0.546637 H 39.088584 V 31.912694 h 5.280277 q 1.558496,0 2.837859,0.558268 1.290993,0.546636 2.198177,1.546865 0.918815,1.000229 1.418929,2.419158 0.511745,1.407298 0.511745,3.116992 z m -2.174916,0 q 0,-1.395668 -0.337287,-2.488942 -0.337286,-1.104903 -0.965337,-1.872521 -0.62805,-0.767617 -1.511973,-1.163057 -0.883923,-0.407069 -1.977197,-0.407069 h -3.151883 v 11.863178 h 3.151883 q 1.093274,0 1.977197,-0.395439 0.883923,-0.40707 1.511973,-1.163057 0.628051,-0.767618 0.965337,-1.872521 0.337287,-1.104904 0.337287,-2.500572 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path1869" />
<path
d="m 52.998742,47.195259 z m 5.350061,-11.549153 q 1.02349,0 1.895782,0.337287 0.872293,0.337286 1.511974,0.988598 0.639681,0.651312 1.000229,1.593388 0.360547,0.942075 0.360547,2.163285 0,0.476853 -0.104675,0.639681 -0.104675,0.151198 -0.383809,0.151198 h -7.60639 q 0.02326,1.070012 0.290764,1.872521 0.267503,0.790878 0.732726,1.314254 0.476853,0.523375 1.128165,0.790878 0.651311,0.255873 1.45382,0.255873 0.744357,0 1.290993,-0.162828 0.546637,-0.174459 0.930446,-0.383809 0.395439,-0.20935 0.662942,-0.372178 0.267503,-0.174458 0.465223,-0.174458 0.127936,0 0.22098,0.05815 0.09304,0.04652 0.162828,0.139567 l 0.581529,0.744356 q -0.383809,0.453593 -0.907185,0.790879 -0.511744,0.325656 -1.104903,0.546637 -0.593159,0.20935 -1.23284,0.314025 -0.628051,0.104675 -1.244471,0.104675 -1.186318,0 -2.186547,-0.395439 -1.000228,-0.39544 -1.732954,-1.163057 -0.721095,-0.779248 -1.128165,-1.907413 -0.40707,-1.139795 -0.40707,-2.616877 0,-1.186318 0.360548,-2.209808 0.372178,-1.035121 1.058381,-1.791107 0.697834,-0.767618 1.686432,-1.197949 1.000229,-0.430331 2.2447,-0.430331 z m 0.03489,1.488713 q -1.43056,0 -2.267961,0.837401 -0.82577,0.8374 -1.03512,2.291221 h 6.199092 q 0,-0.686203 -0.19772,-1.256101 -0.19772,-0.581528 -0.569898,-0.988598 -0.372178,-0.418701 -0.918815,-0.651312 -0.535006,-0.232611 -1.209578,-0.232611 z m 2.87275,-6.210723 -2.628509,2.896011 q -0.162828,0.174459 -0.325655,0.244242 -0.151198,0.06978 -0.383809,0.06978 h -1.22121 l 1.663171,-2.709922 q 0.151198,-0.255873 0.337287,-0.372179 0.186089,-0.127936 0.558267,-0.127936 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path1871" />
<path
d="M 67.73467,30.656593 V 47.195259 H 65.68769 V 30.656593 Z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path1873" />
<path
d="m 70.316655,47.195259 z m 5.350061,-11.549153 q 1.02349,0 1.895782,0.337287 0.872293,0.337286 1.511974,0.988598 0.639681,0.651312 1.000229,1.593388 0.360547,0.942075 0.360547,2.163285 0,0.476853 -0.104675,0.639681 -0.104675,0.151198 -0.383809,0.151198 h -7.60639 q 0.02326,1.070012 0.290764,1.872521 0.267503,0.790878 0.732726,1.314254 0.476853,0.523375 1.128165,0.790878 0.651311,0.255873 1.45382,0.255873 0.744357,0 1.290993,-0.162828 0.546637,-0.174459 0.930446,-0.383809 0.395439,-0.20935 0.662942,-0.372178 0.267503,-0.174458 0.465223,-0.174458 0.127936,0 0.22098,0.05815 0.09304,0.04652 0.162828,0.139567 l 0.581529,0.744356 q -0.383809,0.453593 -0.907184,0.790879 -0.511745,0.325656 -1.104904,0.546637 -0.593159,0.20935 -1.23284,0.314025 -0.628051,0.104675 -1.244471,0.104675 -1.186318,0 -2.186547,-0.395439 -1.000228,-0.39544 -1.732954,-1.163057 -0.721095,-0.779248 -1.128165,-1.907413 -0.40707,-1.139795 -0.40707,-2.616877 0,-1.186318 0.360548,-2.209808 0.372178,-1.035121 1.058381,-1.791107 0.697834,-0.767618 1.686432,-1.197949 1.000229,-0.430331 2.2447,-0.430331 z m 0.03489,1.488713 q -1.43056,0 -2.267961,0.837401 -0.82577,0.8374 -1.03512,2.291221 h 6.199092 q 0,-0.686203 -0.19772,-1.256101 -0.19772,-0.581528 -0.569898,-0.988598 -0.372178,-0.418701 -0.918814,-0.651312 -0.535007,-0.232611 -1.209579,-0.232611 z m 2.87275,-6.210723 -2.628509,2.896011 q -0.162827,0.174459 -0.325655,0.244242 -0.151198,0.06978 -0.383809,0.06978 h -1.22121 l 1.663171,-2.709922 q 0.151198,-0.255873 0.337287,-0.372179 0.186089,-0.127936 0.558267,-0.127936 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path1875" />
<path
d="m 86.669232,35.634476 q 0.709464,0 1.325884,0.162828 0.61642,0.162828 1.116535,0.465222 h 2.977425 v 0.755987 q 0,0.40707 -0.465223,0.476853 l -1.209579,0.174459 q 0.360548,0.744356 0.360548,1.628279 0,0.837401 -0.314025,1.511974 -0.302395,0.674573 -0.849032,1.151426 -0.546637,0.476853 -1.302623,0.744356 -0.744357,0.255873 -1.63991,0.255873 -0.744357,0 -1.372407,-0.174459 -0.337287,0.220981 -0.500115,0.476854 -0.162827,0.244241 -0.162827,0.488483 0,0.40707 0.314025,0.60479 0.314025,0.197719 0.82577,0.290764 0.511745,0.09305 1.163057,0.116306 0.651312,0.02326 1.325884,0.08141 0.686204,0.04652 1.337516,0.162828 0.651311,0.116305 1.163056,0.407069 0.511745,0.279134 0.82577,0.779248 0.314026,0.488484 0.314026,1.279363 0,0.732725 -0.348917,1.418929 -0.348917,0.686203 -1.01186,1.221209 -0.651311,0.535006 -1.605018,0.849032 -0.942076,0.325656 -2.140024,0.325656 -1.197948,0 -2.093502,-0.244242 -0.895554,-0.244242 -1.488713,-0.662943 -0.593159,-0.4187 -0.883923,-0.965337 -0.290764,-0.546636 -0.290764,-1.139795 0,-0.837401 0.488484,-1.418929 0.500114,-0.581529 1.372407,-0.918815 -0.476853,-0.220981 -0.755987,-0.60479 -0.279134,-0.383808 -0.279134,-1.023489 0,-0.488484 0.348917,-1.035121 0.348917,-0.546637 1.046751,-0.907184 -0.802509,-0.476853 -1.267731,-1.256101 -0.453592,-0.779248 -0.453592,-1.814369 0,-0.837401 0.302394,-1.511973 0.314026,-0.674573 0.860662,-1.151427 0.546637,-0.488483 1.302624,-0.744356 0.755987,-0.255872 1.663171,-0.255872 z m 3.349603,12.177203 q 0,-0.40707 -0.220981,-0.662942 -0.20935,-0.255873 -0.581528,-0.395439 -0.372178,-0.151198 -0.860662,-0.209351 -0.488484,-0.06978 -1.035121,-0.104675 -0.546636,-0.03489 -1.116534,-0.05815 -0.558267,-0.02326 -1.081643,-0.104675 -0.569897,0.302395 -0.930445,0.732726 -0.360548,0.4187 -0.360548,1.011859 0,0.383809 0.174459,0.709465 0.174458,0.325656 0.535006,0.558267 0.372178,0.244242 0.942076,0.383809 0.569898,0.139567 1.349146,0.139567 0.767617,0 1.360776,-0.151198 0.593159,-0.151197 1.000229,-0.4187 0.40707,-0.255873 0.61642,-0.628051 0.20935,-0.360547 0.20935,-0.802509 z m -3.349603,-6.199092 q 1.128165,0 1.698062,-0.628051 0.581529,-0.62805 0.581529,-1.639909 0,-1.035121 -0.581529,-1.63991 -0.569897,-0.61642 -1.698062,-0.61642 -1.104904,0 -1.686432,0.61642 -0.569898,0.604789 -0.569898,1.63991 0,0.500114 0.139567,0.918814 0.151197,0.40707 0.430331,0.709465 0.290764,0.302395 0.709464,0.476853 0.430331,0.162828 0.976968,0.162828 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path1877" />
<path
d="m 101.10277,47.195259 q -0.3024,0 -0.46523,-0.09304 -0.16283,-0.09305 -0.22098,-0.383809 l -0.25587,-1.058382 q -0.441962,0.40707 -0.872293,0.732726 -0.4187,0.314025 -0.883923,0.535006 -0.465223,0.220981 -1.000229,0.325656 -0.535006,0.116306 -1.174687,0.116306 -0.662942,0 -1.244471,-0.174459 -0.569898,-0.186089 -1.011859,-0.558267 -0.430331,-0.383809 -0.686204,-0.942076 -0.244241,-0.569898 -0.244241,-1.337515 0,-0.674573 0.360547,-1.290993 0.372178,-0.628051 1.197949,-1.116535 0.82577,-0.488483 2.151654,-0.790878 1.325885,-0.314025 3.256557,-0.360548 v -0.872292 q 0,-1.325885 -0.569896,-1.988827 -0.558267,-0.674573 -1.63991,-0.674573 -0.721095,0 -1.221209,0.186089 -0.488484,0.186089 -0.849031,0.40707 -0.360548,0.220981 -0.628051,0.40707 -0.255873,0.186089 -0.523376,0.186089 -0.20935,0 -0.360547,-0.104675 -0.151198,-0.104675 -0.244242,-0.267503 L 93.60105,37.425583 q 0.942076,-0.907184 2.023718,-1.349146 1.093274,-0.453592 2.419158,-0.453592 0.953707,0 1.698063,0.314025 0.744361,0.302395 1.244471,0.872293 0.50011,0.569898 0.75599,1.360776 0.2675,0.790879 0.2675,1.756216 v 7.269104 z m -4.256792,-1.256101 q 0.511745,0 0.942076,-0.104675 0.430331,-0.104675 0.81414,-0.290764 0.383808,-0.19772 0.721095,-0.476854 0.348917,-0.290764 0.686201,-0.639681 V 42.07781 q -1.360774,0.05815 -2.314481,0.232611 -0.953706,0.162828 -1.558496,0.441962 -0.593159,0.279133 -0.860662,0.662942 -0.267503,0.372178 -0.267503,0.837401 0,0.441961 0.139567,0.767617 0.151198,0.314025 0.395439,0.523376 0.244242,0.197719 0.581529,0.302394 0.337286,0.09304 0.721095,0.09304 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path1879" />
<path
d="m 103.6266,47.195259 z m 11.1886,-11.165344 v 11.165344 h -2.04698 v -9.676631 h -5.40821 v 6.792251 q 0,0.697834 0.3024,1.046751 0.31402,0.348917 0.81414,0.348917 0.29076,0 0.48848,-0.08141 0.20935,-0.08141 0.34892,-0.186089 0.15119,-0.104676 0.25587,-0.18609 0.10467,-0.08141 0.19772,-0.08141 0.10467,0 0.16283,0.04652 0.0698,0.04652 0.12793,0.151197 l 0.60479,0.976968 q -0.51174,0.488484 -1.20958,0.755987 -0.69783,0.267503 -1.45382,0.267503 -1.29099,0 -1.98882,-0.755987 -0.69784,-0.755987 -0.69784,-2.163286 v -6.931817 h -1.2561 q -0.18609,0 -0.31402,-0.116306 -0.11631,-0.116306 -0.11631,-0.337287 v -0.814139 l 1.75621,-0.232612 0.46523,-3.5008 q 0.0349,-0.174459 0.15119,-0.279134 0.11631,-0.104675 0.31403,-0.104675 h 1.04675 v 3.89624 z m 0.44197,-3.849718 q 0,0.290765 -0.11631,0.558268 -0.11631,0.255872 -0.32566,0.453592 -0.19772,0.186089 -0.46522,0.302394 -0.25587,0.116306 -0.54663,0.116306 -0.29077,0 -0.54664,-0.116306 -0.25587,-0.116305 -0.45359,-0.302394 -0.18609,-0.19772 -0.3024,-0.453592 -0.1163,-0.267503 -0.1163,-0.558268 0,-0.302394 0.1163,-0.558267 0.11631,-0.267503 0.3024,-0.465223 0.19772,-0.197719 0.45359,-0.314025 0.25587,-0.116305 0.54664,-0.116305 0.29076,0 0.54663,0.116305 0.2675,0.116306 0.46522,0.314025 0.20935,0.19772 0.32566,0.465223 0.11631,0.255873 0.11631,0.558267 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path1881" />
<path
d="m 122.81704,35.646106 q 1.24447,0 2.24469,0.418701 1.00023,0.40707 1.69807,1.174687 0.69783,0.755987 1.07001,1.837629 0.38381,1.081643 0.38381,2.419158 0,1.349146 -0.38381,2.430789 -0.37218,1.081643 -1.07001,1.84926 -0.69784,0.755987 -1.69807,1.174687 -1.00022,0.40707 -2.24469,0.40707 -1.24448,0 -2.25633,-0.40707 -1.00023,-0.4187 -1.7097,-1.174687 -0.69783,-0.767617 -1.08164,-1.84926 -0.37218,-1.081643 -0.37218,-2.430789 0,-1.337515 0.37218,-2.419158 0.38381,-1.081642 1.08164,-1.837629 0.70947,-0.767617 1.7097,-1.174687 1.01185,-0.418701 2.25633,-0.418701 z m 0,10.118593 q 0.82577,0 1.44219,-0.279133 0.61642,-0.290764 1.02349,-0.837401 0.4187,-0.546637 0.61642,-1.337515 0.20935,-0.790879 0.20935,-1.802738 0,-1.011859 -0.20935,-1.802738 -0.19772,-0.790878 -0.61642,-1.337515 -0.40707,-0.546637 -1.02349,-0.837401 -0.61642,-0.290764 -1.44219,-0.290764 -0.83741,0 -1.46546,0.290764 -0.61642,0.290764 -1.03512,0.837401 -0.40707,0.546637 -0.61642,1.337515 -0.19772,0.790879 -0.19772,1.802738 0,1.011859 0.19772,1.802738 0.20935,0.790878 0.61642,1.337515 0.4187,0.546637 1.03512,0.837401 0.62805,0.279133 1.46546,0.279133 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path1883" />
<path
d="M 130.71419,47.195259 V 35.820565 h 1.22121 q 0.22098,0 0.36055,0.104675 0.13956,0.09304 0.16283,0.314025 l 0.17445,1.209579 q 0.73273,-0.81414 1.63991,-1.302623 0.90719,-0.500115 2.09351,-0.500115 0.93044,0 1.62827,0.314026 0.70947,0.302394 1.18632,0.872292 0.47686,0.558267 0.7211,1.360776 0.24424,0.790879 0.24424,1.756216 v 7.245843 h -2.04698 v -7.245843 q 0,-1.267732 -0.58153,-1.977196 -0.5699,-0.709465 -1.74458,-0.709465 -0.8723,0 -1.62828,0.4187 -0.75599,0.40707 -1.38404,1.139796 v 8.374008 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path1885" />
<path
d="m 160.76758,45.718177 q -1.11654,0.82577 -2.38427,1.23284 -1.2561,0.40707 -2.73318,0.40707 -1.77948,0 -3.22167,-0.569898 -1.43056,-0.569898 -2.44242,-1.593387 -1.01186,-1.035121 -1.55849,-2.465681 -0.54664,-1.44219 -0.54664,-3.175144 0,-1.744585 0.52337,-3.175145 0.53501,-1.44219 1.51198,-2.46568 0.9886,-1.035121 2.38426,-1.605018 1.39567,-0.569898 3.12863,-0.569898 0.88392,0 1.62828,0.139567 0.75598,0.127936 1.39566,0.383808 0.63969,0.244242 1.17469,0.60479 0.54664,0.360547 1.01186,0.802509 l -0.59316,0.953706 q -0.13956,0.232612 -0.37218,0.290765 -0.23261,0.05815 -0.50011,-0.104676 -0.2675,-0.151197 -0.59316,-0.360547 -0.31402,-0.220981 -0.75599,-0.40707 -0.44196,-0.19772 -1.04675,-0.337286 -0.60479,-0.139567 -1.43056,-0.139567 -1.20958,0 -2.19817,0.4187 -0.97697,0.418701 -1.67481,1.197949 -0.6862,0.779248 -1.05838,1.895782 -0.37218,1.104904 -0.37218,2.477311 0,1.430559 0.38381,2.570355 0.39544,1.128165 1.11654,1.919043 0.73272,0.779248 1.75621,1.197949 1.02349,0.40707 2.29122,0.40707 0.97697,0 1.74459,-0.220981 0.76762,-0.232611 1.51197,-0.639681 v -3.349603 h -2.19817 q -0.20935,0 -0.33729,-0.116306 -0.12794,-0.116306 -0.12794,-0.290764 V 39.83311 h 4.58245 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path1887" />
<path
d="m 162.88434,47.195259 z m 5.35006,-11.549153 q 1.02349,0 1.89578,0.337287 0.87229,0.337286 1.51197,0.988598 0.63968,0.651312 1.00023,1.593388 0.36055,0.942075 0.36055,2.163285 0,0.476853 -0.10468,0.639681 -0.10467,0.151198 -0.38381,0.151198 h -7.60639 q 0.0233,1.070012 0.29077,1.872521 0.2675,0.790878 0.73272,1.314254 0.47686,0.523375 1.12817,0.790878 0.65131,0.255873 1.45382,0.255873 0.74436,0 1.29099,-0.162828 0.54664,-0.174459 0.93045,-0.383809 0.39544,-0.20935 0.66294,-0.372178 0.2675,-0.174458 0.46522,-0.174458 0.12794,0 0.22098,0.05815 0.093,0.04652 0.16283,0.139567 l 0.58153,0.744356 q -0.38381,0.453593 -0.90718,0.790879 -0.51175,0.325656 -1.10491,0.546637 -0.59316,0.20935 -1.23284,0.314025 -0.62805,0.104675 -1.24447,0.104675 -1.18632,0 -2.18655,-0.395439 -1.00022,-0.39544 -1.73295,-1.163057 -0.72109,-0.779248 -1.12816,-1.907413 -0.40707,-1.139795 -0.40707,-2.616877 0,-1.186318 0.36054,-2.209808 0.37218,-1.035121 1.05838,-1.791107 0.69784,-0.767618 1.68644,-1.197949 1.00023,-0.430331 2.2447,-0.430331 z m 0.0349,1.488713 q -1.43056,0 -2.26796,0.837401 -0.82577,0.8374 -1.03512,2.291221 h 6.19909 q 0,-0.686203 -0.19772,-1.256101 -0.19772,-0.581528 -0.5699,-0.988598 -0.37218,-0.418701 -0.91881,-0.651312 -0.53501,-0.232611 -1.20958,-0.232611 z m 2.87275,-6.210723 -2.62851,2.896011 q -0.16283,0.174459 -0.32566,0.244242 -0.15119,0.06978 -0.3838,0.06978 h -1.22121 l 1.66317,-2.709922 q 0.15119,-0.255873 0.33728,-0.372179 0.18609,-0.127936 0.55827,-0.127936 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path1889" />
<path
d="M 175.49188,47.195259 V 35.820565 h 1.22121 q 0.22098,0 0.36054,0.104675 0.13957,0.09304 0.16283,0.314025 l 0.17446,1.209579 q 0.73273,-0.81414 1.63991,-1.302623 0.90718,-0.500115 2.0935,-0.500115 0.93045,0 1.62828,0.314026 0.70947,0.302394 1.18632,0.872292 0.47685,0.558267 0.72109,1.360776 0.24425,0.790879 0.24425,1.756216 v 7.245843 h -2.04698 v -7.245843 q 0,-1.267732 -0.58153,-1.977196 -0.5699,-0.709465 -1.74459,-0.709465 -0.87229,0 -1.62828,0.4187 -0.75598,0.40707 -1.38403,1.139796 v 8.374008 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path1891" />
<path
d="m 187.25037,47.195259 z m 5.35006,-11.549153 q 1.02349,0 1.89578,0.337287 0.8723,0.337286 1.51198,0.988598 0.63968,0.651312 1.00023,1.593388 0.36054,0.942075 0.36054,2.163285 0,0.476853 -0.10467,0.639681 -0.10468,0.151198 -0.38381,0.151198 h -7.60639 q 0.0233,1.070012 0.29076,1.872521 0.26751,0.790878 0.73273,1.314254 0.47685,0.523375 1.12816,0.790878 0.65132,0.255873 1.45383,0.255873 0.74435,0 1.29099,-0.162828 0.54663,-0.174459 0.93044,-0.383809 0.39544,-0.20935 0.66295,-0.372178 0.2675,-0.174458 0.46522,-0.174458 0.12793,0 0.22098,0.05815 0.093,0.04652 0.16283,0.139567 l 0.58153,0.744356 q -0.38381,0.453593 -0.90719,0.790879 -0.51174,0.325656 -1.1049,0.546637 -0.59316,0.20935 -1.23284,0.314025 -0.62805,0.104675 -1.24447,0.104675 -1.18632,0 -2.18655,-0.395439 -1.00023,-0.39544 -1.73295,-1.163057 -0.7211,-0.779248 -1.12817,-1.907413 -0.40707,-1.139795 -0.40707,-2.616877 0,-1.186318 0.36055,-2.209808 0.37218,-1.035121 1.05838,-1.791107 0.69783,-0.767618 1.68643,-1.197949 1.00023,-0.430331 2.2447,-0.430331 z m 0.0349,1.488713 q -1.43056,0 -2.26796,0.837401 -0.82577,0.8374 -1.03512,2.291221 h 6.19909 q 0,-0.686203 -0.19772,-1.256101 -0.19771,-0.581528 -0.56989,-0.988598 -0.37218,-0.418701 -0.91882,-0.651312 -0.535,-0.232611 -1.20958,-0.232611 z m 2.87275,-6.210723 -2.6285,2.896011 q -0.16283,0.174459 -0.32566,0.244242 -0.1512,0.06978 -0.38381,0.06978 h -1.22121 l 1.66317,-2.709922 q 0.1512,-0.255873 0.33729,-0.372179 0.18609,-0.127936 0.55827,-0.127936 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path1893" />
<path
d="M 199.75323,47.195259 V 35.820565 h 1.17469 q 0.32565,0 0.45359,0.127936 0.13957,0.127936 0.16283,0.430331 l 0.13956,1.674802 q 0.52338,-1.128165 1.291,-1.779477 0.76761,-0.651312 1.84926,-0.651312 0.36054,0 0.67457,0.08141 0.31403,0.06978 0.5699,0.244242 l -0.16283,1.511974 q -0.0349,0.290764 -0.32566,0.290764 -0.16282,0 -0.46522,-0.05815 -0.29076,-0.06978 -0.65131,-0.06978 -0.52338,0 -0.93045,0.162828 -0.39544,0.151197 -0.72109,0.465222 -0.31403,0.302395 -0.55827,0.744357 -0.24424,0.441961 -0.45359,1.011859 v 7.18769 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path1895" />
<path
d="m 215.08233,47.195259 q -0.3024,0 -0.46523,-0.09304 -0.16282,-0.09305 -0.22098,-0.383809 l -0.25587,-1.058382 q -0.44196,0.40707 -0.87229,0.732726 -0.4187,0.314025 -0.88393,0.535006 -0.46522,0.220981 -1.00022,0.325656 -0.53501,0.116306 -1.17469,0.116306 -0.66294,0 -1.24447,-0.174459 -0.5699,-0.186089 -1.01186,-0.558267 -0.43033,-0.383809 -0.6862,-0.942076 -0.24425,-0.569898 -0.24425,-1.337515 0,-0.674573 0.36055,-1.290993 0.37218,-0.628051 1.19795,-1.116535 0.82577,-0.488483 2.15165,-0.790878 1.32589,-0.314025 3.25656,-0.360548 v -0.872292 q 0,-1.325885 -0.56989,-1.988827 -0.55827,-0.674573 -1.63991,-0.674573 -0.7211,0 -1.22121,0.186089 -0.48849,0.186089 -0.84904,0.40707 -0.36054,0.220981 -0.62805,0.40707 -0.25587,0.186089 -0.52337,0.186089 -0.20935,0 -0.36055,-0.104675 -0.1512,-0.104675 -0.24424,-0.267503 l -0.37218,-0.651312 q 0.94208,-0.907184 2.02372,-1.349146 1.09327,-0.453592 2.41916,-0.453592 0.9537,0 1.69806,0.314025 0.74436,0.302395 1.24447,0.872293 0.50011,0.569898 0.75599,1.360776 0.2675,0.790879 0.2675,1.756216 v 7.269104 z m -4.25679,-1.256101 q 0.51174,0 0.94207,-0.104675 0.43034,-0.104675 0.81414,-0.290764 0.38381,-0.19772 0.7211,-0.476854 0.34892,-0.290764 0.6862,-0.639681 V 42.07781 q -1.36077,0.05815 -2.31448,0.232611 -0.95371,0.162828 -1.5585,0.441962 -0.59315,0.279133 -0.86066,0.662942 -0.2675,0.372178 -0.2675,0.837401 0,0.441961 0.13957,0.767617 0.15119,0.314025 0.39544,0.523376 0.24424,0.197719 0.58152,0.302394 0.33729,0.09304 0.7211,0.09304 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path1897" />
<path
d="m 221.21163,30.656593 v 16.538666 h -2.04698 V 30.656593 Z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path1899" />
<path
d="m 229.14368,35.646106 q 1.02348,0 1.89578,0.337287 0.87229,0.337286 1.51197,0.988598 0.63968,0.651312 1.00023,1.593388 0.36055,0.942075 0.36055,2.163285 0,0.476853 -0.10468,0.639681 -0.10467,0.151198 -0.38381,0.151198 h -7.60639 q 0.0233,1.070012 0.29077,1.872521 0.2675,0.790878 0.73272,1.314254 0.47686,0.523375 1.12817,0.790878 0.65131,0.255873 1.45382,0.255873 0.74435,0 1.29099,-0.162828 0.54664,-0.174459 0.93045,-0.383809 0.39544,-0.20935 0.66294,-0.372178 0.2675,-0.174458 0.46522,-0.174458 0.12794,0 0.22098,0.05815 0.0931,0.04652 0.16283,0.139567 l 0.58153,0.744356 q -0.38381,0.453593 -0.90719,0.790879 -0.51174,0.325656 -1.1049,0.546637 -0.59316,0.20935 -1.23284,0.314025 -0.62805,0.104675 -1.24447,0.104675 -1.18632,0 -2.18655,-0.395439 -1.00023,-0.39544 -1.73295,-1.163057 -0.7211,-0.779248 -1.12817,-1.907413 -0.40707,-1.139795 -0.40707,-2.616877 0,-1.186318 0.36055,-2.209808 0.37218,-1.035121 1.05838,-1.791107 0.69784,-0.767618 1.68644,-1.197949 1.00022,-0.430331 2.2447,-0.430331 z m 0.0349,1.488713 q -1.43056,0 -2.26796,0.837401 -0.82577,0.8374 -1.03512,2.291221 h 6.19909 q 0,-0.686203 -0.19772,-1.256101 -0.19772,-0.581528 -0.5699,-0.988598 -0.37218,-0.418701 -0.91881,-0.651312 -0.53501,-0.232611 -1.20958,-0.232611 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path1901" />
<path
d="m 40.298163,61.9195 q 0.267503,0 0.40707,0.06978 0.139567,0.05815 0.314025,0.290764 l 8.304225,11.432847 q -0.02326,-0.279133 -0.04652,-0.546636 -0.01163,-0.279134 -0.01163,-0.511745 V 61.9195 h 1.860891 v 15.282565 h -1.070012 q -0.244242,0 -0.418701,-0.08141 -0.162828,-0.08141 -0.325656,-0.290765 L 41.007628,65.431931 q 0.02326,0.267503 0.03489,0.511745 0.01163,0.244242 0.01163,0.465223 V 77.202065 H 39.193259 V 61.9195 Z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path1903" />
<path
d="m 56.348345,65.82737 v 7.245843 q 0,1.279363 0.569898,1.988827 0.581528,0.697834 1.756216,0.697834 0.872292,0 1.616648,-0.40707 0.755987,-0.4187 1.395668,-1.139795 V 65.82737 h 2.04698 v 11.374695 h -1.23284 q -0.20935,0 -0.348917,-0.09305 Q 62.012431,77.00434 61.98917,76.783359 L 61.803081,75.57378 q -0.732726,0.81414 -1.63991,1.314254 -0.895553,0.488484 -2.081871,0.488484 -0.930446,0 -1.63991,-0.302395 -0.697834,-0.314025 -1.174687,-0.872292 -0.476854,-0.569898 -0.721096,-1.360777 -0.244241,-0.802509 -0.244241,-1.767846 V 65.82737 Z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path1905" />
<path
d="M 67.071727,77.202065 V 65.82737 h 1.209579 q 0.232611,0 0.360548,0.104675 0.139566,0.09305 0.162828,0.314026 l 0.174458,1.163056 q 0.325656,-0.383808 0.674573,-0.697834 0.360548,-0.325656 0.767617,-0.558267 0.40707,-0.244242 0.872293,-0.372178 0.465223,-0.127936 0.988598,-0.127936 1.174687,0 1.907413,0.639681 0.744356,0.639681 1.058382,1.721324 0.244242,-0.628051 0.639681,-1.070012 0.40707,-0.441962 0.895553,-0.732726 0.488484,-0.290764 1.046751,-0.418701 0.558268,-0.139566 1.139796,-0.139566 1.860891,0 2.87275,1.116534 1.02349,1.116535 1.02349,3.186775 v 7.245844 h -2.04698 v -7.245844 q 0,-1.325884 -0.604789,-2.000457 -0.60479,-0.686204 -1.732955,-0.686204 -0.511745,0 -0.965337,0.174459 -0.453592,0.162828 -0.802509,0.511745 -0.337286,0.337286 -0.546637,0.837401 -0.197719,0.500114 -0.197719,1.163056 v 7.245844 h -2.04698 v -7.245844 q 0,-1.360776 -0.569898,-2.023718 -0.558267,-0.662943 -1.65154,-0.662943 -0.744357,0 -1.395668,0.39544 -0.651312,0.383808 -1.186318,1.070012 v 8.467053 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path1907" />
<path
d="m 85.261933,77.202065 z m 5.350061,-11.549153 q 1.02349,0 1.895782,0.337286 0.872293,0.337287 1.511974,0.988598 0.639681,0.651312 1.000229,1.593388 0.360547,0.942076 0.360547,2.163285 0,0.476854 -0.104675,0.639682 -0.104675,0.151197 -0.383808,0.151197 h -7.606391 q 0.02326,1.070012 0.290764,1.872521 0.267503,0.790879 0.732726,1.314254 0.476853,0.523376 1.128165,0.790879 0.651312,0.255872 1.453821,0.255872 0.744356,0 1.290993,-0.162828 0.546636,-0.174458 0.930445,-0.383808 0.395439,-0.209351 0.662942,-0.372179 0.267503,-0.174458 0.465223,-0.174458 0.127936,0 0.220981,0.05815 0.09304,0.04652 0.162828,0.139567 l 0.581528,0.744356 q -0.383809,0.453592 -0.907184,0.790878 -0.511745,0.325656 -1.104904,0.546637 -0.593159,0.20935 -1.23284,0.314025 -0.628051,0.104675 -1.244471,0.104675 -1.186318,0 -2.186546,-0.395439 -1.000229,-0.395439 -1.732955,-1.163057 -0.721095,-0.779247 -1.128165,-1.907412 -0.40707,-1.139796 -0.40707,-2.616878 0,-1.186318 0.360548,-2.209808 0.372178,-1.03512 1.058381,-1.791107 0.697834,-0.767617 1.686433,-1.197948 1.000228,-0.430331 2.244699,-0.430331 z m 0.03489,1.488712 q -1.43056,0 -2.267961,0.837401 -0.82577,0.837401 -1.03512,2.291222 h 6.199092 q 0,-0.686204 -0.19772,-1.256102 -0.197719,-0.581528 -0.569898,-0.988598 -0.372178,-0.4187 -0.918814,-0.651311 -0.535006,-0.232612 -1.209579,-0.232612 z m 2.87275,-6.210722 -2.628508,2.896011 q -0.162828,0.174458 -0.325656,0.244242 -0.151198,0.06978 -0.383809,0.06978 h -1.221209 l 1.663171,-2.709922 q 0.151197,-0.255873 0.337286,-0.372178 0.186089,-0.127936 0.558267,-0.127936 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path1909" />
<path
d="M 97.764792,77.202065 V 65.82737 h 1.174688 q 0.325655,0 0.453592,0.127936 0.139566,0.127937 0.162828,0.430331 l 0.139566,1.674802 q 0.523374,-1.128165 1.290994,-1.779477 0.76762,-0.651311 1.84926,-0.651311 0.36055,0 0.67457,0.08141 0.31403,0.06978 0.5699,0.244241 l -0.16283,1.511974 q -0.0349,0.290764 -0.32565,0.290764 -0.16283,0 -0.46523,-0.05815 -0.29076,-0.06978 -0.65131,-0.06978 -0.52337,0 -0.93044,0.162828 -0.39544,0.151197 -0.7211,0.465223 -0.31402,0.302394 -0.55827,0.744356 -0.24424,0.441961 -0.453588,1.011859 v 7.187691 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path1911" />
<path
d="m 105.82478,77.202065 z m 2.47731,-11.374695 v 11.374695 h -2.04698 V 65.82737 Z m 0.39544,-3.558953 q 0,0.290764 -0.11631,0.558267 -0.11631,0.255872 -0.32566,0.453592 -0.19771,0.186089 -0.46522,0.302395 -0.25587,0.116305 -0.54663,0.116305 -0.29077,0 -0.54664,-0.116305 -0.25587,-0.116306 -0.45359,-0.302395 -0.18609,-0.19772 -0.3024,-0.453592 -0.1163,-0.267503 -0.1163,-0.558267 0,-0.302395 0.1163,-0.558267 0.11631,-0.267503 0.3024,-0.465223 0.19772,-0.19772 0.45359,-0.314025 0.25587,-0.116306 0.54664,-0.116306 0.29076,0 0.54663,0.116306 0.26751,0.116305 0.46522,0.314025 0.20935,0.19772 0.32566,0.465223 0.11631,0.255872 0.11631,0.558267 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path1913" />
<path
d="m 120.88636,65.82737 v 15.212782 h -2.04698 v -5.501259 q -0.70946,0.837401 -1.61664,1.337516 -0.90719,0.488483 -2.07025,0.488483 -0.97696,0 -1.76784,-0.372178 -0.79088,-0.383808 -1.34915,-1.116534 -0.55826,-0.732726 -0.86066,-1.814369 -0.30239,-1.093273 -0.30239,-2.512202 0,-1.256101 0.33728,-2.337744 0.33729,-1.093273 0.96534,-1.884152 0.62805,-0.790878 1.53523,-1.24447 0.90719,-0.453592 2.04698,-0.453592 1.10491,0 1.86089,0.395439 0.76762,0.383809 1.36078,1.093273 l 0.1512,-0.872292 q 0.0814,-0.418701 0.535,-0.418701 z m -5.07092,9.897613 q 0.96533,0 1.68643,-0.441962 0.72109,-0.453592 1.33751,-1.256101 v -5.501258 q -0.52337,-0.709465 -1.18631,-1.01186 -0.65132,-0.314025 -1.43056,-0.314025 -1.5585,0 -2.40753,1.128165 -0.8374,1.128165 -0.8374,3.221667 0,1.104904 0.18609,1.895782 0.19772,0.790879 0.55826,1.302624 0.37218,0.500114 0.89556,0.744356 0.535,0.232612 1.19795,0.232612 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path1915" />
<path
d="m 126.02707,65.82737 v 7.245843 q 0,1.279363 0.5699,1.988827 0.58153,0.697834 1.75622,0.697834 0.87229,0 1.61664,-0.40707 0.75599,-0.4187 1.39567,-1.139795 V 65.82737 h 2.04698 v 11.374695 h -1.23284 q -0.20935,0 -0.34891,-0.09305 -0.13957,-0.104675 -0.16283,-0.325656 l -0.18609,-1.209579 q -0.73273,0.81414 -1.63991,1.314254 -0.89556,0.488484 -2.08187,0.488484 -0.93045,0 -1.63991,-0.302395 -0.69784,-0.314025 -1.17469,-0.872292 -0.47685,-0.569898 -0.7211,-1.360777 -0.24424,-0.802509 -0.24424,-1.767846 V 65.82737 Z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path1917" />
<path
d="m 141.26311,65.652912 q 1.02349,0 1.89579,0.337286 0.87229,0.337287 1.51197,0.988598 0.63968,0.651312 1.00023,1.593388 0.36055,0.942076 0.36055,2.163285 0,0.476854 -0.10468,0.639682 -0.10467,0.151197 -0.38381,0.151197 h -7.60639 q 0.0233,1.070012 0.29077,1.872521 0.2675,0.790879 0.73272,1.314254 0.47685,0.523376 1.12817,0.790879 0.65131,0.255872 1.45382,0.255872 0.74435,0 1.29099,-0.162828 0.54664,-0.174458 0.93045,-0.383808 0.39543,-0.209351 0.66294,-0.372179 0.2675,-0.174458 0.46522,-0.174458 0.12794,0 0.22098,0.05815 0.0931,0.04652 0.16283,0.139567 l 0.58153,0.744356 q -0.38381,0.453592 -0.90719,0.790878 -0.51174,0.325656 -1.1049,0.546637 -0.59316,0.20935 -1.23284,0.314025 -0.62805,0.104675 -1.24447,0.104675 -1.18632,0 -2.18655,-0.395439 -1.00023,-0.395439 -1.73295,-1.163057 -0.7211,-0.779247 -1.12817,-1.907412 -0.40707,-1.139796 -0.40707,-2.616878 0,-1.186318 0.36055,-2.209808 0.37218,-1.03512 1.05838,-1.791107 0.69784,-0.767617 1.68643,-1.197948 1.00023,-0.430331 2.2447,-0.430331 z m 0.0349,1.488712 q -1.43055,0 -2.26796,0.837401 -0.82577,0.837401 -1.03512,2.291222 h 6.1991 q 0,-0.686204 -0.19772,-1.256102 -0.19772,-0.581528 -0.5699,-0.988598 -0.37218,-0.4187 -0.91882,-0.651311 -0.535,-0.232612 -1.20958,-0.232612 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path1919" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 40 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 5.5 KiB

View file

@ -1,204 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 26.5.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
version="1.1"
id="Calque_1"
x="0px"
y="0px"
viewBox="0 0 314.35999 166.52411"
xml:space="preserve"
sodipodi:docname="logo_DGNum_vf copie.svg"
width="314.35999"
height="166.52411"
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><defs
id="defs93" /><sodipodi:namedview
id="namedview91"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="0.70364583"
inkscape:cx="157.74981"
inkscape:cy="83.138416"
inkscape:window-width="1920"
inkscape:window-height="1080"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="Calque_1" />
<style
type="text/css"
id="style2">
.st0{clip-path:url(#SVGID_00000076564745137627655340000016403154747283637944_);}
.st1{fill:none;stroke:#FFFFFF;stroke-width:1.1945;}
.st2{clip-path:url(#SVGID_00000051345043016480668630000017459005625218034844_);fill:none;stroke:#FFFFFF;stroke-width:1.0253;}
.st3{fill:#FFFFFF;}
</style>
<g
id="g88"
transform="translate(-802,-457)">
<g
id="g12">
<defs
id="defs5">
<rect
id="SVGID_1_"
x="802"
y="457"
width="315"
height="167" />
</defs>
<clipPath
id="SVGID_00000071559021375305558940000017381780678920267449_">
<use
xlink:href="#SVGID_1_"
style="overflow:visible"
id="use7" />
</clipPath>
<path
d="m 802,515.48 c 13.59,-42.81 59.35,-66.98 103.17,-54.47 43.81,12.5 69.72,57.12 58.41,100.59 -11.31,43.47 -55.71,69.96 -100.11,59.73"
clip-path="url(#SVGID_00000071559021375305558940000017381780678920267449_)"
id="path10" />
</g>
<path
class="st1"
d="m 926.38,515.56 36.75,18.68 -17.87,17.96 z m 0,0"
id="path14" />
<g
id="g24">
<defs
id="defs17">
<rect
id="SVGID_00000085230230189371685700000006788812971434823571_"
x="802"
y="457"
width="315"
height="167" />
</defs>
<clipPath
id="SVGID_00000021827592807738578330000004588594336787880373_">
<use
xlink:href="#SVGID_00000085230230189371685700000006788812971434823571_"
style="overflow:visible"
id="use19" />
</clipPath>
<path
style="fill:none;stroke:#ffffff;stroke-width:1.0253"
d="m 926.2,515.39 7.25,-37.7 m 30.46,76.85 -18.65,-2.34 9.23,32.07 m -28.29,-68.88 -23.93,29.54 42.98,7.26 -61.47,21.56 70.69,10.51 -65.07,14.86 19.57,19.58 -45.52,2.62 m 62.75,-105.93 -44.59,-2 51.84,-35.71 -56.73,-19.94 5.25,55.1 20.3,32.08 -18.49,28.82 -29.36,-16.13 47.85,-12.69 m -12.86,54.21 -5.62,-25.38 m -20.32,47.58 25.94,-22.2 -39.52,-2.18 33.89,-23.2 m -29.35,-16.13 27.19,-44.23 -42.78,-12.87 37.88,-42.78 m -37.88,42.79 15.59,57.09 -4.53,39.33 m -11.06,-96.42 -22.66,-11.96 -7.25,39.15 z m 0,0 m 15.59,57.09 -23.74,6.34 1.45,-21.21 z m 0,0 m -22.3,-14.86 6.71,-42.23"
clip-path="url(#SVGID_00000021827592807738578330000004588594336787880373_)"
id="path22" />
</g>
<path
class="st3"
d="m 918.29,540.21 c 0,3.45 -0.55,6.62 -1.64,9.52 -1.09,2.89 -2.62,5.37 -4.61,7.44 -1.99,2.07 -4.39,3.69 -7.2,4.84 -2.81,1.16 -5.92,1.73 -9.34,1.73 h -17.11 v -46.98 h 17.11 c 3.43,0 6.54,0.58 9.34,1.73 2.81,1.16 5.21,2.78 7.2,4.86 1.99,2.08 3.52,4.55 4.61,7.42 1.09,2.88 1.64,6.03 1.64,9.44 z m -9.46,0 c 0,-2.5 -0.31,-4.74 -0.92,-6.72 -0.62,-1.98 -1.5,-3.66 -2.64,-5.05 -1.14,-1.39 -2.53,-2.46 -4.19,-3.2 -1.65,-0.75 -3.51,-1.12 -5.59,-1.12 h -7.78 v 32.23 h 7.78 c 2.08,0 3.95,-0.36 5.59,-1.09 1.66,-0.74 3.05,-1.8 4.19,-3.19 1.14,-1.39 2.02,-3.09 2.64,-5.08 0.61,-1.98 0.92,-4.24 0.92,-6.78 z m 0,0"
id="path26" />
<path
class="st3"
d="m 962.96,559.22 c -2.36,1.77 -4.87,3.05 -7.53,3.84 -2.67,0.79 -5.5,1.19 -8.48,1.19 -3.8,0 -7.25,-0.59 -10.33,-1.78 -3.07,-1.19 -5.71,-2.86 -7.91,-5 -2.19,-2.13 -3.88,-4.67 -5.08,-7.61 -1.19,-2.94 -1.78,-6.15 -1.78,-9.64 0,-3.51 0.57,-6.73 1.7,-9.67 1.13,-2.94 2.75,-5.46 4.86,-7.58 2.11,-2.12 4.66,-3.77 7.64,-4.95 2.99,-1.19 6.32,-1.78 10,-1.78 1.91,0 3.68,0.16 5.33,0.47 1.66,0.31 3.19,0.73 4.61,1.27 1.41,0.54 2.71,1.2 3.88,1.95 1.16,0.75 2.22,1.59 3.17,2.5 l -2.66,4.19 c -0.41,0.66 -0.95,1.06 -1.62,1.22 -0.67,0.15 -1.39,-0.02 -2.16,-0.48 -0.74,-0.45 -1.48,-0.86 -2.2,-1.25 -0.73,-0.39 -1.51,-0.74 -2.36,-1.03 -0.84,-0.29 -1.76,-0.52 -2.77,-0.69 -1.01,-0.16 -2.18,-0.25 -3.5,-0.25 -2.22,0 -4.21,0.39 -5.98,1.16 -1.77,0.76 -3.28,1.84 -4.53,3.23 -1.25,1.39 -2.22,3.08 -2.89,5.08 -0.67,1.99 -1,4.2 -1,6.62 0,2.65 0.36,5.01 1.09,7.08 0.74,2.07 1.77,3.82 3.11,5.25 1.33,1.43 2.94,2.52 4.83,3.27 1.88,0.74 3.99,1.11 6.3,1.11 1.55,0 2.95,-0.16 4.19,-0.47 1.24,-0.32 2.46,-0.76 3.66,-1.33 v -8.22 h -5.41 c -0.56,0 -1.02,-0.16 -1.36,-0.48 -0.34,-0.33 -0.51,-0.73 -0.51,-1.2 v -5.25 h 15.7 v 19.23 z m 0,0"
id="path28" />
<path
d="m 975.32,516.76 c 0.39,0 0.73,0.02 1.02,0.06 0.29,0.03 0.55,0.1 0.77,0.2 0.23,0.11 0.44,0.26 0.64,0.45 0.2,0.19 0.43,0.43 0.69,0.73 l 23.14,30.5 c -0.15,-1.56 -0.22,-3.04 -0.22,-4.42 v -27.53 h 8.17 v 46.98 h -4.78 c -0.73,0 -1.34,-0.12 -1.83,-0.38 -0.48,-0.25 -0.95,-0.66 -1.42,-1.22 l -23.06,-30.31 c 0.14,1.46 0.22,2.81 0.22,4.06 v 27.84 h -8.22 v -46.98 h 4.88 z m 0,0"
id="path30" />
<path
d="m 1037.09,558.65 c 1.85,0 3.52,-0.32 4.98,-0.97 1.48,-0.66 2.72,-1.57 3.73,-2.74 1.02,-1.16 1.8,-2.55 2.33,-4.16 0.53,-1.6 0.8,-3.37 0.8,-5.3 v -28.23 h 6.44 v 28.23 c 0,2.69 -0.43,5.18 -1.28,7.47 -0.84,2.28 -2.06,4.26 -3.62,5.94 -1.56,1.68 -3.48,3 -5.75,3.95 -2.26,0.95 -4.81,1.42 -7.62,1.42 -2.84,0 -5.38,-0.48 -7.64,-1.42 -2.25,-0.96 -4.17,-2.27 -5.75,-3.95 -1.57,-1.67 -2.79,-3.66 -3.64,-5.94 -0.84,-2.29 -1.27,-4.78 -1.27,-7.47 v -28.23 h 6.44 v 28.19 c 0,1.94 0.27,3.72 0.8,5.33 0.53,1.62 1.3,3.01 2.31,4.17 1.02,1.17 2.27,2.08 3.73,2.74 1.47,0.65 3.15,0.97 5.01,0.97 z m 0,0"
id="path32" />
<path
d="m 1089.88,546.79 c 0.3,0.55 0.58,1.11 0.83,1.67 0.25,0.56 0.49,1.14 0.72,1.73 0.24,-0.61 0.48,-1.2 0.72,-1.77 0.25,-0.57 0.52,-1.12 0.81,-1.64 l 16.41,-28.47 c 0.28,-0.5 0.59,-0.8 0.92,-0.91 0.33,-0.1 0.78,-0.16 1.34,-0.16 h 4.73 v 46.48 h -5.69 V 529.8 c 0,-0.48 0.02,-1 0.05,-1.58 0.04,-0.58 0.08,-1.16 0.13,-1.75 l -16.59,29.16 c -0.54,0.96 -1.32,1.44 -2.33,1.44 H 1091 c -1.01,0 -1.79,-0.48 -2.33,-1.44 l -16.98,-29.12 c 0.13,1.18 0.2,2.28 0.2,3.3 v 33.92 h -5.66 v -46.48 h 4.75 c 0.56,0 1,0.05 1.31,0.16 0.32,0.11 0.63,0.42 0.94,0.94 z m 0,0"
id="path34" />
<path
d="m 979.1,583.41 c 0,0.87 -0.12,1.65 -0.38,2.36 -0.25,0.7 -0.61,1.3 -1.06,1.81 -0.46,0.5 -1.01,0.89 -1.66,1.16 -0.64,0.27 -1.34,0.41 -2.12,0.41 h -3.95 V 577.7 h 3.95 c 0.78,0 1.49,0.14 2.12,0.42 0.64,0.27 1.2,0.66 1.66,1.16 0.46,0.5 0.81,1.11 1.06,1.81 0.25,0.7 0.38,1.47 0.38,2.32 z m -1.63,0 c 0,-0.7 -0.09,-1.32 -0.25,-1.86 -0.17,-0.55 -0.41,-1.02 -0.74,-1.41 -0.31,-0.38 -0.7,-0.67 -1.14,-0.88 -0.44,-0.2 -0.93,-0.3 -1.47,-0.3 h -2.36 v 8.89 h 2.36 c 0.54,0 1.03,-0.1 1.47,-0.3 0.44,-0.21 0.83,-0.5 1.14,-0.88 0.32,-0.38 0.57,-0.85 0.74,-1.41 0.17,-0.52 0.25,-1.15 0.25,-1.85 z m 0,0"
id="path36" />
<path
d="m 980.35,589.15 z m 4.02,-8.66 c 0.51,0 0.98,0.09 1.41,0.25 0.44,0.17 0.82,0.42 1.14,0.75 0.32,0.32 0.57,0.72 0.75,1.19 0.18,0.47 0.27,1.01 0.27,1.62 0,0.24 -0.03,0.4 -0.08,0.48 -0.05,0.07 -0.15,0.11 -0.28,0.11 h -5.7 c 0.01,0.53 0.08,1 0.22,1.39 0.13,0.4 0.32,0.73 0.55,1 0.24,0.26 0.52,0.46 0.84,0.59 0.32,0.12 0.69,0.19 1.09,0.19 0.38,0 0.7,-0.04 0.97,-0.12 0.27,-0.08 0.5,-0.17 0.7,-0.28 0.2,-0.1 0.36,-0.2 0.48,-0.28 0.13,-0.09 0.25,-0.14 0.36,-0.14 0.06,0 0.11,0.02 0.16,0.05 0.05,0.02 0.09,0.06 0.12,0.11 l 0.44,0.56 c -0.19,0.22 -0.41,0.41 -0.67,0.58 -0.26,0.17 -0.54,0.31 -0.84,0.42 -0.29,0.1 -0.6,0.18 -0.92,0.23 -0.31,0.05 -0.62,0.08 -0.92,0.08 -0.59,0 -1.14,-0.1 -1.64,-0.3 -0.5,-0.2 -0.93,-0.49 -1.3,-0.88 -0.37,-0.38 -0.65,-0.86 -0.86,-1.42 -0.2,-0.57 -0.3,-1.23 -0.3,-1.97 0,-0.59 0.09,-1.15 0.27,-1.66 0.19,-0.52 0.45,-0.97 0.8,-1.34 0.34,-0.38 0.77,-0.68 1.27,-0.89 0.48,-0.21 1.04,-0.32 1.67,-0.32 z m 0.01,1.11 c -0.71,0 -1.27,0.21 -1.69,0.64 -0.42,0.42 -0.68,0.98 -0.78,1.7 h 4.64 c 0,-0.34 -0.05,-0.66 -0.16,-0.94 -0.09,-0.29 -0.23,-0.53 -0.42,-0.73 -0.18,-0.21 -0.4,-0.37 -0.67,-0.48 -0.27,-0.13 -0.57,-0.19 -0.92,-0.19 z m 2.16,-4.65 -1.97,2.17 c -0.09,0.09 -0.17,0.16 -0.25,0.19 -0.07,0.03 -0.17,0.05 -0.28,0.05 h -0.92 l 1.25,-2.03 c 0.07,-0.12 0.16,-0.22 0.25,-0.28 0.09,-0.06 0.23,-0.09 0.42,-0.09 h 1.5 z m 0,0"
id="path38" />
<rect
x="989.87"
y="576.73999"
width="1.53"
height="12.41"
id="rect40" />
<path
d="m 993.34,589.15 z m 4.02,-8.66 c 0.51,0 0.98,0.09 1.41,0.25 0.44,0.17 0.82,0.42 1.14,0.75 0.32,0.32 0.57,0.72 0.75,1.19 0.18,0.47 0.27,1.01 0.27,1.62 0,0.24 -0.03,0.4 -0.08,0.48 -0.05,0.07 -0.15,0.11 -0.28,0.11 h -5.7 c 0.01,0.53 0.08,1 0.22,1.39 0.13,0.4 0.32,0.73 0.55,1 0.24,0.26 0.52,0.46 0.84,0.59 0.32,0.12 0.69,0.19 1.09,0.19 0.38,0 0.7,-0.04 0.97,-0.12 0.27,-0.08 0.5,-0.17 0.7,-0.28 0.2,-0.1 0.36,-0.2 0.48,-0.28 0.13,-0.09 0.25,-0.14 0.36,-0.14 0.06,0 0.11,0.02 0.16,0.05 0.05,0.02 0.09,0.06 0.12,0.11 l 0.44,0.56 c -0.19,0.22 -0.41,0.41 -0.67,0.58 -0.26,0.17 -0.54,0.31 -0.84,0.42 -0.29,0.1 -0.6,0.18 -0.92,0.23 -0.31,0.05 -0.62,0.08 -0.92,0.08 -0.59,0 -1.14,-0.1 -1.64,-0.3 -0.5,-0.2 -0.93,-0.49 -1.3,-0.88 -0.37,-0.38 -0.65,-0.86 -0.86,-1.42 -0.2,-0.57 -0.3,-1.23 -0.3,-1.97 0,-0.59 0.09,-1.15 0.27,-1.66 0.19,-0.52 0.45,-0.97 0.8,-1.34 0.34,-0.38 0.77,-0.68 1.27,-0.89 0.48,-0.21 1.04,-0.32 1.67,-0.32 z m 0.02,1.11 c -0.71,0 -1.27,0.21 -1.69,0.64 -0.42,0.42 -0.68,0.98 -0.78,1.7 h 4.64 c 0,-0.34 -0.05,-0.66 -0.16,-0.94 -0.09,-0.29 -0.23,-0.53 -0.42,-0.73 -0.18,-0.21 -0.4,-0.37 -0.67,-0.48 -0.28,-0.13 -0.58,-0.19 -0.92,-0.19 z m 2.15,-4.65 -1.97,2.17 c -0.09,0.09 -0.17,0.16 -0.25,0.19 -0.07,0.03 -0.17,0.05 -0.28,0.05 h -0.92 l 1.25,-2.03 c 0.07,-0.12 0.16,-0.22 0.25,-0.28 0.09,-0.06 0.23,-0.09 0.42,-0.09 h 1.5 z m 0,0"
id="path42" />
<path
d="m 1005.6,580.48 c 0.35,0 0.68,0.04 0.98,0.12 0.31,0.09 0.59,0.2 0.84,0.34 h 2.23 v 0.58 c 0,0.2 -0.12,0.32 -0.34,0.36 l -0.91,0.12 c 0.18,0.38 0.27,0.78 0.27,1.22 0,0.42 -0.08,0.8 -0.23,1.14 -0.16,0.34 -0.37,0.62 -0.64,0.86 -0.27,0.24 -0.59,0.43 -0.97,0.56 -0.38,0.12 -0.79,0.19 -1.23,0.19 -0.38,0 -0.72,-0.05 -1.03,-0.14 -0.17,0.12 -0.29,0.23 -0.38,0.36 -0.09,0.12 -0.12,0.25 -0.12,0.38 0,0.2 0.08,0.35 0.23,0.45 0.16,0.09 0.36,0.17 0.61,0.22 0.26,0.04 0.55,0.07 0.88,0.08 0.33,0.01 0.66,0.03 1,0.06 0.34,0.02 0.68,0.06 1,0.12 0.33,0.06 0.62,0.17 0.88,0.31 0.26,0.14 0.47,0.33 0.62,0.58 0.16,0.24 0.23,0.56 0.23,0.95 0,0.38 -0.09,0.73 -0.27,1.06 -0.17,0.34 -0.42,0.65 -0.75,0.92 -0.34,0.27 -0.74,0.48 -1.22,0.64 -0.47,0.16 -1,0.23 -1.59,0.23 -0.6,0 -1.13,-0.06 -1.58,-0.19 -0.44,-0.12 -0.81,-0.28 -1.11,-0.48 -0.29,-0.21 -0.51,-0.45 -0.66,-0.73 -0.15,-0.27 -0.22,-0.55 -0.22,-0.84 0,-0.42 0.12,-0.77 0.36,-1.06 0.25,-0.29 0.59,-0.52 1.03,-0.69 -0.24,-0.11 -0.43,-0.27 -0.58,-0.45 -0.14,-0.2 -0.2,-0.45 -0.2,-0.77 0,-0.25 0.09,-0.51 0.27,-0.78 0.18,-0.27 0.44,-0.5 0.78,-0.69 -0.4,-0.23 -0.71,-0.54 -0.94,-0.92 -0.23,-0.4 -0.34,-0.85 -0.34,-1.38 0,-0.41 0.07,-0.79 0.22,-1.12 0.16,-0.34 0.37,-0.63 0.64,-0.88 0.28,-0.24 0.61,-0.42 0.98,-0.55 0.39,-0.11 0.81,-0.18 1.26,-0.18 z m 2.52,9.14 c 0,-0.21 -0.06,-0.38 -0.17,-0.5 -0.1,-0.13 -0.25,-0.23 -0.44,-0.3 -0.19,-0.07 -0.41,-0.12 -0.66,-0.16 -0.24,-0.04 -0.5,-0.07 -0.77,-0.08 -0.27,-0.02 -0.55,-0.03 -0.83,-0.05 -0.28,-0.01 -0.55,-0.04 -0.81,-0.08 -0.29,0.15 -0.53,0.33 -0.7,0.55 -0.18,0.21 -0.27,0.46 -0.27,0.77 0,0.19 0.04,0.36 0.12,0.52 0.08,0.16 0.22,0.3 0.41,0.42 0.19,0.12 0.42,0.22 0.7,0.3 0.28,0.07 0.62,0.11 1.02,0.11 0.38,0 0.71,-0.04 1,-0.12 0.3,-0.07 0.55,-0.18 0.75,-0.31 0.21,-0.12 0.36,-0.28 0.47,-0.47 0.12,-0.19 0.18,-0.38 0.18,-0.6 z m -2.52,-4.66 c 0.56,0 0.98,-0.16 1.27,-0.47 0.29,-0.31 0.44,-0.72 0.44,-1.23 0,-0.51 -0.15,-0.91 -0.44,-1.22 -0.28,-0.31 -0.7,-0.47 -1.27,-0.47 -0.55,0 -0.98,0.16 -1.27,0.47 -0.28,0.3 -0.42,0.71 -0.42,1.22 0,0.25 0.04,0.48 0.11,0.69 0.07,0.21 0.18,0.39 0.31,0.55 0.14,0.15 0.32,0.26 0.53,0.34 0.23,0.08 0.47,0.12 0.74,0.12 z m 0,0"
id="path44" />
<path
d="m 1016.43,589.15 c -0.16,0 -0.28,-0.02 -0.36,-0.06 -0.07,-0.05 -0.12,-0.15 -0.16,-0.3 l -0.2,-0.8 c -0.22,0.21 -0.44,0.4 -0.66,0.56 -0.21,0.16 -0.43,0.29 -0.66,0.41 -0.23,0.1 -0.48,0.18 -0.75,0.23 -0.27,0.05 -0.56,0.08 -0.88,0.08 -0.34,0 -0.65,-0.04 -0.94,-0.12 -0.28,-0.09 -0.53,-0.23 -0.75,-0.42 -0.22,-0.19 -0.39,-0.42 -0.52,-0.7 -0.12,-0.28 -0.19,-0.61 -0.19,-1 0,-0.34 0.09,-0.66 0.27,-0.97 0.19,-0.31 0.48,-0.59 0.89,-0.83 0.41,-0.25 0.96,-0.45 1.62,-0.61 0.66,-0.16 1.48,-0.24 2.44,-0.27 v -0.66 c 0,-0.66 -0.14,-1.15 -0.42,-1.48 -0.28,-0.34 -0.7,-0.52 -1.23,-0.52 -0.35,0 -0.66,0.05 -0.91,0.14 -0.25,0.09 -0.46,0.2 -0.64,0.31 -0.18,0.11 -0.34,0.2 -0.47,0.3 -0.14,0.09 -0.27,0.14 -0.39,0.14 -0.1,0 -0.2,-0.02 -0.28,-0.08 -0.07,-0.05 -0.13,-0.12 -0.17,-0.2 l -0.28,-0.48 c 0.47,-0.45 0.97,-0.78 1.52,-1 0.54,-0.23 1.15,-0.34 1.81,-0.34 0.48,0 0.9,0.08 1.27,0.23 0.38,0.15 0.69,0.37 0.94,0.66 0.25,0.28 0.44,0.62 0.56,1.02 0.13,0.4 0.2,0.84 0.2,1.31 v 5.45 z m -3.2,-0.94 c 0.26,0 0.49,-0.02 0.7,-0.08 0.22,-0.05 0.42,-0.12 0.61,-0.22 0.2,-0.1 0.38,-0.22 0.55,-0.36 0.18,-0.14 0.35,-0.3 0.52,-0.48 v -1.77 c -0.68,0.03 -1.26,0.09 -1.73,0.17 -0.48,0.09 -0.87,0.2 -1.17,0.34 -0.29,0.14 -0.51,0.3 -0.64,0.48 -0.14,0.19 -0.2,0.4 -0.2,0.64 0,0.22 0.04,0.41 0.11,0.58 0.07,0.16 0.17,0.29 0.3,0.39 0.12,0.09 0.27,0.17 0.44,0.22 0.14,0.07 0.32,0.09 0.51,0.09 z m 0,0"
id="path46" />
<path
d="m 1018.32,589.15 z m 8.39,-8.38 v 8.38 h -1.53 v -7.25 h -4.06 v 5.09 c 0,0.34 0.08,0.61 0.23,0.78 0.16,0.18 0.36,0.27 0.61,0.27 0.14,0 0.27,-0.02 0.36,-0.06 0.1,-0.04 0.19,-0.09 0.27,-0.14 0.07,-0.05 0.13,-0.1 0.19,-0.14 0.05,-0.04 0.1,-0.06 0.16,-0.06 0.05,0 0.09,0.01 0.12,0.03 0.03,0.02 0.05,0.06 0.08,0.11 l 0.47,0.73 c -0.26,0.25 -0.57,0.45 -0.92,0.58 -0.34,0.12 -0.7,0.19 -1.08,0.19 -0.65,0 -1.15,-0.19 -1.5,-0.56 -0.34,-0.38 -0.52,-0.91 -0.52,-1.62 v -5.19 h -0.94 c -0.09,0 -0.17,-0.03 -0.23,-0.09 -0.06,-0.06 -0.09,-0.14 -0.09,-0.25 v -0.61 l 1.31,-0.17 0.34,-2.62 c 0.02,-0.09 0.05,-0.16 0.11,-0.22 0.06,-0.05 0.14,-0.08 0.25,-0.08 h 0.78 v 2.92 h 5.59 z m 0.33,-2.89 c 0,0.15 -0.03,0.29 -0.09,0.42 -0.05,0.14 -0.13,0.25 -0.23,0.34 -0.11,0.09 -0.23,0.17 -0.36,0.23 -0.12,0.05 -0.26,0.08 -0.41,0.08 -0.15,0 -0.28,-0.02 -0.41,-0.08 -0.12,-0.06 -0.24,-0.14 -0.34,-0.23 -0.09,-0.09 -0.17,-0.21 -0.23,-0.34 -0.05,-0.13 -0.08,-0.27 -0.08,-0.42 0,-0.15 0.02,-0.28 0.08,-0.41 0.06,-0.13 0.14,-0.25 0.23,-0.34 0.1,-0.1 0.22,-0.18 0.34,-0.23 0.12,-0.06 0.26,-0.09 0.41,-0.09 0.15,0 0.28,0.03 0.41,0.09 0.13,0.05 0.25,0.13 0.36,0.23 0.1,0.09 0.18,0.21 0.23,0.34 0.06,0.13 0.09,0.27 0.09,0.41 z m 0,0"
id="path48" />
<path
d="m 1032.71,580.49 c 0.62,0 1.19,0.11 1.69,0.31 0.5,0.2 0.92,0.49 1.27,0.88 0.35,0.39 0.62,0.85 0.81,1.39 0.19,0.53 0.28,1.14 0.28,1.81 0,0.67 -0.09,1.27 -0.28,1.81 -0.19,0.54 -0.46,1.01 -0.81,1.39 -0.34,0.38 -0.77,0.67 -1.27,0.88 -0.5,0.21 -1.06,0.31 -1.69,0.31 -0.63,0 -1.19,-0.1 -1.69,-0.31 -0.5,-0.21 -0.93,-0.5 -1.28,-0.88 -0.35,-0.38 -0.62,-0.85 -0.81,-1.39 -0.19,-0.54 -0.28,-1.14 -0.28,-1.81 0,-0.68 0.09,-1.28 0.28,-1.81 0.19,-0.54 0.46,-1 0.81,-1.39 0.35,-0.38 0.78,-0.68 1.28,-0.88 0.51,-0.2 1.07,-0.31 1.69,-0.31 z m 0,7.58 c 0.41,0 0.77,-0.07 1.08,-0.2 0.31,-0.14 0.57,-0.35 0.77,-0.62 0.21,-0.27 0.36,-0.6 0.47,-1 0.1,-0.39 0.16,-0.85 0.16,-1.36 0,-0.5 -0.05,-0.95 -0.16,-1.34 -0.1,-0.39 -0.26,-0.73 -0.47,-1 -0.2,-0.28 -0.45,-0.49 -0.77,-0.64 -0.3,-0.14 -0.66,-0.22 -1.08,-0.22 -0.42,0 -0.78,0.07 -1.09,0.22 -0.31,0.15 -0.57,0.36 -0.78,0.64 -0.21,0.27 -0.37,0.61 -0.47,1 -0.09,0.4 -0.14,0.84 -0.14,1.34 0,0.51 0.05,0.97 0.14,1.36 0.1,0.4 0.26,0.73 0.47,1 0.21,0.27 0.47,0.48 0.78,0.62 0.31,0.13 0.68,0.2 1.09,0.2 z m 0,0"
id="path50" />
<path
d="m 1038.64,589.15 v -8.53 h 0.92 c 0.1,0 0.19,0.03 0.27,0.08 0.07,0.05 0.11,0.13 0.12,0.23 l 0.12,0.91 c 0.36,-0.41 0.77,-0.73 1.22,-0.97 0.46,-0.25 0.98,-0.38 1.58,-0.38 0.47,0 0.88,0.08 1.23,0.23 0.35,0.15 0.65,0.37 0.88,0.66 0.24,0.28 0.42,0.62 0.55,1.02 0.12,0.4 0.19,0.84 0.19,1.31 v 5.44 h -1.53 v -5.44 c 0,-0.63 -0.15,-1.13 -0.44,-1.48 -0.29,-0.35 -0.73,-0.53 -1.31,-0.53 -0.44,0 -0.85,0.11 -1.23,0.31 -0.38,0.21 -0.72,0.5 -1.03,0.86 v 6.28 z m 0,0"
id="path52" />
<path
d="m 1061.17,588.04 c -0.55,0.42 -1.15,0.73 -1.78,0.94 -0.62,0.2 -1.31,0.3 -2.05,0.3 -0.9,0 -1.7,-0.14 -2.42,-0.42 -0.71,-0.29 -1.32,-0.69 -1.83,-1.2 -0.51,-0.52 -0.9,-1.14 -1.17,-1.86 -0.27,-0.72 -0.41,-1.51 -0.41,-2.38 0,-0.86 0.13,-1.66 0.39,-2.38 0.27,-0.72 0.65,-1.33 1.14,-1.84 0.49,-0.52 1.08,-0.92 1.78,-1.2 0.7,-0.29 1.48,-0.44 2.34,-0.44 0.45,0 0.86,0.04 1.23,0.11 0.38,0.06 0.72,0.16 1.03,0.28 0.32,0.12 0.62,0.28 0.89,0.47 0.27,0.18 0.52,0.38 0.75,0.59 l -0.44,0.72 c -0.07,0.12 -0.17,0.19 -0.28,0.22 -0.12,0.02 -0.24,0 -0.38,-0.08 -0.14,-0.08 -0.29,-0.18 -0.45,-0.28 -0.16,-0.1 -0.34,-0.2 -0.56,-0.3 -0.22,-0.1 -0.48,-0.19 -0.78,-0.25 -0.3,-0.07 -0.66,-0.11 -1.08,-0.11 -0.6,0 -1.15,0.11 -1.64,0.31 -0.49,0.21 -0.91,0.51 -1.25,0.91 -0.34,0.39 -0.61,0.86 -0.8,1.41 -0.19,0.55 -0.28,1.17 -0.28,1.86 0,0.72 0.09,1.37 0.28,1.94 0.2,0.56 0.48,1.04 0.84,1.44 0.36,0.39 0.8,0.68 1.31,0.89 0.51,0.21 1.08,0.31 1.72,0.31 0.49,0 0.93,-0.05 1.31,-0.17 0.38,-0.11 0.76,-0.27 1.12,-0.48 v -2.5 h -1.64 c -0.11,0 -0.19,-0.02 -0.27,-0.08 -0.06,-0.06 -0.09,-0.14 -0.09,-0.23 v -0.89 h 3.44 v 4.39 z m 0,0"
id="path54" />
<path
d="m 1062.77,589.15 z m 4.01,-8.66 c 0.51,0 0.98,0.09 1.41,0.25 0.44,0.17 0.82,0.42 1.14,0.75 0.32,0.32 0.57,0.72 0.75,1.19 0.18,0.47 0.27,1.01 0.27,1.62 0,0.24 -0.03,0.4 -0.08,0.48 -0.06,0.07 -0.15,0.11 -0.28,0.11 h -5.7 c 0.01,0.53 0.08,1 0.22,1.39 0.13,0.4 0.32,0.73 0.55,1 0.24,0.26 0.52,0.46 0.84,0.59 0.32,0.12 0.69,0.19 1.09,0.19 0.38,0 0.7,-0.04 0.97,-0.12 0.27,-0.08 0.5,-0.17 0.7,-0.28 0.2,-0.1 0.36,-0.2 0.49,-0.28 0.13,-0.09 0.25,-0.14 0.36,-0.14 0.06,0 0.11,0.02 0.16,0.05 0.05,0.02 0.09,0.06 0.12,0.11 l 0.44,0.56 c -0.19,0.22 -0.41,0.41 -0.67,0.58 -0.26,0.17 -0.54,0.31 -0.84,0.42 -0.29,0.1 -0.6,0.18 -0.92,0.23 -0.31,0.05 -0.62,0.08 -0.92,0.08 -0.59,0 -1.14,-0.1 -1.64,-0.3 -0.5,-0.2 -0.93,-0.49 -1.3,-0.88 -0.37,-0.38 -0.65,-0.86 -0.86,-1.42 -0.2,-0.57 -0.3,-1.23 -0.3,-1.97 0,-0.59 0.08,-1.15 0.26,-1.66 0.19,-0.52 0.45,-0.97 0.8,-1.34 0.34,-0.38 0.77,-0.68 1.27,-0.89 0.49,-0.21 1.05,-0.32 1.67,-0.32 z m 0.02,1.11 c -0.71,0 -1.27,0.21 -1.69,0.64 -0.42,0.42 -0.68,0.98 -0.78,1.7 h 4.64 c 0,-0.34 -0.06,-0.66 -0.16,-0.94 -0.09,-0.29 -0.23,-0.53 -0.42,-0.73 -0.18,-0.21 -0.4,-0.37 -0.67,-0.48 -0.27,-0.13 -0.57,-0.19 -0.92,-0.19 z m 2.16,-4.65 -1.97,2.17 c -0.09,0.09 -0.17,0.16 -0.25,0.19 -0.07,0.03 -0.17,0.05 -0.28,0.05 h -0.92 l 1.25,-2.03 c 0.07,-0.12 0.16,-0.22 0.25,-0.28 0.09,-0.06 0.23,-0.09 0.42,-0.09 h 1.5 z m 0,0"
id="path56" />
<path
d="m 1072.22,589.15 v -8.53 h 0.92 c 0.1,0 0.19,0.03 0.27,0.08 0.07,0.05 0.11,0.13 0.12,0.23 l 0.12,0.91 c 0.36,-0.41 0.77,-0.73 1.22,-0.97 0.46,-0.25 0.98,-0.38 1.58,-0.38 0.47,0 0.88,0.08 1.23,0.23 0.35,0.15 0.64,0.37 0.87,0.66 0.24,0.28 0.42,0.62 0.55,1.02 0.12,0.4 0.19,0.84 0.19,1.31 v 5.44 h -1.53 v -5.44 c 0,-0.63 -0.15,-1.13 -0.44,-1.48 -0.29,-0.35 -0.73,-0.53 -1.31,-0.53 -0.44,0 -0.85,0.11 -1.23,0.31 -0.38,0.21 -0.72,0.5 -1.03,0.86 v 6.28 z m 0,0"
id="path58" />
<path
d="m 1081.04,589.15 z m 4.02,-8.66 c 0.51,0 0.98,0.09 1.41,0.25 0.44,0.17 0.82,0.42 1.14,0.75 0.32,0.32 0.57,0.72 0.75,1.19 0.18,0.47 0.27,1.01 0.27,1.62 0,0.24 -0.03,0.4 -0.08,0.48 -0.05,0.07 -0.15,0.11 -0.28,0.11 h -5.7 c 0.01,0.53 0.08,1 0.22,1.39 0.13,0.4 0.32,0.73 0.55,1 0.24,0.26 0.52,0.46 0.84,0.59 0.32,0.12 0.69,0.19 1.09,0.19 0.38,0 0.7,-0.04 0.97,-0.12 0.27,-0.08 0.5,-0.17 0.7,-0.28 0.2,-0.1 0.36,-0.2 0.48,-0.28 0.13,-0.09 0.25,-0.14 0.36,-0.14 0.06,0 0.11,0.02 0.16,0.05 0.05,0.02 0.09,0.06 0.12,0.11 l 0.44,0.56 c -0.19,0.22 -0.41,0.41 -0.67,0.58 -0.26,0.17 -0.54,0.31 -0.84,0.42 -0.29,0.1 -0.6,0.18 -0.92,0.23 -0.31,0.05 -0.62,0.08 -0.92,0.08 -0.59,0 -1.14,-0.1 -1.64,-0.3 -0.5,-0.2 -0.93,-0.49 -1.3,-0.88 -0.37,-0.38 -0.65,-0.86 -0.86,-1.42 -0.2,-0.57 -0.3,-1.23 -0.3,-1.97 0,-0.59 0.09,-1.15 0.27,-1.66 0.19,-0.52 0.45,-0.97 0.8,-1.34 0.34,-0.38 0.77,-0.68 1.27,-0.89 0.48,-0.21 1.04,-0.32 1.67,-0.32 z m 0.01,1.11 c -0.71,0 -1.27,0.21 -1.69,0.64 -0.42,0.42 -0.68,0.98 -0.78,1.7 h 4.64 c 0,-0.34 -0.06,-0.66 -0.16,-0.94 -0.09,-0.29 -0.23,-0.53 -0.42,-0.73 -0.18,-0.21 -0.4,-0.37 -0.67,-0.48 -0.27,-0.13 -0.57,-0.19 -0.92,-0.19 z m 2.16,-4.65 -1.97,2.17 c -0.09,0.09 -0.17,0.16 -0.25,0.19 -0.07,0.03 -0.17,0.05 -0.28,0.05 h -0.92 l 1.25,-2.03 c 0.07,-0.12 0.16,-0.22 0.25,-0.28 0.09,-0.06 0.23,-0.09 0.42,-0.09 h 1.5 z m 0,0"
id="path60" />
<path
d="m 1090.41,589.15 v -8.53 h 0.88 c 0.16,0 0.28,0.03 0.34,0.09 0.07,0.06 0.11,0.17 0.13,0.33 l 0.11,1.25 c 0.26,-0.56 0.58,-1 0.97,-1.33 0.38,-0.32 0.84,-0.48 1.38,-0.48 0.19,0 0.36,0.02 0.52,0.06 0.16,0.03 0.3,0.09 0.42,0.17 l -0.12,1.14 c -0.01,0.15 -0.09,0.22 -0.23,0.22 -0.09,0 -0.2,-0.02 -0.36,-0.05 -0.15,-0.03 -0.31,-0.05 -0.48,-0.05 -0.26,0 -0.49,0.04 -0.69,0.12 -0.2,0.07 -0.38,0.19 -0.55,0.34 -0.16,0.15 -0.3,0.34 -0.42,0.56 -0.13,0.22 -0.24,0.47 -0.34,0.75 v 5.39 h -1.56 z m 0,0"
id="path62" />
<path
d="m 1101.92,589.15 c -0.16,0 -0.28,-0.02 -0.36,-0.06 -0.07,-0.05 -0.12,-0.15 -0.16,-0.3 l -0.2,-0.8 c -0.22,0.21 -0.44,0.4 -0.66,0.56 -0.21,0.16 -0.43,0.29 -0.66,0.41 -0.23,0.1 -0.48,0.18 -0.75,0.23 -0.27,0.05 -0.56,0.08 -0.88,0.08 -0.34,0 -0.65,-0.04 -0.94,-0.12 -0.28,-0.09 -0.53,-0.23 -0.75,-0.42 -0.22,-0.19 -0.39,-0.42 -0.52,-0.7 -0.12,-0.28 -0.19,-0.61 -0.19,-1 0,-0.34 0.09,-0.66 0.27,-0.97 0.19,-0.31 0.48,-0.59 0.89,-0.83 0.41,-0.25 0.96,-0.45 1.62,-0.61 0.66,-0.16 1.48,-0.24 2.44,-0.27 v -0.66 c 0,-0.66 -0.14,-1.15 -0.42,-1.48 -0.28,-0.34 -0.69,-0.52 -1.23,-0.52 -0.36,0 -0.66,0.05 -0.91,0.14 -0.25,0.09 -0.46,0.2 -0.64,0.31 -0.18,0.11 -0.34,0.2 -0.47,0.3 -0.14,0.09 -0.27,0.14 -0.39,0.14 -0.1,0 -0.2,-0.02 -0.28,-0.08 -0.07,-0.05 -0.13,-0.12 -0.17,-0.2 l -0.28,-0.48 c 0.47,-0.45 0.97,-0.78 1.52,-1 0.54,-0.23 1.14,-0.34 1.81,-0.34 0.48,0 0.9,0.08 1.27,0.23 0.38,0.15 0.69,0.37 0.94,0.66 0.25,0.28 0.44,0.62 0.56,1.02 0.13,0.4 0.2,0.84 0.2,1.31 v 5.45 z m -3.21,-0.94 c 0.26,0 0.49,-0.02 0.7,-0.08 0.22,-0.05 0.42,-0.12 0.61,-0.22 0.2,-0.1 0.38,-0.22 0.55,-0.36 0.18,-0.14 0.35,-0.3 0.52,-0.48 v -1.77 c -0.68,0.03 -1.26,0.09 -1.73,0.17 -0.48,0.09 -0.87,0.2 -1.17,0.34 -0.29,0.14 -0.51,0.3 -0.64,0.48 -0.14,0.19 -0.2,0.4 -0.2,0.64 0,0.22 0.04,0.41 0.11,0.58 0.07,0.16 0.17,0.29 0.3,0.39 0.12,0.09 0.27,0.17 0.44,0.22 0.15,0.07 0.33,0.09 0.51,0.09 z m 0,0"
id="path64" />
<rect
x="1104.98"
y="576.73999"
width="1.53"
height="12.41"
id="rect66" />
<path
d="m 1112.46,580.49 c 0.51,0 0.98,0.09 1.41,0.25 0.44,0.17 0.82,0.42 1.14,0.75 0.32,0.32 0.57,0.72 0.75,1.19 0.18,0.47 0.27,1.01 0.27,1.62 0,0.24 -0.03,0.4 -0.08,0.48 -0.05,0.07 -0.15,0.11 -0.28,0.11 h -5.7 c 0.01,0.53 0.08,1 0.22,1.39 0.13,0.4 0.32,0.73 0.55,1 0.24,0.26 0.52,0.46 0.84,0.59 0.32,0.12 0.69,0.19 1.09,0.19 0.38,0 0.7,-0.04 0.97,-0.12 0.27,-0.08 0.5,-0.17 0.7,-0.28 0.2,-0.1 0.36,-0.2 0.48,-0.28 0.13,-0.09 0.25,-0.14 0.36,-0.14 0.06,0 0.11,0.02 0.16,0.05 0.05,0.02 0.09,0.06 0.12,0.11 l 0.44,0.56 c -0.19,0.22 -0.41,0.41 -0.67,0.58 -0.26,0.17 -0.54,0.31 -0.84,0.42 -0.29,0.1 -0.6,0.18 -0.92,0.23 -0.31,0.05 -0.62,0.08 -0.92,0.08 -0.59,0 -1.14,-0.1 -1.64,-0.3 -0.5,-0.2 -0.93,-0.49 -1.3,-0.88 -0.37,-0.38 -0.65,-0.86 -0.86,-1.42 -0.2,-0.57 -0.3,-1.23 -0.3,-1.97 0,-0.59 0.09,-1.15 0.27,-1.66 0.19,-0.52 0.45,-0.97 0.8,-1.34 0.34,-0.38 0.77,-0.68 1.27,-0.89 0.49,-0.21 1.05,-0.32 1.67,-0.32 z m 0.02,1.11 c -0.71,0 -1.27,0.21 -1.69,0.64 -0.42,0.42 -0.68,0.98 -0.78,1.7 h 4.64 c 0,-0.34 -0.05,-0.66 -0.16,-0.94 -0.09,-0.29 -0.23,-0.53 -0.42,-0.73 -0.18,-0.21 -0.4,-0.37 -0.67,-0.48 -0.27,-0.13 -0.58,-0.19 -0.92,-0.19 z m 0,0"
id="path68" />
<path
d="m 970.83,600.2 c 0.12,0 0.22,0.02 0.3,0.05 0.07,0.03 0.15,0.1 0.23,0.22 l 6.24,8.58 c -0.01,-0.15 -0.02,-0.29 -0.03,-0.42 -0.01,-0.13 -0.02,-0.26 -0.02,-0.38 v -8.05 h 1.39 v 11.45 h -0.8 c -0.12,0 -0.23,-0.02 -0.31,-0.06 -0.09,-0.04 -0.17,-0.11 -0.25,-0.22 l -6.22,-8.55 c 0.01,0.14 0.02,0.27 0.02,0.39 0.01,0.12 0.02,0.23 0.02,0.34 v 8.09 H 970 V 600.2 Z m 0,0"
id="path70" />
<path
d="m 982.86,603.12 v 5.44 c 0,0.64 0.14,1.13 0.42,1.48 0.29,0.35 0.74,0.53 1.33,0.53 0.43,0 0.83,-0.1 1.2,-0.31 0.38,-0.21 0.72,-0.49 1.05,-0.84 v -6.3 h 1.53 v 8.53 h -0.92 c -0.11,0 -0.2,-0.02 -0.27,-0.06 -0.06,-0.05 -0.1,-0.13 -0.11,-0.25 l -0.14,-0.91 c -0.37,0.41 -0.78,0.73 -1.23,0.98 -0.45,0.24 -0.97,0.36 -1.56,0.36 -0.47,0 -0.88,-0.07 -1.23,-0.22 -0.34,-0.16 -0.64,-0.37 -0.87,-0.66 -0.24,-0.28 -0.42,-0.62 -0.55,-1.02 -0.12,-0.41 -0.17,-0.85 -0.17,-1.33 v -5.44 h 1.52 z m 0,0"
id="path72" />
<path
d="m 990.91,611.66 v -8.53 h 0.91 c 0.11,0 0.2,0.03 0.27,0.08 0.07,0.05 0.11,0.13 0.12,0.23 l 0.14,0.87 c 0.16,-0.19 0.32,-0.36 0.5,-0.52 0.18,-0.16 0.36,-0.3 0.56,-0.42 0.21,-0.12 0.43,-0.22 0.66,-0.28 0.24,-0.06 0.49,-0.09 0.75,-0.09 0.58,0 1.05,0.16 1.42,0.48 0.38,0.31 0.64,0.74 0.8,1.28 0.12,-0.31 0.28,-0.58 0.48,-0.8 0.21,-0.22 0.43,-0.4 0.67,-0.55 0.25,-0.15 0.51,-0.25 0.78,-0.31 0.28,-0.07 0.57,-0.11 0.86,-0.11 0.93,0 1.65,0.28 2.16,0.84 0.51,0.55 0.77,1.34 0.77,2.38 v 5.44 h -1.53 v -5.44 c 0,-0.66 -0.15,-1.16 -0.45,-1.5 -0.3,-0.34 -0.73,-0.52 -1.3,-0.52 -0.26,0 -0.51,0.05 -0.73,0.14 -0.23,0.09 -0.43,0.21 -0.59,0.38 -0.17,0.17 -0.3,0.38 -0.41,0.62 -0.11,0.25 -0.16,0.54 -0.16,0.88 v 5.44 h -1.53 v -5.44 c 0,-0.68 -0.14,-1.18 -0.42,-1.52 -0.28,-0.33 -0.7,-0.5 -1.25,-0.5 -0.38,0 -0.73,0.1 -1.05,0.3 -0.32,0.2 -0.62,0.47 -0.89,0.81 v 6.34 h -1.54 z m 0,0"
id="path74" />
<path
d="m 1004.55,611.66 z m 4.02,-8.66 c 0.51,0 0.98,0.09 1.41,0.25 0.44,0.17 0.82,0.42 1.14,0.75 0.32,0.32 0.57,0.72 0.75,1.19 0.18,0.47 0.27,1.01 0.27,1.62 0,0.24 -0.03,0.4 -0.08,0.48 -0.06,0.07 -0.15,0.11 -0.28,0.11 h -5.7 c 0.01,0.53 0.08,1 0.22,1.39 0.13,0.4 0.32,0.73 0.55,1 0.24,0.26 0.52,0.46 0.84,0.59 0.32,0.12 0.69,0.19 1.09,0.19 0.38,0 0.69,-0.04 0.97,-0.12 0.27,-0.08 0.5,-0.18 0.7,-0.28 0.2,-0.1 0.36,-0.2 0.49,-0.28 0.13,-0.09 0.25,-0.14 0.36,-0.14 0.06,0 0.11,0.02 0.16,0.05 0.05,0.02 0.09,0.06 0.12,0.11 l 0.44,0.56 c -0.19,0.22 -0.41,0.41 -0.67,0.58 -0.26,0.17 -0.54,0.31 -0.84,0.42 -0.29,0.11 -0.6,0.18 -0.92,0.23 -0.31,0.05 -0.62,0.08 -0.92,0.08 -0.59,0 -1.14,-0.1 -1.64,-0.3 -0.5,-0.2 -0.93,-0.49 -1.3,-0.88 -0.37,-0.38 -0.65,-0.86 -0.86,-1.42 -0.2,-0.57 -0.3,-1.23 -0.3,-1.97 0,-0.59 0.09,-1.15 0.26,-1.66 0.19,-0.52 0.45,-0.97 0.8,-1.34 0.34,-0.38 0.77,-0.68 1.27,-0.89 0.48,-0.21 1.04,-0.32 1.67,-0.32 z m 0.01,1.11 c -0.71,0 -1.27,0.21 -1.69,0.64 -0.42,0.42 -0.68,0.98 -0.78,1.7 h 4.64 c 0,-0.34 -0.05,-0.66 -0.16,-0.94 -0.09,-0.29 -0.24,-0.54 -0.42,-0.73 -0.18,-0.21 -0.4,-0.37 -0.67,-0.48 -0.27,-0.13 -0.57,-0.19 -0.92,-0.19 z m 2.16,-4.66 -1.97,2.17 c -0.09,0.09 -0.17,0.16 -0.25,0.19 -0.08,0.03 -0.17,0.05 -0.28,0.05 h -0.92 l 1.25,-2.03 c 0.07,-0.12 0.16,-0.22 0.25,-0.28 0.09,-0.06 0.24,-0.09 0.42,-0.09 h 1.5 z m 0,0"
id="path76" />
<path
d="m 1013.93,611.66 v -8.53 h 0.87 c 0.16,0 0.28,0.03 0.34,0.09 0.07,0.06 0.11,0.17 0.12,0.33 l 0.11,1.25 c 0.26,-0.56 0.58,-1 0.97,-1.33 0.38,-0.32 0.84,-0.48 1.38,-0.48 0.19,0 0.36,0.02 0.51,0.06 0.16,0.03 0.3,0.09 0.42,0.17 l -0.13,1.14 c -0.01,0.15 -0.09,0.22 -0.23,0.22 -0.09,0 -0.2,-0.02 -0.36,-0.05 -0.15,-0.03 -0.31,-0.05 -0.48,-0.05 -0.26,0 -0.49,0.04 -0.69,0.12 -0.2,0.07 -0.38,0.19 -0.55,0.34 -0.16,0.15 -0.3,0.34 -0.42,0.56 -0.13,0.22 -0.24,0.47 -0.34,0.75 v 5.39 h -1.52 z m 0,0"
id="path78" />
<path
d="m 1019.96,611.66 z m 1.86,-8.54 v 8.53 h -1.53 v -8.53 z m 0.3,-2.67 c 0,0.15 -0.03,0.29 -0.09,0.42 -0.05,0.14 -0.13,0.25 -0.23,0.34 -0.1,0.09 -0.23,0.17 -0.36,0.23 -0.12,0.05 -0.26,0.08 -0.41,0.08 -0.15,0 -0.28,-0.02 -0.41,-0.08 -0.12,-0.06 -0.24,-0.14 -0.34,-0.23 -0.09,-0.09 -0.17,-0.21 -0.23,-0.34 -0.05,-0.13 -0.08,-0.27 -0.08,-0.42 0,-0.14 0.02,-0.28 0.08,-0.41 0.06,-0.13 0.14,-0.25 0.23,-0.34 0.1,-0.1 0.22,-0.18 0.34,-0.23 0.12,-0.06 0.26,-0.09 0.41,-0.09 0.15,0 0.28,0.03 0.41,0.09 0.13,0.05 0.25,0.13 0.36,0.23 0.1,0.09 0.18,0.21 0.23,0.34 0.06,0.13 0.09,0.27 0.09,0.41 z m 0,0"
id="path80" />
<path
d="m 1031.27,603.12 v 11.41 h -1.53 v -4.12 c -0.35,0.42 -0.76,0.75 -1.22,1 -0.46,0.25 -0.98,0.38 -1.55,0.38 -0.49,0 -0.93,-0.09 -1.33,-0.28 -0.4,-0.19 -0.73,-0.46 -1.02,-0.83 -0.28,-0.38 -0.5,-0.83 -0.66,-1.38 -0.15,-0.54 -0.22,-1.16 -0.22,-1.88 0,-0.63 0.08,-1.22 0.25,-1.77 0.18,-0.54 0.42,-1.01 0.73,-1.41 0.31,-0.4 0.69,-0.7 1.14,-0.92 0.46,-0.23 0.97,-0.34 1.55,-0.34 0.55,0 1.02,0.1 1.39,0.3 0.38,0.19 0.72,0.46 1.02,0.81 l 0.12,-0.66 c 0.03,-0.21 0.16,-0.31 0.39,-0.31 z m -3.82,7.43 c 0.49,0 0.91,-0.11 1.27,-0.33 0.36,-0.23 0.7,-0.54 1.02,-0.94 v -4.12 c -0.27,-0.35 -0.57,-0.61 -0.91,-0.77 -0.32,-0.16 -0.68,-0.23 -1.06,-0.23 -0.78,0 -1.39,0.28 -1.81,0.84 -0.42,0.56 -0.62,1.37 -0.62,2.42 0,0.55 0.05,1.03 0.14,1.42 0.1,0.4 0.24,0.72 0.42,0.97 0.19,0.25 0.41,0.44 0.67,0.56 0.26,0.12 0.56,0.18 0.88,0.18 z m 0,0"
id="path82" />
<path
d="m 1035.12,603.12 v 5.44 c 0,0.64 0.14,1.13 0.42,1.48 0.29,0.35 0.73,0.53 1.33,0.53 0.43,0 0.83,-0.1 1.2,-0.31 0.38,-0.21 0.72,-0.49 1.05,-0.84 v -6.3 h 1.53 v 8.53 h -0.92 c -0.1,0 -0.19,-0.02 -0.27,-0.06 -0.06,-0.05 -0.1,-0.13 -0.11,-0.25 l -0.14,-0.91 c -0.37,0.41 -0.78,0.73 -1.23,0.98 -0.45,0.24 -0.97,0.36 -1.56,0.36 -0.47,0 -0.88,-0.07 -1.23,-0.22 -0.34,-0.16 -0.64,-0.37 -0.88,-0.66 -0.24,-0.28 -0.42,-0.62 -0.55,-1.02 -0.12,-0.41 -0.17,-0.85 -0.17,-1.33 v -5.44 h 1.53 z m 0,0"
id="path84" />
<path
d="m 1046.55,603 c 0.51,0 0.98,0.09 1.41,0.25 0.44,0.17 0.82,0.42 1.14,0.75 0.32,0.32 0.57,0.72 0.75,1.19 0.17,0.47 0.26,1.01 0.26,1.62 0,0.24 -0.03,0.4 -0.08,0.48 -0.06,0.07 -0.15,0.11 -0.28,0.11 h -5.7 c 0.01,0.53 0.08,1 0.22,1.39 0.13,0.4 0.32,0.73 0.55,1 0.24,0.26 0.52,0.46 0.84,0.59 0.32,0.12 0.69,0.19 1.09,0.19 0.38,0 0.7,-0.04 0.97,-0.12 0.27,-0.08 0.5,-0.18 0.7,-0.28 0.2,-0.1 0.36,-0.2 0.48,-0.28 0.13,-0.09 0.25,-0.14 0.36,-0.14 0.06,0 0.11,0.02 0.16,0.05 0.05,0.02 0.09,0.06 0.12,0.11 l 0.44,0.56 c -0.19,0.22 -0.41,0.41 -0.67,0.58 -0.26,0.17 -0.54,0.31 -0.84,0.42 -0.29,0.11 -0.6,0.18 -0.92,0.23 -0.31,0.05 -0.62,0.08 -0.92,0.08 -0.59,0 -1.14,-0.1 -1.64,-0.3 -0.5,-0.2 -0.93,-0.49 -1.3,-0.88 -0.37,-0.38 -0.65,-0.86 -0.86,-1.42 -0.2,-0.57 -0.3,-1.23 -0.3,-1.97 0,-0.59 0.09,-1.15 0.27,-1.66 0.19,-0.52 0.45,-0.97 0.8,-1.34 0.34,-0.38 0.76,-0.68 1.26,-0.89 0.51,-0.21 1.07,-0.32 1.69,-0.32 z m 0.02,1.11 c -0.71,0 -1.27,0.21 -1.69,0.64 -0.42,0.42 -0.68,0.98 -0.78,1.7 h 4.64 c 0,-0.34 -0.05,-0.66 -0.16,-0.94 -0.09,-0.29 -0.23,-0.54 -0.42,-0.73 -0.18,-0.21 -0.4,-0.37 -0.67,-0.48 -0.27,-0.13 -0.58,-0.19 -0.92,-0.19 z m 0,0"
id="path86" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 30 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 16 KiB

View file

@ -1,57 +0,0 @@
<svg width="80px" height="80px" viewBox="0 0 80 80" xmlns="http://www.w3.org/2000/svg">
<style>
.fr-artwork-decorative {
fill: #ECECFF;
}
.fr-artwork-minor {
fill: #E1000F;
}
.fr-artwork-major {
fill: #000091;
}
</style>
<g class="fr-artwork-decorative" id="artwork-decorative">
<path d="M69,12c0,0.55139-0.44861,1-1,1s-1-0.44861-1-1s0.44861-1,1-1S69,11.44861,69,12z M41,74
c-0.55139,0-1,0.44861-1,1s0.44861,1,1,1s1-0.44861,1-1S41.55139,74,41,74z M15,8c-0.55139,0-1,0.44855-1,1c0,0.55139,0.44861,1,1,1
s1-0.44861,1-1C16,8.44855,15.55139,8,15,8z"/>
</g>
<g class="fr-artwork-minor" id="artwork-minor">
<path d="M17,21c0,0.55139-0.44861,1-1,1s-1-0.44861-1-1s0.44861-1,1-1S17,20.44861,17,21z M20,20
c-0.55139,0-1,0.44861-1,1s0.44861,1,1,1s1-0.44861,1-1S20.55139,20,20,20z M24,20c-0.55139,0-1,0.44861-1,1s0.44861,1,1,1
s1-0.44861,1-1S24.55139,20,24,20z M62,20H32l-0.11658,0.00671C31.38599,20.06451,31,20.48718,31,21c0,0.55231,0.44769,1,1,1h30
l0.11658-0.00671C62.61401,21.93549,63,21.51282,63,21C63,20.44769,62.55231,20,62,20z M60.59998,42.20001
c0.40784,0.30591,0.5155,0.86346,0.26904,1.29498l-0.06903,0.10498l-4.30267,5.737C56.81488,49.81299,57,50.38489,57,51
c0,1.65692-1.34308,3-3,3s-3-1.34308-3-3c0-0.46307,0.10492-0.90179,0.29242-1.2934l-1.99951-1.99951
c-0.3905-0.3905-0.3905-1.02368,0-1.41418c0.36047-0.36053,0.92767-0.38818,1.32001-0.08319l0.09418,0.08319l1.99951,1.99951
C53.09821,48.10498,53.53693,48,54,48c0.31268,0,0.6142,0.04779,0.89758,0.1366l4.30243-5.73657
C59.53137,41.95819,60.1582,41.86859,60.59998,42.20001z M55,51c0-0.55231-0.44769-1-1-1s-1,0.44769-1,1s0.44769,1,1,1
S55,51.55231,55,51z"/>
</g>
<g class="fr-artwork-major" id="artwork-major">
<path d="M36.99329,62.88342L37,63c0,0.51282-0.38599,0.93549-0.88342,0.99329L36,64H12
c-0.51282,0-0.93549-0.38599-0.99329-0.88342L11,63V17c0-0.51282,0.38599-0.93549,0.88342-0.99329L12,16h54
c0.51282,0,0.93549,0.38599,0.99329,0.88342L67,17v16c0,0.55231-0.44769,1-1,1c-0.51282,0-0.93549-0.38599-0.99329-0.88342L65,33V18
H13v6h37c0.55231,0,1,0.44769,1,1c0,0.51282-0.38599,0.93549-0.88342,0.99329L50,26H13v36h23
C36.51282,62,36.93549,62.38599,36.99329,62.88342z M54,34c-9.38879,0-17,7.61121-17,17
c0,8.62091,6.41699,15.74298,14.73511,16.8504l-0.4422,0.4425l-0.08319,0.09418c-0.30499,0.39233-0.27734,0.95953,0.08319,1.32001
c0.3905,0.3905,1.02368,0.3905,1.41418,0l2-2c0.02942-0.02942,0.05701-0.06061,0.08258-0.09351
c0.05573-0.07172,0.10101-0.14996,0.13452-0.23102c0.0426-0.10284,0.0686-0.21436,0.07452-0.33105
C54.99957,67.03442,55,67.01727,55,67c0-0.13483-0.02667-0.26331-0.07501-0.38062c-0.04877-0.11877-0.1214-0.22998-0.2179-0.32648
l-2-2l-0.09418-0.08319c-0.39233-0.30499-0.95953-0.27734-1.32001,0.08319l-0.08319,0.09418
c-0.30499,0.39233-0.27734,0.95953,0.08319,1.32001l0.06,0.06012C44.33112,64.51691,39,58.38098,39,51c0-8.2843,6.7157-15,15-15
s15,6.7157,15,15c0,3.49902-1.2005,6.81122-3.3645,9.46729c-0.34882,0.42822-0.28448,1.05811,0.14368,1.40692
c0.42822,0.34882,1.05804,0.28448,1.40692-0.14374C69.63812,58.72083,71,54.9635,71,51C71,41.61121,63.38879,34,54,34z
M63.37518,62.71002c-0.5899,0.4729-1.21448,0.90076-1.86847,1.2796c-0.47791,0.27679-0.64093,0.88855-0.36414,1.36646
s0.88861,0.64093,1.36652,0.36414c0.74121-0.42932,1.44891-0.91412,2.11713-1.44983c0.43091-0.34546,0.50018-0.97479,0.15466-1.4057
C64.43542,62.43378,63.80609,62.3645,63.37518,62.71002z M62.7901,46.12402c-0.50708,0.21875-0.74078,0.80719-0.52209,1.31427
C62.74878,48.55267,63,49.75781,63,51c0,4.97058-4.02942,9-9,9s-9-4.02942-9-9s4.02942-9,9-9
c0.61743,0,1.2262,0.06201,1.82031,0.18402c0.54102,0.11096,1.06958-0.23755,1.18066-0.7785
c0.11115-0.54102-0.23749-1.06964-0.7785-1.18073C55.49622,40.07568,54.75269,40,54,40c-6.07507,0-11,4.92493-11,11
s4.92493,11,11,11s11-4.92493,11-11c0-1.51593-0.30737-2.99048-0.89557-4.354C63.88562,46.13892,63.29718,45.90521,62.7901,46.12402
z M38.11658,33.99329C38.61401,33.93549,39,33.51282,39,33c0-0.55231-0.44769-1-1-1H20l-0.11658,0.00671
C19.38599,32.06451,19,32.48718,19,33c0,0.55231,0.44769,1,1,1h18L38.11658,33.99329z M34.11658,39.99329
C34.61401,39.93549,35,39.51282,35,39c0-0.55231-0.44769-1-1-1H20l-0.11658,0.00671C19.38599,38.06451,19,38.48718,19,39
c0,0.55231,0.44769,1,1,1h14L34.11658,39.99329z M20,44l-0.11658,0.00671C19.38599,44.06451,19,44.48718,19,45
c0,0.55231,0.44769,1,1,1h12l0.11658-0.00671C32.61401,45.93549,33,45.51282,33,45c0-0.55231-0.44769-1-1-1H20z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 480 B

After

Width:  |  Height:  |  Size: 466 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 878 B

After

Width:  |  Height:  |  Size: 889 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -0,0 +1 @@
<svg height="53" width="318" xmlns="http://www.w3.org/2000/svg"><g fill="#373c42"><path d="m10.4 37.632c2.496 2.208 5.044 3.36 8.528 3.36 7.02 0 13.208-5.568 13.208-13.392 0-7.968-5.928-13.44-13.052-13.44-3.328 0-6.188 1.152-8.684 3.456v-12.624h-6.916v35.328h6.916zm7.28-17.616c4.576 0 7.488 3.36 7.488 7.536 0 4.368-3.172 7.584-7.488 7.584-4.264 0-7.592-3.024-7.592-7.632 0-4.464 3.172-7.488 7.592-7.488zm40.204 12.816c-1.924 1.728-3.9 2.496-6.864 2.496-3.952 0-7.072-2.112-7.748-5.904h22.256c0-.576.052-.864.052-1.44 0-8.064-5.928-13.824-14.664-13.824-8.892 0-14.352 6.432-14.352 13.392 0 7.488 5.668 13.44 14.456 13.44 5.824 0 9.724-1.728 12.688-5.616zm-14.3-8.448c1.352-3.216 4.004-4.8 7.436-4.8 3.692 0 6.656 1.824 7.592 4.8zm28.27-9.552h-3.534v5.472h3.535v20.016h6.916v-20.016h4.11v-5.472h-4.11v-9.408h-6.91v9.408zm35.246 25.488h6.916v-25.488h-6.916v2.784c-2.496-2.304-5.356-3.456-8.684-3.456-7.176 0-13 5.472-13 13.44 0 7.824 6.136 13.392 13.156 13.392 3.484 0 6.084-1.152 8.528-3.36zm-7.28-20.304c4.368 0 7.592 3.024 7.592 7.488 0 4.656-3.328 7.632-7.592 7.632-4.316 0-7.436-3.216-7.436-7.584 0-4.176 2.86-7.536 7.436-7.536zm24.968 13.632c-2.184 0-4.004 1.584-4.004 3.648 0 2.016 1.82 3.696 4.004 3.696 2.236 0 3.952-1.68 3.952-3.696s-1.768-3.648-3.952-3.648zm38.08-18.816h-6.917v2.784c-2.6-2.256-5.3-3.456-8.73-3.456-7.02 0-12.89 5.184-12.89 13.056 0 7.632 5.83 13.104 13.26 13.104 3.59 0 6.09-1.104 8.37-3.168 0 2.4-.05 4.128-1.71 5.568-1.25 1.056-3.33 1.68-5.87 1.68-2.91 0-4.99-.672-6.4-2.208h-7.64c1.87 5.328 6.71 8.064 14.3 8.064 4.21 0 7.54-.912 10.04-2.832 3.17-2.496 4.21-5.808 4.21-10.752v-21.84zm-14.093 5.184c4.576 0 7.54 3.168 7.54 7.296 0 4.32-3.172 7.152-7.436 7.152-4.32 0-7.6-2.976-7.6-7.2 0-3.936 2.91-7.248 7.49-7.248zm34.068-5.856c-7.54 0-14.3 5.712-14.3 13.44 0 7.488 6.344 13.392 14.352 13.392 8.424 0 14.612-6.048 14.612-13.44 0-7.536-6.604-13.392-14.664-13.392zm.104 6.048c4.524 0 7.592 3.072 7.592 7.392 0 4.464-3.33 7.344-7.6 7.344-4.47 0-7.44-3.072-7.44-7.392 0-4.224 3.12-7.344 7.43-7.344zm20.16 6.288c0 2.112-.105 3.312.26 5.376 1.09 5.952 5.2 9.072 11.855 9.072 3.848 0 6.708-.96 8.892-3.216 2.912-2.976 3.224-6.432 3.224-11.136v-11.76h-6.916v13.584c0 4.32-1.508 6.672-5.2 6.672-3.64 0-5.2-2.4-5.2-6.96v-13.296h-6.916v11.664zm40.07 13.824h4.47l11.753-25.488h-7.02l-6.968 15.024-6.968-15.024h-7.072l11.804 25.488zm21.679-4.72q1.228 0 2.057.79.857.766.857 1.873 0 1.108-.857 1.9-.857.763-2.057.763t-2.057-.764q-.83-.79-.83-1.9 0-1.106.83-1.87.85-.792 2.05-.792zm27.108-18.51-.515 1.74h-4.17l-3.15 11.523q-2.09 7.62-4.2 11.786-3 5.88-6.46 8.12-2.63 1.71-5.26 1.71-1.72 0-2.92-.95-.89-.66-.89-1.72 0-.85.74-1.48.71-.61 1.77-.61.77 0 1.31.45.51.45.51 1.03 0 .58-.6 1.08-.46.37-.46.55 0 .23.2.37.255.18.8.18 1.226 0 2.6-.72 1.34-.71 2.4-2.14 1.054-1.4 1.996-4.06.4-1.11 2.146-7.31l4.97-17.85h-4.97l.4-1.74q2.37 0 3.315-.29.942-.314 1.713-1.16.8-.87 2.056-3.214 1.69-3.16 3.23-4.9 2.11-2.345 4.424-3.506 2.343-1.18 4.4-1.18 2.17 0 3.485 1.027 1.32 1.006 1.32 2.19 0 .926-.658 1.558-.658.63-1.687.63-.89 0-1.46-.47-.54-.475-.54-1.134 0-.42.37-1.03.37-.63.37-.84 0-.37-.26-.553-.37-.266-1.086-.266-1.8 0-3.23 1.058-1.913 1.4-3.43 4.38-.77 1.557-2.824 7.727h4.2z"/><path d="m293.906 17.934 9.855-1.476-4.11 12.814q5-7.884 9.09-11.02 2.32-1.794 3.77-1.794.95 0 1.49.527.55.5.55 1.477 0 1.74-.97 3.322-.68 1.186-1.97 1.186-.65 0-1.14-.395-.45-.396-.57-1.213-.06-.5-.26-.66-.22-.21-.54-.21-.48 0-.91.21-.74.37-2.25 2.057-2.37 2.58-5.14 6.69-1.19 1.74-2.05 3.93-1.2 3-1.37 3.61l-.912 3.32h-4.37l5.28-16.38q.915-2.85.915-4.06 0-.48-.43-.79-.57-.42-1.51-.42-.6 0-2.2.23l-.2-.98z"/></g></svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 17 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 63 KiB

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 64 KiB

After

Width:  |  Height:  |  Size: 36 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 36 KiB

View file

@ -1,177 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="38"
viewBox="0 0 360 38"
width="360"
version="1.1"
id="svg18"
sodipodi:docname="logo-ds-wide_source.svg"
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
inkscape:export-filename="logo-ds-wide.png"
inkscape:export-xdpi="323.37"
inkscape:export-ydpi="323.37"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs22" />
<sodipodi:namedview
id="namedview20"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
showguides="true"
inkscape:zoom="4.2777778"
inkscape:cx="171.7013"
inkscape:cy="26.766234"
inkscape:window-width="1920"
inkscape:window-height="1001"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1"
inkscape:current-layer="g16">
<sodipodi:guide
position="109.09647,38"
orientation="0,-1"
id="guide1531"
inkscape:locked="false" />
<sodipodi:guide
position="0,-0.33766234"
orientation="1,0"
id="guide1533"
inkscape:locked="false" />
<sodipodi:guide
position="79.480519,13.688312"
orientation="0,-1"
id="guide1539"
inkscape:locked="false" />
<sodipodi:guide
position="82.051948,24.207792"
orientation="0,-1"
id="guide1541"
inkscape:locked="false" />
</sodipodi:namedview>
<g
fill="none"
fill-rule="evenodd"
id="g16">
<g
id="g1529"
transform="matrix(0.16862409,0,0,0.16862409,43.034386,21.966122)">
<g
id="g4026-0-6"
transform="matrix(0.71886577,0,0,0.71886577,-1831.0169,126.70432)">
<g
id="g5762-0-7-2-5-3-7"
transform="translate(341.65802,-1227.5096)">
<path
style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:36.8112;stroke-dasharray:36.8112, 36.8112;stop-color:#000000"
id="path15082-0-7-1-4-8-4"
transform="matrix(-0.13997337,-0.99015527,0.9913098,-0.13154798,0,0)"
d="m -1228.1049,1792.0285 a 153.87494,155.69708 0 0 1 74.9878,203.6158 153.87494,155.69708 0 0 1 -199.2052,81.1693 153.87494,155.69708 0 0 1 -85.3961,-199.3748" />
<g
id="g17548-0-7-0-0-48-3"
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-opacity:1">
<path
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:2.21555px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 2179.0586,980.41016 68.1567,34.64154 -33.1573,33.3093 z"
id="path16488-9-4-0-4-5-0" />
<path
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.90178px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 2178.7295,980.09664 13.4477,-69.92761"
id="path16492-7-1-8-8-0-1" />
<path
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.90178px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 2248.6571,1052.7138 -34.5991,-4.3528 17.1173,59.488"
id="path16687-6-3-9-4-5-5" />
</g>
<path
style="fill:none;stroke:#ffffff;stroke-width:1.90178px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 2178.7295,980.09664 -44.3771,54.79906 79.7056,13.4653 -113.997,39.989 131.1143,19.499 -120.6924,27.5676 36.3085,36.3086 -84.4267,4.8658"
id="path1783-8-7-1-5-0-9" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.90178px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 2178.7295,980.09664 -82.7028,-3.69809 96.1505,-66.22952 -105.2277,-36.98095 9.7495,102.2019 37.6534,59.50572 -34.2914,53.4543 -54.4629,-29.921 88.7543,-23.5333"
id="path1818-1-8-4-5-0-4" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.90178px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 2110.4829,1135.4166 2100.061,1088.35"
id="path1853-9-6-6-2-3-7" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.90178px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 2062.3647,1176.591 48.1182,-41.1744 -73.2896,-4.0343 62.8677,-43.0323"
id="path1890-4-3-6-6-4-0" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.90178px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 2045.5981,1058.429 50.4286,-82.03045 -79.341,-23.86953 70.2638,-79.34094"
id="path1925-8-5-7-9-1-1" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.90178px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 2016.6857,952.52902 28.9124,105.89998 -8.4048,72.9533"
id="path1960-9-8-7-6-5-5" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.90178px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 2016.6857,952.52902 -42.0238,-22.18856 -13.4476,72.61714 z"
id="path1995-3-1-8-2-1-2" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.90178px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 2045.5981,1058.429 -44.0409,11.7667 2.6895,-39.3343 z"
id="path2030-4-6-3-5-9-3" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.90178px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 2004.2467,1030.8614 12.439,-78.33238"
id="path2065-4-7-6-0-4-4" />
</g>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:134.392px;line-height:1.15;font-family:sans-serif;white-space:pre;inline-size:492.011;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.90178"
x="2324.8196"
y="316.83685"
id="text4325-7-8-6-7-3-6"
transform="matrix(0.71886577,0,0,0.71886577,-1759.6753,-214.44053)"><tspan
x="2324.8196"
y="316.83685"
id="tspan4267"><tspan
style="font-weight:bold;font-family:Carlito;-inkscape-font-specification:'Carlito Bold';fill:#ffffff"
id="tspan4261">DG</tspan><tspan
style="font-weight:bold;font-family:Carlito;-inkscape-font-specification:'Carlito Bold'"
id="tspan4263">N</tspan><tspan
style="font-family:Carlito;-inkscape-font-specification:Carlito"
id="tspan4265">UM</tspan></tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:23.8194px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.893227"
x="37.471935"
y="47.195259"
id="text13534"><tspan
id="tspan13532"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:23.8194px;font-family:Carlito;-inkscape-font-specification:'Carlito Light';stroke-width:0.893227"
x="37.471935"
y="47.195259">Délégation Générale</tspan><tspan
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:23.8194px;font-family:Carlito;-inkscape-font-specification:'Carlito Light';stroke-width:0.893227"
x="37.471935"
y="77.202065"
id="tspan13536">Numérique</tspan></text>
</g>
<text
xml:space="preserve"
style="font-weight:bold;font-size:20.6667px;line-height:1.25;font-family:Marianne;-inkscape-font-specification:'Marianne Bold';letter-spacing:0.91px"
x="103.62402"
y="24.152809"
id="text1537"><tspan
sodipodi:role="line"
id="tspan1535"
x="103.62402"
y="24.152809"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:20.6667px;font-family:Carlito;-inkscape-font-specification:'Carlito Bold';fill:#000000"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Carlito;-inkscape-font-specification:Carlito"
id="tspan2140">démarches</tspan> normaliennes</tspan></text>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 8.6 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 63 KiB

After

Width:  |  Height:  |  Size: 36 KiB

View file

@ -0,0 +1 @@
<svg height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="m0 0h24v24h-24z"/><g stroke="#15ad70" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="m12 1c-6.072 0-11 4.928-11 11s4.928 11 11 11 11-4.928 11-11-4.928-11-11-11z"/><path d="m6 12.093 4.182 3.907 7.818-8"/></g></g></svg>

After

Width:  |  Height:  |  Size: 371 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><g fill="none" fill-rule="evenodd"><g stroke="#000091" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M20.54 4.23l-1.391-1.68A1.447 1.447 0 0 0 18 2H6c-.471 0-.88.21-1.16.55L3.46 4.23C3.17 4.57 3 5.02 3 5.5V18c0 1.1.899 2 2 2h14c1.1 0 2-.9 2-2V5.5c0-.48-.17-.93-.46-1.27z"/><path d="M12.088 7.333h3.438c0-2 2.562-2 2.562-2h2l.842-.38a1.933 1.933 0 0 0-.385-.723l-1.39-1.68a1.448 1.448 0 0 0-1.15-.55h-12c-.47 0-.88.21-1.16.55l-1.38 1.68a1.913 1.913 0 0 0-.395.763l.018.34h3s2.562 0 2.562 2h3.438M9 13.868l3 3 3-3M12 16v-5"/></g><path d="M0 0h24v24H0z"/></g></svg>

After

Width:  |  Height:  |  Size: 672 B

View file

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M16.707 10.293a1 1 0 010 1.414l-6 6a1 1 0 01-1.414 0l-6-6a1 1 0 111.414-1.414L9 14.586V3a1 1 0 012 0v11.586l4.293-4.293a1 1 0 011.414 0z" clip-rule="evenodd" />
</svg>

After

Width:  |  Height:  |  Size: 296 B

View file

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M3.293 9.707a1 1 0 010-1.414l6-6a1 1 0 011.414 0l6 6a1 1 0 01-1.414 1.414L11 5.414V17a1 1 0 11-2 0V5.414L4.707 9.707a1 1 0 01-1.414 0z" clip-rule="evenodd" />
</svg>

After

Width:  |  Height:  |  Size: 294 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="20" viewBox="0 0 16 20"><g fill="none" fill-rule="evenodd"><path d="M11.5 8H15l-7 7-7-7h3.5V1h7zM1 19h14" stroke="#FFF" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M-4-2h24v24H-4z"/></g></svg>

After

Width:  |  Height:  |  Size: 281 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><g fill="none" fill-rule="evenodd"><path stroke="#000091" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2z"/><path d="M0 0h24v24H0z"/></g></svg>

After

Width:  |  Height:  |  Size: 337 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><g fill="none" fill-rule="evenodd"><path stroke="#000091" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3.5 21h18M18.878 8.871l1.829-1.829a.994.994 0 0 0 0-1.41l-2.339-2.34a.996.996 0 0 0-1.41 0l-1.83 1.83-1.069 1.07L3 17.25V21h3.75L17.808 9.941l1.07-1.07zm-3.609-3.662l3.396 3.542"/><path d="M0 0h24v24H0z"/></g></svg>

After

Width:  |  Height:  |  Size: 424 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" data-prefix="fas" data-icon="arrows-alt-v" class="svg-inline--fa fa-arrows-alt-v fa-w-8 fa-lg" width="32" height="32"><path d="M19.04 20.763h-1.656v-9.526h1.656c.768 0 2.494.242.61-1.6l-3.094-3.362a.815.815 0 0 0-1.22 0l-3.093 3.361c-1.643 1.831-.159 1.6.61 1.6h1.655v9.527h-1.655c-.769 0-2.235-.244-.61 1.6l3.093 3.362a.815.815 0 0 0 1.22 0l3.094-3.361c1.884-1.795.158-1.6-.61-1.6z" fill="currentColor"/><rect width="9" height="2" y="11" ry=".402"/><rect ry=".402" y="19" height="2" width="9"/><rect width="9" height="2" y="15" ry=".402"/><rect ry=".402" y="11" x="23" height="2" width="9"/><rect width="9" height="2" x="23" y="19" ry=".402"/><rect ry=".402" y="15" x="23" height="2" width="9"/></svg>

After

Width:  |  Height:  |  Size: 761 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><g fill="none" fill-rule="evenodd"><path d="M11 6L9 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-6" stroke="#000091" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M0 0h24v24H0z"/></g><g transform="translate(8 -8)" fill="#000091"><rect ry="1" y="12" x="6" height="2" width="10"/><rect width="2" height="10" x="10" y="8" ry="1"/></g></svg>

After

Width:  |  Height:  |  Size: 446 B

View file

@ -0,0 +1 @@
<svg height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="m12 1c-6.072 0-11 4.928-11 11s4.928 11 11 11 11-4.928 11-11-4.928-11-11-11zm3.833 7-7.833 7.833zm0 7.833-7.833-7.833z" fill="none" stroke="#ed1c24" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></svg>

After

Width:  |  Height:  |  Size: 311 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><g fill="none" fill-rule="evenodd"><path d="M6 18.857C6 20.037 6.749 21 7.667 21h8.666C17.25 21 18 20.037 18 18.857V6H6v12.857zM4 6h16M9 11v5m3-5v5m3-5v5M8.5 4.889c0-.858.696-1.89 1.556-1.89h3.888c.86 0 1.556 1.032 1.556 1.89" stroke="#000091" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M0 0h24v24H0z"/></g></svg>

After

Width:  |  Height:  |  Size: 427 B

View file

@ -0,0 +1 @@
<svg height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="m12 1c-6.072 0-11 4.928-11 11s4.928 11 11 11 11-4.928 11-11-4.928-11-11-11z" stroke="#333" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><g fill="#333" fill-rule="nonzero"><circle cx="8" cy="12" r="1"/><circle cx="12" cy="12" r="1"/><circle cx="16" cy="12" r="1"/></g></g></svg>

After

Width:  |  Height:  |  Size: 424 B

View file

@ -1,71 +0,0 @@
<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 252 90'>
<defs>
<symbol id='a' viewBox='0 0 11 15.5'>
<path d='M10.4 5.3C11.9 1.5 10.1 0 7.9 0 4.2 0 0 6.5 0 11.7c0 2.5 1.2 3.8 3 3.8 2.1 0 4.3-2 6.2-5.5h-1c-1.2 1.5-2.6 2.6-3.9 2.6-1.3 0-2-.8-2-2.6a10.7 10.7 0 01.3-2.2zm-4-3.1c1.1 0 2 .8 1.5 2.6L3.1 6.1c.8-2.2 2.2-4 3.4-4z' />
</symbol>
<symbol id='b' viewBox='0 0 12.4 21.8'>
<use width='11' height='15.5' y='6.4' href='#a' />
<path d='M7.9 4.7L12.4.6V0h-3L6.7 4.7H8z' />
</symbol>
<symbol id='c' viewBox='0 0 11.5 19'>
<path d='M1.7 5.7h2.6L.1 17.1a1.3 1.3 0 001.2 2c3 0 6.4-2.6 7.8-6.2h-.7a9.4 9.4 0 01-5.1 3.5L7 5.7H11l.5-1.6H7.7L9 0H7.6L4.9 4.1l-3.2.4v1.2z' />
</symbol>
<symbol id='d' viewBox='0 0 9.8 21.9'>
<path d='M7.6 8c.3-1-.4-1.6-1-1.6-2.2 0-5 2.1-6 5h.7A5.6 5.6 0 014.4 9L.1 20.3a1.1 1.1 0 001 1.6c2.2 0 4.7-2 5.8-5H6A5.6 5.6 0 013 19.5zM8 3.7a1.8 1.8 0 001.8-1.8A1.8 1.8 0 008 0a1.8 1.8 0 00-1.8 1.8A1.8 1.8 0 008 3.6' />
</symbol>
<symbol id='e' viewBox='0 0 14.8 15.5'>
<path d='M3.3 3.1c.7 0 1 1 0 3.4l-3 6.8c-.7 1.3 0 2.2 1.2 2.2a1.3 1.3 0 001.5-1l3-8C7.4 4.8 10 3 11 3s.8.6.3 1.6l-4.6 9a1.3 1.3 0 001.1 1.9c2.3 0 5-2 6-5h-.6A5.6 5.6 0 0110 13l4-8a6.1 6.1 0 00.8-2.8A2 2 0 0012.6 0c-2 0-3.6 2.2-6 5V2.8C6.6 1.4 6.1 0 4.8 0 3.2 0 1.8 2.5.7 4.9h.7c.7-1.1 1.3-1.8 2-1.8' />
</symbol>
<symbol id='f' viewBox='0 0 12 15.5'>
<path d='M11.8 3.5c.5-1.9.2-3.5-1.2-3.5-1.8 0-2.3 1.2-4 5V2.8C6.5 1.3 6 0 4.6 0 3.1 0 1.7 2.5.5 5h.8C2 3.7 2.8 3 3.3 3c.7 0 1 1 0 3.4l-3 6.8c-.7 1.3 0 2.1 1.2 2.1a1.3 1.3 0 001.5-1l3-8a50.3 50.3 0 012.6-3h3.2z' />
</symbol>
<symbol id='g' viewBox='0 0 14.7 16.2'>
<path d='M10.5 13.1c-.6 0-1-1 0-3.4L14.6.1 13.4 0l-1.3 1.3h-.3C6.1 1.3 0 8.6 0 14.2a2 2 0 002.1 2.1c1.7 0 3.3-2.4 5.2-5l-.1 1c-.3 2.6.6 4 2 4 1.5 0 3-2.4 4-4.9h-.7c-.7 1.1-1.5 1.8-2 1.8zM7.9 9.8c-1.3 1.6-3.4 3.5-4.3 3.5-.5 0-.9-.5-.9-1.6 0-3.5 4-8.2 6-8.2a4.2 4.2 0 011.4.2z' />
</symbol>
<symbol id='h' viewBox='0 0 21.9 19.8'>
<path d='M11.2 19.8l.3-.9c-3.8-.7-4.3-.7-2.7-4.8l1.4-3.9h3c1.9 0 1.9.9 1.6 3h1l2.6-6.9h-1c-1 1.6-1.8 2.9-3.8 2.9h-3l2-5.6c.8-2 1.1-2.4 3.7-2.4h.7c2.6 0 3 .7 3 3.5h1l.9-4.7H7.3L7 .9c3 .6 3.3.9 2 4.8L5.7 14c-1.5 3.9-2 4.2-5.5 4.8l-.3.9z' />
</symbol>
<symbol id='i' viewBox='0 0 10.1 21.9'>
<path d='M2.9 19.4L10.1.3 9.8 0l-5 .6v.6l1 .7c.9.7.6 1.3-.2 3.4L.2 19.9a1.3 1.3 0 001.1 2c2.3 0 4.7-2.1 5.8-5h-.7a6.5 6.5 0 01-3.5 2.5' />
</symbol>
<symbol id='j' viewBox='0 0 18 22'>
<path d='M18 .6h-4.3a3.8 3.8 0 00-2.1-.6A6.6 6.6 0 005 6.5a3.3 3.3 0 003 3.6c-1.9.8-3 1.8-3 2.9a1.7 1.7 0 00.9 1.5c-4.3 1.3-6 2.8-6 4.7 0 2 2.6 2.8 5.6 2.8 5.3 0 9.6-2.7 9.6-5.1 0-1.8-1.6-2.5-4.3-3.3-2.2-.7-3.2-.8-3.2-1.6A2.4 2.4 0 019 10.2a6.6 6.6 0 006.1-6.5 4.5 4.5 0 00-.2-1.5h2.5zM9.8 16.2c2.1.7 3 1 3 1.6 0 1.4-2 2.5-5.6 2.5-2.7 0-4-.6-4-2 0-1.5 1.4-2.5 3.5-3.3a21.5 21.5 0 003 1.2zM9 9c-1 0-1.3-.8-1.3-1.7 0-2.8 1.4-6.2 3.5-6.2 1 0 1.3.8 1.3 1.6 0 2.9-1.4 6.3-3.5 6.3z' />
</symbol>
<symbol id='k' viewBox='0 0 23 25.1'>
<path d='M14.3 15.6c1.9 0 2 .8 1.6 2.8H17l2.5-6.8h-1c-1 1.6-1.7 2.9-3.8 2.9h-4.1l2-5.6c.7-2 1-2.4 3.7-2.4H18c2.6 0 3 .7 3 3.5h1l.9-4.7H7.3l-.3.9c3 .6 3.3.9 2 4.8l-3.2 8.4c-1.5 3.9-2 4.2-5.6 4.8l-.2 1h17.4l3.2-5h-1.2c-2 2-4 3.8-8 3.8-4.7 0-4.3-.3-2.7-4.6l1.4-3.8h4.2zm2.3-11.8L21 .6V0h-3l-2.6 3.9h1.2v-.1z' />
</symbol>
<symbol id='l' viewBox='0 0 13.6 21.8'>
<path d='M11.4 6.4c-2 0-4 2.2-5.8 4.8L9.6.3 9.4 0l-5 .6V1l1 .8c.9.7.6 1.3-.2 3.4L.8 16.8A13.9 13.9 0 000 19c0 1.4 1.8 2.7 3.5 2.7 3.8 0 10-6.9 10-12.2 0-2.3-.5-3.2-2.1-3.2zM4.8 19.5c-.8 0-1.9-.7-1.9-1.3a15.5 15.5 0 01.8-2.2L5 12.7C6.3 11 8.4 9.3 9.6 9.3c.7 0 1.2.4 1.2 1.5 0 3.1-2.9 8.7-6 8.7z' />
</symbol>
<symbol id='m' viewBox='0 0 19.2 19.9'>
<path d='M17.6 0H7.3L7 .9c3 .6 3.3.9 2 4.8l-3.2 8.5c-1.5 3.9-2 4.2-5.5 4.8L0 20h15.7l3.5-6H18c-2 2-4.2 4.8-7.7 4.8-2.7 0-3-.5-1.6-4.5l3.1-8.5c1.4-3.9 2-4.2 5.5-4.8z' />
</symbol>
<symbol id='n' viewBox='0 0 126 90'>
<use width='12.4' height='21.8' x='112.7' y='66.1' xlink:href='#b' />
<use width='11.5' height='19' x='102.2' y='69' xlink:href='#c' />
<use width='9.8' height='21.9' x='93.6' y='66.1' xlink:href='#d' />
<use width='14.8' height='15.5' x='77.2' y='72.5' xlink:href='#e' />
<use width='12' height='15.5' x='65.7' y='72.5' xlink:href='#f' />
<use width='11' height='15.5' x='54.3' y='72.5' xlink:href='#a' />
<use width='11.5' height='19' x='43.7' y='69' xlink:href='#c' />
<use width='14.7' height='16.2' x='28.9' y='71.8' xlink:href='#g' />
<use width='12' height='15.5' x='19.6' y='72.5' xlink:href='#f' />
<use width='21.9' height='19.8' y='67.6' xlink:href='#h' />
<use width='12.4' height='21.8' x='77.3' y='33.1' xlink:href='#b' />
<use width='11.5' height='19' x='66.8' y='36' xlink:href='#c' />
<use width='9.8' height='21.9' x='58.2' y='33' xlink:href='#d' />
<use width='10.1' height='21.9' x='49.4' y='33.1' xlink:href='#i' />
<use width='14.7' height='16.2' x='34.9' y='38.8' xlink:href='#g' />
<use width='18' height='22' x='18.6' y='39.4' xlink:href='#j' />
<use width='23' height='25.1' y='29.3' xlink:href='#k' />
<use width='12.4' height='21.8' x='76.8' y='.1' xlink:href='#b' />
<use width='11.5' height='19' x='66.2' y='2.9' xlink:href='#c' />
<use width='12' height='15.5' x='54.8' y='6.5' xlink:href='#f' />
<use width='11' height='15.5' x='43.4' y='6.4' xlink:href='#a' />
<use width='13.6' height='21.8' x='29.4' y='.1' xlink:href='#l' />
<use width='9.8' height='21.9' x='20.6' xlink:href='#d' />
<use width='19.2' height='19.9' y='1.4' xlink:href='#m' />
</symbol>
</defs>
<use fill='#161616' width='126' height='90' x='0' y='0' href='#n' />
</svg>

Before

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 60 KiB

View file

@ -1,348 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
height="38"
viewBox="0 0 360 38"
width="360"
version="1.1"
id="svg18"
sodipodi:docname="logo-ds-wide.svg"
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
inkscape:export-filename="logo-ds-wide.png"
inkscape:export-xdpi="450"
inkscape:export-ydpi="450"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs22" />
<sodipodi:namedview
id="namedview20"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
showguides="true"
inkscape:zoom="4.2777778"
inkscape:cx="167.25974"
inkscape:cy="27"
inkscape:window-width="1920"
inkscape:window-height="1001"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1"
inkscape:current-layer="g1529">
<sodipodi:guide
position="109.09647,38"
orientation="0,-1"
id="guide1531"
inkscape:locked="false" />
<sodipodi:guide
position="0,-0.33766234"
orientation="1,0"
id="guide1533"
inkscape:locked="false" />
<sodipodi:guide
position="79.480519,13.688312"
orientation="0,-1"
id="guide1539"
inkscape:locked="false" />
<sodipodi:guide
position="82.051948,24.207792"
orientation="0,-1"
id="guide1541"
inkscape:locked="false" />
</sodipodi:namedview>
<g
fill="none"
fill-rule="evenodd"
id="g16">
<g
id="g1529"
transform="matrix(0.16862409,0,0,0.16862409,43.034386,21.966122)">
<g
id="g4026-0-6"
transform="matrix(0.71886577,0,0,0.71886577,-1831.0169,126.70432)">
<g
id="g5762-0-7-2-5-3-7"
transform="translate(341.65802,-1227.5096)">
<path
style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:36.8112;stroke-dasharray:36.8112, 36.8112;stop-color:#000000"
id="path15082-0-7-1-4-8-4"
transform="matrix(-0.13997337,-0.99015527,0.9913098,-0.13154798,0,0)"
d="m -1228.1049,1792.0285 a 153.87494,155.69708 0 0 1 74.9878,203.6158 153.87494,155.69708 0 0 1 -199.2052,81.1693 153.87494,155.69708 0 0 1 -85.3961,-199.3748" />
<g
id="g17548-0-7-0-0-48-3"
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-opacity:1">
<path
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:2.21555px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 2179.0586,980.41016 68.1567,34.64154 -33.1573,33.3093 z"
id="path16488-9-4-0-4-5-0" />
<path
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.90178px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 2178.7295,980.09664 13.4477,-69.92761"
id="path16492-7-1-8-8-0-1" />
<path
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.90178px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 2248.6571,1052.7138 -34.5991,-4.3528 17.1173,59.488"
id="path16687-6-3-9-4-5-5" />
</g>
<path
style="fill:none;stroke:#ffffff;stroke-width:1.90178px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 2178.7295,980.09664 -44.3771,54.79906 79.7056,13.4653 -113.997,39.989 131.1143,19.499 -120.6924,27.5676 36.3085,36.3086 -84.4267,4.8658"
id="path1783-8-7-1-5-0-9" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.90178px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 2178.7295,980.09664 -82.7028,-3.69809 96.1505,-66.22952 -105.2277,-36.98095 9.7495,102.2019 37.6534,59.50572 -34.2914,53.4543 -54.4629,-29.921 88.7543,-23.5333"
id="path1818-1-8-4-5-0-4" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.90178px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 2110.4829,1135.4166 2100.061,1088.35"
id="path1853-9-6-6-2-3-7" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.90178px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 2062.3647,1176.591 48.1182,-41.1744 -73.2896,-4.0343 62.8677,-43.0323"
id="path1890-4-3-6-6-4-0" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.90178px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 2045.5981,1058.429 50.4286,-82.03045 -79.341,-23.86953 70.2638,-79.34094"
id="path1925-8-5-7-9-1-1" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.90178px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 2016.6857,952.52902 28.9124,105.89998 -8.4048,72.9533"
id="path1960-9-8-7-6-5-5" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.90178px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 2016.6857,952.52902 -42.0238,-22.18856 -13.4476,72.61714 z"
id="path1995-3-1-8-2-1-2" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.90178px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 2045.5981,1058.429 -44.0409,11.7667 2.6895,-39.3343 z"
id="path2030-4-6-3-5-9-3" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.90178px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 2004.2467,1030.8614 12.439,-78.33238"
id="path2065-4-7-6-0-4-4" />
</g>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:134.392px;line-height:1.15;font-family:sans-serif;white-space:pre;inline-size:492.011;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.90178"
x="2324.8196"
y="316.83685"
id="text4325-7-8-6-7-3-6"
transform="matrix(0.71886577,0,0,0.71886577,-1759.6753,-214.44053)"><tspan
x="2324.8196"
y="316.83685"
id="tspan905"><tspan
style="font-weight:bold;font-family:Carlito;-inkscape-font-specification:'Carlito Bold';fill:#ffffff"
id="tspan899">DG</tspan><tspan
style="font-weight:bold;font-family:Carlito;-inkscape-font-specification:'Carlito Bold'"
id="tspan901">N</tspan><tspan
style="font-family:Carlito;-inkscape-font-specification:Carlito"
id="tspan903">UM</tspan></tspan></text>
<g
aria-label="Délégation GénéraleNumérique"
id="text13534"
style="font-size:23.8194px;line-height:1.25;fill:#000000;stroke-width:0.893227">
<path
d="m 51.335571,39.553977 q 0,1.721324 -0.511745,3.128622 -0.500114,1.407299 -1.418929,2.419158 -0.907184,1.000229 -2.198177,1.546865 -1.279363,0.546637 -2.837859,0.546637 H 39.088584 V 31.912694 h 5.280277 q 1.558496,0 2.837859,0.558268 1.290993,0.546636 2.198177,1.546865 0.918815,1.000229 1.418929,2.419158 0.511745,1.407298 0.511745,3.116992 z m -2.174916,0 q 0,-1.395668 -0.337287,-2.488942 -0.337286,-1.104903 -0.965337,-1.872521 -0.62805,-0.767617 -1.511973,-1.163057 -0.883923,-0.407069 -1.977197,-0.407069 h -3.151883 v 11.863178 h 3.151883 q 1.093274,0 1.977197,-0.395439 0.883923,-0.40707 1.511973,-1.163057 0.628051,-0.767618 0.965337,-1.872521 0.337287,-1.104904 0.337287,-2.500572 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path680" />
<path
d="m 52.998742,47.195259 z m 5.350061,-11.549153 q 1.02349,0 1.895782,0.337287 0.872293,0.337286 1.511974,0.988598 0.639681,0.651312 1.000229,1.593388 0.360547,0.942075 0.360547,2.163285 0,0.476853 -0.104675,0.639681 -0.104675,0.151198 -0.383809,0.151198 h -7.60639 q 0.02326,1.070012 0.290764,1.872521 0.267503,0.790878 0.732726,1.314254 0.476853,0.523375 1.128165,0.790878 0.651311,0.255873 1.45382,0.255873 0.744357,0 1.290993,-0.162828 0.546637,-0.174459 0.930446,-0.383809 0.395439,-0.20935 0.662942,-0.372178 0.267503,-0.174458 0.465223,-0.174458 0.127936,0 0.22098,0.05815 0.09304,0.04652 0.162828,0.139567 l 0.581529,0.744356 q -0.383809,0.453593 -0.907185,0.790879 -0.511744,0.325656 -1.104903,0.546637 -0.593159,0.20935 -1.23284,0.314025 -0.628051,0.104675 -1.244471,0.104675 -1.186318,0 -2.186547,-0.395439 -1.000228,-0.39544 -1.732954,-1.163057 -0.721095,-0.779248 -1.128165,-1.907413 -0.40707,-1.139795 -0.40707,-2.616877 0,-1.186318 0.360548,-2.209808 0.372178,-1.035121 1.058381,-1.791107 0.697834,-0.767618 1.686432,-1.197949 1.000229,-0.430331 2.2447,-0.430331 z m 0.03489,1.488713 q -1.43056,0 -2.267961,0.837401 -0.82577,0.8374 -1.03512,2.291221 h 6.199092 q 0,-0.686203 -0.19772,-1.256101 -0.19772,-0.581528 -0.569898,-0.988598 -0.372178,-0.418701 -0.918815,-0.651312 -0.535006,-0.232611 -1.209578,-0.232611 z m 2.87275,-6.210723 -2.628509,2.896011 q -0.162828,0.174459 -0.325655,0.244242 -0.151198,0.06978 -0.383809,0.06978 h -1.22121 l 1.663171,-2.709922 q 0.151198,-0.255873 0.337287,-0.372179 0.186089,-0.127936 0.558267,-0.127936 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path682" />
<path
d="M 67.73467,30.656593 V 47.195259 H 65.68769 V 30.656593 Z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path684" />
<path
d="m 70.316655,47.195259 z m 5.350061,-11.549153 q 1.02349,0 1.895782,0.337287 0.872293,0.337286 1.511974,0.988598 0.639681,0.651312 1.000229,1.593388 0.360547,0.942075 0.360547,2.163285 0,0.476853 -0.104675,0.639681 -0.104675,0.151198 -0.383809,0.151198 h -7.60639 q 0.02326,1.070012 0.290764,1.872521 0.267503,0.790878 0.732726,1.314254 0.476853,0.523375 1.128165,0.790878 0.651311,0.255873 1.45382,0.255873 0.744357,0 1.290993,-0.162828 0.546637,-0.174459 0.930446,-0.383809 0.395439,-0.20935 0.662942,-0.372178 0.267503,-0.174458 0.465223,-0.174458 0.127936,0 0.22098,0.05815 0.09304,0.04652 0.162828,0.139567 l 0.581529,0.744356 q -0.383809,0.453593 -0.907184,0.790879 -0.511745,0.325656 -1.104904,0.546637 -0.593159,0.20935 -1.23284,0.314025 -0.628051,0.104675 -1.244471,0.104675 -1.186318,0 -2.186547,-0.395439 -1.000228,-0.39544 -1.732954,-1.163057 -0.721095,-0.779248 -1.128165,-1.907413 -0.40707,-1.139795 -0.40707,-2.616877 0,-1.186318 0.360548,-2.209808 0.372178,-1.035121 1.058381,-1.791107 0.697834,-0.767618 1.686432,-1.197949 1.000229,-0.430331 2.2447,-0.430331 z m 0.03489,1.488713 q -1.43056,0 -2.267961,0.837401 -0.82577,0.8374 -1.03512,2.291221 h 6.199092 q 0,-0.686203 -0.19772,-1.256101 -0.19772,-0.581528 -0.569898,-0.988598 -0.372178,-0.418701 -0.918814,-0.651312 -0.535007,-0.232611 -1.209579,-0.232611 z m 2.87275,-6.210723 -2.628509,2.896011 q -0.162827,0.174459 -0.325655,0.244242 -0.151198,0.06978 -0.383809,0.06978 h -1.22121 l 1.663171,-2.709922 q 0.151198,-0.255873 0.337287,-0.372179 0.186089,-0.127936 0.558267,-0.127936 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path686" />
<path
d="m 86.669232,35.634476 q 0.709464,0 1.325884,0.162828 0.61642,0.162828 1.116535,0.465222 h 2.977425 v 0.755987 q 0,0.40707 -0.465223,0.476853 l -1.209579,0.174459 q 0.360548,0.744356 0.360548,1.628279 0,0.837401 -0.314025,1.511974 -0.302395,0.674573 -0.849032,1.151426 -0.546637,0.476853 -1.302623,0.744356 -0.744357,0.255873 -1.63991,0.255873 -0.744357,0 -1.372407,-0.174459 -0.337287,0.220981 -0.500115,0.476854 -0.162827,0.244241 -0.162827,0.488483 0,0.40707 0.314025,0.60479 0.314025,0.197719 0.82577,0.290764 0.511745,0.09305 1.163057,0.116306 0.651312,0.02326 1.325884,0.08141 0.686204,0.04652 1.337516,0.162828 0.651311,0.116305 1.163056,0.407069 0.511745,0.279134 0.82577,0.779248 0.314026,0.488484 0.314026,1.279363 0,0.732725 -0.348917,1.418929 -0.348917,0.686203 -1.01186,1.221209 -0.651311,0.535006 -1.605018,0.849032 -0.942076,0.325656 -2.140024,0.325656 -1.197948,0 -2.093502,-0.244242 -0.895554,-0.244242 -1.488713,-0.662943 -0.593159,-0.4187 -0.883923,-0.965337 -0.290764,-0.546636 -0.290764,-1.139795 0,-0.837401 0.488484,-1.418929 0.500114,-0.581529 1.372407,-0.918815 -0.476853,-0.220981 -0.755987,-0.60479 -0.279134,-0.383808 -0.279134,-1.023489 0,-0.488484 0.348917,-1.035121 0.348917,-0.546637 1.046751,-0.907184 -0.802509,-0.476853 -1.267731,-1.256101 -0.453592,-0.779248 -0.453592,-1.814369 0,-0.837401 0.302394,-1.511973 0.314026,-0.674573 0.860662,-1.151427 0.546637,-0.488483 1.302624,-0.744356 0.755987,-0.255872 1.663171,-0.255872 z m 3.349603,12.177203 q 0,-0.40707 -0.220981,-0.662942 -0.20935,-0.255873 -0.581528,-0.395439 -0.372178,-0.151198 -0.860662,-0.209351 -0.488484,-0.06978 -1.035121,-0.104675 -0.546636,-0.03489 -1.116534,-0.05815 -0.558267,-0.02326 -1.081643,-0.104675 -0.569897,0.302395 -0.930445,0.732726 -0.360548,0.4187 -0.360548,1.011859 0,0.383809 0.174459,0.709465 0.174458,0.325656 0.535006,0.558267 0.372178,0.244242 0.942076,0.383809 0.569898,0.139567 1.349146,0.139567 0.767617,0 1.360776,-0.151198 0.593159,-0.151197 1.000229,-0.4187 0.40707,-0.255873 0.61642,-0.628051 0.20935,-0.360547 0.20935,-0.802509 z m -3.349603,-6.199092 q 1.128165,0 1.698062,-0.628051 0.581529,-0.62805 0.581529,-1.639909 0,-1.035121 -0.581529,-1.63991 -0.569897,-0.61642 -1.698062,-0.61642 -1.104904,0 -1.686432,0.61642 -0.569898,0.604789 -0.569898,1.63991 0,0.500114 0.139567,0.918814 0.151197,0.40707 0.430331,0.709465 0.290764,0.302395 0.709464,0.476853 0.430331,0.162828 0.976968,0.162828 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path688" />
<path
d="m 101.10277,47.195259 q -0.3024,0 -0.46523,-0.09304 -0.16283,-0.09305 -0.22098,-0.383809 l -0.25587,-1.058382 q -0.441962,0.40707 -0.872293,0.732726 -0.4187,0.314025 -0.883923,0.535006 -0.465223,0.220981 -1.000229,0.325656 -0.535006,0.116306 -1.174687,0.116306 -0.662942,0 -1.244471,-0.174459 -0.569898,-0.186089 -1.011859,-0.558267 -0.430331,-0.383809 -0.686204,-0.942076 -0.244241,-0.569898 -0.244241,-1.337515 0,-0.674573 0.360547,-1.290993 0.372178,-0.628051 1.197949,-1.116535 0.82577,-0.488483 2.151654,-0.790878 1.325885,-0.314025 3.256557,-0.360548 v -0.872292 q 0,-1.325885 -0.569896,-1.988827 -0.558267,-0.674573 -1.63991,-0.674573 -0.721095,0 -1.221209,0.186089 -0.488484,0.186089 -0.849031,0.40707 -0.360548,0.220981 -0.628051,0.40707 -0.255873,0.186089 -0.523376,0.186089 -0.20935,0 -0.360547,-0.104675 -0.151198,-0.104675 -0.244242,-0.267503 L 93.60105,37.425583 q 0.942076,-0.907184 2.023718,-1.349146 1.093274,-0.453592 2.419158,-0.453592 0.953707,0 1.698063,0.314025 0.744361,0.302395 1.244471,0.872293 0.50011,0.569898 0.75599,1.360776 0.2675,0.790879 0.2675,1.756216 v 7.269104 z m -4.256792,-1.256101 q 0.511745,0 0.942076,-0.104675 0.430331,-0.104675 0.81414,-0.290764 0.383808,-0.19772 0.721095,-0.476854 0.348917,-0.290764 0.686201,-0.639681 V 42.07781 q -1.360774,0.05815 -2.314481,0.232611 -0.953706,0.162828 -1.558496,0.441962 -0.593159,0.279133 -0.860662,0.662942 -0.267503,0.372178 -0.267503,0.837401 0,0.441961 0.139567,0.767617 0.151198,0.314025 0.395439,0.523376 0.244242,0.197719 0.581529,0.302394 0.337286,0.09304 0.721095,0.09304 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path690" />
<path
d="m 103.6266,47.195259 z m 11.1886,-11.165344 v 11.165344 h -2.04698 v -9.676631 h -5.40821 v 6.792251 q 0,0.697834 0.3024,1.046751 0.31402,0.348917 0.81414,0.348917 0.29076,0 0.48848,-0.08141 0.20935,-0.08141 0.34892,-0.186089 0.15119,-0.104676 0.25587,-0.18609 0.10467,-0.08141 0.19772,-0.08141 0.10467,0 0.16283,0.04652 0.0698,0.04652 0.12793,0.151197 l 0.60479,0.976968 q -0.51174,0.488484 -1.20958,0.755987 -0.69783,0.267503 -1.45382,0.267503 -1.29099,0 -1.98882,-0.755987 -0.69784,-0.755987 -0.69784,-2.163286 v -6.931817 h -1.2561 q -0.18609,0 -0.31402,-0.116306 -0.11631,-0.116306 -0.11631,-0.337287 v -0.814139 l 1.75621,-0.232612 0.46523,-3.5008 q 0.0349,-0.174459 0.15119,-0.279134 0.11631,-0.104675 0.31403,-0.104675 h 1.04675 v 3.89624 z m 0.44197,-3.849718 q 0,0.290765 -0.11631,0.558268 -0.11631,0.255872 -0.32566,0.453592 -0.19772,0.186089 -0.46522,0.302394 -0.25587,0.116306 -0.54663,0.116306 -0.29077,0 -0.54664,-0.116306 -0.25587,-0.116305 -0.45359,-0.302394 -0.18609,-0.19772 -0.3024,-0.453592 -0.1163,-0.267503 -0.1163,-0.558268 0,-0.302394 0.1163,-0.558267 0.11631,-0.267503 0.3024,-0.465223 0.19772,-0.197719 0.45359,-0.314025 0.25587,-0.116305 0.54664,-0.116305 0.29076,0 0.54663,0.116305 0.2675,0.116306 0.46522,0.314025 0.20935,0.19772 0.32566,0.465223 0.11631,0.255873 0.11631,0.558267 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path692" />
<path
d="m 122.81704,35.646106 q 1.24447,0 2.24469,0.418701 1.00023,0.40707 1.69807,1.174687 0.69783,0.755987 1.07001,1.837629 0.38381,1.081643 0.38381,2.419158 0,1.349146 -0.38381,2.430789 -0.37218,1.081643 -1.07001,1.84926 -0.69784,0.755987 -1.69807,1.174687 -1.00022,0.40707 -2.24469,0.40707 -1.24448,0 -2.25633,-0.40707 -1.00023,-0.4187 -1.7097,-1.174687 -0.69783,-0.767617 -1.08164,-1.84926 -0.37218,-1.081643 -0.37218,-2.430789 0,-1.337515 0.37218,-2.419158 0.38381,-1.081642 1.08164,-1.837629 0.70947,-0.767617 1.7097,-1.174687 1.01185,-0.418701 2.25633,-0.418701 z m 0,10.118593 q 0.82577,0 1.44219,-0.279133 0.61642,-0.290764 1.02349,-0.837401 0.4187,-0.546637 0.61642,-1.337515 0.20935,-0.790879 0.20935,-1.802738 0,-1.011859 -0.20935,-1.802738 -0.19772,-0.790878 -0.61642,-1.337515 -0.40707,-0.546637 -1.02349,-0.837401 -0.61642,-0.290764 -1.44219,-0.290764 -0.83741,0 -1.46546,0.290764 -0.61642,0.290764 -1.03512,0.837401 -0.40707,0.546637 -0.61642,1.337515 -0.19772,0.790879 -0.19772,1.802738 0,1.011859 0.19772,1.802738 0.20935,0.790878 0.61642,1.337515 0.4187,0.546637 1.03512,0.837401 0.62805,0.279133 1.46546,0.279133 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path694" />
<path
d="M 130.71419,47.195259 V 35.820565 h 1.22121 q 0.22098,0 0.36055,0.104675 0.13956,0.09304 0.16283,0.314025 l 0.17445,1.209579 q 0.73273,-0.81414 1.63991,-1.302623 0.90719,-0.500115 2.09351,-0.500115 0.93044,0 1.62827,0.314026 0.70947,0.302394 1.18632,0.872292 0.47686,0.558267 0.7211,1.360776 0.24424,0.790879 0.24424,1.756216 v 7.245843 h -2.04698 v -7.245843 q 0,-1.267732 -0.58153,-1.977196 -0.5699,-0.709465 -1.74458,-0.709465 -0.8723,0 -1.62828,0.4187 -0.75599,0.40707 -1.38404,1.139796 v 8.374008 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path696" />
<path
d="m 160.76758,45.718177 q -1.11654,0.82577 -2.38427,1.23284 -1.2561,0.40707 -2.73318,0.40707 -1.77948,0 -3.22167,-0.569898 -1.43056,-0.569898 -2.44242,-1.593387 -1.01186,-1.035121 -1.55849,-2.465681 -0.54664,-1.44219 -0.54664,-3.175144 0,-1.744585 0.52337,-3.175145 0.53501,-1.44219 1.51198,-2.46568 0.9886,-1.035121 2.38426,-1.605018 1.39567,-0.569898 3.12863,-0.569898 0.88392,0 1.62828,0.139567 0.75598,0.127936 1.39566,0.383808 0.63969,0.244242 1.17469,0.60479 0.54664,0.360547 1.01186,0.802509 l -0.59316,0.953706 q -0.13956,0.232612 -0.37218,0.290765 -0.23261,0.05815 -0.50011,-0.104676 -0.2675,-0.151197 -0.59316,-0.360547 -0.31402,-0.220981 -0.75599,-0.40707 -0.44196,-0.19772 -1.04675,-0.337286 -0.60479,-0.139567 -1.43056,-0.139567 -1.20958,0 -2.19817,0.4187 -0.97697,0.418701 -1.67481,1.197949 -0.6862,0.779248 -1.05838,1.895782 -0.37218,1.104904 -0.37218,2.477311 0,1.430559 0.38381,2.570355 0.39544,1.128165 1.11654,1.919043 0.73272,0.779248 1.75621,1.197949 1.02349,0.40707 2.29122,0.40707 0.97697,0 1.74459,-0.220981 0.76762,-0.232611 1.51197,-0.639681 v -3.349603 h -2.19817 q -0.20935,0 -0.33729,-0.116306 -0.12794,-0.116306 -0.12794,-0.290764 V 39.83311 h 4.58245 v 5.885067 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path698" />
<path
d="m 162.88434,47.195259 z m 5.35006,-11.549153 q 1.02349,0 1.89578,0.337287 0.87229,0.337286 1.51197,0.988598 0.63968,0.651312 1.00023,1.593388 0.36055,0.942075 0.36055,2.163285 0,0.476853 -0.10468,0.639681 -0.10467,0.151198 -0.38381,0.151198 h -7.60639 q 0.0233,1.070012 0.29077,1.872521 0.2675,0.790878 0.73272,1.314254 0.47686,0.523375 1.12817,0.790878 0.65131,0.255873 1.45382,0.255873 0.74436,0 1.29099,-0.162828 0.54664,-0.174459 0.93045,-0.383809 0.39544,-0.20935 0.66294,-0.372178 0.2675,-0.174458 0.46522,-0.174458 0.12794,0 0.22098,0.05815 0.093,0.04652 0.16283,0.139567 l 0.58153,0.744356 q -0.38381,0.453593 -0.90718,0.790879 -0.51175,0.325656 -1.10491,0.546637 -0.59316,0.20935 -1.23284,0.314025 -0.62805,0.104675 -1.24447,0.104675 -1.18632,0 -2.18655,-0.395439 -1.00022,-0.39544 -1.73295,-1.163057 -0.72109,-0.779248 -1.12816,-1.907413 -0.40707,-1.139795 -0.40707,-2.616877 0,-1.186318 0.36054,-2.209808 0.37218,-1.035121 1.05838,-1.791107 0.69784,-0.767618 1.68644,-1.197949 1.00023,-0.430331 2.2447,-0.430331 z m 0.0349,1.488713 q -1.43056,0 -2.26796,0.837401 -0.82577,0.8374 -1.03512,2.291221 h 6.19909 q 0,-0.686203 -0.19772,-1.256101 -0.19772,-0.581528 -0.5699,-0.988598 -0.37218,-0.418701 -0.91881,-0.651312 -0.53501,-0.232611 -1.20958,-0.232611 z m 2.87275,-6.210723 -2.62851,2.896011 q -0.16283,0.174459 -0.32566,0.244242 -0.15119,0.06978 -0.3838,0.06978 h -1.22121 l 1.66317,-2.709922 q 0.15119,-0.255873 0.33728,-0.372179 0.18609,-0.127936 0.55827,-0.127936 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path700" />
<path
d="M 175.49188,47.195259 V 35.820565 h 1.22121 q 0.22098,0 0.36054,0.104675 0.13957,0.09304 0.16283,0.314025 l 0.17446,1.209579 q 0.73273,-0.81414 1.63991,-1.302623 0.90718,-0.500115 2.0935,-0.500115 0.93045,0 1.62828,0.314026 0.70947,0.302394 1.18632,0.872292 0.47685,0.558267 0.72109,1.360776 0.24425,0.790879 0.24425,1.756216 v 7.245843 h -2.04698 v -7.245843 q 0,-1.267732 -0.58153,-1.977196 -0.5699,-0.709465 -1.74459,-0.709465 -0.87229,0 -1.62828,0.4187 -0.75598,0.40707 -1.38403,1.139796 v 8.374008 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path702" />
<path
d="m 187.25037,47.195259 z m 5.35006,-11.549153 q 1.02349,0 1.89578,0.337287 0.8723,0.337286 1.51198,0.988598 0.63968,0.651312 1.00023,1.593388 0.36054,0.942075 0.36054,2.163285 0,0.476853 -0.10467,0.639681 -0.10468,0.151198 -0.38381,0.151198 h -7.60639 q 0.0233,1.070012 0.29076,1.872521 0.26751,0.790878 0.73273,1.314254 0.47685,0.523375 1.12816,0.790878 0.65132,0.255873 1.45383,0.255873 0.74435,0 1.29099,-0.162828 0.54663,-0.174459 0.93044,-0.383809 0.39544,-0.20935 0.66295,-0.372178 0.2675,-0.174458 0.46522,-0.174458 0.12793,0 0.22098,0.05815 0.093,0.04652 0.16283,0.139567 l 0.58153,0.744356 q -0.38381,0.453593 -0.90719,0.790879 -0.51174,0.325656 -1.1049,0.546637 -0.59316,0.20935 -1.23284,0.314025 -0.62805,0.104675 -1.24447,0.104675 -1.18632,0 -2.18655,-0.395439 -1.00023,-0.39544 -1.73295,-1.163057 -0.7211,-0.779248 -1.12817,-1.907413 -0.40707,-1.139795 -0.40707,-2.616877 0,-1.186318 0.36055,-2.209808 0.37218,-1.035121 1.05838,-1.791107 0.69783,-0.767618 1.68643,-1.197949 1.00023,-0.430331 2.2447,-0.430331 z m 0.0349,1.488713 q -1.43056,0 -2.26796,0.837401 -0.82577,0.8374 -1.03512,2.291221 h 6.19909 q 0,-0.686203 -0.19772,-1.256101 -0.19771,-0.581528 -0.56989,-0.988598 -0.37218,-0.418701 -0.91882,-0.651312 -0.535,-0.232611 -1.20958,-0.232611 z m 2.87275,-6.210723 -2.6285,2.896011 q -0.16283,0.174459 -0.32566,0.244242 -0.1512,0.06978 -0.38381,0.06978 h -1.22121 l 1.66317,-2.709922 q 0.1512,-0.255873 0.33729,-0.372179 0.18609,-0.127936 0.55827,-0.127936 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path704" />
<path
d="M 199.75323,47.195259 V 35.820565 h 1.17469 q 0.32565,0 0.45359,0.127936 0.13957,0.127936 0.16283,0.430331 l 0.13956,1.674802 q 0.52338,-1.128165 1.291,-1.779477 0.76761,-0.651312 1.84926,-0.651312 0.36054,0 0.67457,0.08141 0.31403,0.06978 0.5699,0.244242 l -0.16283,1.511974 q -0.0349,0.290764 -0.32566,0.290764 -0.16282,0 -0.46522,-0.05815 -0.29076,-0.06978 -0.65131,-0.06978 -0.52338,0 -0.93045,0.162828 -0.39544,0.151197 -0.72109,0.465222 -0.31403,0.302395 -0.55827,0.744357 -0.24424,0.441961 -0.45359,1.011859 v 7.18769 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path706" />
<path
d="m 215.08233,47.195259 q -0.3024,0 -0.46523,-0.09304 -0.16282,-0.09305 -0.22098,-0.383809 l -0.25587,-1.058382 q -0.44196,0.40707 -0.87229,0.732726 -0.4187,0.314025 -0.88393,0.535006 -0.46522,0.220981 -1.00022,0.325656 -0.53501,0.116306 -1.17469,0.116306 -0.66294,0 -1.24447,-0.174459 -0.5699,-0.186089 -1.01186,-0.558267 -0.43033,-0.383809 -0.6862,-0.942076 -0.24425,-0.569898 -0.24425,-1.337515 0,-0.674573 0.36055,-1.290993 0.37218,-0.628051 1.19795,-1.116535 0.82577,-0.488483 2.15165,-0.790878 1.32589,-0.314025 3.25656,-0.360548 v -0.872292 q 0,-1.325885 -0.56989,-1.988827 -0.55827,-0.674573 -1.63991,-0.674573 -0.7211,0 -1.22121,0.186089 -0.48849,0.186089 -0.84904,0.40707 -0.36054,0.220981 -0.62805,0.40707 -0.25587,0.186089 -0.52337,0.186089 -0.20935,0 -0.36055,-0.104675 -0.1512,-0.104675 -0.24424,-0.267503 l -0.37218,-0.651312 q 0.94208,-0.907184 2.02372,-1.349146 1.09327,-0.453592 2.41916,-0.453592 0.9537,0 1.69806,0.314025 0.74436,0.302395 1.24447,0.872293 0.50011,0.569898 0.75599,1.360776 0.2675,0.790879 0.2675,1.756216 v 7.269104 z m -4.25679,-1.256101 q 0.51174,0 0.94207,-0.104675 0.43034,-0.104675 0.81414,-0.290764 0.38381,-0.19772 0.7211,-0.476854 0.34892,-0.290764 0.6862,-0.639681 V 42.07781 q -1.36077,0.05815 -2.31448,0.232611 -0.95371,0.162828 -1.5585,0.441962 -0.59315,0.279133 -0.86066,0.662942 -0.2675,0.372178 -0.2675,0.837401 0,0.441961 0.13957,0.767617 0.15119,0.314025 0.39544,0.523376 0.24424,0.197719 0.58152,0.302394 0.33729,0.09304 0.7211,0.09304 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path708" />
<path
d="m 221.21163,30.656593 v 16.538666 h -2.04698 V 30.656593 Z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path710" />
<path
d="m 229.14368,35.646106 q 1.02348,0 1.89578,0.337287 0.87229,0.337286 1.51197,0.988598 0.63968,0.651312 1.00023,1.593388 0.36055,0.942075 0.36055,2.163285 0,0.476853 -0.10468,0.639681 -0.10467,0.151198 -0.38381,0.151198 h -7.60639 q 0.0233,1.070012 0.29077,1.872521 0.2675,0.790878 0.73272,1.314254 0.47686,0.523375 1.12817,0.790878 0.65131,0.255873 1.45382,0.255873 0.74435,0 1.29099,-0.162828 0.54664,-0.174459 0.93045,-0.383809 0.39544,-0.20935 0.66294,-0.372178 0.2675,-0.174458 0.46522,-0.174458 0.12794,0 0.22098,0.05815 0.0931,0.04652 0.16283,0.139567 l 0.58153,0.744356 q -0.38381,0.453593 -0.90719,0.790879 -0.51174,0.325656 -1.1049,0.546637 -0.59316,0.20935 -1.23284,0.314025 -0.62805,0.104675 -1.24447,0.104675 -1.18632,0 -2.18655,-0.395439 -1.00023,-0.39544 -1.73295,-1.163057 -0.7211,-0.779248 -1.12817,-1.907413 -0.40707,-1.139795 -0.40707,-2.616877 0,-1.186318 0.36055,-2.209808 0.37218,-1.035121 1.05838,-1.791107 0.69784,-0.767618 1.68644,-1.197949 1.00022,-0.430331 2.2447,-0.430331 z m 0.0349,1.488713 q -1.43056,0 -2.26796,0.837401 -0.82577,0.8374 -1.03512,2.291221 h 6.19909 q 0,-0.686203 -0.19772,-1.256101 -0.19772,-0.581528 -0.5699,-0.988598 -0.37218,-0.418701 -0.91881,-0.651312 -0.53501,-0.232611 -1.20958,-0.232611 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path712" />
<path
d="m 40.298163,61.9195 q 0.267503,0 0.40707,0.06978 0.139567,0.05815 0.314025,0.290764 l 8.304225,11.432847 q -0.02326,-0.279133 -0.04652,-0.546636 -0.01163,-0.279134 -0.01163,-0.511745 V 61.9195 h 1.860891 v 15.282565 h -1.070012 q -0.244242,0 -0.418701,-0.08141 -0.162828,-0.08141 -0.325656,-0.290765 L 41.007628,65.431931 q 0.02326,0.267503 0.03489,0.511745 0.01163,0.244242 0.01163,0.465223 V 77.202065 H 39.193259 V 61.9195 h 1.104904 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path714" />
<path
d="m 56.348345,65.82737 v 7.245843 q 0,1.279363 0.569898,1.988827 0.581528,0.697834 1.756216,0.697834 0.872292,0 1.616648,-0.40707 0.755987,-0.4187 1.395668,-1.139795 V 65.82737 h 2.04698 v 11.374695 h -1.23284 q -0.20935,0 -0.348917,-0.09305 -0.139567,-0.104675 -0.162828,-0.325656 l -0.186089,-1.209579 q -0.732726,0.81414 -1.63991,1.314254 -0.895553,0.488484 -2.081871,0.488484 -0.930446,0 -1.63991,-0.302395 -0.697834,-0.314025 -1.174687,-0.872292 -0.476854,-0.569898 -0.721096,-1.360777 -0.244241,-0.802509 -0.244241,-1.767846 V 65.82737 Z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path716" />
<path
d="M 67.071727,77.202065 V 65.82737 h 1.209579 q 0.232611,0 0.360548,0.104675 0.139566,0.09305 0.162828,0.314026 l 0.174458,1.163056 q 0.325656,-0.383808 0.674573,-0.697834 0.360548,-0.325656 0.767617,-0.558267 0.40707,-0.244242 0.872293,-0.372178 0.465223,-0.127936 0.988598,-0.127936 1.174687,0 1.907413,0.639681 0.744356,0.639681 1.058382,1.721324 0.244242,-0.628051 0.639681,-1.070012 0.40707,-0.441962 0.895553,-0.732726 0.488484,-0.290764 1.046751,-0.418701 0.558268,-0.139566 1.139796,-0.139566 1.860891,0 2.87275,1.116534 1.02349,1.116535 1.02349,3.186775 v 7.245844 h -2.04698 v -7.245844 q 0,-1.325884 -0.604789,-2.000457 -0.60479,-0.686204 -1.732955,-0.686204 -0.511745,0 -0.965337,0.174459 -0.453592,0.162828 -0.802509,0.511745 -0.337286,0.337286 -0.546637,0.837401 -0.197719,0.500114 -0.197719,1.163056 v 7.245844 h -2.04698 v -7.245844 q 0,-1.360776 -0.569898,-2.023718 -0.558267,-0.662943 -1.65154,-0.662943 -0.744357,0 -1.395668,0.39544 -0.651312,0.383808 -1.186318,1.070012 v 8.467053 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path718" />
<path
d="m 85.261933,77.202065 z m 5.350061,-11.549153 q 1.02349,0 1.895782,0.337286 0.872293,0.337287 1.511974,0.988598 0.639681,0.651312 1.000229,1.593388 0.360547,0.942076 0.360547,2.163285 0,0.476854 -0.104675,0.639682 -0.104675,0.151197 -0.383808,0.151197 h -7.606391 q 0.02326,1.070012 0.290764,1.872521 0.267503,0.790879 0.732726,1.314254 0.476853,0.523376 1.128165,0.790879 0.651312,0.255872 1.453821,0.255872 0.744356,0 1.290993,-0.162828 0.546636,-0.174458 0.930445,-0.383808 0.395439,-0.209351 0.662942,-0.372179 0.267503,-0.174458 0.465223,-0.174458 0.127936,0 0.220981,0.05815 0.09304,0.04652 0.162828,0.139567 l 0.581528,0.744356 q -0.383809,0.453592 -0.907184,0.790878 -0.511745,0.325656 -1.104904,0.546637 -0.593159,0.20935 -1.23284,0.314025 -0.628051,0.104675 -1.244471,0.104675 -1.186318,0 -2.186546,-0.395439 -1.000229,-0.395439 -1.732955,-1.163057 -0.721095,-0.779247 -1.128165,-1.907412 -0.40707,-1.139796 -0.40707,-2.616878 0,-1.186318 0.360548,-2.209808 0.372178,-1.03512 1.058381,-1.791107 0.697834,-0.767617 1.686433,-1.197948 1.000228,-0.430331 2.244699,-0.430331 z m 0.03489,1.488712 q -1.43056,0 -2.267961,0.837401 -0.82577,0.837401 -1.03512,2.291222 h 6.199092 q 0,-0.686204 -0.19772,-1.256102 -0.197719,-0.581528 -0.569898,-0.988598 -0.372178,-0.4187 -0.918814,-0.651311 -0.535006,-0.232612 -1.209579,-0.232612 z m 2.87275,-6.210722 -2.628508,2.896011 q -0.162828,0.174458 -0.325656,0.244242 -0.151198,0.06978 -0.383809,0.06978 h -1.221209 l 1.663171,-2.709922 q 0.151197,-0.255873 0.337286,-0.372178 0.186089,-0.127936 0.558267,-0.127936 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path720" />
<path
d="M 97.764792,77.202065 V 65.82737 h 1.174688 q 0.325655,0 0.453592,0.127936 0.139566,0.127937 0.162828,0.430331 l 0.139566,1.674802 q 0.523374,-1.128165 1.290994,-1.779477 0.76762,-0.651311 1.84926,-0.651311 0.36055,0 0.67457,0.08141 0.31403,0.06978 0.5699,0.244241 l -0.16283,1.511974 q -0.0349,0.290764 -0.32565,0.290764 -0.16283,0 -0.46523,-0.05815 -0.29076,-0.06978 -0.65131,-0.06978 -0.52337,0 -0.93044,0.162828 -0.39544,0.151197 -0.7211,0.465223 -0.31402,0.302394 -0.55827,0.744356 -0.24424,0.441961 -0.453588,1.011859 v 7.187691 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path722" />
<path
d="m 105.82478,77.202065 z m 2.47731,-11.374695 v 11.374695 h -2.04698 V 65.82737 Z m 0.39544,-3.558953 q 0,0.290764 -0.11631,0.558267 -0.11631,0.255872 -0.32566,0.453592 -0.19771,0.186089 -0.46522,0.302395 -0.25587,0.116305 -0.54663,0.116305 -0.29077,0 -0.54664,-0.116305 -0.25587,-0.116306 -0.45359,-0.302395 -0.18609,-0.19772 -0.3024,-0.453592 -0.1163,-0.267503 -0.1163,-0.558267 0,-0.302395 0.1163,-0.558267 0.11631,-0.267503 0.3024,-0.465223 0.19772,-0.19772 0.45359,-0.314025 0.25587,-0.116306 0.54664,-0.116306 0.29076,0 0.54663,0.116306 0.26751,0.116305 0.46522,0.314025 0.20935,0.19772 0.32566,0.465223 0.11631,0.255872 0.11631,0.558267 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path724" />
<path
d="m 120.88636,65.82737 v 15.212782 h -2.04698 v -5.501259 q -0.70946,0.837401 -1.61664,1.337516 -0.90719,0.488483 -2.07025,0.488483 -0.97696,0 -1.76784,-0.372178 -0.79088,-0.383808 -1.34915,-1.116534 -0.55826,-0.732726 -0.86066,-1.814369 -0.30239,-1.093273 -0.30239,-2.512202 0,-1.256101 0.33728,-2.337744 0.33729,-1.093273 0.96534,-1.884152 0.62805,-0.790878 1.53523,-1.24447 0.90719,-0.453592 2.04698,-0.453592 1.10491,0 1.86089,0.395439 0.76762,0.383809 1.36078,1.093273 l 0.1512,-0.872292 q 0.0814,-0.418701 0.535,-0.418701 z m -5.07092,9.897613 q 0.96533,0 1.68643,-0.441962 0.72109,-0.453592 1.33751,-1.256101 v -5.501258 q -0.52337,-0.709465 -1.18631,-1.01186 -0.65132,-0.314025 -1.43056,-0.314025 -1.5585,0 -2.40753,1.128165 -0.8374,1.128165 -0.8374,3.221667 0,1.104904 0.18609,1.895782 0.19772,0.790879 0.55826,1.302624 0.37218,0.500114 0.89556,0.744356 0.535,0.232612 1.19795,0.232612 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path726" />
<path
d="m 126.02707,65.82737 v 7.245843 q 0,1.279363 0.5699,1.988827 0.58153,0.697834 1.75622,0.697834 0.87229,0 1.61664,-0.40707 0.75599,-0.4187 1.39567,-1.139795 V 65.82737 h 2.04698 v 11.374695 h -1.23284 q -0.20935,0 -0.34891,-0.09305 -0.13957,-0.104675 -0.16283,-0.325656 l -0.18609,-1.209579 q -0.73273,0.81414 -1.63991,1.314254 -0.89556,0.488484 -2.08187,0.488484 -0.93045,0 -1.63991,-0.302395 -0.69784,-0.314025 -1.17469,-0.872292 -0.47685,-0.569898 -0.7211,-1.360777 -0.24424,-0.802509 -0.24424,-1.767846 V 65.82737 Z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path728" />
<path
d="m 141.26311,65.652912 q 1.02349,0 1.89579,0.337286 0.87229,0.337287 1.51197,0.988598 0.63968,0.651312 1.00023,1.593388 0.36055,0.942076 0.36055,2.163285 0,0.476854 -0.10468,0.639682 -0.10467,0.151197 -0.38381,0.151197 h -7.60639 q 0.0233,1.070012 0.29077,1.872521 0.2675,0.790879 0.73272,1.314254 0.47685,0.523376 1.12817,0.790879 0.65131,0.255872 1.45382,0.255872 0.74435,0 1.29099,-0.162828 0.54664,-0.174458 0.93045,-0.383808 0.39543,-0.209351 0.66294,-0.372179 0.2675,-0.174458 0.46522,-0.174458 0.12794,0 0.22098,0.05815 0.0931,0.04652 0.16283,0.139567 l 0.58153,0.744356 q -0.38381,0.453592 -0.90719,0.790878 -0.51174,0.325656 -1.1049,0.546637 -0.59316,0.20935 -1.23284,0.314025 -0.62805,0.104675 -1.24447,0.104675 -1.18632,0 -2.18655,-0.395439 -1.00023,-0.395439 -1.73295,-1.163057 -0.7211,-0.779247 -1.12817,-1.907412 -0.40707,-1.139796 -0.40707,-2.616878 0,-1.186318 0.36055,-2.209808 0.37218,-1.03512 1.05838,-1.791107 0.69784,-0.767617 1.68643,-1.197948 1.00023,-0.430331 2.2447,-0.430331 z m 0.0349,1.488712 q -1.43055,0 -2.26796,0.837401 -0.82577,0.837401 -1.03512,2.291222 h 6.1991 q 0,-0.686204 -0.19772,-1.256102 -0.19772,-0.581528 -0.5699,-0.988598 -0.37218,-0.4187 -0.91882,-0.651311 -0.535,-0.232612 -1.20958,-0.232612 z"
style="font-weight:300;font-family:Carlito;-inkscape-font-specification:'Carlito Light'"
id="path730" />
</g>
</g>
<g
aria-label="démarches normaliennes"
id="text1537"
style="font-weight:bold;font-size:20.6667px;line-height:1.25;font-family:Marianne;-inkscape-font-specification:'Marianne Bold';letter-spacing:0.91px;fill:#000000">
<path
d="m 111.96941,24.152809 q -0.19173,0 -0.31282,-0.08073 -0.1211,-0.09082 -0.14128,-0.282553 l -0.18164,-1.180666 q -0.62565,0.756837 -1.42285,1.221031 -0.7972,0.464193 -1.84669,0.464193 -0.83756,0 -1.52376,-0.322917 -0.67611,-0.333008 -1.16048,-0.968751 -0.48438,-0.635744 -0.74675,-1.574222 -0.26237,-0.948569 -0.26237,-2.179691 0,-1.089845 0.28255,-2.028323 0.29265,-0.94857 0.83757,-1.634769 0.54492,-0.686199 1.32194,-1.079754 0.78711,-0.393555 1.77605,-0.393555 0.89811,0 1.53385,0.302735 0.63575,0.292643 1.13021,0.847657 V 9.8031764 h 1.77605 V 24.152809 Z m -3.33008,-1.281577 q 0.83757,0 1.45313,-0.383465 0.62565,-0.393555 1.16048,-1.089845 v -4.77312 q -0.47428,-0.635743 -1.0293,-0.888022 -0.55501,-0.26237 -1.23112,-0.26237 -1.34212,0 -2.06869,0.978842 -0.72656,0.978843 -0.72656,2.795252 0,0.958661 0.16146,1.64486 0.17155,0.686199 0.48437,1.13021 0.31283,0.43392 0.76693,0.645834 0.4541,0.201824 1.0293,0.201824 z"
style="font-weight:normal;font-family:Carlito;-inkscape-font-specification:Carlito;fill:#000000"
id="path472" />
<path
d="m 116.14895,24.152809 z m 4.64194,-10.020524 q 0.88802,0 1.64485,0.292644 0.75684,0.292643 1.31186,0.857748 0.55501,0.565106 0.86784,1.38249 0.31282,0.817384 0.31282,1.876956 0,0.413738 -0.0908,0.555014 -0.0908,0.131185 -0.33301,0.131185 h -6.59962 q 0.0202,0.928387 0.25228,1.624677 0.2321,0.686199 0.63575,1.140301 0.41373,0.454103 0.97884,0.686199 0.5651,0.222006 1.26139,0.222006 0.64584,0 1.12012,-0.141276 0.47429,-0.151368 0.8073,-0.333009 0.34309,-0.181641 0.57519,-0.322917 0.2321,-0.151367 0.40365,-0.151367 0.111,0 0.19173,0.05046 0.0807,0.04036 0.14128,0.121094 l 0.50455,0.645834 q -0.333,0.393555 -0.78711,0.686199 -0.44401,0.282552 -0.95866,0.474285 -0.51465,0.18164 -1.06966,0.272461 -0.54492,0.09082 -1.07975,0.09082 -1.0293,0 -1.89714,-0.343099 -0.86784,-0.3431 -1.50359,-1.009116 -0.62565,-0.676108 -0.97884,-1.654951 -0.35319,-0.988934 -0.35319,-2.270511 0,-1.029299 0.31283,-1.917321 0.32291,-0.898114 0.91829,-1.554039 0.60547,-0.666017 1.46322,-1.03939 0.86784,-0.373373 1.9476,-0.373373 z m 0.0303,1.291669 q -1.24121,0 -1.96778,0.726563 -0.71647,0.726564 -0.89811,1.987959 h 5.37859 q 0,-0.595378 -0.17155,-1.089845 -0.17155,-0.504558 -0.49447,-0.857749 -0.32292,-0.363282 -0.7972,-0.565105 -0.46419,-0.201823 -1.04948,-0.201823 z m 2.49252,-5.388681 -2.28061,2.5127 q -0.14127,0.151367 -0.28255,0.211914 -0.13118,0.06055 -0.33301,0.06055 h -1.05957 l 1.44304,-2.351241 q 0.13118,-0.222005 0.29264,-0.322917 0.16146,-0.111003 0.48438,-0.111003 z"
style="font-weight:normal;font-family:Carlito;-inkscape-font-specification:Carlito;fill:#000000"
id="path474" />
<path
d="m 128.06841,24.152809 v -9.869157 h 1.04948 q 0.20182,0 0.31283,0.09082 0.12109,0.08073 0.14127,0.272461 l 0.15137,1.009116 q 0.28255,-0.333008 0.58529,-0.605469 0.31282,-0.282553 0.66601,-0.484376 0.35319,-0.211914 0.75684,-0.322917 0.40365,-0.111003 0.85775,-0.111003 1.01921,0 1.65495,0.555014 0.64584,0.555014 0.9183,1.493492 0.21191,-0.544923 0.55501,-0.928387 0.35319,-0.383464 0.77702,-0.635743 0.42383,-0.252279 0.9082,-0.363282 0.48438,-0.121094 0.98894,-0.121094 1.61458,0 2.49252,0.968752 0.88802,0.968751 0.88802,2.764978 v 6.286794 h -1.77605 v -6.286794 q 0,-1.150392 -0.52474,-1.73568 -0.52474,-0.595378 -1.50358,-0.595378 -0.44401,0 -0.83757,0.151367 -0.39355,0.141276 -0.69629,0.444011 -0.29264,0.292644 -0.47428,0.726564 -0.17155,0.43392 -0.17155,1.009116 v 6.286794 h -1.77605 v -6.286794 q 0,-1.180666 -0.49446,-1.755862 -0.48438,-0.575196 -1.43295,-0.575196 -0.64583,0 -1.21094,0.343099 -0.5651,0.333008 -1.0293,0.928387 v 7.346366 z"
style="font-weight:normal;font-family:Carlito;-inkscape-font-specification:Carlito;fill:#000000"
id="path476" />
<path
d="m 151.84498,24.152809 q -0.26237,0 -0.40364,-0.08073 -0.14128,-0.08073 -0.19174,-0.333009 l -0.222,-0.918295 q -0.38346,0.35319 -0.75684,0.635743 -0.36328,0.272461 -0.76693,0.464193 -0.40364,0.191732 -0.86784,0.282553 -0.46419,0.100912 -1.0192,0.100912 -0.5752,0 -1.07976,-0.151368 -0.49446,-0.161458 -0.87793,-0.484376 -0.37337,-0.333008 -0.59538,-0.817384 -0.21191,-0.494467 -0.21191,-1.160483 0,-0.585288 0.31282,-1.120119 0.32292,-0.544923 1.03939,-0.968752 0.71648,-0.423829 1.86687,-0.686199 1.15039,-0.272461 2.82552,-0.312826 v -0.756837 q 0,-1.150393 -0.49446,-1.725589 -0.48438,-0.585287 -1.42286,-0.585287 -0.62565,0 -1.05957,0.161458 -0.42383,0.161459 -0.73665,0.353191 -0.31283,0.191732 -0.54493,0.353191 -0.222,0.161458 -0.4541,0.161458 -0.18164,0 -0.31282,-0.09082 -0.13119,-0.09082 -0.21192,-0.232097 l -0.32292,-0.565105 q 0.81739,-0.787111 1.75587,-1.170575 0.94857,-0.393555 2.09896,-0.393555 0.82747,0 1.47331,0.272461 0.64583,0.26237 1.07975,0.756837 0.43392,0.494467 0.65593,1.180666 0.23209,0.686199 0.23209,1.523766 v 6.306976 z m -3.69336,-1.089845 q 0.44401,0 0.81738,-0.09082 0.37338,-0.09082 0.70638,-0.252279 0.33301,-0.17155 0.62566,-0.413738 0.30273,-0.252279 0.59537,-0.555013 v -2.038415 q -1.18066,0.05046 -2.00814,0.201823 -0.82747,0.141276 -1.35221,0.383464 -0.51465,0.242188 -0.74675,0.575196 -0.2321,0.322918 -0.2321,0.726564 0,0.383464 0.1211,0.666017 0.13118,0.272461 0.3431,0.454102 0.21191,0.17155 0.50456,0.26237 0.29264,0.08073 0.62565,0.08073 z"
style="font-weight:normal;font-family:Carlito;-inkscape-font-specification:Carlito;fill:#000000"
id="path478" />
<path
d="m 156.13552,24.152809 v -9.869157 h 1.01921 q 0.28255,0 0.39355,0.111003 0.1211,0.111003 0.14128,0.373373 l 0.12109,1.453128 q 0.45411,-0.978843 1.12012,-1.543948 0.66602,-0.565105 1.6045,-0.565105 0.31282,0 0.58529,0.07064 0.27246,0.06055 0.49446,0.211914 l -0.14127,1.311851 q -0.0303,0.252279 -0.28256,0.252279 -0.14127,0 -0.40364,-0.05046 -0.25228,-0.06055 -0.56511,-0.06055 -0.4541,0 -0.80729,0.141276 -0.3431,0.131185 -0.62565,0.403646 -0.27246,0.262371 -0.48438,0.645835 -0.21191,0.383464 -0.39355,0.877931 v 6.236338 z"
style="font-weight:normal;font-family:Carlito;-inkscape-font-specification:Carlito;fill:#000000"
id="path480" />
<path
d="m 170.38604,16.059697 q -0.0807,0.111003 -0.16146,0.17155 -0.0706,0.05046 -0.21191,0.05046 -0.15137,0 -0.31283,-0.121094 -0.16146,-0.121094 -0.40365,-0.262371 -0.24219,-0.151367 -0.59538,-0.272461 -0.3431,-0.121094 -0.84765,-0.121094 -0.66602,0 -1.18067,0.26237 -0.50456,0.252279 -0.84766,0.736655 -0.33301,0.474285 -0.51465,1.160484 -0.17155,0.686199 -0.17155,1.543948 0,0.888022 0.18164,1.584312 0.19174,0.686199 0.53484,1.160484 0.3431,0.474284 0.82747,0.726563 0.48438,0.242188 1.08985,0.242188 0.58528,0 0.95866,-0.151367 0.37337,-0.151368 0.62565,-0.333008 0.25228,-0.181641 0.41374,-0.333009 0.17155,-0.151367 0.35319,-0.151367 0.20182,0 0.32292,0.17155 l 0.51464,0.645834 q -0.32291,0.393555 -0.71647,0.686199 -0.39355,0.282552 -0.84766,0.474285 -0.4541,0.18164 -0.94856,0.272461 -0.48438,0.09082 -0.98894,0.09082 -0.86784,0 -1.62468,-0.343099 -0.75683,-0.3431 -1.32194,-0.988934 -0.55501,-0.655926 -0.87793,-1.594404 -0.31283,-0.948569 -0.31283,-2.159508 0,-1.099937 0.29265,-2.028324 0.29264,-0.938478 0.84766,-1.614586 0.5651,-0.676108 1.38249,-1.049481 0.82747,-0.383464 1.89713,-0.383464 1.00912,0 1.76596,0.3431 0.75683,0.333008 1.34212,0.938478 z"
style="font-weight:normal;font-family:Carlito;-inkscape-font-specification:Carlito;fill:#000000"
id="path482" />
<path
d="M 173.71792,24.152809 V 9.8031764 h 1.77604 v 5.7822356 q 0.61556,-0.666016 1.36231,-1.059572 0.75683,-0.393555 1.74577,-0.393555 0.80729,0 1.41276,0.272461 0.61556,0.262371 1.0293,0.756838 0.41374,0.484375 0.61556,1.180666 0.21191,0.686199 0.21191,1.523765 v 6.286794 h -1.77604 v -6.286794 q 0,-1.099937 -0.49447,-1.715498 -0.49446,-0.61556 -1.51367,-0.61556 -0.75684,0 -1.40267,0.363281 -0.64584,0.363282 -1.19076,0.999025 v 7.255546 z"
style="font-weight:normal;font-family:Carlito;-inkscape-font-specification:Carlito;fill:#000000"
id="path484" />
<path
d="m 189.44175,14.132285 q 0.88802,0 1.64486,0.292644 0.75683,0.292643 1.31185,0.857748 0.55501,0.565106 0.86784,1.38249 0.31282,0.817384 0.31282,1.876956 0,0.413738 -0.0908,0.555014 -0.0908,0.131185 -0.333,0.131185 h -6.59962 q 0.0202,0.928387 0.25227,1.624677 0.2321,0.686199 0.63575,1.140301 0.41374,0.454103 0.97884,0.686199 0.56511,0.222006 1.2614,0.222006 0.64583,0 1.12012,-0.141276 0.47428,-0.151368 0.80729,-0.333009 0.3431,-0.181641 0.57519,-0.322917 0.2321,-0.151367 0.40365,-0.151367 0.111,0 0.19173,0.05046 0.0807,0.04036 0.14128,0.121094 l 0.50456,0.645834 q -0.33301,0.393555 -0.78711,0.686199 -0.44401,0.282552 -0.95866,0.474285 -0.51465,0.18164 -1.06967,0.272461 -0.54492,0.09082 -1.07975,0.09082 -1.0293,0 -1.89714,-0.343099 -0.86784,-0.3431 -1.50358,-1.009116 -0.62566,-0.676108 -0.97885,-1.654951 -0.35319,-0.988934 -0.35319,-2.270511 0,-1.029299 0.31283,-1.917321 0.32292,-0.898114 0.9183,-1.554039 0.60547,-0.666017 1.46321,-1.03939 0.86784,-0.373373 1.9476,-0.373373 z m 0.0303,1.291669 q -1.24121,0 -1.96777,0.726563 -0.71648,0.726564 -0.89812,1.987959 h 5.37859 q 0,-0.595378 -0.17155,-1.089845 -0.17155,-0.504558 -0.49447,-0.857749 -0.32291,-0.363282 -0.7972,-0.565105 -0.46419,-0.201823 -1.04948,-0.201823 z"
style="font-weight:normal;font-family:Carlito;-inkscape-font-specification:Carlito;fill:#000000"
id="path486" />
<path
d="m 202.08777,15.918421 q -0.12109,0.222005 -0.36328,0.222005 -0.15137,0 -0.33301,-0.111002 -0.17155,-0.111003 -0.42383,-0.232097 -0.24219,-0.131185 -0.58529,-0.242188 -0.33301,-0.111003 -0.7972,-0.111003 -0.39355,0 -0.70638,0.111003 -0.31283,0.111003 -0.53483,0.302735 -0.22201,0.191732 -0.3431,0.454102 -0.1211,0.252279 -0.1211,0.544923 0,0.383464 0.20183,0.635743 0.20182,0.252279 0.53483,0.43392 0.33301,0.181641 0.75684,0.333008 0.43392,0.141277 0.87793,0.292644 0.44401,0.151368 0.86784,0.353191 0.43392,0.201823 0.76693,0.494467 0.333,0.292643 0.53483,0.716472 0.20182,0.413738 0.20182,1.009116 0,0.686199 -0.2321,1.271487 -0.23209,0.575196 -0.68619,0.999025 -0.44402,0.423829 -1.11003,0.666017 -0.65593,0.242188 -1.51368,0.242188 -0.97884,0 -1.78613,-0.333009 -0.7972,-0.333008 -1.35222,-0.86784 l 0.41374,-0.666016 q 0.0807,-0.131186 0.19173,-0.201824 0.111,-0.07064 0.28255,-0.07064 0.18164,0 0.36329,0.141276 0.18164,0.131186 0.43392,0.302735 0.26237,0.161459 0.62565,0.302735 0.36328,0.131185 0.9082,0.131185 0.4642,0 0.7972,-0.131185 0.3431,-0.131185 0.56511,-0.343099 0.222,-0.222006 0.33301,-0.51465 0.111,-0.292643 0.111,-0.615561 0,-0.403646 -0.21191,-0.666016 -0.20183,-0.272462 -0.53484,-0.454103 -0.333,-0.191732 -0.76692,-0.333008 -0.42383,-0.141276 -0.87793,-0.292644 -0.44402,-0.161458 -0.87794,-0.35319 -0.42382,-0.201824 -0.75683,-0.504558 -0.33301,-0.312826 -0.54493,-0.756838 -0.20182,-0.444011 -0.20182,-1.079754 0,-0.575196 0.22201,-1.089845 0.222,-0.524741 0.64583,-0.918296 0.42383,-0.393556 1.04948,-0.625652 0.62565,-0.232097 1.43295,-0.232097 0.91829,0 1.66504,0.302735 0.74674,0.302735 1.27148,0.847657 z"
style="font-weight:normal;font-family:Carlito;-inkscape-font-specification:Carlito;fill:#000000"
id="path488" />
<path
d="M 211.0624,24.152809 V 14.132285 h 1.57422 q 0.24219,0 0.40365,0.111003 0.17155,0.111003 0.222,0.343099 l 0.17155,0.736655 q 0.30274,-0.302735 0.62566,-0.544923 0.32291,-0.252279 0.69629,-0.423828 0.37337,-0.181641 0.78711,-0.282553 0.42383,-0.100912 0.92838,-0.100912 0.81739,0 1.44304,0.282553 0.62565,0.282552 1.04948,0.787111 0.42383,0.504558 0.63574,1.210939 0.22201,0.69629 0.22201,1.523766 v 6.377614 h -2.56316 v -6.377614 q 0,-0.857749 -0.39355,-1.332034 -0.39356,-0.474284 -1.18067,-0.474284 -0.58528,0 -1.09993,0.252279 -0.50456,0.252279 -0.95866,0.706381 v 7.225272 z"
style="font-family:Carlito;-inkscape-font-specification:'Carlito Bold';fill:#000000"
id="path490" />
<path
d="m 227.38161,13.970826 q 1.09994,0 2.00814,0.363282 0.9082,0.353191 1.55404,1.029299 0.64583,0.666017 0.99902,1.624677 0.35319,0.948569 0.35319,2.129235 0,1.200848 -0.35319,2.159509 -0.35319,0.95866 -0.99902,1.634768 -0.64584,0.666017 -1.55404,1.029299 -0.9082,0.363282 -2.00814,0.363282 -1.11003,0 -2.02833,-0.363282 -0.9082,-0.363282 -1.56413,-1.029299 -0.64583,-0.676108 -0.99902,-1.634768 -0.35319,-0.958661 -0.35319,-2.159509 0,-1.180666 0.35319,-2.129235 0.35319,-0.95866 0.99902,-1.624677 0.65593,-0.676108 1.56413,-1.029299 0.9183,-0.363282 2.02833,-0.363282 z m 0,8.375665 q 1.16048,0 1.7155,-0.807293 0.55501,-0.817384 0.55501,-2.401697 0,-1.584312 -0.55501,-2.391605 -0.55502,-0.817384 -1.7155,-0.817384 -1.18067,0 -1.74577,0.817384 -0.55502,0.807293 -0.55502,2.391605 0,1.584313 0.55502,2.401697 0.5651,0.807293 1.74577,0.807293 z"
style="font-family:Carlito;-inkscape-font-specification:'Carlito Bold';fill:#000000"
id="path492" />
<path
d="M 234.94168,24.152809 V 14.132285 h 1.50358 q 0.39356,0 0.54492,0.141276 0.16146,0.141277 0.21192,0.494467 l 0.13118,1.019208 q 0.45411,-0.857749 1.05958,-1.352216 0.60546,-0.494467 1.40267,-0.494467 0.65592,0 1.07975,0.312826 l -0.19173,1.917321 q -0.0202,0.181641 -0.12109,0.26237 -0.10092,0.07064 -0.27247,0.07064 -0.15136,0 -0.43392,-0.04037 -0.28255,-0.05045 -0.52474,-0.05045 -0.35319,0 -0.63574,0.100911 -0.27246,0.100912 -0.49447,0.302735 -0.21191,0.191732 -0.38346,0.474285 -0.17155,0.282552 -0.31283,0.645834 v 6.216156 z"
style="font-family:Carlito;-inkscape-font-specification:'Carlito Bold';fill:#000000"
id="path494" />
<path
d="M 243.37968,24.152809 V 14.132285 h 1.57422 q 0.24219,0 0.40365,0.111003 0.17155,0.111003 0.222,0.343099 l 0.17155,0.706382 q 0.27247,-0.282553 0.55502,-0.524741 0.29264,-0.242188 0.62565,-0.413737 0.33301,-0.181641 0.70638,-0.282553 0.38347,-0.100912 0.83757,-0.100912 0.95866,0 1.57422,0.51465 0.62565,0.504558 0.92839,1.342124 0.24218,-0.494467 0.59538,-0.847657 0.36328,-0.353191 0.7972,-0.575197 0.43392,-0.222005 0.9082,-0.322917 0.48438,-0.111003 0.96875,-0.111003 0.84766,0 1.50359,0.262371 0.66601,0.252279 1.11002,0.746746 0.45411,0.484375 0.6862,1.190757 0.2321,0.706381 0.2321,1.604495 v 6.377614 h -2.56316 v -6.377614 q 0,-1.806318 -1.61458,-1.806318 -0.36328,0 -0.67611,0.121093 -0.31283,0.111003 -0.55501,0.3431 -0.2321,0.222006 -0.37338,0.565105 -0.13118,0.333008 -0.13118,0.77702 v 6.377614 h -2.56316 v -6.377614 q 0,-0.968752 -0.40364,-1.38249 -0.40365,-0.423828 -1.17058,-0.423828 -0.51465,0 -0.95866,0.232096 -0.44401,0.232097 -0.82747,0.655926 v 7.29591 z"
style="font-family:Carlito;-inkscape-font-specification:'Carlito Bold';fill:#000000"
id="path496" />
<path
d="m 267.77182,24.152809 q -0.36328,0 -0.55502,-0.100911 -0.19173,-0.111003 -0.30273,-0.43392 l -0.22201,-0.666017 q -0.38346,0.333008 -0.73665,0.585287 -0.35319,0.252279 -0.73666,0.423829 -0.37337,0.17155 -0.80729,0.252279 -0.42383,0.09082 -0.94857,0.09082 -0.64583,0 -1.18066,-0.17155 -0.53484,-0.181641 -0.92839,-0.524741 -0.38347,-0.343099 -0.59538,-0.847657 -0.21191,-0.51465 -0.21191,-1.180666 0,-0.555014 0.28255,-1.110028 0.28255,-0.555014 0.95866,-0.999025 0.6862,-0.454102 1.81641,-0.746746 1.1403,-0.302735 2.83561,-0.3431 v -0.534831 q 0,-0.968752 -0.40364,-1.422854 -0.40365,-0.454102 -1.16049,-0.454102 -0.5651,0 -0.93847,0.131185 -0.36329,0.131185 -0.64584,0.292643 -0.28255,0.151368 -0.52474,0.282553 -0.24219,0.131185 -0.54492,0.131185 -0.26237,0 -0.4541,-0.131185 -0.18164,-0.141276 -0.29265,-0.333008 l -0.46419,-0.807293 q 0.86784,-0.807293 1.91732,-1.200849 1.04948,-0.393555 2.27051,-0.393555 0.87793,0 1.57422,0.292644 0.69629,0.282552 1.18067,0.807293 0.48437,0.514649 0.73665,1.231121 0.25228,0.716473 0.25228,1.574222 v 6.306976 z m -3.51173,-1.594403 q 0.6862,0 1.18067,-0.242188 0.50456,-0.252279 0.99902,-0.766929 v -1.614586 q -0.99902,0.04037 -1.66504,0.17155 -0.65592,0.121094 -1.04948,0.322917 -0.39355,0.191732 -0.5651,0.454103 -0.16146,0.26237 -0.16146,0.565105 0,0.605469 0.33301,0.857748 0.3431,0.25228 0.92838,0.25228 z"
style="font-family:Carlito;-inkscape-font-specification:'Carlito Bold';fill:#000000"
id="path498" />
<path
d="M 274.74661,9.6518089 V 24.152809 h -2.56316 V 9.6518089 Z"
style="font-family:Carlito;-inkscape-font-specification:'Carlito Bold';fill:#000000"
id="path500" />
<path
d="m 277.81612,24.152809 z m 2.91634,-10.020524 v 10.020524 h -2.56315 V 14.132285 Z m 0.31283,-2.875981 q 0,0.333008 -0.13119,0.625652 -0.13118,0.282552 -0.35319,0.504558 -0.222,0.211914 -0.52474,0.343099 -0.30273,0.121094 -0.63574,0.121094 -0.32292,0 -0.61556,-0.121094 -0.28255,-0.131185 -0.50456,-0.343099 -0.21191,-0.222006 -0.3431,-0.504558 -0.12109,-0.292644 -0.12109,-0.625652 0,-0.333009 0.12109,-0.625652 0.13119,-0.292644 0.3431,-0.504558 0.22201,-0.222006 0.50456,-0.3431 0.29264,-0.1311851 0.61556,-0.1311851 0.33301,0 0.63574,0.1311851 0.30274,0.121094 0.52474,0.3431 0.22201,0.211914 0.35319,0.504558 0.13119,0.292643 0.13119,0.625652 z"
style="font-family:Carlito;-inkscape-font-specification:'Carlito Bold';fill:#000000"
id="path502" />
<path
d="m 288.3329,13.970826 q 0.94857,0 1.74578,0.312826 0.7972,0.302735 1.37239,0.888023 0.5752,0.575196 0.89812,1.422854 0.32291,0.847657 0.32291,1.937503 0,0.292643 -0.0303,0.484376 -0.0303,0.18164 -0.10091,0.292643 -0.0606,0.111003 -0.18164,0.161459 -0.111,0.04036 -0.28255,0.04036 h -5.99415 q 0.0605,0.726564 0.26237,1.261396 0.20182,0.534831 0.53483,0.877931 0.33301,0.343099 0.78711,0.514649 0.4541,0.161459 1.00911,0.161459 0.55502,0 0.95866,-0.131185 0.41374,-0.141277 0.71648,-0.292644 0.31282,-0.161459 0.55501,-0.292644 0.24219,-0.141276 0.47429,-0.141276 0.28255,0 0.46419,0.232097 l 0.73665,0.948569 q -0.41373,0.484376 -0.91829,0.807293 -0.50456,0.312826 -1.04948,0.504558 -0.53483,0.181641 -1.08985,0.26237 -0.55501,0.08073 -1.06966,0.08073 -1.03939,0 -1.9375,-0.3431 -0.89812,-0.343099 -1.56413,-1.019207 -0.66602,-0.686199 -1.04949,-1.685224 -0.37337,-1.009117 -0.37337,-2.331059 0,-1.019207 0.33301,-1.917321 0.33301,-0.908204 0.94857,-1.574221 0.62565,-0.676108 1.51367,-1.069663 0.88803,-0.393556 2.00814,-0.393556 z m 0.0505,1.826501 q -0.97884,0 -1.53386,0.575196 -0.55501,0.565105 -0.71647,1.604495 h 4.23829 q 0,-0.43392 -0.12109,-0.827475 -0.11101,-0.393556 -0.36329,-0.696291 -0.24218,-0.302735 -0.61556,-0.474284 -0.37337,-0.181641 -0.88802,-0.181641 z"
style="font-family:Carlito;-inkscape-font-specification:'Carlito Bold';fill:#000000"
id="path504" />
<path
d="M 295.45907,24.152809 V 14.132285 h 1.57422 q 0.24219,0 0.40365,0.111003 0.17155,0.111003 0.222,0.343099 l 0.17155,0.736655 q 0.30274,-0.302735 0.62565,-0.544923 0.32292,-0.252279 0.69629,-0.423828 0.37338,-0.181641 0.78711,-0.282553 0.42383,-0.100912 0.92839,-0.100912 0.81738,0 1.44304,0.282553 0.62565,0.282552 1.04948,0.787111 0.42383,0.504558 0.63574,1.210939 0.22201,0.69629 0.22201,1.523766 v 6.377614 h -2.56316 v -6.377614 q 0,-0.857749 -0.39355,-1.332034 -0.39356,-0.474284 -1.18067,-0.474284 -0.58529,0 -1.09994,0.252279 -0.50455,0.252279 -0.95866,0.706381 v 7.225272 z"
style="font-family:Carlito;-inkscape-font-specification:'Carlito Bold';fill:#000000"
id="path506" />
<path
d="M 307.45925,24.152809 V 14.132285 h 1.57422 q 0.24219,0 0.40365,0.111003 0.17155,0.111003 0.222,0.343099 l 0.17155,0.736655 q 0.30274,-0.302735 0.62566,-0.544923 0.32291,-0.252279 0.69629,-0.423828 0.37337,-0.181641 0.78711,-0.282553 0.42383,-0.100912 0.92838,-0.100912 0.81739,0 1.44304,0.282553 0.62565,0.282552 1.04948,0.787111 0.42383,0.504558 0.63574,1.210939 0.22201,0.69629 0.22201,1.523766 v 6.377614 h -2.56316 v -6.377614 q 0,-0.857749 -0.39355,-1.332034 -0.39356,-0.474284 -1.18067,-0.474284 -0.58528,0 -1.09993,0.252279 -0.50456,0.252279 -0.95866,0.706381 v 7.225272 z"
style="font-family:Carlito;-inkscape-font-specification:'Carlito Bold';fill:#000000"
id="path508" />
<path
d="m 323.64727,13.970826 q 0.94857,0 1.74577,0.312826 0.7972,0.302735 1.3724,0.888023 0.57519,0.575196 0.89811,1.422854 0.32292,0.847657 0.32292,1.937503 0,0.292643 -0.0303,0.484376 -0.0303,0.18164 -0.10091,0.292643 -0.0605,0.111003 -0.18164,0.161459 -0.111,0.04036 -0.28255,0.04036 h -5.99415 q 0.0605,0.726564 0.26237,1.261396 0.20182,0.534831 0.53483,0.877931 0.33301,0.343099 0.78711,0.514649 0.4541,0.161459 1.00912,0.161459 0.55501,0 0.95866,-0.131185 0.41373,-0.141277 0.71647,-0.292644 0.31282,-0.161459 0.55501,-0.292644 0.24219,-0.141276 0.47429,-0.141276 0.28255,0 0.46419,0.232097 l 0.73666,0.948569 q -0.41374,0.484376 -0.9183,0.807293 -0.50456,0.312826 -1.04948,0.504558 -0.53483,0.181641 -1.08985,0.26237 -0.55501,0.08073 -1.06966,0.08073 -1.03939,0 -1.9375,-0.3431 -0.89812,-0.343099 -1.56413,-1.019207 -0.66602,-0.686199 -1.04948,-1.685224 -0.37338,-1.009117 -0.37338,-2.331059 0,-1.019207 0.33301,-1.917321 0.33301,-0.908204 0.94857,-1.574221 0.62565,-0.676108 1.51368,-1.069663 0.88802,-0.393556 2.00814,-0.393556 z m 0.0505,1.826501 q -0.97884,0 -1.53385,0.575196 -0.55502,0.565105 -0.71648,1.604495 h 4.23829 q 0,-0.43392 -0.12109,-0.827475 -0.11101,-0.393556 -0.36328,-0.696291 -0.24219,-0.302735 -0.61557,-0.474284 -0.37337,-0.181641 -0.88802,-0.181641 z"
style="font-family:Carlito;-inkscape-font-specification:'Carlito Bold';fill:#000000"
id="path510" />
<path
d="m 336.58594,16.150517 q -0.10091,0.17155 -0.22201,0.242188 -0.111,0.06055 -0.28255,0.06055 -0.18164,0 -0.38346,-0.09082 -0.19174,-0.100912 -0.43392,-0.211915 -0.2321,-0.121093 -0.53484,-0.211914 -0.30273,-0.100912 -0.69629,-0.100912 -0.60546,0 -0.93847,0.282553 -0.33301,0.272461 -0.33301,0.736655 0,0.312826 0.19173,0.52474 0.19173,0.201823 0.50456,0.363282 0.32292,0.151368 0.71647,0.282553 0.40365,0.131185 0.82748,0.282552 0.42383,0.151368 0.81738,0.363282 0.40365,0.201823 0.71647,0.504558 0.32292,0.302735 0.51465,0.736655 0.19173,0.43392 0.19173,1.03939 0,0.726563 -0.25227,1.342124 -0.25228,0.615561 -0.74675,1.059572 -0.48438,0.444011 -1.21094,0.696291 -0.71647,0.252279 -1.66504,0.252279 -0.48438,0 -0.95866,-0.09082 -0.47429,-0.09082 -0.90821,-0.252279 -0.43392,-0.17155 -0.81738,-0.393555 -0.37337,-0.222006 -0.64584,-0.484376 l 0.59538,-0.968752 q 0.11101,-0.171549 0.26237,-0.272461 0.15137,-0.100912 0.39356,-0.100912 0.222,0 0.41374,0.121094 0.20182,0.121094 0.43392,0.272462 0.23209,0.141276 0.55501,0.26237 0.32292,0.121094 0.80729,0.121094 0.36329,0 0.61556,-0.09082 0.26237,-0.09082 0.41374,-0.242188 0.16146,-0.161458 0.2321,-0.363281 0.0807,-0.201824 0.0807,-0.413738 0,-0.444011 -0.33301,-0.686199 -0.33301,-0.252279 -0.83757,-0.43392 -0.50456,-0.181641 -1.08984,-0.373373 -0.5752,-0.191732 -1.07976,-0.52474 -0.50456,-0.333009 -0.83756,-0.877932 -0.33301,-0.544922 -0.33301,-1.443036 0,-0.625652 0.23209,-1.180666 0.2321,-0.565105 0.6862,-0.988934 0.4642,-0.423828 1.14031,-0.676108 0.68619,-0.252279 1.5944,-0.252279 0.49447,0 0.95866,0.09082 0.46419,0.09082 0.86784,0.26237 0.41374,0.161459 0.74675,0.393555 0.34309,0.232097 0.60547,0.504559 z"
style="font-family:Carlito;-inkscape-font-specification:'Carlito Bold';fill:#000000"
id="path512" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 60 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 6.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 508 B

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 37 KiB

After

Width:  |  Height:  |  Size: 5.6 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 5.6 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 38 KiB

After

Width:  |  Height:  |  Size: 14 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.7 KiB

View file

@ -3,7 +3,6 @@
html, html,
body { body {
min-height: 100vh; min-height: 100vh;
scroll-behavior: smooth;
} }
.page-wrapper { .page-wrapper {

View file

@ -85,11 +85,6 @@
position: relative; position: relative;
} }
.sticky {
position: sticky;
top: 2em;
}
// display // display
.hidden { .hidden {
display: none !important; display: none !important;
@ -103,14 +98,6 @@
visibility: visible; visibility: visible;
} }
.no-wrap {
white-space: nowrap;
}
.width-max-content {
width: max-content;
}
// sizing // sizing
.width-100 { .width-100 {
width: 100%; width: 100%;
@ -142,14 +129,10 @@
} }
} }
// who known // who known
.highlighted { .highlighted {
background-color: var( background: $orange-bg;
--background-contrast-yellow-moutarde color: $black;
); // from fr-badge--new
color: var(--text-label-yellow-tournesol);
padding: 0 0.5rem;
} }
.overflow-y-visible { .overflow-y-visible {

View file

@ -23,4 +23,6 @@ $light-yellow: #FFFFDE;
$blue-france-700: #00006D; $blue-france-700: #00006D;
$blue-france-500: #000091; $blue-france-500: #000091;
$blue-france-400: #7F7FC8; $blue-france-400: #7F7FC8;
$blue-cumulus-950: #E6EEFE;
$g700: #383838; $g700: #383838;
$alt-blue-france: rgba(245, 245, 254, 1);

View file

@ -13,7 +13,3 @@ trix-editor {
min-height: 10em; min-height: 10em;
background-color: #FFFFFF; background-color: #FFFFFF;
} }
[data-fr-theme="dark"] .trix-button-group button {
background: var(--background-action-high-blue-france) !important;
}

View file

@ -0,0 +1,17 @@
// Push the timestamps column to the right of the row
@import "colors";
.admin-procedures-list-timestamps {
margin-left: auto;
}
// Fix a Safari flexbox bug where the inner procedure logo
// would stretch the container vertically.
// See https://stackoverflow.com/questions/57516373/image-stretching-in-flexbox-in-safari
.admin-procedures-list-row.infos {
align-items: flex-start;
a:not(:hover) {
background-image: none; // remove DSFR underline
}
}

View file

@ -1,7 +1,4 @@
.sidebar-filter { .sidebar-filter {
border: none;
padding-left: 0;
ul { ul {
list-style: none; list-style: none;
padding-inline-start: 0; padding-inline-start: 0;

View file

@ -1,175 +0,0 @@
@font-face {
font-family: "Marianne";
src: url("marianne-regular.ttf");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "Marianne";
src: url("marianne-bold.ttf");
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: "Marianne";
src: url("marianne-thin.ttf");
font-weight: 100; // weasy print n"accepte pas lighter
font-style: normal;
}
@page {
size: A4;
margin: 17mm 17mm 34mm; // add margin at the bottom to add address
@bottom-center {
font-size: 8pt;
content: counter(page) " / " counter(pages);
margin-top: 17mm;
}
@bottom-left {
content: element(footer);
}
}
#attestation {
@media screen {
.a4-container {
display: flex;
flex-direction: column;
justify-content: space-between; // This will push the footer down
max-width: 21cm;
height: 29.7cm;
padding: 17mm;
margin: 0 auto;
background: #FFFFFF;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); // Optional: for better visualization
}
}
font-family: Marianne;
header {
display: flex;
justify-content: space-between;
p {
margin: 0;
}
}
.official-layout & {
.direction {
margin-top: 5.25mm;
}
}
.bloc-marque {
margin-bottom: 14mm;
margin-right: 17mm; // 4x 4.25mm
}
.marianne {
height: 4.25mm;
margin-bottom: 1mm;
}
.intitule {
font-size: 12pt;
font-weight: bold;
margin: 0 0 1mm;
line-height: 12pt;
}
.devise {
height: 8.5mm;
margin: 0;
}
// weasyprint flexbox with img is broken
// so we're using old inline tricks
.logo-co-emetteur,
.direction {
display: inline-block;
vertical-align: top;
}
.logo-co-emetteur {
img {
max-height: 28mm;
margin-right: 5mm;
}
}
.direction {
margin: 5.25mm 0 23.3mm;
line-height: 14pt;
font-weight: bold;
}
.body-start {
margin-top: 12.6mm; // from masque traitement de texte
}
.main {
font-size: 10pt;
.header {
&:first-of-type {
font-size: 10pt;
}
&:last-of-type {
font-size: 8pt;
}
}
}
h1,
h2 {
// both titles have the same size
font-size: 12pt;
font-weight: bold;
}
h1 {
margin: 14mm 0 8mm;
}
h2 {
margin: 0;
line-height: 8pt;
}
h3 {
font-size: 10pt; // same as text
font-weight: bold;
line-height: 4pt;
}
li p {
margin: 0.25rem 0;
}
.signature {
text-align: right;
margin-top: 14mm;
margin-right: 25mm;
}
.signature,
.logo-free-layout {
img {
max-height: 50mm;
max-width: 50mm;
}
}
.footer {
position: running(footer);
font-size: 7pt;
font-weight: 100;
}
}

View file

@ -1,88 +0,0 @@
@import "constants";
#attestation-edit {
.attestation-preview {
width: 100%;
@media (min-width: 62em) {
height: 664px; // empirical height for an A4 ratio at this width
}
@media (max-width: 62em) {
// PDF height is approximately tied to width
height: calc(90vw * 29.7 / 21);
}
}
.tiptap {
padding: $default-spacer;
overflow-y: scroll;
min-height: 400px;
}
.editor {
// Visual zones
.header .flex-1,
h1 {
border: 1px solid var(--background-contrast-grey-hover);
padding: $default-spacer / 2;
}
.header,
h1,
h2,
h3 {
margin-bottom: $default-spacer;
}
// Styles
.header {
align-content: center;
p {
margin-bottom: 0rem;
font-size: 0.8rem;
}
}
h1,
h2 {
font-size: 1.25rem;
}
h2 {
line-height: 2rem;
}
h3 {
font-size: 1rem; // same as text
font-weight: bold;
line-height: 1rem;
}
li p {
margin-bottom: 0;
}
// Tags
.fr-menu__list {
max-height: 500px;
}
.fr-tag:not(.fr-menu .fr-tag) {
// style span rendered by tiptap like a button/link tag
color: var(--text-action-high-blue-france);
background-color: var(--background-action-low-blue-france);
}
}
// scss-lint:disable SelectorFormat
#show_maybe_null + label {
margin-bottom: 0.25rem;
.fr-hint-text {
position: absolute;
top: 1.15rem;
}
}
}

View file

@ -10,6 +10,12 @@
// //
// The procedure description can still be read from the /commencer // The procedure description can still be read from the /commencer
// pages. // pages.
@media (max-width: $two-columns-breakpoint) {
.agent-intro {
display: none;
}
}
.column { .column {
padding-top: $default-spacer; padding-top: $default-spacer;
} }
@ -31,6 +37,14 @@
margin-bottom: 0; margin-bottom: 0;
} }
hr {
margin-top: 30px;
margin-bottom: 30px;
background-color: $grey;
border: none;
height: 1px;
}
.register { .register {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;

View file

@ -7,6 +7,7 @@
} }
.autosave-explanation { .autosave-explanation {
color: $dark-grey;
margin-left: 4px; margin-left: 4px;
} }
@ -39,6 +40,10 @@
margin-right: 4px; margin-right: 4px;
} }
.autosave-icon.icon.accept {
vertical-align: -8px;
}
.autosave-retry { .autosave-retry {
&:disabled { &:disabled {
.autosave-retry-label { .autosave-retry-label {

View file

@ -19,16 +19,13 @@
background-color: $orange; background-color: $orange;
color: #FFFFFF; color: #FFFFFF;
} }
}
.badge-group { &.procedure-synthese-badge {
display: flex; color: $white;
background-color: $dark-grey;
.fr-badge { margin-left: 3px;
margin-right: $default-spacer; padding-left: $default-spacer;
} padding-right: $default-spacer;
vertical-align: baseline;
.fr-badge:last-child {
margin-right: 0;
} }
} }

View file

@ -2,14 +2,14 @@
text-align: center; text-align: center;
text-transform: uppercase; text-transform: uppercase;
position: fixed; position: fixed;
top: 26px; bottom: 26px;
right: -35px; right: -35px;
transform: rotate(45deg); transform: rotate(-45deg);
width: 150px; width: 150px;
background-color: #008CBA; background-color: #008CBA;
color: #FFFFFF; color: #FFFFFF;
padding: 5px; padding: 5px;
font-size: 15px; font-size: 15px;
font-weight: 700; font-weight: 700;
z-index: 1000; z-index: 10;
} }

View file

@ -174,27 +174,6 @@
} }
} }
[data-fr-theme="dark"] .dropdown-content {
border: none;
background: var(--background-action-low-blue-france);
}
[data-fr-theme="dark"] .dropdown-items {
li {
&:not(.inactive) {
&:hover,
&.selected {
background: var(--background-action-low-blue-france-hover);
}
}
&.form-inside {
background-color: var(--background-action-low-blue-france);
}
}
}
.dropdown-content { .dropdown-content {
border: 1px solid $border-grey; border: 1px solid $border-grey;
background: #FFFFFF; background: #FFFFFF;
@ -204,7 +183,7 @@
text-align: left; text-align: left;
top: 5 * $default-spacer; top: 5 * $default-spacer;
cursor: default; cursor: default;
z-index: 11; z-index: 10;
list-style: none; list-style: none;
a { a {
@ -239,14 +218,13 @@
ul.dropdown-items { ul.dropdown-items {
padding-inline-start: 0; padding-inline-start: 0;
list-style: none; list-style: none;
margin-top: 0;
margin-bottom: 0;
} }
.dropdown-items { .dropdown-items {
li { li {
display: flex; display: flex;
padding: $default-padding; padding: $default-padding;
color: $dark-grey;
border-bottom: 1px solid $border-grey; border-bottom: 1px solid $border-grey;
font-size: 12px; font-size: 12px;
min-width: 300px; min-width: 300px;
@ -313,6 +291,7 @@ ul.dropdown-items {
h4 { h4 {
font-size: 14px; font-size: 14px;
color: $black;
margin-bottom: $default-spacer; margin-bottom: $default-spacer;
} }
@ -329,6 +308,24 @@ ul.dropdown-items {
width: 340px; width: 340px;
} }
label {
width: 100px;
display: inline-block;
margin-bottom: 2 * $default-spacer;
}
input:not(.fr-btn),
select {
width: 200px;
display: inline-block;
background-color: $light-grey;
border: 1px solid $border-grey;
}
[disabled] {
display: none;
}
ul { ul {
list-style: none; list-style: none;
} }
@ -338,10 +335,6 @@ ul.dropdown-items {
color: $blue-france-500; color: $blue-france-500;
} }
.account-btn { .account-btn::before {
flex-wrap: wrap;
&::before {
content: none !important; content: none !important;
} }
}

View file

@ -1,34 +1,39 @@
@import "colors"; @import "colors";
@import "constants"; @import "constants";
[data-fr-theme="dark"] .card {
background: none;
border: 1px solid var(--background-action-low-blue-france);
}
.card { .card {
padding: ($default-spacer * 3) ($default-spacer * 2); padding: ($default-spacer * 3) ($default-spacer * 2);
border: 1px solid $border-grey; border: 1px solid $border-grey;
margin-bottom: $default-spacer * 4; margin-bottom: $default-spacer * 2;
background: #FFFFFF; background: #FFFFFF;
.notice {
font-size: 16px;
color: #666666;
margin-top: -8px;
margin-bottom: 16px;
}
.card-title { .card-title {
font-weight: bold; font-weight: bold;
font-size: 20px; font-size: 20px;
line-height: 1.5rem;
margin-bottom: $default-spacer * 2; margin-bottom: $default-spacer * 2;
}
a:not(:hover) { &.featured {
background-image: none; // remove DSFR underline border-top: 8px solid $blue-france-500;
.card-title {
color: $blue-france-500;
} }
} }
.logo { &.warning {
width: auto; border-top: 8px solid $orange;
max-width: 50px;
height: 100%; .card-title {
margin-right: $default-spacer * 2; color: $orange;
}
} }
&.feedback { &.feedback {
@ -54,7 +59,7 @@
} }
} }
:not(.fr-downloads-group):not(.fr-pagination) > ul { :not(.fr-downloads-group) > ul {
list-style-type: disc; list-style-type: disc;
list-style-position: inside; list-style-position: inside;
padding-left: $default-padding; padding-left: $default-padding;

View file

@ -1,6 +1,11 @@
@import "colors"; @import "colors";
@import "constants"; @import "constants";
.areas-title {
font-weight: bold;
margin-top: 5px;
margin-bottom: 5px;
}
.areas { .areas {
margin-bottom: 10px; margin-bottom: 10px;

View file

@ -1,22 +0,0 @@
@import "constants";
@import "colors";
.code-example {
background-color: var(--background-contrast-grey);
.example-header {
display: flex;
background-color: var(--background-alt-grey);
align-items: center;
.lang {
margin-right: auto;
padding: $default-padding;
}
}
pre {
padding: 0 $default-padding;
}
}

View file

@ -1,7 +1,21 @@
@import "constants"; @import "constants";
.commencer { .commencer {
@media (max-width: 62em) { @media (min-width: $two-columns-breakpoint) {
.button:first-of-type {
margin-top: 4 * $default-spacer;
}
}
.button {
margin-bottom: 2 * $default-spacer;
}
.optional-on-small-screens {
color: #FFFFFF;
}
@media (max-width: 450px) {
.optional-on-small-screens { .optional-on-small-screens {
display: none; display: none;
} }

View file

@ -31,6 +31,12 @@ form.form > .conditionnel {
.delete-column { .delete-column {
width: 50px; width: 50px;
button {
background: none;
border: none;
cursor: pointer;
}
} }
} }

View file

@ -0,0 +1,66 @@
@import "colors";
@import "constants";
.devise-confirmations {
.one-column-centered {
max-width: 600px;
}
.confirmation-icon,
.confirmation-preamble,
.confirmation-instructions,
.confirmation-separator {
font-size: 1.15em;
margin-bottom: $default-padding * 3;
}
.confirmation-icon {
display: block;
margin-left: auto;
margin-right: auto;
}
.confirmation-instructions {
color: #000000;
background-color: $yellow;
margin-left: -15px;
margin-right: -15px;
padding: 15px 20px 17px 20px;
}
.confirmation-separator {
height: 1px;
margin-left: -12px;
margin-right: -12px;
border: none;
border-top: 1px solid #DDDDDD;
}
.confirmation-resend {
p,
label {
margin-bottom: $default-padding;
}
.form {
display: flex;
flex-wrap: wrap;
label {
flex-basis: 100%;
}
input,
button {
margin-bottom: $default-spacer;
}
input[type=email] {
width: auto;
flex-grow: 1;
margin-right: $default-spacer;
}
}
}
}

View file

@ -1,51 +1,27 @@
@import "colors"; @import "colors";
@import "constants"; @import "constants";
.dossier-show { .demande {
.champ-row { padding-top: 3 * $default-padding;
padding: 0.5rem 1rem; padding-bottom: 3 * $default-padding;
h1 {
margin-bottom: $default-padding;
} }
.champ-label { .intro {
margin-bottom: 0; margin: $default-padding 0;
font-size: 0.8rem;
font-weight: 300;
} }
.champ-content { b {
padding: 0 0 0.5rem; font-weight: bold;
font-weight: 600;
a {
font-weight: normal;
} }
p { hr {
padding: 0; border: none;
margin: 0; height: 1px;
} background-color: $grey;
margin-top: 2 * $default-padding;
ul { margin-bottom: 2 * $default-padding;
margin-block-start: 0;
}
}
.champ-blank {
font-weight: normal;
font-style: italic;
}
.champ-updated {
float: right;
}
.champ-repetition {
.champ-updated {
margin-right: -1rem; // align with non repetition contents and badges
}
}
.top-bordered {
border-top: 1px solid var(--border-default-grey);
} }
} }

View file

@ -3,18 +3,17 @@
$dossier-actions-bar-border-width: 1px; $dossier-actions-bar-border-width: 1px;
[data-fr-theme="dark"] .dossier-edit .dossier-edit-sticky-footer {
background-color: var(--background-action-low-blue-france);
border: none;
}
.dossier-header { .dossier-header {
.fr-container { .container {
padding-bottom: $default-padding; padding-bottom: $default-padding;
} }
h1 { h1 {
font-size: 2rem; font-size: 2rem;
.icon.folder {
vertical-align: -3px;
}
} }
.dossier-form-actions { .dossier-form-actions {
@ -43,6 +42,11 @@ $dossier-actions-bar-border-width: 1px;
} }
} }
.characters-count {
position: relative;
top: -1rem;
}
.warning { .warning {
margin-bottom: 20px; margin-bottom: 20px;
background-color: #f9b91666; background-color: #f9b91666;

View file

@ -4,24 +4,21 @@
.dossier-container { .dossier-container {
.sub-header { .sub-header {
h1 { h1 {
color: $black;
font-size: 22px; font-size: 22px;
margin-bottom: 0; margin-bottom: 0;
} }
h2 { h2 {
color: $dark-grey;
font-weight: bold; font-weight: bold;
} }
.header-actions { .header-actions {
margin-bottom: $default-spacer; margin-bottom: $default-spacer;
display: flex; display: flex;
justify-content: flex-end;
} column-gap: $default-spacer * 2;
}
.edit-identity-content {
.champ-row {
padding: 0;
} }
} }
@ -51,26 +48,3 @@
} }
} }
} }
@media (min-width: 48em) {
.dossier-container {
.header-actions {
flex-direction: row;
justify-content: flex-end;
gap: 0 $default-spacer * 2;
}
}
}
@media (max-width: 48em) {
.dossier-container .header-actions {
flex-direction: column;
justify-content: stretch;
gap: $default-spacer * 2 0;
.dropdown-button {
min-width: 100%;
white-space: normal;
}
}
}

View file

@ -30,14 +30,22 @@
padding: (2 * $default-spacer) $default-spacer; padding: (2 * $default-spacer) $default-spacer;
} }
.icon.folder {
position: relative;
.notifications {
top: -3px;
right: -6px;
}
}
.notification-col { .notification-col {
a { a {
font-size: 16px; font-size: 16px;
} }
} }
.number-col, .number-col {
.fr-badge {
white-space: nowrap; white-space: nowrap;
} }
@ -53,6 +61,11 @@
width: 110px; width: 110px;
} }
.action-col {
text-align: right;
padding-left: $default-spacer;
padding-right: $default-spacer;
}
.follow-col { .follow-col {
width: 450px; width: 450px;

View file

@ -1,13 +1,13 @@
@import "colors"; @import "colors";
// overwrite DSFR style for SimpleFormatComponent, some user use markdown with // override default transparent background on inputs & font-size to 16px by default
// ordered list having paragraph between list item input,
ol.fr-ol-content--override { textarea,
list-style-type: decimal; select,
// FIXME when DSFR is DONE
li::marker { .form-ds-fr-white .fr-input {
content: inherit; background: $white;
} font-size: 1em;
} }
// with Marianne font, weight of font is less bolder, so bold it up // with Marianne font, weight of font is less bolder, so bold it up
@ -19,45 +19,6 @@ trix-editor.fr-input {
max-height: none; max-height: none;
} }
.fr-header {
.fr-notice {
// get back link underlined in notices, because they are usually hidden in headers
--underline-img: linear-gradient(0deg, currentColor, currentColor);
}
}
.fr-label + .fr-ds-combobox {
// same as .fr-label + .fr-input
margin-top: 0.5rem;
}
.fr-ds-combobox {
.fr-menu {
width: 100%;
.fr-menu__list {
width: 100%;
max-height: 300px;
}
}
.fr-autocomplete {
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.031 16.6168L22.3137 20.8995L20.8995 22.3137L16.6168 18.031C15.0769 19.263 13.124 20 11 20C6.032 20 2 15.968 2 11C2 6.032 6.032 2 11 2C15.968 2 20 6.032 20 11C20 13.124 19.263 15.0769 18.031 16.6168ZM16.0247 15.8748C17.2475 14.6146 18 12.8956 18 11C18 7.1325 14.8675 4 11 4C7.1325 4 4 7.1325 4 11C4 14.8675 7.1325 18 11 18C12.8956 18 14.6146 17.2475 15.8748 16.0247L16.0247 15.8748Z'%3E%3C/path%3E%3C/svg%3E");
}
}
@media (max-width: 62em) {
.fr-ds-combobox .fr-menu .fr-menu__list {
z-index: calc(var(--ground) + 1000);
background-color: var(--background-default-grey);
--idle: transparent;
--hover: var(--background-overlap-grey-hover);
--active: var(--background-overlap-grey-active);
filter: drop-shadow(var(--overlap-shadow));
box-shadow: inset 0 1px 0 0 var(--border-open-blue-france);
}
}
// Fix firefox < 80, Safari < 15.4, Chrome < 83 not supporting "appearance: auto" on inputs // Fix firefox < 80, Safari < 15.4, Chrome < 83 not supporting "appearance: auto" on inputs
// This rule was set by DSFR for DSFR design, but broke our legacy forms. // This rule was set by DSFR for DSFR design, but broke our legacy forms.
// scss-lint:disable DuplicateProperty // scss-lint:disable DuplicateProperty
@ -85,6 +46,17 @@ input[type="radio"] {
} }
} }
// remove pointer cursor on textarea
textarea {
cursor: auto;
}
fieldset {
border: none;
padding-left: 0;
padding-bottom: 0;
}
.fr-btn.fr-btn--icon-left[target="_blank"] { .fr-btn.fr-btn--icon-left[target="_blank"] {
&::after { &::after {
display: none; display: none;
@ -102,65 +74,14 @@ input[type="radio"] {
box-shadow: 0px 0px 0px 1px $light-red; box-shadow: 0px 0px 0px 1px $light-red;
} }
.fr-table table.hack-to-display-dropdown {
padding-bottom: 300px;
margin-bottom: -300px;
}
// on utilise le dropdown de sélecteur de langue pour un autre usage donc on veut retirer l'icone // on utilise le dropdown de sélecteur de langue pour un autre usage donc on veut retirer l'icone
.fr-translate .fr-translate__btn.custom-fr-translate-no-icon::before { .fr-translate .fr-translate__btn.custom-fr-translate-no-icon::before {
display: none; display: none;
} }
// on souhaite que le dropdown s'adapate correctement en largeur
.fr-translate .fr-menu__list.max-content {
width: max-content;
}
button.fr-tag-bug {
background-color: $blue-france-500;
color: #FFFFFF;
&:hover {
background-color: #1212FF;
color: #FFFFFF;
}
.tag-dismiss {
font-size: 1rem;
margin-left: 10px;
}
}
// on veut ajouter un gris plus clair dans le side_menu
.fr-sidemenu__item .fr-sidemenu__link.custom-link-grey {
color: var(--text-disabled-grey);
}
// on veut ferrer à droite le dropdown de sélecteur de langue // on veut ferrer à droite le dropdown de sélecteur de langue
@media (min-width: 62em) { @media (min-width: 62em) {
.fr-nav__item.custom-fr-translate-flex-end { .fr-nav__item.custom-fr-translate-flex-end {
align-items: flex-end; align-items: flex-end;
} }
} }
// improve readability in Windows High Contrast Mode
@media screen and (forced-colors: active) {
.fr-input,
.fr-select,
.fr-btn {
border: 2px solid var(--border-action-high-grey);
}
.fr-radio-group input[type="radio"] {
opacity: 1;
}
.fr-tabs__tab[aria-selected=true]:not(:disabled) {
border: 5px solid var(--border-action-high-grey);
}
.fr-tabs__tab {
border: 2px solid var(--border-action-high-grey);
}
}

View file

@ -0,0 +1,54 @@
@import "constants";
@import "colors";
.etablissement {
margin-top: $default-padding * 2;
margin-bottom: $default-padding * 2;
h1 {
margin-bottom: $default-padding * 2;
}
p {
margin-bottom: $default-padding;
}
.etablissement-infos {
margin-top: $default-padding * 2;
margin-bottom: $default-padding * 2;
> * {
margin-bottom: $default-padding;
&:last-child {
margin-bottom: 0;
}
}
ul {
line-height: 28px;
list-style-type: disc;
list-style-position: inside;
// Inner lists
ul {
margin-left: $default-padding;
list-style-type: circle;
}
}
.etablissement-exercices {
font-style: italic;
}
}
.actions {
display: flex;
flex-wrap: wrap-reverse;
justify-content: space-between;
.button {
margin-bottom: $default-padding;
}
}
}

View file

@ -11,10 +11,6 @@
align-items: flex-start; align-items: flex-start;
} }
&.align-end {
align-items: end;
}
&.align-baseline { &.align-baseline {
align-items: baseline; align-items: baseline;
} }
@ -46,10 +42,6 @@
&.row-reverse { &.row-reverse {
flex-direction: row-reverse; flex-direction: row-reverse;
} }
&.auto {
flex: auto;
}
} }
.flex-grow { .flex-grow {
@ -60,14 +52,6 @@
flex-shrink: 0; flex-shrink: 0;
} }
.flex-gap-1 {
gap: $default-spacer;
}
.flex-gap-2 { .flex-gap-2 {
gap: 2 * $default-spacer; gap: 2 * $default-spacer; // scss-lint:disable PropertySpelling
}
.flex-1 {
flex: 1;
} }

View file

@ -3,66 +3,15 @@
@import "placeholders"; @import "placeholders";
.form { .form {
input.unstyled { h1 {
padding: 0 !important; text-align: center;
background: none !important; margin-bottom: 20px;
border: none !important;
width: auto !important;
&:focus { @media (max-width: $two-columns-breakpoint) {
box-shadow: none !important; font-size: 26px;
background-color: $white !important;
} }
} }
.placeholder {
color: $dark-grey;
font-style: italic;
}
.fr-input-group,
.fr-select-group {
margin-bottom: 1rem;
}
.section-2 {
margin-top: 1.5rem;
padding-top: 2rem;
border-top: 2px solid var(--border-default-grey);
}
.section-2,
.section-3 {
margin-top: 1.5rem;
margin-bottom: 1.5rem;
}
.section-4,
.section-5,
.section-6 {
margin-top: 1.5rem;
margin-bottom: 1rem;
}
// Keep only bottom margin in nested (consecutive) header sections, ie. first legend for a same level
.fr-fieldset > .fr-fieldset__legend + .fr-fieldset__element > .fr-fieldset:first-of-type .header-section {
margin-top: 0 !important;
}
// Don't cumulate margin-bottoms for inlined elements (radio...), because .fr-fieldset has already its own
// This is important because of multilpe conditional hidden elements to not take additional space,
// but we need the usual margin when there are an error or conditional spinner is visible.
// scss-lint:disable SingleLinePerSelector
.fr-fieldset__element
> .fr-fieldset:not(.fr-fieldset--error):not(:has(+ .spinner))
> .fr-fieldset__element.fr-fieldset__element--inline {
margin-bottom: 0;
}
legend {
width: 100%;
}
hr { hr {
width: 100%; width: 100%;
height: 0; height: 0;
@ -72,7 +21,16 @@
border-bottom: 2px solid $border-grey; border-bottom: 2px solid $border-grey;
} }
label:not(.fr-label), @mixin notice-text-style {
font-size: 16px;
color: $dark-grey;
}
.mandatory {
color: $dark-red;
}
label,
legend.form-label { legend.form-label {
font-size: 18px; font-size: 18px;
margin-bottom: $default-padding; margin-bottom: $default-padding;
@ -94,9 +52,9 @@
} }
.notice { .notice {
@include notice-text-style;
margin-top: - $default-spacer; margin-top: - $default-spacer;
margin-bottom: $default-padding; margin-bottom: $default-padding;
color: var(--text-mention-grey);
p { p {
margin-bottom: $default-spacer; margin-bottom: $default-spacer;
@ -111,7 +69,7 @@
position: relative; position: relative;
.updated-at { .updated-at {
font-size: 0.875rem; @include notice-text-style;
float: right; float: right;
margin-left: $default-spacer; margin-left: $default-spacer;
visibility: hidden; visibility: hidden;
@ -120,13 +78,14 @@
&:hover .updated-at, &:hover .updated-at,
.updated-at.highlighted { .updated-at.highlighted {
visibility: visible; visibility: visible;
margin-bottom: 4px;
} }
// Move checkbox to the top-left side of the label
&.editable-champ-checkbox { &.editable-champ-checkbox {
p,
label { label {
padding-left: 28px;
font-weight: normal; font-weight: normal;
gap: 0.25rem; // Space before mandatory icon because dsfr set display:flex on checkbox label
} }
input[type=checkbox] { input[type=checkbox] {
@ -140,10 +99,6 @@
margin-bottom: $default-fields-spacer; margin-bottom: $default-fields-spacer;
} }
} }
.fr-label {
scroll-margin: $default-spacer * 2;
}
} }
.radios { .radios {
@ -177,7 +132,7 @@
user-select: none; user-select: none;
&:last-of-type { &:last-of-type {
margin-bottom: 0; margin-bottom: $default-fields-spacer;
} }
&:hover { &:hover {
@ -214,19 +169,17 @@
} }
} }
.fr-label .fr-hint-text > *, input[type=text],
.fr-fieldset__legend .fr-hint-text > * { input[type=email],
// la description d'un champ peut contenir du markup (markdown->html),
// on herite donc la fontsize/mrgin/padding du fr-hint-text
font-size: inherit;
margin: inherit;
padding: inherit;
}
input[type=password], input[type=password],
select:not(.fr-select) { input[type=date],
input[type=datetime-local],
input[type=number],
input[type=tel],
textarea,
select {
display: block; display: block;
margin-bottom: 0; margin-bottom: $default-fields-spacer;
&.small-margin { &.small-margin {
margin-bottom: $default-spacer; margin-bottom: $default-spacer;
@ -249,7 +202,16 @@
} }
} }
input[type=text]:not(.fr-input):not(.fr-select) { input[type=text]:not([data-address='true']),
input[type=email],
input[type=password],
input[type=date],
input[type=number],
input[type=tel],
input[type=datetime-local],
textarea,
select {
border-radius: 4px;
border: solid 1px $border-grey; border: solid 1px $border-grey;
padding: $default-padding; padding: $default-padding;
@ -289,8 +251,8 @@
input[type=date], input[type=date],
input[type=number], input[type=number],
input[type=datetime-local], input[type=datetime-local],
textarea, input[type=tel],
input[type=tel] { textarea {
@media (max-width: $two-columns-breakpoint) { @media (max-width: $two-columns-breakpoint) {
width: 100%; width: 100%;
} }
@ -307,8 +269,6 @@
input[type=email], input[type=email],
input[type=password], input[type=password],
input[type=number], input[type=number],
input[inputmode=numeric],
input[inputmode=decimal],
input[type=tel] { input[type=tel] {
max-width: 500px; max-width: 500px;
} }
@ -328,8 +288,6 @@
&[type='date'], &[type='date'],
&[type='tel'], &[type='tel'],
&[type='number'], &[type='number'],
&[inputmode='numeric'],
&[inputmode='decimal'],
&[type='datetime-local'] { &[type='datetime-local'] {
width: 33.33%; width: 33.33%;
} }
@ -353,10 +311,45 @@
margin-left: 5px; margin-left: 5px;
margin-right: 4px; margin-right: 4px;
margin-bottom: 0; margin-bottom: $default-fields-spacer;
}
select {
// hack found here: https://stackoverflow.com/questions/1895476/how-to-style-a-select-dropdown-with-css-only-without-javascript
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background-color: #FFFFFF;
background-image: image-url("icons/chevron-down.svg");
background-repeat: no-repeat;
background-size: 14px;
background-position: right 10px center;
padding-right: 4 * $default-spacer;
max-width: 100%;
&.small {
padding-right: 3 * $default-spacer;
}
// CAUTION: IE hackery ahead
&::-ms-expand {
display: none; // remove default arrow in IE 10 and 11 */
}
// target Internet Explorer 9 to undo the custom arrow */
@media screen and (min-width:0\0) {
select {
background: none\9;
}
}
} }
[data-reach-combobox-input] { [data-reach-combobox-input] {
min-height: 62px;
border-radius: 4px;
border: solid 1px $border-grey;
padding: $default-padding;
&:not([class^='width-']) { &:not([class^='width-']) {
width: 100%; width: 100%;
min-width: 50%; min-width: 50%;
@ -378,6 +371,7 @@
[data-reach-combobox-token] button { [data-reach-combobox-token] button {
border: solid 1px $border-grey; border: solid 1px $border-grey;
color: $black;
border-radius: 4px; border-radius: 4px;
padding: $default-spacer; padding: $default-spacer;
margin-right: $default-spacer; margin-right: $default-spacer;
@ -401,11 +395,6 @@
} }
&.editable-champ-repetition { &.editable-champ-repetition {
fieldset {
border: none;
padding-left: 0;
}
.row { .row {
border-radius: 4px; border-radius: 4px;
border: 1px solid $border-grey; border: 1px solid $border-grey;
@ -413,10 +402,6 @@
margin-bottom: 2 * $default-padding; margin-bottom: 2 * $default-padding;
} }
} }
.utils-repetition-required .row:first-child .utils-repetition-required-destroy-button {
display: none;
}
} }
.editable-champ-titre_identite { // scss-lint:disable SelectorFormat .editable-champ-titre_identite { // scss-lint:disable SelectorFormat
@ -443,12 +428,52 @@
color: $dark-grey; color: $dark-grey;
} }
.datetime {
input[type=date] {
display: inline-block;
}
select {
display: inline-block;
}
}
.header-subsection { .header-subsection {
font-size: 22px; font-size: 22px;
color: $blue-france-500; color: $blue-france-500;
margin-bottom: $default-padding; margin-bottom: $default-padding;
} }
.explication-libelle {
font-weight: bold;
font-size: 20px;
margin-bottom: $default-padding;
}
.explication {
margin-bottom: $default-fields-spacer;
padding: $default-spacer;
background-color: $light-grey;
p:not(:last-child) {
margin-bottom: $default-padding;
}
}
.siret-info {
margin-top: -$default-fields-spacer;
margin-bottom: $default-fields-spacer;
// Ensure the bottom-margin is not collapsed when the element is empty
min-height: 1px;
}
.rna-info {
margin-top: -$default-fields-spacer;
margin-bottom: $default-fields-spacer;
// Ensure the bottom-margin is not collapsed when the element is empty
min-height: 1px;
}
.send-wrapper { .send-wrapper {
display: flex; display: flex;
width: 100%; width: 100%;
@ -493,6 +518,15 @@
justify-content: space-between; justify-content: space-between;
} }
.send-notice {
@include notice-text-style;
margin-bottom: $default-padding;
}
.send-wrapper + .send-notice {
margin-top: - $default-padding;
}
.inline-champ { .inline-champ {
margin-left: $default-spacer; margin-left: $default-spacer;
margin-right: $default-spacer; margin-right: $default-spacer;
@ -507,20 +541,15 @@
} }
} }
fieldset + .spinner { fieldset ~ .spinner {
position: relative; position: relative;
top: -($default-fields-spacer / 2); top: -($default-fields-spacer / 2);
} }
} }
.type-de-champ-expression-reguliere { [data-react-component-value]:not([data-react-component-value^="ComboMultiple"]) {
display: flex; [data-reach-combobox-input]:not(.no-margin) {
align-items: center; margin-bottom: $default-fields-spacer;
&:before,
&:after {
font-weight: bold;
content: "/";
} }
} }
@ -598,15 +627,6 @@
outline-color: $light-blue; outline-color: $light-blue;
} }
[data-fr-theme="dark"] [data-reach-combobox-popover] {
border: none;
background: var(--background-action-low-blue-france);
}
[data-fr-theme="dark"] [data-reach-combobox-option]:hover {
background: var(--background-action-low-blue-france-hover);
}
[data-reach-combobox-popover] { [data-reach-combobox-popover] {
z-index: 20; z-index: 20;
} }
@ -623,78 +643,6 @@ textarea::placeholder {
color: $dark-grey; color: $dark-grey;
} }
@media (max-width: 62em) { .send-wrapper--with-border-top {
border-top: 2px solid rgba(0, 0, 145, 1);
.padded-fixed-footer {
padding-top: 120px;
}
}
@media (min-width: 62em) {
.padded-fixed-footer {
padding-top: 60px;
}
}
[data-fr-theme="dark"] .fixed-footer {
border-top: 2px solid var(--background-action-low-blue-france-hover);
background-color: var(--background-action-low-blue-france);
}
.mandatory {
fill: currentColor;
}
.fixed-footer {
border-top: 2px solid $blue-france-500;
position: fixed;
bottom: 0;
left: 0;
right: 0;
padding-top: $default-padding;
background-color: $white;
z-index: 2;
}
.fr-menu__list {
padding: $default-spacer;
overflow-y: auto;
.fr-menu__item {
list-style-type: none;
margin-bottom: $default-spacer;
&[aria-selected] {
font-weight: bold;
}
}
}
.fr-fieldset__element {
@media (min-width: 48em) {
// Logic taken from DSFR source code to limit width of fieldset element.
// Cf dsfr/src/component/form/style/_scheme.scss
$short-text-width: 32rem;
&--short-text {
flex: 0 0 #{$short-text-width};
}
&--short-text:not(&--inline) {
margin-right: calc(100% - #{$short-text-width});
}
}
}
.resize-none {
resize: none;
}
.resize-x {
resize: horizontal;
}
.resize-y {
resize: vertical;
} }

Some files were not shown because too many files have changed in this diff Show more