diff --git a/.github/workflows/build.py b/.github/workflows/build.py new file mode 100644 index 0000000..a55660f --- /dev/null +++ b/.github/workflows/build.py @@ -0,0 +1,116 @@ +""" builder """ +from string import Template +import os +from os.path import getmtime, getsize, join +from datetime import datetime + + +def size(size_in_bytes): + """convert""" + size_kb = size_in_bytes / 1024.0 + size_mb = size_kb / 1024.0 + + if size_mb >= 1: + return f"{size_mb:.2f}M" + elif size_kb >= 1: + return f"{size_kb:.2f}K" + return size_in_bytes + + +PATH_TO_TEMPLATE = ".github/workflows/index.html" +with open(PATH_TO_TEMPLATE, "r", encoding="utf-8") as template_file: + html = template_file.read() + +EXCLUDE_LIST = [".git", ".github", ".static"] +EXCLUDE_LIST_FULL = ["./README.md", "./.gitignore"] + +CSS = """.thumbnail { + position: relative; + z-index: 0; +} + +.thumbnail:hover { + background-color: transparent; + z-index: 50; +} + +.thumbnail span { + position: absolute; + padding: 5px; + left: -1000px; + border: 1px dashed gray; + visibility: hidden; + color: black; + text-decoration: none; +} + +.thumbnail span img { + border-width: 0; + padding: 2px; + min-width: 500px; +} + +.thumbnail:hover span { + visibility: visible; + top: 0; + left: 60px; /*position where enlarged image should offset horizontally */ +}""" + +HEADER = """ +""" + +html = html.replace("", f"{HEADER}") + +t = Template( + """ + [   ] + $file $other + $date + $size +   +""" +) + +URL = "https://bel-art.github.io/telecom-logos" +REPO = "https://github.com/Bel-Art/telecom-logos" +LINK = f'{REPO}' + +UNKNOWN = f"{URL}/.static/unknown.gif" +FOLDER = f"{URL}/.static/folder.gif" + + +def create_index_html(folder): + """create an index.html""" + listed = sorted(os.listdir(folder)) + s = "" + correct_html = f"{html}".replace( + "", f"Index of {folder}" + ) + correct_html = correct_html.replace( + "

", + f"

Index of {folder} - {LINK}

", + ) + for name in listed: + if name == "index.html" or name in EXCLUDE_LIST: + continue + p = join(folder, name) + if p in EXCLUDE_LIST_FULL: + continue + isdir = os.path.isdir(p) + date = datetime.fromtimestamp(getmtime(p)).strftime("%Y-%m-%d %H:%M:%S") + url = FOLDER if isdir else UNKNOWN + preview = not isdir and not name.endswith(".md") + add = 'class="thumbnail"' if preview else "" + other = f'' if preview else "" + s += t.substitute( + file=name, date=date, size=size(getsize(p)), url=url, add=add, other=other + ) + if isdir and name not in EXCLUDE_LIST: + create_index_html(p) + file_data = correct_html.replace("", s) + with open(join(folder, "index.html"), "w", encoding="utf-8") as file: + file.write(file_data) + + +if __name__ == "__main__": + create_index_html(".") diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..4022df6 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,44 @@ +# Simple workflow for deploying static content to GitHub Pages +name: Deploy static content to Pages + +on: + # Runs on pushes targeting the default branch + push: + branches: ["main"] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: read + pages: write + id-token: write + +# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. +# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. +concurrency: + group: "pages" + cancel-in-progress: false + +jobs: + # Single deploy job since we're just deploying + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Setup Pages + uses: actions/configure-pages@v4 + - name: render index.html + run: python3 .github/workflows/build.py + - name: Upload artifact + uses: actions/upload-pages-artifact@v2 + with: + path: "." + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v3 diff --git a/.github/workflows/index.html b/.github/workflows/index.html new file mode 100644 index 0000000..05ba198 --- /dev/null +++ b/.github/workflows/index.html @@ -0,0 +1,38 @@ + + + + + + + + +

+ + + + + + + + + + + + + + + + + + + + + + +
+ [ICO] + NameLast modifiedSizeDescription

+ [PARENTDIR] + Parent Directory - 

+ + diff --git a/.github/workflows/reset_history.sh b/.github/workflows/reset_history.sh new file mode 100644 index 0000000..338f42b --- /dev/null +++ b/.github/workflows/reset_history.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +# useful to reset history when it's too big +# the git history in this context is not very important + +rm -rf .git + +git init +git add . +git commit -m "Initial commit" + +git remote add origin git@github.com:Bel-Art/telecom-logos.git +git push -u --force origin main diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ee25edb --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +index.html +!.github/workflows/index.html diff --git a/.static/back.gif b/.static/back.gif new file mode 100644 index 0000000..a694ae1 Binary files /dev/null and b/.static/back.gif differ diff --git a/.static/folder.gif b/.static/folder.gif new file mode 100644 index 0000000..4826460 Binary files /dev/null and b/.static/folder.gif differ diff --git a/.static/unknown.gif b/.static/unknown.gif new file mode 100644 index 0000000..32b1ea2 Binary files /dev/null and b/.static/unknown.gif differ diff --git a/BDA/BDA.png b/BDA/BDA.png new file mode 100644 index 0000000..e43c9fa Binary files /dev/null and b/BDA/BDA.png differ diff --git a/BDA/old/BDAC.png b/BDA/old/BDAC.png new file mode 100644 index 0000000..f3e148b Binary files /dev/null and b/BDA/old/BDAC.png differ diff --git a/BDA/old/BDA_old.png b/BDA/old/BDA_old.png new file mode 100644 index 0000000..1cb7c39 Binary files /dev/null and b/BDA/old/BDA_old.png differ diff --git a/BDA/old/BDA_transparent.png b/BDA/old/BDA_transparent.png new file mode 100644 index 0000000..86c7c1e Binary files /dev/null and b/BDA/old/BDA_transparent.png differ diff --git a/BDE/BDE.png b/BDE/BDE.png new file mode 100644 index 0000000..7876943 Binary files /dev/null and b/BDE/BDE.png differ diff --git a/BDE/logo_campagne_bde/1998_logo_bde_men_in_bed.png b/BDE/logo_campagne_bde/1998_logo_bde_men_in_bed.png new file mode 100644 index 0000000..b8ed63e Binary files /dev/null and b/BDE/logo_campagne_bde/1998_logo_bde_men_in_bed.png differ diff --git a/BDE/logo_campagne_bde/2009_logo_bde_bed_in_black.jpg b/BDE/logo_campagne_bde/2009_logo_bde_bed_in_black.jpg new file mode 100644 index 0000000..26b6f8c Binary files /dev/null and b/BDE/logo_campagne_bde/2009_logo_bde_bed_in_black.jpg differ diff --git a/BDE/logo_campagne_bde/2009_logo_bde_let_it_bed.jpg b/BDE/logo_campagne_bde/2009_logo_bde_let_it_bed.jpg new file mode 100644 index 0000000..533d50c Binary files /dev/null and b/BDE/logo_campagne_bde/2009_logo_bde_let_it_bed.jpg differ diff --git a/BDE/logo_campagne_bde/2010_logo_bde_bedzeppelin.jpg b/BDE/logo_campagne_bde/2010_logo_bde_bedzeppelin.jpg new file mode 100644 index 0000000..98897ef Binary files /dev/null and b/BDE/logo_campagne_bde/2010_logo_bde_bedzeppelin.jpg differ diff --git a/BDE/logo_campagne_bde/2010_logo_bde_thebedthatrocks.png b/BDE/logo_campagne_bde/2010_logo_bde_thebedthatrocks.png new file mode 100644 index 0000000..2a0c414 Binary files /dev/null and b/BDE/logo_campagne_bde/2010_logo_bde_thebedthatrocks.png differ diff --git a/BDE/logo_campagne_bde/2011_logo_bde_bedandms.jpg b/BDE/logo_campagne_bde/2011_logo_bde_bedandms.jpg new file mode 100644 index 0000000..c809aff Binary files /dev/null and b/BDE/logo_campagne_bde/2011_logo_bde_bedandms.jpg differ diff --git a/BDE/logo_campagne_bde/2011_logo_bde_teletubbed.jpg b/BDE/logo_campagne_bde/2011_logo_bde_teletubbed.jpg new file mode 100644 index 0000000..2131172 Binary files /dev/null and b/BDE/logo_campagne_bde/2011_logo_bde_teletubbed.jpg differ diff --git a/BDE/logo_campagne_bde/2012_logo_bde_angrybeds.jpg b/BDE/logo_campagne_bde/2012_logo_bde_angrybeds.jpg new file mode 100644 index 0000000..3cc5e9f Binary files /dev/null and b/BDE/logo_campagne_bde/2012_logo_bde_angrybeds.jpg differ diff --git a/BDE/logo_campagne_bde/2012_logo_bde_angrybeds.xcf b/BDE/logo_campagne_bde/2012_logo_bde_angrybeds.xcf new file mode 100644 index 0000000..28d6ffd Binary files /dev/null and b/BDE/logo_campagne_bde/2012_logo_bde_angrybeds.xcf differ diff --git a/BDE/logo_campagne_bde/2012_logo_bde_bedinvaders.jpg b/BDE/logo_campagne_bde/2012_logo_bde_bedinvaders.jpg new file mode 100644 index 0000000..8d13c46 Binary files /dev/null and b/BDE/logo_campagne_bde/2012_logo_bde_bedinvaders.jpg differ diff --git a/BDE/logo_campagne_bde/2013_logo_bde_bedzoum.jpg b/BDE/logo_campagne_bde/2013_logo_bde_bedzoum.jpg new file mode 100644 index 0000000..735a070 Binary files /dev/null and b/BDE/logo_campagne_bde/2013_logo_bde_bedzoum.jpg differ diff --git a/BDE/logo_campagne_bde/2013_logo_bde_theabedgers.jpg b/BDE/logo_campagne_bde/2013_logo_bde_theabedgers.jpg new file mode 100644 index 0000000..9a69129 Binary files /dev/null and b/BDE/logo_campagne_bde/2013_logo_bde_theabedgers.jpg differ diff --git a/BDE/logo_campagne_bde/2013_logo_bde_theexbedables.jpg b/BDE/logo_campagne_bde/2013_logo_bde_theexbedables.jpg new file mode 100644 index 0000000..cc05c14 Binary files /dev/null and b/BDE/logo_campagne_bde/2013_logo_bde_theexbedables.jpg differ diff --git a/BDE/logo_campagne_bde/2014_logo_bde_bedfathers.jpg b/BDE/logo_campagne_bde/2014_logo_bde_bedfathers.jpg new file mode 100644 index 0000000..57e822f Binary files /dev/null and b/BDE/logo_campagne_bde/2014_logo_bde_bedfathers.jpg differ diff --git a/BDE/logo_campagne_bde/2015_logo_bde_bedusexmachina.jpg b/BDE/logo_campagne_bde/2015_logo_bde_bedusexmachina.jpg new file mode 100644 index 0000000..21733b7 Binary files /dev/null and b/BDE/logo_campagne_bde/2015_logo_bde_bedusexmachina.jpg differ diff --git a/BDE/logo_campagne_bde/2015_logo_bde_excalibed.png b/BDE/logo_campagne_bde/2015_logo_bde_excalibed.png new file mode 100644 index 0000000..0da2f5f Binary files /dev/null and b/BDE/logo_campagne_bde/2015_logo_bde_excalibed.png differ diff --git a/BDE/logo_campagne_bde/2016_logo_bde_chebedara.png b/BDE/logo_campagne_bde/2016_logo_bde_chebedara.png new file mode 100644 index 0000000..45d42f1 Binary files /dev/null and b/BDE/logo_campagne_bde/2016_logo_bde_chebedara.png differ diff --git a/BDE/logo_campagne_bde/2016_logo_bde_inbedstellar.jpg b/BDE/logo_campagne_bde/2016_logo_bde_inbedstellar.jpg new file mode 100644 index 0000000..3d60954 Binary files /dev/null and b/BDE/logo_campagne_bde/2016_logo_bde_inbedstellar.jpg differ diff --git a/BDE/logo_campagne_bde/2017_logo_bde_bedpool.jpg b/BDE/logo_campagne_bde/2017_logo_bde_bedpool.jpg new file mode 100644 index 0000000..7d39f8c Binary files /dev/null and b/BDE/logo_campagne_bde/2017_logo_bde_bedpool.jpg differ diff --git a/BDE/logo_campagne_bde/2017_logo_bde_veni_bedi_vici.png b/BDE/logo_campagne_bde/2017_logo_bde_veni_bedi_vici.png new file mode 100644 index 0000000..72f7e41 Binary files /dev/null and b/BDE/logo_campagne_bde/2017_logo_bde_veni_bedi_vici.png differ diff --git a/BDE/logo_campagne_bde/2018_logo_bde_gastbed.png b/BDE/logo_campagne_bde/2018_logo_bde_gastbed.png new file mode 100644 index 0000000..480697f Binary files /dev/null and b/BDE/logo_campagne_bde/2018_logo_bde_gastbed.png differ diff --git a/BDE/logo_campagne_bde/2018_logo_bde_kgbed.jpg b/BDE/logo_campagne_bde/2018_logo_bde_kgbed.jpg new file mode 100644 index 0000000..ba7a34a Binary files /dev/null and b/BDE/logo_campagne_bde/2018_logo_bde_kgbed.jpg differ diff --git a/BDE/logo_campagne_bde/2018_logo_bde_the_last_bedi.png b/BDE/logo_campagne_bde/2018_logo_bde_the_last_bedi.png new file mode 100644 index 0000000..354959c Binary files /dev/null and b/BDE/logo_campagne_bde/2018_logo_bde_the_last_bedi.png differ diff --git a/BDE/logo_campagne_bde/2019_logo_bde_asterix_et_obedix.png b/BDE/logo_campagne_bde/2019_logo_bde_asterix_et_obedix.png new file mode 100644 index 0000000..0e15971 Binary files /dev/null and b/BDE/logo_campagne_bde/2019_logo_bde_asterix_et_obedix.png differ diff --git a/BDE/logo_campagne_bde/2019_logo_bde_bedisruptive.png b/BDE/logo_campagne_bde/2019_logo_bde_bedisruptive.png new file mode 100644 index 0000000..21bc395 Binary files /dev/null and b/BDE/logo_campagne_bde/2019_logo_bde_bedisruptive.png differ diff --git a/BDE/logo_campagne_bde/2019_logo_bde_openbed.png b/BDE/logo_campagne_bde/2019_logo_bde_openbed.png new file mode 100644 index 0000000..8d89875 Binary files /dev/null and b/BDE/logo_campagne_bde/2019_logo_bde_openbed.png differ diff --git a/BDE/logo_campagne_bde/2019_logo_bde_openbed_round.png b/BDE/logo_campagne_bde/2019_logo_bde_openbed_round.png new file mode 100644 index 0000000..e864bc7 Binary files /dev/null and b/BDE/logo_campagne_bde/2019_logo_bde_openbed_round.png differ diff --git a/BDE/logo_campagne_bde/2019_logo_bde_the_walking_bed.png b/BDE/logo_campagne_bde/2019_logo_bde_the_walking_bed.png new file mode 100644 index 0000000..fc4fba7 Binary files /dev/null and b/BDE/logo_campagne_bde/2019_logo_bde_the_walking_bed.png differ diff --git a/BDE/logo_campagne_bde/2020_logo_bde_bimbambed.jpg b/BDE/logo_campagne_bde/2020_logo_bde_bimbambed.jpg new file mode 100644 index 0000000..8ddb6b1 Binary files /dev/null and b/BDE/logo_campagne_bde/2020_logo_bde_bimbambed.jpg differ diff --git a/BDE/logo_campagne_bde/2020_logo_bde_caverne_d_alibabed.png b/BDE/logo_campagne_bde/2020_logo_bde_caverne_d_alibabed.png new file mode 100644 index 0000000..3f10e79 Binary files /dev/null and b/BDE/logo_campagne_bde/2020_logo_bde_caverne_d_alibabed.png differ diff --git a/BDE/logo_campagne_bde/2020_logo_bde_scoobedoo.png b/BDE/logo_campagne_bde/2020_logo_bde_scoobedoo.png new file mode 100644 index 0000000..3366417 Binary files /dev/null and b/BDE/logo_campagne_bde/2020_logo_bde_scoobedoo.png differ diff --git a/BDE/logo_campagne_bde/2021_logo_bde_bedalive.jpg b/BDE/logo_campagne_bde/2021_logo_bde_bedalive.jpg new file mode 100644 index 0000000..5303b60 Binary files /dev/null and b/BDE/logo_campagne_bde/2021_logo_bde_bedalive.jpg differ diff --git a/BDE/logo_campagne_bde/2021_logo_bde_bedzir_de_france.png b/BDE/logo_campagne_bde/2021_logo_bde_bedzir_de_france.png new file mode 100644 index 0000000..7ba938e Binary files /dev/null and b/BDE/logo_campagne_bde/2021_logo_bde_bedzir_de_france.png differ diff --git a/BDE/logo_campagne_bde/2021_logo_bde_pirates_des_carabed.png b/BDE/logo_campagne_bde/2021_logo_bde_pirates_des_carabed.png new file mode 100644 index 0000000..cb838da Binary files /dev/null and b/BDE/logo_campagne_bde/2021_logo_bde_pirates_des_carabed.png differ diff --git a/BDE/logo_campagne_bde/2022_logo_bde_bedia.png b/BDE/logo_campagne_bde/2022_logo_bde_bedia.png new file mode 100644 index 0000000..5bffb57 Binary files /dev/null and b/BDE/logo_campagne_bde/2022_logo_bde_bedia.png differ diff --git a/BDE/logo_campagne_bde/2022_logo_bde_breaking-bed.png b/BDE/logo_campagne_bde/2022_logo_bde_breaking-bed.png new file mode 100644 index 0000000..59ad249 Binary files /dev/null and b/BDE/logo_campagne_bde/2022_logo_bde_breaking-bed.png differ diff --git a/BDE/logo_campagne_bde/2022_logo_bde_sbederman.png b/BDE/logo_campagne_bde/2022_logo_bde_sbederman.png new file mode 100644 index 0000000..aadc142 Binary files /dev/null and b/BDE/logo_campagne_bde/2022_logo_bde_sbederman.png differ diff --git a/BDE/logo_campagne_bde/2023_logo_bde_flambed.png b/BDE/logo_campagne_bde/2023_logo_bde_flambed.png new file mode 100644 index 0000000..b52bff5 Binary files /dev/null and b/BDE/logo_campagne_bde/2023_logo_bde_flambed.png differ diff --git a/BDE/logo_campagne_bde/2023_logo_bde_rainingbed.png b/BDE/logo_campagne_bde/2023_logo_bde_rainingbed.png new file mode 100644 index 0000000..e1e3ff3 Binary files /dev/null and b/BDE/logo_campagne_bde/2023_logo_bde_rainingbed.png differ diff --git a/BDE/logo_campagne_bde/2023_logo_bde_scarabed.png b/BDE/logo_campagne_bde/2023_logo_bde_scarabed.png new file mode 100644 index 0000000..b9e5569 Binary files /dev/null and b/BDE/logo_campagne_bde/2023_logo_bde_scarabed.png differ diff --git a/BDI/BDI_transparent.png b/BDI/BDI_transparent.png new file mode 100644 index 0000000..77ceafb Binary files /dev/null and b/BDI/BDI_transparent.png differ diff --git a/BDI/bdi.jpg b/BDI/bdi.jpg new file mode 100644 index 0000000..eda3514 Binary files /dev/null and b/BDI/bdi.jpg differ diff --git a/BDI/bdi.xcf b/BDI/bdi.xcf new file mode 100644 index 0000000..d4d39de Binary files /dev/null and b/BDI/bdi.xcf differ diff --git a/BDS/BDS.png b/BDS/BDS.png new file mode 100644 index 0000000..595bf88 Binary files /dev/null and b/BDS/BDS.png differ diff --git a/BDS/logo-tete.png b/BDS/logo-tete.png new file mode 100644 index 0000000..0b981f5 Binary files /dev/null and b/BDS/logo-tete.png differ diff --git a/BDS/logo_campagne_bds/2022_HomoSporticus.jpg b/BDS/logo_campagne_bds/2022_HomoSporticus.jpg new file mode 100644 index 0000000..c15387a Binary files /dev/null and b/BDS/logo_campagne_bds/2022_HomoSporticus.jpg differ diff --git a/BDS/logo_campagne_bds/2022_Sportiates.png b/BDS/logo_campagne_bds/2022_Sportiates.png new file mode 100644 index 0000000..46066c4 Binary files /dev/null and b/BDS/logo_campagne_bds/2022_Sportiates.png differ diff --git a/BDS/logo_campagne_bds/2023_SporToutatis.jpg b/BDS/logo_campagne_bds/2023_SporToutatis.jpg new file mode 100644 index 0000000..b85c88d Binary files /dev/null and b/BDS/logo_campagne_bds/2023_SporToutatis.jpg differ diff --git a/Bar/Bar.png b/Bar/Bar.png new file mode 100644 index 0000000..54f26d1 Binary files /dev/null and b/Bar/Bar.png differ diff --git a/Bar/babar-blanc.jpg b/Bar/babar-blanc.jpg new file mode 100644 index 0000000..561c0fd Binary files /dev/null and b/Bar/babar-blanc.jpg differ diff --git a/Bar/babar.png b/Bar/babar.png new file mode 100644 index 0000000..8b1b36d Binary files /dev/null and b/Bar/babar.png differ diff --git a/Bar/babar_bar.png b/Bar/babar_bar.png new file mode 100644 index 0000000..bc30cd5 Binary files /dev/null and b/Bar/babar_bar.png differ diff --git a/Bar/babar_contour.png b/Bar/babar_contour.png new file mode 100644 index 0000000..edd9eab Binary files /dev/null and b/Bar/babar_contour.png differ diff --git a/Bar/babar_contour.svg b/Bar/babar_contour.svg new file mode 100644 index 0000000..f346588 --- /dev/null +++ b/Bar/babar_contour.svg @@ -0,0 +1 @@ +babar_contour \ No newline at end of file diff --git a/Bar/babar_contour2.svg b/Bar/babar_contour2.svg new file mode 100644 index 0000000..b1ed163 --- /dev/null +++ b/Bar/babar_contour2.svg @@ -0,0 +1,14152 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Bar/babar_contour_noir.png b/Bar/babar_contour_noir.png new file mode 100644 index 0000000..eaf9de8 Binary files /dev/null and b/Bar/babar_contour_noir.png differ diff --git a/CCT/Chretiens_Telecom.jpg b/CCT/Chretiens_Telecom.jpg new file mode 100644 index 0000000..b51731d Binary files /dev/null and b/CCT/Chretiens_Telecom.jpg differ diff --git a/CCT/Chretiens_Telecom_transparent.png b/CCT/Chretiens_Telecom_transparent.png new file mode 100644 index 0000000..7ab39c8 Binary files /dev/null and b/CCT/Chretiens_Telecom_transparent.png differ diff --git a/CHAT/Conservation_de_l_Histoire_Associative_de_Telecom.png b/CHAT/Conservation_de_l_Histoire_Associative_de_Telecom.png new file mode 100644 index 0000000..6cf7766 Binary files /dev/null and b/CHAT/Conservation_de_l_Histoire_Associative_de_Telecom.png differ diff --git a/CHAT/README.md b/CHAT/README.md new file mode 100644 index 0000000..dd8d066 --- /dev/null +++ b/CHAT/README.md @@ -0,0 +1,3 @@ +# CHAT + +- [https://chat.rezel.net] diff --git a/Club_Rock/Club_Rock.png b/Club_Rock/Club_Rock.png new file mode 100644 index 0000000..9a4cf7a Binary files /dev/null and b/Club_Rock/Club_Rock.png differ diff --git a/Club_arc-en-ciel/Club_arc-en-ciel.png b/Club_arc-en-ciel/Club_arc-en-ciel.png new file mode 100644 index 0000000..a39432c Binary files /dev/null and b/Club_arc-en-ciel/Club_arc-en-ciel.png differ diff --git a/Club_crevard/Club_crevard.png b/Club_crevard/Club_crevard.png new file mode 100644 index 0000000..9020a2a Binary files /dev/null and b/Club_crevard/Club_crevard.png differ diff --git a/Comete/Comete.png b/Comete/Comete.png new file mode 100644 index 0000000..3e38638 Binary files /dev/null and b/Comete/Comete.png differ diff --git a/Comete/Comete_1.png b/Comete/Comete_1.png new file mode 100644 index 0000000..3e38638 Binary files /dev/null and b/Comete/Comete_1.png differ diff --git a/Comete/Comete_1_contraste.png b/Comete/Comete_1_contraste.png new file mode 100644 index 0000000..98cbf4c Binary files /dev/null and b/Comete/Comete_1_contraste.png differ diff --git a/Comete/README.md b/Comete/README.md new file mode 100644 index 0000000..846f990 --- /dev/null +++ b/Comete/README.md @@ -0,0 +1,5 @@ +# Comète + +- [https://comete-tp.fr/](https://comete-tp.fr/) +- [https://github.com/comete-telecom-paris](https://github.com/comete-telecom-paris) +- [https://github.com/comete-telecom-paris/logos](https://github.com/comete-telecom-paris/logos) diff --git a/Fanfare/Poilane_Souba_Crew.png b/Fanfare/Poilane_Souba_Crew.png new file mode 100644 index 0000000..c210d6f Binary files /dev/null and b/Fanfare/Poilane_Souba_Crew.png differ diff --git a/Forum_Telecom_Paris/README.md b/Forum_Telecom_Paris/README.md new file mode 100644 index 0000000..665743e --- /dev/null +++ b/Forum_Telecom_Paris/README.md @@ -0,0 +1,4 @@ +# Forum Télécom Paris + +- [https://forumtelecomparis.fr](https://forumtelecomparis.fr) +- [https://github.com/Forum-Telecom-Paris/logos](https://github.com/Forum-Telecom-Paris/logos) diff --git a/Forum_Telecom_Paris/forum_logo4096px.png b/Forum_Telecom_Paris/forum_logo4096px.png new file mode 100644 index 0000000..95dda73 Binary files /dev/null and b/Forum_Telecom_Paris/forum_logo4096px.png differ diff --git a/Forum_Telecom_Paris/logo_campagne_forum/2015_logo_forum_forum_gump.jpg b/Forum_Telecom_Paris/logo_campagne_forum/2015_logo_forum_forum_gump.jpg new file mode 100644 index 0000000..93bff2a Binary files /dev/null and b/Forum_Telecom_Paris/logo_campagne_forum/2015_logo_forum_forum_gump.jpg differ diff --git a/Forum_Telecom_Paris/logo_campagne_forum/2018_logo_forum_chateauforum.jpg b/Forum_Telecom_Paris/logo_campagne_forum/2018_logo_forum_chateauforum.jpg new file mode 100644 index 0000000..b416946 Binary files /dev/null and b/Forum_Telecom_Paris/logo_campagne_forum/2018_logo_forum_chateauforum.jpg differ diff --git a/Forum_Telecom_Paris/logo_campagne_forum/2018_logo_forum_forumidables.png b/Forum_Telecom_Paris/logo_campagne_forum/2018_logo_forum_forumidables.png new file mode 100644 index 0000000..68e3b57 Binary files /dev/null and b/Forum_Telecom_Paris/logo_campagne_forum/2018_logo_forum_forumidables.png differ diff --git a/Forum_Telecom_Paris/logo_campagne_forum/2019_logo_forum_forumillions.jpg b/Forum_Telecom_Paris/logo_campagne_forum/2019_logo_forum_forumillions.jpg new file mode 100644 index 0000000..29a21f7 Binary files /dev/null and b/Forum_Telecom_Paris/logo_campagne_forum/2019_logo_forum_forumillions.jpg differ diff --git a/Forum_Telecom_Paris/logo_campagne_forum/2019_logo_forum_forumtroopers.jpg b/Forum_Telecom_Paris/logo_campagne_forum/2019_logo_forum_forumtroopers.jpg new file mode 100644 index 0000000..e48a62c Binary files /dev/null and b/Forum_Telecom_Paris/logo_campagne_forum/2019_logo_forum_forumtroopers.jpg differ diff --git a/Forum_Telecom_Paris/logo_campagne_forum/2020_logo_forum_forumantique.png b/Forum_Telecom_Paris/logo_campagne_forum/2020_logo_forum_forumantique.png new file mode 100644 index 0000000..7fde8fe Binary files /dev/null and b/Forum_Telecom_Paris/logo_campagne_forum/2020_logo_forum_forumantique.png differ diff --git a/Forum_Telecom_Paris/logo_campagne_forum/2020_logo_forum_forumbreak.png b/Forum_Telecom_Paris/logo_campagne_forum/2020_logo_forum_forumbreak.png new file mode 100644 index 0000000..386def4 Binary files /dev/null and b/Forum_Telecom_Paris/logo_campagne_forum/2020_logo_forum_forumbreak.png differ diff --git a/Forum_Telecom_Paris/logo_campagne_forum/2021_logo_forum_fast_and_forum.jpg b/Forum_Telecom_Paris/logo_campagne_forum/2021_logo_forum_fast_and_forum.jpg new file mode 100644 index 0000000..f97944e Binary files /dev/null and b/Forum_Telecom_Paris/logo_campagne_forum/2021_logo_forum_fast_and_forum.jpg differ diff --git a/Forum_Telecom_Paris/logo_campagne_forum/2021_logo_forum_forumatrix.jpg b/Forum_Telecom_Paris/logo_campagne_forum/2021_logo_forum_forumatrix.jpg new file mode 100644 index 0000000..cefbf60 Binary files /dev/null and b/Forum_Telecom_Paris/logo_campagne_forum/2021_logo_forum_forumatrix.jpg differ diff --git a/Forum_Telecom_Paris/logo_campagne_forum/2021_logo_forum_forumule_1.jpg b/Forum_Telecom_Paris/logo_campagne_forum/2021_logo_forum_forumule_1.jpg new file mode 100644 index 0000000..ab89ef6 Binary files /dev/null and b/Forum_Telecom_Paris/logo_campagne_forum/2021_logo_forum_forumule_1.jpg differ diff --git a/Forum_Telecom_Paris/logo_campagne_forum/2022_logo_forum_Les_Contes_de_Forum.jpg b/Forum_Telecom_Paris/logo_campagne_forum/2022_logo_forum_Les_Contes_de_Forum.jpg new file mode 100644 index 0000000..9aae78c Binary files /dev/null and b/Forum_Telecom_Paris/logo_campagne_forum/2022_logo_forum_Les_Contes_de_Forum.jpg differ diff --git a/Forum_Telecom_Paris/logo_campagne_forum/2022_logo_forum_Retour_Vers_Le_Forum_utur.jpg b/Forum_Telecom_Paris/logo_campagne_forum/2022_logo_forum_Retour_Vers_Le_Forum_utur.jpg new file mode 100644 index 0000000..7ea7442 Binary files /dev/null and b/Forum_Telecom_Paris/logo_campagne_forum/2022_logo_forum_Retour_Vers_Le_Forum_utur.jpg differ diff --git a/Forum_Telecom_Paris/logo_campagne_forum/2023_logo_forum_Forum_Club.jpg b/Forum_Telecom_Paris/logo_campagne_forum/2023_logo_forum_Forum_Club.jpg new file mode 100644 index 0000000..309d791 Binary files /dev/null and b/Forum_Telecom_Paris/logo_campagne_forum/2023_logo_forum_Forum_Club.jpg differ diff --git a/Forum_Telecom_Paris/logo_campagne_forum/2023_logo_forum_Forum_West.jpg b/Forum_Telecom_Paris/logo_campagne_forum/2023_logo_forum_Forum_West.jpg new file mode 100644 index 0000000..4edae64 Binary files /dev/null and b/Forum_Telecom_Paris/logo_campagne_forum/2023_logo_forum_Forum_West.jpg differ diff --git a/Forum_Telecom_Paris/logo_forum_vide.png b/Forum_Telecom_Paris/logo_forum_vide.png new file mode 100644 index 0000000..05f3793 Binary files /dev/null and b/Forum_Telecom_Paris/logo_forum_vide.png differ diff --git a/Forum_Telecom_Paris/old/Forum.png b/Forum_Telecom_Paris/old/Forum.png new file mode 100644 index 0000000..b6c3452 Binary files /dev/null and b/Forum_Telecom_Paris/old/Forum.png differ diff --git a/Gala/Gala.jpg b/Gala/Gala.jpg new file mode 100644 index 0000000..afdde11 Binary files /dev/null and b/Gala/Gala.jpg differ diff --git a/Gala/Gala.png b/Gala/Gala.png new file mode 100644 index 0000000..2f575b0 Binary files /dev/null and b/Gala/Gala.png differ diff --git a/Gala/Logo_fond_transparent.png b/Gala/Logo_fond_transparent.png new file mode 100644 index 0000000..7213933 Binary files /dev/null and b/Gala/Logo_fond_transparent.png differ diff --git a/Gala/README.md b/Gala/README.md new file mode 100644 index 0000000..a17ae36 --- /dev/null +++ b/Gala/README.md @@ -0,0 +1,3 @@ +# Gala + +- [https://gala.telecom-paris.fr/](https://gala.telecom-paris.fr/) diff --git a/IPP/logo_ipparis.png b/IPP/logo_ipparis.png new file mode 100644 index 0000000..5939e53 Binary files /dev/null and b/IPP/logo_ipparis.png differ diff --git a/KFT/KFT.png b/KFT/KFT.png new file mode 100644 index 0000000..6d197f9 Binary files /dev/null and b/KFT/KFT.png differ diff --git a/LH/Logo_LH.png b/LH/Logo_LH.png new file mode 100644 index 0000000..f81ad9d Binary files /dev/null and b/LH/Logo_LH.png differ diff --git a/LH/Logo_LH_noel.png b/LH/Logo_LH_noel.png new file mode 100644 index 0000000..e4b97a5 Binary files /dev/null and b/LH/Logo_LH_noel.png differ diff --git a/LH/README.md b/LH/README.md new file mode 100644 index 0000000..742e603 --- /dev/null +++ b/LH/README.md @@ -0,0 +1,4 @@ +# LH + +- [https://lh.rezel.net](https://lh.rezel.net) +- [https://lettre-hebdomadaire.github.io/](https://lettre-hebdomadaire.github.io/) diff --git a/LH/old/LH.png b/LH/old/LH.png new file mode 100644 index 0000000..571c607 Binary files /dev/null and b/LH/old/LH.png differ diff --git a/La_scene/La_Scene.png b/La_scene/La_Scene.png new file mode 100644 index 0000000..eddf16d Binary files /dev/null and b/La_scene/La_Scene.png differ diff --git a/La_scene/La_Scene_cadre.png b/La_scene/La_Scene_cadre.png new file mode 100644 index 0000000..0a632c9 Binary files /dev/null and b/La_scene/La_Scene_cadre.png differ diff --git a/La_scene/La_Scene_centre.png b/La_scene/La_Scene_centre.png new file mode 100644 index 0000000..a358f98 Binary files /dev/null and b/La_scene/La_Scene_centre.png differ diff --git a/La_scene/La_Scene_tmp.png b/La_scene/La_Scene_tmp.png new file mode 100644 index 0000000..f3cd25d Binary files /dev/null and b/La_scene/La_Scene_tmp.png differ diff --git a/La_scene/La_scene.jpg b/La_scene/La_scene.jpg new file mode 100644 index 0000000..bbcb389 Binary files /dev/null and b/La_scene/La_scene.jpg differ diff --git a/La_scene/La_scene_sans_noir.png b/La_scene/La_scene_sans_noir.png new file mode 100644 index 0000000..d3e2506 Binary files /dev/null and b/La_scene/La_scene_sans_noir.png differ diff --git a/La_scene/logo_scene.jpg b/La_scene/logo_scene.jpg new file mode 100644 index 0000000..bbcb389 Binary files /dev/null and b/La_scene/logo_scene.jpg differ diff --git a/Ludotech/Ludo.png b/Ludotech/Ludo.png new file mode 100644 index 0000000..0a9c10a Binary files /dev/null and b/Ludotech/Ludo.png differ diff --git a/Ludotech/Ludotech.png b/Ludotech/Ludotech.png new file mode 100644 index 0000000..0246c98 Binary files /dev/null and b/Ludotech/Ludotech.png differ diff --git a/Ludotech/logoludo.png b/Ludotech/logoludo.png new file mode 100644 index 0000000..901fbbf Binary files /dev/null and b/Ludotech/logoludo.png differ diff --git a/MAD/MAD.png b/MAD/MAD.png new file mode 100644 index 0000000..649b16b Binary files /dev/null and b/MAD/MAD.png differ diff --git a/MaT/Maths_a_Telecom.png b/MaT/Maths_a_Telecom.png new file mode 100644 index 0000000..181c22c Binary files /dev/null and b/MaT/Maths_a_Telecom.png differ diff --git a/MaT/Maths_a_Telecom_blanc.png b/MaT/Maths_a_Telecom_blanc.png new file mode 100644 index 0000000..048afde Binary files /dev/null and b/MaT/Maths_a_Telecom_blanc.png differ diff --git a/MaT/Maths_a_Telecom_noir.png b/MaT/Maths_a_Telecom_noir.png new file mode 100644 index 0000000..ba50c97 Binary files /dev/null and b/MaT/Maths_a_Telecom_noir.png differ diff --git a/Magic_in_telecom/Magic_in_Telecom.png b/Magic_in_telecom/Magic_in_Telecom.png new file mode 100644 index 0000000..9bdca0a Binary files /dev/null and b/Magic_in_telecom/Magic_in_Telecom.png differ diff --git a/Magic_in_telecom/Magic_in_Telecom_sans_noir.png b/Magic_in_telecom/Magic_in_Telecom_sans_noir.png new file mode 100644 index 0000000..3b76445 Binary files /dev/null and b/Magic_in_telecom/Magic_in_Telecom_sans_noir.png differ diff --git a/OPS/OPS.png b/OPS/OPS.png new file mode 100644 index 0000000..9af0ec5 Binary files /dev/null and b/OPS/OPS.png differ diff --git a/Oenologie/Club_Oenologie_v2.png b/Oenologie/Club_Oenologie_v2.png new file mode 100644 index 0000000..d93054e Binary files /dev/null and b/Oenologie/Club_Oenologie_v2.png differ diff --git a/Oenologie/old/Club_Oenologie_v1.png b/Oenologie/old/Club_Oenologie_v1.png new file mode 100644 index 0000000..a060099 Binary files /dev/null and b/Oenologie/old/Club_Oenologie_v1.png differ diff --git a/README.md b/README.md new file mode 100644 index 0000000..cb16729 --- /dev/null +++ b/README.md @@ -0,0 +1,16 @@ +# telecom-logos + +> Some logos are outdated ! + +## Convert to black and keep transparent background + +```bash +convert input.png -background none -fill black -fuzz 99% -alpha set -channel RGBA -opaque white output_black.png +``` + +## Build && Test + +```bash +python3 .github/workflows/build.py +python3 -m http.server +``` diff --git a/Rezel/Rezel.png b/Rezel/Rezel.png new file mode 100644 index 0000000..77523e5 Binary files /dev/null and b/Rezel/Rezel.png differ diff --git a/Rezel/Rezel_new.jpg b/Rezel/Rezel_new.jpg new file mode 100644 index 0000000..d5f9fba Binary files /dev/null and b/Rezel/Rezel_new.jpg differ diff --git a/Rezel/Rezel_new_white.png b/Rezel/Rezel_new_white.png new file mode 100644 index 0000000..c7d7beb Binary files /dev/null and b/Rezel/Rezel_new_white.png differ diff --git a/Rezel/Rezel_new_white_transparency.png b/Rezel/Rezel_new_white_transparency.png new file mode 100644 index 0000000..899512a Binary files /dev/null and b/Rezel/Rezel_new_white_transparency.png differ diff --git a/Rezel/logo.b4fa6d51d254.svg b/Rezel/logo.b4fa6d51d254.svg new file mode 100644 index 0000000..e9cf475 --- /dev/null +++ b/Rezel/logo.b4fa6d51d254.svg @@ -0,0 +1,173 @@ + +image/svg+xml \ No newline at end of file diff --git a/SCEP/SCEP.jpg b/SCEP/SCEP.jpg new file mode 100644 index 0000000..0ba1fac Binary files /dev/null and b/SCEP/SCEP.jpg differ diff --git a/SCEP/SCEP_transparent.png b/SCEP/SCEP_transparent.png new file mode 100644 index 0000000..0b44950 Binary files /dev/null and b/SCEP/SCEP_transparent.png differ diff --git a/SNAX/Snax.png b/SNAX/Snax.png new file mode 100644 index 0000000..0ff9aa9 Binary files /dev/null and b/SNAX/Snax.png differ diff --git a/SNAX/Snax_blanc.png b/SNAX/Snax_blanc.png new file mode 100644 index 0000000..2244c22 Binary files /dev/null and b/SNAX/Snax_blanc.png differ diff --git a/SNAX/Snax_noir.png b/SNAX/Snax_noir.png new file mode 100644 index 0000000..0ff9aa9 Binary files /dev/null and b/SNAX/Snax_noir.png differ diff --git a/TBF/README.md b/TBF/README.md new file mode 100644 index 0000000..e932025 --- /dev/null +++ b/TBF/README.md @@ -0,0 +1,3 @@ +# TBF + +- [https://telecom-business-finance.com/](https://telecom-business-finance.com/) diff --git a/TBF/Telecom_Business_Finance.png b/TBF/Telecom_Business_Finance.png new file mode 100644 index 0000000..2b3c0f6 Binary files /dev/null and b/TBF/Telecom_Business_Finance.png differ diff --git a/TBF/Telecom_Business_Finance_white.png b/TBF/Telecom_Business_Finance_white.png new file mode 100644 index 0000000..1a20431 Binary files /dev/null and b/TBF/Telecom_Business_Finance_white.png differ diff --git a/TPS/Telecom_PariSteak.png b/TPS/Telecom_PariSteak.png new file mode 100644 index 0000000..b0e6532 Binary files /dev/null and b/TPS/Telecom_PariSteak.png differ diff --git a/TSM/README.md b/TSM/README.md new file mode 100644 index 0000000..54e6df6 --- /dev/null +++ b/TSM/README.md @@ -0,0 +1,3 @@ +# TSM + +- [https://tsm-tp.fr/](https://tsm-tp.fr/) diff --git a/TSM/TSM-notext.png b/TSM/TSM-notext.png new file mode 100644 index 0000000..5deb00d Binary files /dev/null and b/TSM/TSM-notext.png differ diff --git a/TSM/TSM.png b/TSM/TSM.png new file mode 100644 index 0000000..4a42d14 Binary files /dev/null and b/TSM/TSM.png differ diff --git a/TSM/tsm_blanc_carre_notext.png b/TSM/tsm_blanc_carre_notext.png new file mode 100644 index 0000000..5c5b243 Binary files /dev/null and b/TSM/tsm_blanc_carre_notext.png differ diff --git a/TeleCosmos/Telecosmos.png b/TeleCosmos/Telecosmos.png new file mode 100644 index 0000000..f51e44c Binary files /dev/null and b/TeleCosmos/Telecosmos.png differ diff --git a/TeleMontagne/telemontagne.png b/TeleMontagne/telemontagne.png new file mode 100644 index 0000000..9545a0e Binary files /dev/null and b/TeleMontagne/telemontagne.png differ diff --git a/TelePlouf/TelePlouf.png b/TelePlouf/TelePlouf.png new file mode 100644 index 0000000..04d711c Binary files /dev/null and b/TelePlouf/TelePlouf.png differ diff --git a/Telechess/Telechess.jpg b/Telechess/Telechess.jpg new file mode 100644 index 0000000..b15d8fa Binary files /dev/null and b/Telechess/Telechess.jpg differ diff --git a/Telechess/Telechess_transparent.png b/Telechess/Telechess_transparent.png new file mode 100644 index 0000000..779551e Binary files /dev/null and b/Telechess/Telechess_transparent.png differ diff --git a/Telecode/Telecode.png b/Telecode/Telecode.png new file mode 100644 index 0000000..b49660f Binary files /dev/null and b/Telecode/Telecode.png differ diff --git a/Telecode/Telecode_transparent.png b/Telecode/Telecode_transparent.png new file mode 100644 index 0000000..a832b24 Binary files /dev/null and b/Telecode/Telecode_transparent.png differ diff --git a/Telecode/old/Telecode.png b/Telecode/old/Telecode.png new file mode 100644 index 0000000..ad58ad4 Binary files /dev/null and b/Telecode/old/Telecode.png differ diff --git a/Telecom-Etude/README.md b/Telecom-Etude/README.md new file mode 100644 index 0000000..ee8c96b --- /dev/null +++ b/Telecom-Etude/README.md @@ -0,0 +1,5 @@ +# Telecom Etude + +- [https://telecom-etude.fr](https://telecom-etude.fr) +- [https://github.com/Telecom-Etude](https://github.com/Telecom-Etude) +- [https://github.com/Telecom-Etude/logos](https://github.com/Telecom-Etude/logos) diff --git a/Telecom-Etude/Telecom_Etude.png b/Telecom-Etude/Telecom_Etude.png new file mode 100644 index 0000000..c97805c Binary files /dev/null and b/Telecom-Etude/Telecom_Etude.png differ diff --git a/Telecom-Etude/bird_logo.svg b/Telecom-Etude/bird_logo.svg new file mode 100644 index 0000000..6dc640b --- /dev/null +++ b/Telecom-Etude/bird_logo.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Telecom-Etude/bird_logo_full.svg b/Telecom-Etude/bird_logo_full.svg new file mode 100644 index 0000000..f793e1e --- /dev/null +++ b/Telecom-Etude/bird_logo_full.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Telecom-Etude/full_logo.svg b/Telecom-Etude/full_logo.svg new file mode 100644 index 0000000..8fc72cc --- /dev/null +++ b/Telecom-Etude/full_logo.svg @@ -0,0 +1,156 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Telecom-Etude/old/JE_carre_v1.png b/Telecom-Etude/old/JE_carre_v1.png new file mode 100644 index 0000000..8902a62 Binary files /dev/null and b/Telecom-Etude/old/JE_carre_v1.png differ diff --git a/Telecom-Etude/old/JE_complet_v1.png b/Telecom-Etude/old/JE_complet_v1.png new file mode 100644 index 0000000..24d1d43 Binary files /dev/null and b/Telecom-Etude/old/JE_complet_v1.png differ diff --git a/Telecom-Paris/README.md b/Telecom-Paris/README.md new file mode 100644 index 0000000..afdf4e2 --- /dev/null +++ b/Telecom-Paris/README.md @@ -0,0 +1,3 @@ +# Télécom Paris + +- [https://telecom-paris.fr](https://telecom-paris.fr) diff --git a/Telecom-Paris/TELECOM_PARISTECH_IMT_grise_RVB.png b/Telecom-Paris/TELECOM_PARISTECH_IMT_grise_RVB.png new file mode 100644 index 0000000..030c991 Binary files /dev/null and b/Telecom-Paris/TELECOM_PARISTECH_IMT_grise_RVB.png differ diff --git a/Telecom_Breizh/Telecom_Breizh.jpg b/Telecom_Breizh/Telecom_Breizh.jpg new file mode 100644 index 0000000..39d6b66 Binary files /dev/null and b/Telecom_Breizh/Telecom_Breizh.jpg differ diff --git a/Telecom_Breizh/old/Telecom_Breizh.jpg b/Telecom_Breizh/old/Telecom_Breizh.jpg new file mode 100644 index 0000000..97b5a56 Binary files /dev/null and b/Telecom_Breizh/old/Telecom_Breizh.jpg differ diff --git a/Telecom_Dabating_Society/Telecom_Debating_Society.jpg b/Telecom_Dabating_Society/Telecom_Debating_Society.jpg new file mode 100644 index 0000000..f082bd5 Binary files /dev/null and b/Telecom_Dabating_Society/Telecom_Debating_Society.jpg differ diff --git a/Telecom_Dabating_Society/Telecom_Debating_Society_transparent.png b/Telecom_Dabating_Society/Telecom_Debating_Society_transparent.png new file mode 100644 index 0000000..68b100c Binary files /dev/null and b/Telecom_Dabating_Society/Telecom_Debating_Society_transparent.png differ diff --git a/Telecom_Pastis/Telecom_Pastis.png b/Telecom_Pastis/Telecom_Pastis.png new file mode 100644 index 0000000..ac48fcf Binary files /dev/null and b/Telecom_Pastis/Telecom_Pastis.png differ diff --git a/Telecom_Poker/logo.png b/Telecom_Poker/logo.png new file mode 100644 index 0000000..93340ed Binary files /dev/null and b/Telecom_Poker/logo.png differ diff --git a/Telecom_Poker/poker-159973.svg b/Telecom_Poker/poker-159973.svg new file mode 100644 index 0000000..1627aa4 --- /dev/null +++ b/Telecom_Poker/poker-159973.svg @@ -0,0 +1,309 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + J + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Telecom_Racing/259844151_126394409820003_4656055305558883591_n.png b/Telecom_Racing/259844151_126394409820003_4656055305558883591_n.png new file mode 100644 index 0000000..b1e6e61 Binary files /dev/null and b/Telecom_Racing/259844151_126394409820003_4656055305558883591_n.png differ diff --git a/Telecom_Racing/Logo.svg b/Telecom_Racing/Logo.svg new file mode 100644 index 0000000..0f617b9 --- /dev/null +++ b/Telecom_Racing/Logo.svg @@ -0,0 +1,525 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Telecom_Racing/Logo_blanc.png b/Telecom_Racing/Logo_blanc.png new file mode 100644 index 0000000..3f652d8 Binary files /dev/null and b/Telecom_Racing/Logo_blanc.png differ diff --git a/Telecom_Robotics/Telecom_Robotics.png b/Telecom_Robotics/Telecom_Robotics.png new file mode 100644 index 0000000..543e78b Binary files /dev/null and b/Telecom_Robotics/Telecom_Robotics.png differ diff --git a/Telecom_ski_club/Altigliss/logo-22e-black.png b/Telecom_ski_club/Altigliss/logo-22e-black.png new file mode 100644 index 0000000..77f2743 Binary files /dev/null and b/Telecom_ski_club/Altigliss/logo-22e-black.png differ diff --git a/Telecom_ski_club/Altigliss/logo-22e-blanc.png b/Telecom_ski_club/Altigliss/logo-22e-blanc.png new file mode 100644 index 0000000..547bb69 Binary files /dev/null and b/Telecom_ski_club/Altigliss/logo-22e-blanc.png differ diff --git a/Telecom_ski_club/Telecom_ski_club.jpg b/Telecom_ski_club/Telecom_ski_club.jpg new file mode 100644 index 0000000..d1b847a Binary files /dev/null and b/Telecom_ski_club/Telecom_ski_club.jpg differ diff --git a/Telecom_ski_club/Telecom_ski_club_transparent.png b/Telecom_ski_club/Telecom_ski_club_transparent.png new file mode 100644 index 0000000..5a032e4 Binary files /dev/null and b/Telecom_ski_club/Telecom_ski_club_transparent.png differ diff --git a/Telecom_voile/Telecom_Voile.png b/Telecom_voile/Telecom_Voile.png new file mode 100644 index 0000000..164a7a3 Binary files /dev/null and b/Telecom_voile/Telecom_Voile.png differ diff --git a/Telecom_voile/Telecom_Voile_new.png b/Telecom_voile/Telecom_Voile_new.png new file mode 100644 index 0000000..24a5350 Binary files /dev/null and b/Telecom_voile/Telecom_Voile_new.png differ diff --git a/Telecom_voile/logo_telecomvoile.png b/Telecom_voile/logo_telecomvoile.png new file mode 100644 index 0000000..164a7a3 Binary files /dev/null and b/Telecom_voile/logo_telecomvoile.png differ diff --git a/Telecook/Telecook_Pastries.png b/Telecook/Telecook_Pastries.png new file mode 100644 index 0000000..a17da17 Binary files /dev/null and b/Telecook/Telecook_Pastries.png differ diff --git a/Telecook/telecook.jpg b/Telecook/telecook.jpg new file mode 100644 index 0000000..3be40af Binary files /dev/null and b/Telecook/telecook.jpg differ diff --git a/Telecook/telecook.png b/Telecook/telecook.png new file mode 100644 index 0000000..802cc00 Binary files /dev/null and b/Telecook/telecook.png differ diff --git a/Telecook/telecook_black.png b/Telecook/telecook_black.png new file mode 100644 index 0000000..89eb9b0 Binary files /dev/null and b/Telecook/telecook_black.png differ diff --git a/Telecook/telecook_white.png b/Telecook/telecook_white.png new file mode 100644 index 0000000..57534e7 Binary files /dev/null and b/Telecook/telecook_white.png differ diff --git a/Telecook/telecook_white.svg b/Telecook/telecook_white.svg new file mode 100644 index 0000000..768b8a4 --- /dev/null +++ b/Telecook/telecook_white.svg @@ -0,0 +1,11 @@ + + + + + + + diff --git a/Telefrom/Telefrom.jpg b/Telefrom/Telefrom.jpg new file mode 100644 index 0000000..2420f4c Binary files /dev/null and b/Telefrom/Telefrom.jpg differ diff --git a/Telefrom/Telefrom_new.png b/Telefrom/Telefrom_new.png new file mode 100644 index 0000000..35615be Binary files /dev/null and b/Telefrom/Telefrom_new.png differ diff --git a/Telegumes/Telegumes.png b/Telegumes/Telegumes.png new file mode 100644 index 0000000..6311e90 Binary files /dev/null and b/Telegumes/Telegumes.png differ diff --git a/Telespoir/Telespoir.png b/Telespoir/Telespoir.png new file mode 100644 index 0000000..f62738c Binary files /dev/null and b/Telespoir/Telespoir.png differ diff --git a/Telespoir/telespoir.jpg b/Telespoir/telespoir.jpg new file mode 100644 index 0000000..c9c481e Binary files /dev/null and b/Telespoir/telespoir.jpg differ diff --git a/Telespoir/telespoir.png b/Telespoir/telespoir.png new file mode 100644 index 0000000..932ef51 Binary files /dev/null and b/Telespoir/telespoir.png differ diff --git a/Teletalks/teletalks.jpg b/Teletalks/teletalks.jpg new file mode 100644 index 0000000..e613359 Binary files /dev/null and b/Teletalks/teletalks.jpg differ diff --git a/Teletalks/teletalks.png b/Teletalks/teletalks.png new file mode 100644 index 0000000..d10ae89 Binary files /dev/null and b/Teletalks/teletalks.png differ diff --git a/The_Lait_Com/the_lait_com.svg b/The_Lait_Com/the_lait_com.svg new file mode 100644 index 0000000..a2a29c7 --- /dev/null +++ b/The_Lait_Com/the_lait_com.svg @@ -0,0 +1,106 @@ + + + + + + + + + + image/svg+xml + + + + + + + + Thé Lait Com + + Tea Club + + + + diff --git a/Theatre_d_impro/Theatre_d_Improvisation.png b/Theatre_d_impro/Theatre_d_Improvisation.png new file mode 100644 index 0000000..4586395 Binary files /dev/null and b/Theatre_d_impro/Theatre_d_Improvisation.png differ diff --git a/Theatre_d_impro/old/Theatre_d_Improvisation.png b/Theatre_d_impro/old/Theatre_d_Improvisation.png new file mode 100644 index 0000000..ac53263 Binary files /dev/null and b/Theatre_d_impro/old/Theatre_d_Improvisation.png differ