first commit

This commit is contained in:
Erreur32 2023-03-29 20:10:53 +02:00
parent affe8f450d
commit ebd21523e6
615 changed files with 4452 additions and 0 deletions

1
.git_/COMMIT_EDITMSG Executable file
View File

@ -0,0 +1 @@
first commit

1
.git_/FETCH_HEAD Executable file
View File

@ -0,0 +1 @@
06789c81d8d952288678fb1da91055651620a483 branch 'master' of https://git.echosystem.fr/Erreur32/Bash3lper

1
.git_/HEAD Executable file
View File

@ -0,0 +1 @@
ref: refs/heads/master

1
.git_/ORIG_HEAD Normal file
View File

@ -0,0 +1 @@
286e392a852549ee1fba13dae7d559cb1cd2f88c

15
.git_/config Executable file
View File

@ -0,0 +1,15 @@
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
pager = delta --plus-color="#012800" --minus-color="#340001" --theme='Monokai Extended'
[remote "origin"]
url = https://git.echosystem.fr/Erreur32/Bash3lper.git
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
remote = origin
merge = refs/heads/master
[interactive]
diffFilter = delta --color-only

1
.git_/description Executable file
View File

@ -0,0 +1 @@
Unnamed repository; edit this file 'description' to name the repository.

View File

@ -0,0 +1,15 @@
#!/bin/sh
#
# An example hook script to check the commit log message taken by
# applypatch from an e-mail message.
#
# The hook should exit with non-zero status after issuing an
# appropriate message if it wants to stop the commit. The hook is
# allowed to edit the commit message file.
#
# To enable this hook, rename this file to "applypatch-msg".
. git-sh-setup
commitmsg="$(git rev-parse --git-path hooks/commit-msg)"
test -x "$commitmsg" && exec "$commitmsg" ${1+"$@"}
:

2
.git_/hooks/commit-msg Executable file
View File

@ -0,0 +1,2 @@
#!/usr/bin/env bash
git secrets --commit_msg_hook -- "$@"

24
.git_/hooks/commit-msg.sample Executable file
View File

@ -0,0 +1,24 @@
#!/bin/sh
#
# An example hook script to check the commit log message.
# Called by "git commit" with one argument, the name of the file
# that has the commit message. The hook should exit with non-zero
# status after issuing an appropriate message if it wants to stop the
# commit. The hook is allowed to edit the commit message file.
#
# To enable this hook, rename this file to "commit-msg".
# Uncomment the below to add a Signed-off-by line to the message.
# Doing this in a hook is a bad idea in general, but the prepare-commit-msg
# hook is more suited to it.
#
# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p')
# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1"
# This example catches duplicate Signed-off-by lines.
test "" = "$(grep '^Signed-off-by: ' "$1" |
sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || {
echo >&2 Duplicate Signed-off-by lines.
exit 1
}

View File

@ -0,0 +1,114 @@
#!/usr/bin/perl
use strict;
use warnings;
use IPC::Open2;
# An example hook script to integrate Watchman
# (https://facebook.github.io/watchman/) with git to speed up detecting
# new and modified files.
#
# The hook is passed a version (currently 1) and a time in nanoseconds
# formatted as a string and outputs to stdout all files that have been
# modified since the given time. Paths must be relative to the root of
# the working tree and separated by a single NUL.
#
# To enable this hook, rename this file to "query-watchman" and set
# 'git config core.fsmonitor .git/hooks/query-watchman'
#
my ($version, $time) = @ARGV;
# Check the hook interface version
if ($version == 1) {
# convert nanoseconds to seconds
$time = int $time / 1000000000;
} else {
die "Unsupported query-fsmonitor hook version '$version'.\n" .
"Falling back to scanning...\n";
}
my $git_work_tree;
if ($^O =~ 'msys' || $^O =~ 'cygwin') {
$git_work_tree = Win32::GetCwd();
$git_work_tree =~ tr/\\/\//;
} else {
require Cwd;
$git_work_tree = Cwd::cwd();
}
my $retry = 1;
launch_watchman();
sub launch_watchman {
my $pid = open2(\*CHLD_OUT, \*CHLD_IN, 'watchman -j --no-pretty')
or die "open2() failed: $!\n" .
"Falling back to scanning...\n";
# In the query expression below we're asking for names of files that
# changed since $time but were not transient (ie created after
# $time but no longer exist).
#
# To accomplish this, we're using the "since" generator to use the
# recency index to select candidate nodes and "fields" to limit the
# output to file names only. Then we're using the "expression" term to
# further constrain the results.
#
# The category of transient files that we want to ignore will have a
# creation clock (cclock) newer than $time_t value and will also not
# currently exist.
my $query = <<" END";
["query", "$git_work_tree", {
"since": $time,
"fields": ["name"],
"expression": ["not", ["allof", ["since", $time, "cclock"], ["not", "exists"]]]
}]
END
print CHLD_IN $query;
close CHLD_IN;
my $response = do {local $/; <CHLD_OUT>};
die "Watchman: command returned no output.\n" .
"Falling back to scanning...\n" if $response eq "";
die "Watchman: command returned invalid output: $response\n" .
"Falling back to scanning...\n" unless $response =~ /^\{/;
my $json_pkg;
eval {
require JSON::XS;
$json_pkg = "JSON::XS";
1;
} or do {
require JSON::PP;
$json_pkg = "JSON::PP";
};
my $o = $json_pkg->new->utf8->decode($response);
if ($retry > 0 and $o->{error} and $o->{error} =~ m/unable to resolve root .* directory (.*) is not watched/) {
print STDERR "Adding '$git_work_tree' to watchman's watch list.\n";
$retry--;
qx/watchman watch "$git_work_tree"/;
die "Failed to make watchman watch '$git_work_tree'.\n" .
"Falling back to scanning...\n" if $? != 0;
# Watchman will always return all files on the first query so
# return the fast "everything is dirty" flag to git and do the
# Watchman query just to get it over with now so we won't pay
# the cost in git to look up each individual file.
print "/\0";
eval { launch_watchman() };
exit 0;
}
die "Watchman: $o->{error}.\n" .
"Falling back to scanning...\n" if $o->{error};
binmode STDOUT, ":utf8";
local $, = "\0";
print @{$o->{files}};
}

8
.git_/hooks/post-update.sample Executable file
View File

@ -0,0 +1,8 @@
#!/bin/sh
#
# An example hook script to prepare a packed repository for use over
# dumb transports.
#
# To enable this hook, rename this file to "post-update".
exec git update-server-info

View File

@ -0,0 +1,14 @@
#!/bin/sh
#
# An example hook script to verify what is about to be committed
# by applypatch from an e-mail message.
#
# The hook should exit with non-zero status after issuing an
# appropriate message if it wants to stop the commit.
#
# To enable this hook, rename this file to "pre-applypatch".
. git-sh-setup
precommit="$(git rev-parse --git-path hooks/pre-commit)"
test -x "$precommit" && exec "$precommit" ${1+"$@"}
:

2
.git_/hooks/pre-commit Executable file
View File

@ -0,0 +1,2 @@
#!/usr/bin/env bash
git secrets --pre_commit_hook -- "$@"

49
.git_/hooks/pre-commit.sample Executable file
View File

@ -0,0 +1,49 @@
#!/bin/sh
#
# An example hook script to verify what is about to be committed.
# Called by "git commit" with no arguments. The hook should
# exit with non-zero status after issuing an appropriate message if
# it wants to stop the commit.
#
# To enable this hook, rename this file to "pre-commit".
if git rev-parse --verify HEAD >/dev/null 2>&1
then
against=HEAD
else
# Initial commit: diff against an empty tree object
against=4b825dc642cb6eb9a060e54bf8d69288fbee4904
fi
# If you want to allow non-ASCII filenames set this variable to true.
allownonascii=$(git config --bool hooks.allownonascii)
# Redirect output to stderr.
exec 1>&2
# Cross platform projects tend to avoid non-ASCII filenames; prevent
# them from being added to the repository. We exploit the fact that the
# printable range starts at the space character and ends with tilde.
if [ "$allownonascii" != "true" ] &&
# Note that the use of brackets around a tr range is ok here, (it's
# even required, for portability to Solaris 10's /usr/bin/tr), since
# the square bracket bytes happen to fall in the designated range.
test $(git diff --cached --name-only --diff-filter=A -z $against |
LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0
then
cat <<\EOF
Error: Attempt to add a non-ASCII file name.
This can cause problems if you want to work with people on other platforms.
To be portable it is advisable to rename the file.
If you know what you are doing you can disable this check using:
git config hooks.allownonascii true
EOF
exit 1
fi
# If there are whitespace errors, print the offending file names and fail.
exec git diff-index --check --cached $against --

53
.git_/hooks/pre-push.sample Executable file
View File

@ -0,0 +1,53 @@
#!/bin/sh
# An example hook script to verify what is about to be pushed. Called by "git
# push" after it has checked the remote status, but before anything has been
# pushed. If this script exits with a non-zero status nothing will be pushed.
#
# This hook is called with the following parameters:
#
# $1 -- Name of the remote to which the push is being done
# $2 -- URL to which the push is being done
#
# If pushing without using a named remote those arguments will be equal.
#
# Information about the commits which are being pushed is supplied as lines to
# the standard input in the form:
#
# <local ref> <local sha1> <remote ref> <remote sha1>
#
# This sample shows how to prevent push of commits where the log message starts
# with "WIP" (work in progress).
remote="$1"
url="$2"
z40=0000000000000000000000000000000000000000
while read local_ref local_sha remote_ref remote_sha
do
if [ "$local_sha" = $z40 ]
then
# Handle delete
:
else
if [ "$remote_sha" = $z40 ]
then
# New branch, examine all commits
range="$local_sha"
else
# Update to existing branch, examine new commits
range="$remote_sha..$local_sha"
fi
# Check for WIP commit
commit=`git rev-list -n 1 --grep '^WIP' "$range"`
if [ -n "$commit" ]
then
echo >&2 "Found WIP commit in $local_ref, not pushing"
exit 1
fi
fi
done
exit 0

169
.git_/hooks/pre-rebase.sample Executable file
View File

@ -0,0 +1,169 @@
#!/bin/sh
#
# Copyright (c) 2006, 2008 Junio C Hamano
#
# The "pre-rebase" hook is run just before "git rebase" starts doing
# its job, and can prevent the command from running by exiting with
# non-zero status.
#
# The hook is called with the following parameters:
#
# $1 -- the upstream the series was forked from.
# $2 -- the branch being rebased (or empty when rebasing the current branch).
#
# This sample shows how to prevent topic branches that are already
# merged to 'next' branch from getting rebased, because allowing it
# would result in rebasing already published history.
publish=next
basebranch="$1"
if test "$#" = 2
then
topic="refs/heads/$2"
else
topic=`git symbolic-ref HEAD` ||
exit 0 ;# we do not interrupt rebasing detached HEAD
fi
case "$topic" in
refs/heads/??/*)
;;
*)
exit 0 ;# we do not interrupt others.
;;
esac
# Now we are dealing with a topic branch being rebased
# on top of master. Is it OK to rebase it?
# Does the topic really exist?
git show-ref -q "$topic" || {
echo >&2 "No such branch $topic"
exit 1
}
# Is topic fully merged to master?
not_in_master=`git rev-list --pretty=oneline ^master "$topic"`
if test -z "$not_in_master"
then
echo >&2 "$topic is fully merged to master; better remove it."
exit 1 ;# we could allow it, but there is no point.
fi
# Is topic ever merged to next? If so you should not be rebasing it.
only_next_1=`git rev-list ^master "^$topic" ${publish} | sort`
only_next_2=`git rev-list ^master ${publish} | sort`
if test "$only_next_1" = "$only_next_2"
then
not_in_topic=`git rev-list "^$topic" master`
if test -z "$not_in_topic"
then
echo >&2 "$topic is already up-to-date with master"
exit 1 ;# we could allow it, but there is no point.
else
exit 0
fi
else
not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"`
/usr/bin/perl -e '
my $topic = $ARGV[0];
my $msg = "* $topic has commits already merged to public branch:\n";
my (%not_in_next) = map {
/^([0-9a-f]+) /;
($1 => 1);
} split(/\n/, $ARGV[1]);
for my $elem (map {
/^([0-9a-f]+) (.*)$/;
[$1 => $2];
} split(/\n/, $ARGV[2])) {
if (!exists $not_in_next{$elem->[0]}) {
if ($msg) {
print STDERR $msg;
undef $msg;
}
print STDERR " $elem->[1]\n";
}
}
' "$topic" "$not_in_next" "$not_in_master"
exit 1
fi
<<\DOC_END
This sample hook safeguards topic branches that have been
published from being rewound.
The workflow assumed here is:
* Once a topic branch forks from "master", "master" is never
merged into it again (either directly or indirectly).
* Once a topic branch is fully cooked and merged into "master",
it is deleted. If you need to build on top of it to correct
earlier mistakes, a new topic branch is created by forking at
the tip of the "master". This is not strictly necessary, but
it makes it easier to keep your history simple.
* Whenever you need to test or publish your changes to topic
branches, merge them into "next" branch.
The script, being an example, hardcodes the publish branch name
to be "next", but it is trivial to make it configurable via
$GIT_DIR/config mechanism.
With this workflow, you would want to know:
(1) ... if a topic branch has ever been merged to "next". Young
topic branches can have stupid mistakes you would rather
clean up before publishing, and things that have not been
merged into other branches can be easily rebased without
affecting other people. But once it is published, you would
not want to rewind it.
(2) ... if a topic branch has been fully merged to "master".
Then you can delete it. More importantly, you should not
build on top of it -- other people may already want to
change things related to the topic as patches against your
"master", so if you need further changes, it is better to
fork the topic (perhaps with the same name) afresh from the
tip of "master".
Let's look at this example:
o---o---o---o---o---o---o---o---o---o "next"
/ / / /
/ a---a---b A / /
/ / / /
/ / c---c---c---c B /
/ / / \ /
/ / / b---b C \ /
/ / / / \ /
---o---o---o---o---o---o---o---o---o---o---o "master"
A, B and C are topic branches.
* A has one fix since it was merged up to "next".
* B has finished. It has been fully merged up to "master" and "next",
and is ready to be deleted.
* C has not merged to "next" at all.
We would want to allow C to be rebased, refuse A, and encourage
B to be deleted.
To compute (1):
git rev-list ^master ^topic next
git rev-list ^master next
if these match, topic has not merged in next at all.
To compute (2):
git rev-list master..topic
if this is empty, it is fully merged to "master".
DOC_END

24
.git_/hooks/pre-receive.sample Executable file
View File

@ -0,0 +1,24 @@
#!/bin/sh
#
# An example hook script to make use of push options.
# The example simply echoes all push options that start with 'echoback='
# and rejects all pushes when the "reject" push option is used.
#
# To enable this hook, rename this file to "pre-receive".
if test -n "$GIT_PUSH_OPTION_COUNT"
then
i=0
while test "$i" -lt "$GIT_PUSH_OPTION_COUNT"
do
eval "value=\$GIT_PUSH_OPTION_$i"
case "$value" in
echoback=*)
echo "echo from the pre-receive-hook: ${value#*=}" >&2
;;
reject)
exit 1
esac
i=$((i + 1))
done
fi

2
.git_/hooks/prepare-commit-msg Executable file
View File

@ -0,0 +1,2 @@
#!/usr/bin/env bash
git secrets --prepare_commit_msg_hook -- "$@"

View File

@ -0,0 +1,36 @@
#!/bin/sh
#
# An example hook script to prepare the commit log message.
# Called by "git commit" with the name of the file that has the
# commit message, followed by the description of the commit
# message's source. The hook's purpose is to edit the commit
# message file. If the hook fails with a non-zero status,
# the commit is aborted.
#
# To enable this hook, rename this file to "prepare-commit-msg".
# This hook includes three examples. The first comments out the
# "Conflicts:" part of a merge commit.
#
# The second includes the output of "git diff --name-status -r"
# into the message, just before the "git status" output. It is
# commented because it doesn't cope with --amend or with squashed
# commits.
#
# The third example adds a Signed-off-by line to the message, that can
# still be edited. This is rarely a good idea.
case "$2,$3" in
merge,)
/usr/bin/perl -i.bak -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1" ;;
# ,|template,)
# /usr/bin/perl -i.bak -pe '
# print "\n" . `git diff --cached --name-status -r`
# if /^#/ && $first++ == 0' "$1" ;;
*) ;;
esac
# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p')
# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1"

128
.git_/hooks/update.sample Executable file
View File

@ -0,0 +1,128 @@
#!/bin/sh
#
# An example hook script to block unannotated tags from entering.
# Called by "git receive-pack" with arguments: refname sha1-old sha1-new
#
# To enable this hook, rename this file to "update".
#
# Config
# ------
# hooks.allowunannotated
# This boolean sets whether unannotated tags will be allowed into the
# repository. By default they won't be.
# hooks.allowdeletetag
# This boolean sets whether deleting tags will be allowed in the
# repository. By default they won't be.
# hooks.allowmodifytag
# This boolean sets whether a tag may be modified after creation. By default
# it won't be.
# hooks.allowdeletebranch
# This boolean sets whether deleting branches will be allowed in the
# repository. By default they won't be.
# hooks.denycreatebranch
# This boolean sets whether remotely creating branches will be denied
# in the repository. By default this is allowed.
#
# --- Command line
refname="$1"
oldrev="$2"
newrev="$3"
# --- Safety check
if [ -z "$GIT_DIR" ]; then
echo "Don't run this script from the command line." >&2
echo " (if you want, you could supply GIT_DIR then run" >&2
echo " $0 <ref> <oldrev> <newrev>)" >&2
exit 1
fi
if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then
echo "usage: $0 <ref> <oldrev> <newrev>" >&2
exit 1
fi
# --- Config
allowunannotated=$(git config --bool hooks.allowunannotated)
allowdeletebranch=$(git config --bool hooks.allowdeletebranch)
denycreatebranch=$(git config --bool hooks.denycreatebranch)
allowdeletetag=$(git config --bool hooks.allowdeletetag)
allowmodifytag=$(git config --bool hooks.allowmodifytag)
# check for no description
projectdesc=$(sed -e '1q' "$GIT_DIR/description")
case "$projectdesc" in
"Unnamed repository"* | "")
echo "*** Project description file hasn't been set" >&2
exit 1
;;
esac
# --- Check types
# if $newrev is 0000...0000, it's a commit to delete a ref.
zero="0000000000000000000000000000000000000000"
if [ "$newrev" = "$zero" ]; then
newrev_type=delete
else
newrev_type=$(git cat-file -t $newrev)
fi
case "$refname","$newrev_type" in
refs/tags/*,commit)
# un-annotated tag
short_refname=${refname##refs/tags/}
if [ "$allowunannotated" != "true" ]; then
echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2
echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2
exit 1
fi
;;
refs/tags/*,delete)
# delete tag
if [ "$allowdeletetag" != "true" ]; then
echo "*** Deleting a tag is not allowed in this repository" >&2
exit 1
fi
;;
refs/tags/*,tag)
# annotated tag
if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1
then
echo "*** Tag '$refname' already exists." >&2
echo "*** Modifying a tag is not allowed in this repository." >&2
exit 1
fi
;;
refs/heads/*,commit)
# branch
if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then
echo "*** Creating a branch is not allowed in this repository" >&2
exit 1
fi
;;
refs/heads/*,delete)
# delete branch
if [ "$allowdeletebranch" != "true" ]; then
echo "*** Deleting a branch is not allowed in this repository" >&2
exit 1
fi
;;
refs/remotes/*,commit)
# tracking branch
;;
refs/remotes/*,delete)
# delete tracking branch
if [ "$allowdeletebranch" != "true" ]; then
echo "*** Deleting a tracking branch is not allowed in this repository" >&2
exit 1
fi
;;
*)
# Anything else (is there anything else?)
echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2
exit 1
;;
esac
# --- Finished
exit 0

BIN
.git_/index Normal file

Binary file not shown.

6
.git_/info/exclude Executable file
View File

@ -0,0 +1,6 @@
# git ls-files --others --exclude-from=.git/info/exclude
# Lines that start with '#' are comments.
# For a project mostly in C, the following would be a good set of
# exclude patterns (uncomment them if you want to use them):
# *.[oa]
# *~

81
.git_/logs/HEAD Executable file
View File

@ -0,0 +1,81 @@
0000000000000000000000000000000000000000 a9c69a015b86d85e47d093071d1ff4ff0d2e4a26 Erreur32 <postmaster@echosystem.fr> 1522598565 +0200 clone: from https://git.echosystem.fr/Erreur32/Bash3lper.git
a9c69a015b86d85e47d093071d1ff4ff0d2e4a26 50d77195bb751e1b97082ce04e77b5df9140225c Erreur32 <postmaster@echosystem.fr> 1522598612 +0200 commit: first commit
50d77195bb751e1b97082ce04e77b5df9140225c 660803b4a15afa260c937bf1bedc9ba278ac8ed3 Erreur32 <postmaster@echosystem.fr> 1522598780 +0200 commit: first commit
660803b4a15afa260c937bf1bedc9ba278ac8ed3 f33ec8cc988fc6b3b9de6c5585037d8177d15da8 Erreur32 <postmaster@echosystem.fr> 1522599303 +0200 commit: first commit
f33ec8cc988fc6b3b9de6c5585037d8177d15da8 dd47b2f4dd24324a9353fc8b72cd7714458b9c42 Erreur32 <postmaster@echosystem.fr> 1522599894 +0200 commit: first commit
dd47b2f4dd24324a9353fc8b72cd7714458b9c42 785e50584f041cb42fce7b6e4519ad39bd9bdd6f Erreur32 <postmaster@echosystem.fr> 1522601541 +0200 commit: first commit
785e50584f041cb42fce7b6e4519ad39bd9bdd6f 89530d20d6fb9b4b7d2e4eb4a048308eb887e1b8 Erreur32 <postmaster@echosystem.fr> 1522709501 +0200 commit: first commit
89530d20d6fb9b4b7d2e4eb4a048308eb887e1b8 d195f8d14e1ac1ed0f9c70d1562cf0153593d589 Erreur32 <postmaster@echosystem.fr> 1522709586 +0200 commit: first commit
d195f8d14e1ac1ed0f9c70d1562cf0153593d589 cdd98c21958caba03d990302d810ae7ae3017e36 Erreur32 <postmaster@echosystem.fr> 1522709657 +0200 commit: first commit
cdd98c21958caba03d990302d810ae7ae3017e36 8f5af48c53760649df4c64f20b5bbb8a638a1750 Erreur32 <postmaster@echosystem.fr> 1522761198 +0200 commit: first commit
8f5af48c53760649df4c64f20b5bbb8a638a1750 15c6b3a1afdec5f3efcab64a2649dd5c5e8a473b Erreur32 <postmaster@echosystem.fr> 1522761323 +0200 commit: first commit
15c6b3a1afdec5f3efcab64a2649dd5c5e8a473b 4baf2d21000e105878673ce86a739098fa484391 Erreur32 <postmaster@echosystem.fr> 1585486752 +0200 commit: first commit
4baf2d21000e105878673ce86a739098fa484391 71287a36c4a946c04debc7d0a3e31652c3ea8021 Erreur32 <postmaster@echosystem.fr> 1585488783 +0200 commit: first commit
71287a36c4a946c04debc7d0a3e31652c3ea8021 6823979572de2b99ccb9e7c5458ebacfab17606f Erreur32 <postmaster@echosystem.fr> 1585488914 +0200 commit: first commit
6823979572de2b99ccb9e7c5458ebacfab17606f 9a4c8e147867ac51d438b377134e0c6096ed9d35 Erreur32 <postmaster@echosystem.fr> 1585489068 +0200 commit: first commit
9a4c8e147867ac51d438b377134e0c6096ed9d35 70b59397ac09ec6e4d46c04c37f246ff7f776522 Erreur32 <postmaster@echosystem.fr> 1585489181 +0200 commit: first commit
70b59397ac09ec6e4d46c04c37f246ff7f776522 7c00e757baea1dd37bbce8b7cb494470f3803cbc Erreur32 <postmaster@echosystem.fr> 1585517044 +0200 commit: first commit
7c00e757baea1dd37bbce8b7cb494470f3803cbc eab775bfa1594f78847a5bd451cbdbb14830712a Erreur32 <postmaster@echosystem.fr> 1585517077 +0200 commit: first commit
eab775bfa1594f78847a5bd451cbdbb14830712a 66501d2967315541cf94b2e6ab5688daaefcaec5 Erreur32 <postmaster@echosystem.fr> 1585519699 +0200 commit: first commit
66501d2967315541cf94b2e6ab5688daaefcaec5 e3a8fe0f8da342fe714f1566578c03076ed6211c Erreur32 <postmaster@echosystem.fr> 1585592457 +0200 commit: first commit
e3a8fe0f8da342fe714f1566578c03076ed6211c b9df3466d92afc8707b4f378156a45345343fec1 Erreur32 <postmaster@echosystem.fr> 1585601453 +0200 commit: first commit
b9df3466d92afc8707b4f378156a45345343fec1 ab363450d8b624144941cf8378de5198022bae98 Erreur32 <postmaster@echosystem.fr> 1585602010 +0200 commit: first commit
ab363450d8b624144941cf8378de5198022bae98 6f21961f4f6e8904172e6dfd84466018a9efc72b Erreur32 <postmaster@echosystem.fr> 1585603451 +0200 commit: first commit
6f21961f4f6e8904172e6dfd84466018a9efc72b 982037dd33d4f611de9cfefb84c511acef5c988a Erreur32 <postmaster@echosystem.fr> 1585603762 +0200 commit: first commit
982037dd33d4f611de9cfefb84c511acef5c988a 91bb2b38f2c815a9bd553d7b66f81eb654881677 Erreur32 <postmaster@echosystem.fr> 1585604171 +0200 commit: first commit
91bb2b38f2c815a9bd553d7b66f81eb654881677 ba3a131392e10b83fd4a8829bf794f6fbc70dd5e Erreur32 <postmaster@echosystem.fr> 1585604554 +0200 commit: first commit
ba3a131392e10b83fd4a8829bf794f6fbc70dd5e dd0de1926bc884aa87b5c715b27d9c81d3393744 Erreur32 <postmaster@echosystem.fr> 1585604744 +0200 commit: first commit
dd0de1926bc884aa87b5c715b27d9c81d3393744 d10bf80b33801f89373e1615d78e602fbb15d5cf Erreur32 <postmaster@echosystem.fr> 1585605192 +0200 commit: first commit
d10bf80b33801f89373e1615d78e602fbb15d5cf 132711bba2e3687d534475159dc804fffe1f9128 Erreur32 <postmaster@echosystem.fr> 1585605330 +0200 commit: first commit
132711bba2e3687d534475159dc804fffe1f9128 d6a91ed47dafab0afa2fb77042721d49a6060e6d Erreur32 <postmaster@echosystem.fr> 1585605541 +0200 commit: first commit
d6a91ed47dafab0afa2fb77042721d49a6060e6d ca2cdc0542d35623fc40098d17d35eddc5c2394c Erreur32 <postmaster@echosystem.fr> 1585605722 +0200 commit: first commit
ca2cdc0542d35623fc40098d17d35eddc5c2394c 8c434b6181346789d8029fdd8de6f32550155f74 Erreur32 <postmaster@echosystem.fr> 1585676104 +0200 commit: first commit
8c434b6181346789d8029fdd8de6f32550155f74 ad90f4bce3854397ccc3952ce1ebdd9f3f79ff22 Erreur32 <postmaster@echosystem.fr> 1585676141 +0200 commit: first commit
ad90f4bce3854397ccc3952ce1ebdd9f3f79ff22 35a707e054133ceef8b6767948cf05ff2a2b693f Erreur32 <postmaster@echosystem.fr> 1585685221 +0200 commit: first commit
35a707e054133ceef8b6767948cf05ff2a2b693f a7e4ac495e6f47f98adfb64d7aaf2745e1b50eaf Erreur32 <postmaster@echosystem.fr> 1585685874 +0200 commit: first commit
a7e4ac495e6f47f98adfb64d7aaf2745e1b50eaf ceebd6acf09cc914864ae9a50bd81c915aabf701 Erreur32 <postmaster@echosystem.fr> 1585693071 +0200 commit: first commit
ceebd6acf09cc914864ae9a50bd81c915aabf701 c7627d48d0b019fa593e98513d9f4462c7474973 Erreur32 <postmaster@echosystem.fr> 1585757968 +0200 commit: first commit
c7627d48d0b019fa593e98513d9f4462c7474973 3acff6d9b78419c6454546f3bfca477ea18a8ee4 Erreur32 <postmaster@echosystem.fr> 1585758239 +0200 commit: first commit
3acff6d9b78419c6454546f3bfca477ea18a8ee4 f1825226613794702461dae4cf601dcf3627a31b Erreur32 <postmaster@echosystem.fr> 1585758688 +0200 commit: first commit
f1825226613794702461dae4cf601dcf3627a31b ff0df8dd3e8005ed0bb9f12293d5d900e64177a6 Erreur32 <postmaster@echosystem.fr> 1585759104 +0200 commit: first commit
ff0df8dd3e8005ed0bb9f12293d5d900e64177a6 45d966fa91a13727b783a3e8ac58eee4ffe13c2c Erreur32 <postmaster@echosystem.fr> 1585759636 +0200 commit: first commit
45d966fa91a13727b783a3e8ac58eee4ffe13c2c c7868b124578e14c63e2974b5f0aa682649744bb Erreur32 <postmaster@echosystem.fr> 1585760406 +0200 commit: first commit
c7868b124578e14c63e2974b5f0aa682649744bb 14197964edc3c61e8698e10990b88ca1cbc978ea Erreur32 <postmaster@echosystem.fr> 1585760781 +0200 commit: first commit
14197964edc3c61e8698e10990b88ca1cbc978ea 896e47342e8fb5b3fc8445504dcceaff5592d5c1 Erreur32 <postmaster@echosystem.fr> 1585763262 +0200 pull: Fast-forward
896e47342e8fb5b3fc8445504dcceaff5592d5c1 34ac4f56bcd6c727aff78a1765c5241e4106112c Erreur32 <postmaster@echosystem.fr> 1585765963 +0200 commit: first commit
34ac4f56bcd6c727aff78a1765c5241e4106112c 2fe58de101519ca10ee6a5962f401f4b5099c2e8 Erreur32 <postmaster@echosystem.fr> 1585856024 +0200 commit: first commit
2fe58de101519ca10ee6a5962f401f4b5099c2e8 9c995b5060fea401b4378d4f5b8666eb04798962 Erreur32 <postmaster@echosystem.fr> 1585856642 +0200 commit: first commit
9c995b5060fea401b4378d4f5b8666eb04798962 0a8e27403998c48aa8228782419dae9012e5f9a3 Erreur32 <postmaster@echosystem.fr> 1585857572 +0200 commit: first commit
0a8e27403998c48aa8228782419dae9012e5f9a3 29a631244477676803ef51cb5b76407c9ed167a8 Erreur32 <postmaster@echosystem.fr> 1585858202 +0200 commit: first commit
29a631244477676803ef51cb5b76407c9ed167a8 9700c21c179ff05d25a54dc2378baa89fe1d4edd Erreur32 <postmaster@echosystem.fr> 1585908356 +0200 commit: first commit
9700c21c179ff05d25a54dc2378baa89fe1d4edd 098b0ae4569c1364c872e5062d53f13e78c68543 Erreur32 <postmaster@echosystem.fr> 1585917129 +0200 commit: first commit
098b0ae4569c1364c872e5062d53f13e78c68543 f8c4840e54c5c28ff8c26290ff05e78aa2aec8e9 Erreur32 <postmaster@echosystem.fr> 1585917265 +0200 commit: first commit
f8c4840e54c5c28ff8c26290ff05e78aa2aec8e9 5623d2923eac9ae77ef87c1dd4541d7082a087aa Erreur32 <postmaster@echosystem.fr> 1585917421 +0200 commit: first commit
5623d2923eac9ae77ef87c1dd4541d7082a087aa 2a8fb201013fa125104c868783cb4774e44a6d67 Erreur32 <postmaster@echosystem.fr> 1585917458 +0200 commit: first commit
2a8fb201013fa125104c868783cb4774e44a6d67 ae7fb1b94e16361127464189e242ae6aefbf0e43 Erreur32 <postmaster@echosystem.fr> 1585919139 +0200 commit: first commit
ae7fb1b94e16361127464189e242ae6aefbf0e43 88ce947955d74a4caea655dd2c5783ded2731e7f Erreur32 <postmaster@echosystem.fr> 1585919268 +0200 commit: first commit
88ce947955d74a4caea655dd2c5783ded2731e7f 72672e071f9931f4956f90fa3500621fae606e34 Erreur32 <postmaster@echosystem.fr> 1585920081 +0200 commit: first commit
72672e071f9931f4956f90fa3500621fae606e34 601a3da769080a38948fe4c1241700505fa479ee Erreur32 <postmaster@echosystem.fr> 1585920985 +0200 commit: first commit
601a3da769080a38948fe4c1241700505fa479ee 7ffc1e870c3faf46b1633fd3ffa6ef156deba2cd Erreur32 <postmaster@echosystem.fr> 1585921319 +0200 commit: first commit
7ffc1e870c3faf46b1633fd3ffa6ef156deba2cd e122cf07742d865f985bd04d31748630a91ba15e Erreur32 <postmaster@echosystem.fr> 1585921820 +0200 commit: first commit
e122cf07742d865f985bd04d31748630a91ba15e 387cd4fe7f571495775d7d47d192b6b23665da27 Erreur32 <postmaster@echosystem.fr> 1585930999 +0200 commit: first commit
387cd4fe7f571495775d7d47d192b6b23665da27 992c58db753349c027f6783127e1cced81941ce9 Erreur32 <postmaster@echosystem.fr> 1585933720 +0200 commit: first commit
992c58db753349c027f6783127e1cced81941ce9 3b8d0314d923db6a78777adb3279b82b68009274 Erreur32 <postmaster@echosystem.fr> 1585935024 +0200 commit: first commit
3b8d0314d923db6a78777adb3279b82b68009274 f553ecba02effab1f25eeac1664865226f0554ec Erreur32 <postmaster@echosystem.fr> 1585935181 +0200 commit: first commit
f553ecba02effab1f25eeac1664865226f0554ec 87a8b4d3f65ab804f5138cc9b727af26444d7535 Erreur32 <postmaster@echosystem.fr> 1585993129 +0200 commit: ignoring gitignore
87a8b4d3f65ab804f5138cc9b727af26444d7535 002c73bbbb1c4b7ee456e608b20ddb5b4e599a5d Erreur32 <postmaster@echosystem.fr> 1585994223 +0200 commit: first commit
002c73bbbb1c4b7ee456e608b20ddb5b4e599a5d 36b1f2d4f5e29f56da477a790fb41d4c249509cc Erreur32 <postmaster@echosystem.fr> 1585995392 +0200 commit: first commit
36b1f2d4f5e29f56da477a790fb41d4c249509cc 82fb85564a9a028800091845ab2f97135c60107b Erreur32 <postmaster@echosystem.fr> 1586015063 +0200 commit: first commit
82fb85564a9a028800091845ab2f97135c60107b b96680dec5d495accc803cbc57f21ae6a1500786 Erreur32 <postmaster@echosystem.fr> 1586462891 +0200 commit: first commit
b96680dec5d495accc803cbc57f21ae6a1500786 2fcee013df340e43c6f05315582409403350ed9b Erreur32 <postmaster@echosystem.fr> 1587037213 +0200 commit: first commit
2fcee013df340e43c6f05315582409403350ed9b ef3bd30bc14b8d5413b56cac2fdbe184dc808e0b Erreur32 <postmaster@echosystem.fr> 1611683829 +0100 commit: first commit
ef3bd30bc14b8d5413b56cac2fdbe184dc808e0b 8e0e96d8ce1c5f4c85a432519d52a1ee65a49798 Erreur32 <postmaster@echosystem.fr> 1611684077 +0100 commit: first commit
8e0e96d8ce1c5f4c85a432519d52a1ee65a49798 286e392a852549ee1fba13dae7d559cb1cd2f88c Erreur32 <postmaster@echosystem.fr> 1611684235 +0100 pull: Merge made by the 'recursive' strategy.
286e392a852549ee1fba13dae7d559cb1cd2f88c bbbd6c65d3de6b3db041ebd35b107dda15e5e804 Erreur32 <postmaster@echosystem.fr> 1611684333 +0100 commit: first commit
bbbd6c65d3de6b3db041ebd35b107dda15e5e804 ff54cadac5a16c53459c5ccf7bc5f702d824447b Erreur32 <postmaster@echosystem.fr> 1611684700 +0100 commit: first commit
ff54cadac5a16c53459c5ccf7bc5f702d824447b 879026af043bd2427cac85384f129e98690988e2 Erreur32 <postmaster@echosystem.fr> 1611684900 +0100 commit: first commit
879026af043bd2427cac85384f129e98690988e2 f7b34960852d563669c06b4920fdffeb6626f339 Erreur32 <postmaster@echosystem.fr> 1611684993 +0100 commit: first commit
f7b34960852d563669c06b4920fdffeb6626f339 de924b2bc2f67b345ad0858e285d6962129659bf Erreur32 <postmaster@echosystem.fr> 1611685087 +0100 commit: first commit
de924b2bc2f67b345ad0858e285d6962129659bf 6394a77e4ffd601e98c58b9ef549fc35b7c9e49c Erreur32 <postmaster@echosystem.fr> 1611687738 +0100 commit: first commit
6394a77e4ffd601e98c58b9ef549fc35b7c9e49c 4e79c69c1a171baa3b898d4374155c96caf371b5 Erreur32 <postmaster@echosystem.fr> 1611687818 +0100 commit: first commit
4e79c69c1a171baa3b898d4374155c96caf371b5 58f511590370a3e1656220e674c7c0395d19f97f Erreur32 <postmaster@echosystem.fr> 1611687969 +0100 commit: first commit

81
.git_/logs/refs/heads/master Executable file
View File

@ -0,0 +1,81 @@
0000000000000000000000000000000000000000 a9c69a015b86d85e47d093071d1ff4ff0d2e4a26 Erreur32 <postmaster@echosystem.fr> 1522598565 +0200 clone: from https://git.echosystem.fr/Erreur32/Bash3lper.git
a9c69a015b86d85e47d093071d1ff4ff0d2e4a26 50d77195bb751e1b97082ce04e77b5df9140225c Erreur32 <postmaster@echosystem.fr> 1522598612 +0200 commit: first commit
50d77195bb751e1b97082ce04e77b5df9140225c 660803b4a15afa260c937bf1bedc9ba278ac8ed3 Erreur32 <postmaster@echosystem.fr> 1522598780 +0200 commit: first commit
660803b4a15afa260c937bf1bedc9ba278ac8ed3 f33ec8cc988fc6b3b9de6c5585037d8177d15da8 Erreur32 <postmaster@echosystem.fr> 1522599303 +0200 commit: first commit
f33ec8cc988fc6b3b9de6c5585037d8177d15da8 dd47b2f4dd24324a9353fc8b72cd7714458b9c42 Erreur32 <postmaster@echosystem.fr> 1522599894 +0200 commit: first commit
dd47b2f4dd24324a9353fc8b72cd7714458b9c42 785e50584f041cb42fce7b6e4519ad39bd9bdd6f Erreur32 <postmaster@echosystem.fr> 1522601541 +0200 commit: first commit
785e50584f041cb42fce7b6e4519ad39bd9bdd6f 89530d20d6fb9b4b7d2e4eb4a048308eb887e1b8 Erreur32 <postmaster@echosystem.fr> 1522709501 +0200 commit: first commit
89530d20d6fb9b4b7d2e4eb4a048308eb887e1b8 d195f8d14e1ac1ed0f9c70d1562cf0153593d589 Erreur32 <postmaster@echosystem.fr> 1522709586 +0200 commit: first commit
d195f8d14e1ac1ed0f9c70d1562cf0153593d589 cdd98c21958caba03d990302d810ae7ae3017e36 Erreur32 <postmaster@echosystem.fr> 1522709657 +0200 commit: first commit
cdd98c21958caba03d990302d810ae7ae3017e36 8f5af48c53760649df4c64f20b5bbb8a638a1750 Erreur32 <postmaster@echosystem.fr> 1522761198 +0200 commit: first commit
8f5af48c53760649df4c64f20b5bbb8a638a1750 15c6b3a1afdec5f3efcab64a2649dd5c5e8a473b Erreur32 <postmaster@echosystem.fr> 1522761323 +0200 commit: first commit
15c6b3a1afdec5f3efcab64a2649dd5c5e8a473b 4baf2d21000e105878673ce86a739098fa484391 Erreur32 <postmaster@echosystem.fr> 1585486752 +0200 commit: first commit
4baf2d21000e105878673ce86a739098fa484391 71287a36c4a946c04debc7d0a3e31652c3ea8021 Erreur32 <postmaster@echosystem.fr> 1585488783 +0200 commit: first commit
71287a36c4a946c04debc7d0a3e31652c3ea8021 6823979572de2b99ccb9e7c5458ebacfab17606f Erreur32 <postmaster@echosystem.fr> 1585488914 +0200 commit: first commit
6823979572de2b99ccb9e7c5458ebacfab17606f 9a4c8e147867ac51d438b377134e0c6096ed9d35 Erreur32 <postmaster@echosystem.fr> 1585489068 +0200 commit: first commit
9a4c8e147867ac51d438b377134e0c6096ed9d35 70b59397ac09ec6e4d46c04c37f246ff7f776522 Erreur32 <postmaster@echosystem.fr> 1585489181 +0200 commit: first commit
70b59397ac09ec6e4d46c04c37f246ff7f776522 7c00e757baea1dd37bbce8b7cb494470f3803cbc Erreur32 <postmaster@echosystem.fr> 1585517044 +0200 commit: first commit
7c00e757baea1dd37bbce8b7cb494470f3803cbc eab775bfa1594f78847a5bd451cbdbb14830712a Erreur32 <postmaster@echosystem.fr> 1585517077 +0200 commit: first commit
eab775bfa1594f78847a5bd451cbdbb14830712a 66501d2967315541cf94b2e6ab5688daaefcaec5 Erreur32 <postmaster@echosystem.fr> 1585519699 +0200 commit: first commit
66501d2967315541cf94b2e6ab5688daaefcaec5 e3a8fe0f8da342fe714f1566578c03076ed6211c Erreur32 <postmaster@echosystem.fr> 1585592457 +0200 commit: first commit
e3a8fe0f8da342fe714f1566578c03076ed6211c b9df3466d92afc8707b4f378156a45345343fec1 Erreur32 <postmaster@echosystem.fr> 1585601453 +0200 commit: first commit
b9df3466d92afc8707b4f378156a45345343fec1 ab363450d8b624144941cf8378de5198022bae98 Erreur32 <postmaster@echosystem.fr> 1585602010 +0200 commit: first commit
ab363450d8b624144941cf8378de5198022bae98 6f21961f4f6e8904172e6dfd84466018a9efc72b Erreur32 <postmaster@echosystem.fr> 1585603451 +0200 commit: first commit
6f21961f4f6e8904172e6dfd84466018a9efc72b 982037dd33d4f611de9cfefb84c511acef5c988a Erreur32 <postmaster@echosystem.fr> 1585603762 +0200 commit: first commit
982037dd33d4f611de9cfefb84c511acef5c988a 91bb2b38f2c815a9bd553d7b66f81eb654881677 Erreur32 <postmaster@echosystem.fr> 1585604171 +0200 commit: first commit
91bb2b38f2c815a9bd553d7b66f81eb654881677 ba3a131392e10b83fd4a8829bf794f6fbc70dd5e Erreur32 <postmaster@echosystem.fr> 1585604554 +0200 commit: first commit
ba3a131392e10b83fd4a8829bf794f6fbc70dd5e dd0de1926bc884aa87b5c715b27d9c81d3393744 Erreur32 <postmaster@echosystem.fr> 1585604744 +0200 commit: first commit
dd0de1926bc884aa87b5c715b27d9c81d3393744 d10bf80b33801f89373e1615d78e602fbb15d5cf Erreur32 <postmaster@echosystem.fr> 1585605192 +0200 commit: first commit
d10bf80b33801f89373e1615d78e602fbb15d5cf 132711bba2e3687d534475159dc804fffe1f9128 Erreur32 <postmaster@echosystem.fr> 1585605330 +0200 commit: first commit
132711bba2e3687d534475159dc804fffe1f9128 d6a91ed47dafab0afa2fb77042721d49a6060e6d Erreur32 <postmaster@echosystem.fr> 1585605541 +0200 commit: first commit
d6a91ed47dafab0afa2fb77042721d49a6060e6d ca2cdc0542d35623fc40098d17d35eddc5c2394c Erreur32 <postmaster@echosystem.fr> 1585605722 +0200 commit: first commit
ca2cdc0542d35623fc40098d17d35eddc5c2394c 8c434b6181346789d8029fdd8de6f32550155f74 Erreur32 <postmaster@echosystem.fr> 1585676104 +0200 commit: first commit
8c434b6181346789d8029fdd8de6f32550155f74 ad90f4bce3854397ccc3952ce1ebdd9f3f79ff22 Erreur32 <postmaster@echosystem.fr> 1585676141 +0200 commit: first commit
ad90f4bce3854397ccc3952ce1ebdd9f3f79ff22 35a707e054133ceef8b6767948cf05ff2a2b693f Erreur32 <postmaster@echosystem.fr> 1585685221 +0200 commit: first commit
35a707e054133ceef8b6767948cf05ff2a2b693f a7e4ac495e6f47f98adfb64d7aaf2745e1b50eaf Erreur32 <postmaster@echosystem.fr> 1585685874 +0200 commit: first commit
a7e4ac495e6f47f98adfb64d7aaf2745e1b50eaf ceebd6acf09cc914864ae9a50bd81c915aabf701 Erreur32 <postmaster@echosystem.fr> 1585693071 +0200 commit: first commit
ceebd6acf09cc914864ae9a50bd81c915aabf701 c7627d48d0b019fa593e98513d9f4462c7474973 Erreur32 <postmaster@echosystem.fr> 1585757968 +0200 commit: first commit
c7627d48d0b019fa593e98513d9f4462c7474973 3acff6d9b78419c6454546f3bfca477ea18a8ee4 Erreur32 <postmaster@echosystem.fr> 1585758239 +0200 commit: first commit
3acff6d9b78419c6454546f3bfca477ea18a8ee4 f1825226613794702461dae4cf601dcf3627a31b Erreur32 <postmaster@echosystem.fr> 1585758688 +0200 commit: first commit
f1825226613794702461dae4cf601dcf3627a31b ff0df8dd3e8005ed0bb9f12293d5d900e64177a6 Erreur32 <postmaster@echosystem.fr> 1585759104 +0200 commit: first commit
ff0df8dd3e8005ed0bb9f12293d5d900e64177a6 45d966fa91a13727b783a3e8ac58eee4ffe13c2c Erreur32 <postmaster@echosystem.fr> 1585759636 +0200 commit: first commit
45d966fa91a13727b783a3e8ac58eee4ffe13c2c c7868b124578e14c63e2974b5f0aa682649744bb Erreur32 <postmaster@echosystem.fr> 1585760406 +0200 commit: first commit
c7868b124578e14c63e2974b5f0aa682649744bb 14197964edc3c61e8698e10990b88ca1cbc978ea Erreur32 <postmaster@echosystem.fr> 1585760781 +0200 commit: first commit
14197964edc3c61e8698e10990b88ca1cbc978ea 896e47342e8fb5b3fc8445504dcceaff5592d5c1 Erreur32 <postmaster@echosystem.fr> 1585763262 +0200 pull: Fast-forward
896e47342e8fb5b3fc8445504dcceaff5592d5c1 34ac4f56bcd6c727aff78a1765c5241e4106112c Erreur32 <postmaster@echosystem.fr> 1585765963 +0200 commit: first commit
34ac4f56bcd6c727aff78a1765c5241e4106112c 2fe58de101519ca10ee6a5962f401f4b5099c2e8 Erreur32 <postmaster@echosystem.fr> 1585856024 +0200 commit: first commit
2fe58de101519ca10ee6a5962f401f4b5099c2e8 9c995b5060fea401b4378d4f5b8666eb04798962 Erreur32 <postmaster@echosystem.fr> 1585856642 +0200 commit: first commit
9c995b5060fea401b4378d4f5b8666eb04798962 0a8e27403998c48aa8228782419dae9012e5f9a3 Erreur32 <postmaster@echosystem.fr> 1585857572 +0200 commit: first commit
0a8e27403998c48aa8228782419dae9012e5f9a3 29a631244477676803ef51cb5b76407c9ed167a8 Erreur32 <postmaster@echosystem.fr> 1585858202 +0200 commit: first commit
29a631244477676803ef51cb5b76407c9ed167a8 9700c21c179ff05d25a54dc2378baa89fe1d4edd Erreur32 <postmaster@echosystem.fr> 1585908356 +0200 commit: first commit
9700c21c179ff05d25a54dc2378baa89fe1d4edd 098b0ae4569c1364c872e5062d53f13e78c68543 Erreur32 <postmaster@echosystem.fr> 1585917129 +0200 commit: first commit
098b0ae4569c1364c872e5062d53f13e78c68543 f8c4840e54c5c28ff8c26290ff05e78aa2aec8e9 Erreur32 <postmaster@echosystem.fr> 1585917265 +0200 commit: first commit
f8c4840e54c5c28ff8c26290ff05e78aa2aec8e9 5623d2923eac9ae77ef87c1dd4541d7082a087aa Erreur32 <postmaster@echosystem.fr> 1585917421 +0200 commit: first commit
5623d2923eac9ae77ef87c1dd4541d7082a087aa 2a8fb201013fa125104c868783cb4774e44a6d67 Erreur32 <postmaster@echosystem.fr> 1585917458 +0200 commit: first commit
2a8fb201013fa125104c868783cb4774e44a6d67 ae7fb1b94e16361127464189e242ae6aefbf0e43 Erreur32 <postmaster@echosystem.fr> 1585919139 +0200 commit: first commit
ae7fb1b94e16361127464189e242ae6aefbf0e43 88ce947955d74a4caea655dd2c5783ded2731e7f Erreur32 <postmaster@echosystem.fr> 1585919268 +0200 commit: first commit
88ce947955d74a4caea655dd2c5783ded2731e7f 72672e071f9931f4956f90fa3500621fae606e34 Erreur32 <postmaster@echosystem.fr> 1585920081 +0200 commit: first commit
72672e071f9931f4956f90fa3500621fae606e34 601a3da769080a38948fe4c1241700505fa479ee Erreur32 <postmaster@echosystem.fr> 1585920985 +0200 commit: first commit
601a3da769080a38948fe4c1241700505fa479ee 7ffc1e870c3faf46b1633fd3ffa6ef156deba2cd Erreur32 <postmaster@echosystem.fr> 1585921319 +0200 commit: first commit
7ffc1e870c3faf46b1633fd3ffa6ef156deba2cd e122cf07742d865f985bd04d31748630a91ba15e Erreur32 <postmaster@echosystem.fr> 1585921820 +0200 commit: first commit
e122cf07742d865f985bd04d31748630a91ba15e 387cd4fe7f571495775d7d47d192b6b23665da27 Erreur32 <postmaster@echosystem.fr> 1585930999 +0200 commit: first commit
387cd4fe7f571495775d7d47d192b6b23665da27 992c58db753349c027f6783127e1cced81941ce9 Erreur32 <postmaster@echosystem.fr> 1585933720 +0200 commit: first commit
992c58db753349c027f6783127e1cced81941ce9 3b8d0314d923db6a78777adb3279b82b68009274 Erreur32 <postmaster@echosystem.fr> 1585935024 +0200 commit: first commit
3b8d0314d923db6a78777adb3279b82b68009274 f553ecba02effab1f25eeac1664865226f0554ec Erreur32 <postmaster@echosystem.fr> 1585935181 +0200 commit: first commit
f553ecba02effab1f25eeac1664865226f0554ec 87a8b4d3f65ab804f5138cc9b727af26444d7535 Erreur32 <postmaster@echosystem.fr> 1585993129 +0200 commit: ignoring gitignore
87a8b4d3f65ab804f5138cc9b727af26444d7535 002c73bbbb1c4b7ee456e608b20ddb5b4e599a5d Erreur32 <postmaster@echosystem.fr> 1585994223 +0200 commit: first commit
002c73bbbb1c4b7ee456e608b20ddb5b4e599a5d 36b1f2d4f5e29f56da477a790fb41d4c249509cc Erreur32 <postmaster@echosystem.fr> 1585995392 +0200 commit: first commit
36b1f2d4f5e29f56da477a790fb41d4c249509cc 82fb85564a9a028800091845ab2f97135c60107b Erreur32 <postmaster@echosystem.fr> 1586015063 +0200 commit: first commit
82fb85564a9a028800091845ab2f97135c60107b b96680dec5d495accc803cbc57f21ae6a1500786 Erreur32 <postmaster@echosystem.fr> 1586462891 +0200 commit: first commit
b96680dec5d495accc803cbc57f21ae6a1500786 2fcee013df340e43c6f05315582409403350ed9b Erreur32 <postmaster@echosystem.fr> 1587037213 +0200 commit: first commit
2fcee013df340e43c6f05315582409403350ed9b ef3bd30bc14b8d5413b56cac2fdbe184dc808e0b Erreur32 <postmaster@echosystem.fr> 1611683829 +0100 commit: first commit
ef3bd30bc14b8d5413b56cac2fdbe184dc808e0b 8e0e96d8ce1c5f4c85a432519d52a1ee65a49798 Erreur32 <postmaster@echosystem.fr> 1611684077 +0100 commit: first commit
8e0e96d8ce1c5f4c85a432519d52a1ee65a49798 286e392a852549ee1fba13dae7d559cb1cd2f88c Erreur32 <postmaster@echosystem.fr> 1611684235 +0100 pull: Merge made by the 'recursive' strategy.
286e392a852549ee1fba13dae7d559cb1cd2f88c bbbd6c65d3de6b3db041ebd35b107dda15e5e804 Erreur32 <postmaster@echosystem.fr> 1611684333 +0100 commit: first commit
bbbd6c65d3de6b3db041ebd35b107dda15e5e804 ff54cadac5a16c53459c5ccf7bc5f702d824447b Erreur32 <postmaster@echosystem.fr> 1611684700 +0100 commit: first commit
ff54cadac5a16c53459c5ccf7bc5f702d824447b 879026af043bd2427cac85384f129e98690988e2 Erreur32 <postmaster@echosystem.fr> 1611684900 +0100 commit: first commit
879026af043bd2427cac85384f129e98690988e2 f7b34960852d563669c06b4920fdffeb6626f339 Erreur32 <postmaster@echosystem.fr> 1611684993 +0100 commit: first commit
f7b34960852d563669c06b4920fdffeb6626f339 de924b2bc2f67b345ad0858e285d6962129659bf Erreur32 <postmaster@echosystem.fr> 1611685087 +0100 commit: first commit
de924b2bc2f67b345ad0858e285d6962129659bf 6394a77e4ffd601e98c58b9ef549fc35b7c9e49c Erreur32 <postmaster@echosystem.fr> 1611687738 +0100 commit: first commit
6394a77e4ffd601e98c58b9ef549fc35b7c9e49c 4e79c69c1a171baa3b898d4374155c96caf371b5 Erreur32 <postmaster@echosystem.fr> 1611687818 +0100 commit: first commit
4e79c69c1a171baa3b898d4374155c96caf371b5 58f511590370a3e1656220e674c7c0395d19f97f Erreur32 <postmaster@echosystem.fr> 1611687969 +0100 commit: first commit

View File

@ -0,0 +1 @@
0000000000000000000000000000000000000000 a9c69a015b86d85e47d093071d1ff4ff0d2e4a26 Erreur32 <postmaster@echosystem.fr> 1522598565 +0200 clone: from https://git.echosystem.fr/Erreur32/Bash3lper.git

View File

@ -0,0 +1,76 @@
a9c69a015b86d85e47d093071d1ff4ff0d2e4a26 50d77195bb751e1b97082ce04e77b5df9140225c Erreur32 <postmaster@echosystem.fr> 1522598618 +0200 update by push
50d77195bb751e1b97082ce04e77b5df9140225c 660803b4a15afa260c937bf1bedc9ba278ac8ed3 Erreur32 <postmaster@echosystem.fr> 1522598793 +0200 update by push
660803b4a15afa260c937bf1bedc9ba278ac8ed3 f33ec8cc988fc6b3b9de6c5585037d8177d15da8 Erreur32 <postmaster@echosystem.fr> 1522599309 +0200 update by push
f33ec8cc988fc6b3b9de6c5585037d8177d15da8 dd47b2f4dd24324a9353fc8b72cd7714458b9c42 Erreur32 <postmaster@echosystem.fr> 1522599906 +0200 update by push
dd47b2f4dd24324a9353fc8b72cd7714458b9c42 785e50584f041cb42fce7b6e4519ad39bd9bdd6f Erreur32 <postmaster@echosystem.fr> 1522601555 +0200 update by push
785e50584f041cb42fce7b6e4519ad39bd9bdd6f 89530d20d6fb9b4b7d2e4eb4a048308eb887e1b8 Erreur32 <postmaster@echosystem.fr> 1522709509 +0200 update by push
89530d20d6fb9b4b7d2e4eb4a048308eb887e1b8 d195f8d14e1ac1ed0f9c70d1562cf0153593d589 Erreur32 <postmaster@echosystem.fr> 1522709606 +0200 update by push
d195f8d14e1ac1ed0f9c70d1562cf0153593d589 cdd98c21958caba03d990302d810ae7ae3017e36 Erreur32 <postmaster@echosystem.fr> 1522709670 +0200 update by push
cdd98c21958caba03d990302d810ae7ae3017e36 8f5af48c53760649df4c64f20b5bbb8a638a1750 Erreur32 <postmaster@echosystem.fr> 1522761216 +0200 update by push
8f5af48c53760649df4c64f20b5bbb8a638a1750 15c6b3a1afdec5f3efcab64a2649dd5c5e8a473b Erreur32 <postmaster@echosystem.fr> 1522761336 +0200 update by push
15c6b3a1afdec5f3efcab64a2649dd5c5e8a473b 4baf2d21000e105878673ce86a739098fa484391 Erreur32 <postmaster@echosystem.fr> 1585486759 +0200 update by push
4baf2d21000e105878673ce86a739098fa484391 71287a36c4a946c04debc7d0a3e31652c3ea8021 Erreur32 <postmaster@echosystem.fr> 1585488792 +0200 update by push
71287a36c4a946c04debc7d0a3e31652c3ea8021 6823979572de2b99ccb9e7c5458ebacfab17606f Erreur32 <postmaster@echosystem.fr> 1585488924 +0200 update by push
6823979572de2b99ccb9e7c5458ebacfab17606f 9a4c8e147867ac51d438b377134e0c6096ed9d35 Erreur32 <postmaster@echosystem.fr> 1585489076 +0200 update by push
9a4c8e147867ac51d438b377134e0c6096ed9d35 70b59397ac09ec6e4d46c04c37f246ff7f776522 Erreur32 <postmaster@echosystem.fr> 1585489197 +0200 update by push
70b59397ac09ec6e4d46c04c37f246ff7f776522 7c00e757baea1dd37bbce8b7cb494470f3803cbc Erreur32 <postmaster@echosystem.fr> 1585517053 +0200 update by push
7c00e757baea1dd37bbce8b7cb494470f3803cbc eab775bfa1594f78847a5bd451cbdbb14830712a Erreur32 <postmaster@echosystem.fr> 1585517082 +0200 update by push
eab775bfa1594f78847a5bd451cbdbb14830712a 66501d2967315541cf94b2e6ab5688daaefcaec5 Erreur32 <postmaster@echosystem.fr> 1585519703 +0200 update by push
66501d2967315541cf94b2e6ab5688daaefcaec5 e3a8fe0f8da342fe714f1566578c03076ed6211c Erreur32 <postmaster@echosystem.fr> 1585592462 +0200 update by push
e3a8fe0f8da342fe714f1566578c03076ed6211c b9df3466d92afc8707b4f378156a45345343fec1 Erreur32 <postmaster@echosystem.fr> 1585601463 +0200 update by push
b9df3466d92afc8707b4f378156a45345343fec1 ab363450d8b624144941cf8378de5198022bae98 Erreur32 <postmaster@echosystem.fr> 1585602019 +0200 update by push
ab363450d8b624144941cf8378de5198022bae98 6f21961f4f6e8904172e6dfd84466018a9efc72b Erreur32 <postmaster@echosystem.fr> 1585603461 +0200 update by push
6f21961f4f6e8904172e6dfd84466018a9efc72b 982037dd33d4f611de9cfefb84c511acef5c988a Erreur32 <postmaster@echosystem.fr> 1585603770 +0200 update by push
982037dd33d4f611de9cfefb84c511acef5c988a 91bb2b38f2c815a9bd553d7b66f81eb654881677 Erreur32 <postmaster@echosystem.fr> 1585604182 +0200 update by push
91bb2b38f2c815a9bd553d7b66f81eb654881677 ba3a131392e10b83fd4a8829bf794f6fbc70dd5e Erreur32 <postmaster@echosystem.fr> 1585604561 +0200 update by push
ba3a131392e10b83fd4a8829bf794f6fbc70dd5e dd0de1926bc884aa87b5c715b27d9c81d3393744 Erreur32 <postmaster@echosystem.fr> 1585604752 +0200 update by push
dd0de1926bc884aa87b5c715b27d9c81d3393744 d10bf80b33801f89373e1615d78e602fbb15d5cf Erreur32 <postmaster@echosystem.fr> 1585605200 +0200 update by push
d10bf80b33801f89373e1615d78e602fbb15d5cf 132711bba2e3687d534475159dc804fffe1f9128 Erreur32 <postmaster@echosystem.fr> 1585605337 +0200 update by push
132711bba2e3687d534475159dc804fffe1f9128 d6a91ed47dafab0afa2fb77042721d49a6060e6d Erreur32 <postmaster@echosystem.fr> 1585605551 +0200 update by push
d6a91ed47dafab0afa2fb77042721d49a6060e6d ca2cdc0542d35623fc40098d17d35eddc5c2394c Erreur32 <postmaster@echosystem.fr> 1585605730 +0200 update by push
ca2cdc0542d35623fc40098d17d35eddc5c2394c 8c434b6181346789d8029fdd8de6f32550155f74 Erreur32 <postmaster@echosystem.fr> 1585676120 +0200 update by push
8c434b6181346789d8029fdd8de6f32550155f74 ad90f4bce3854397ccc3952ce1ebdd9f3f79ff22 Erreur32 <postmaster@echosystem.fr> 1585676146 +0200 update by push
ad90f4bce3854397ccc3952ce1ebdd9f3f79ff22 35a707e054133ceef8b6767948cf05ff2a2b693f Erreur32 <postmaster@echosystem.fr> 1585685227 +0200 update by push
35a707e054133ceef8b6767948cf05ff2a2b693f a7e4ac495e6f47f98adfb64d7aaf2745e1b50eaf Erreur32 <postmaster@echosystem.fr> 1585685884 +0200 update by push
a7e4ac495e6f47f98adfb64d7aaf2745e1b50eaf ceebd6acf09cc914864ae9a50bd81c915aabf701 Erreur32 <postmaster@echosystem.fr> 1585693076 +0200 update by push
ceebd6acf09cc914864ae9a50bd81c915aabf701 c7627d48d0b019fa593e98513d9f4462c7474973 Erreur32 <postmaster@echosystem.fr> 1585757974 +0200 update by push
c7627d48d0b019fa593e98513d9f4462c7474973 3acff6d9b78419c6454546f3bfca477ea18a8ee4 Erreur32 <postmaster@echosystem.fr> 1585758299 +0200 update by push
3acff6d9b78419c6454546f3bfca477ea18a8ee4 f1825226613794702461dae4cf601dcf3627a31b Erreur32 <postmaster@echosystem.fr> 1585758697 +0200 update by push
f1825226613794702461dae4cf601dcf3627a31b ff0df8dd3e8005ed0bb9f12293d5d900e64177a6 Erreur32 <postmaster@echosystem.fr> 1585759112 +0200 update by push
ff0df8dd3e8005ed0bb9f12293d5d900e64177a6 45d966fa91a13727b783a3e8ac58eee4ffe13c2c Erreur32 <postmaster@echosystem.fr> 1585759643 +0200 update by push
45d966fa91a13727b783a3e8ac58eee4ffe13c2c c7868b124578e14c63e2974b5f0aa682649744bb Erreur32 <postmaster@echosystem.fr> 1585760415 +0200 update by push
c7868b124578e14c63e2974b5f0aa682649744bb 14197964edc3c61e8698e10990b88ca1cbc978ea Erreur32 <postmaster@echosystem.fr> 1585760790 +0200 update by push
14197964edc3c61e8698e10990b88ca1cbc978ea 896e47342e8fb5b3fc8445504dcceaff5592d5c1 Erreur32 <postmaster@echosystem.fr> 1585763262 +0200 pull: fast-forward
896e47342e8fb5b3fc8445504dcceaff5592d5c1 34ac4f56bcd6c727aff78a1765c5241e4106112c Erreur32 <postmaster@echosystem.fr> 1585765971 +0200 update by push
34ac4f56bcd6c727aff78a1765c5241e4106112c 2fe58de101519ca10ee6a5962f401f4b5099c2e8 Erreur32 <postmaster@echosystem.fr> 1585856320 +0200 update by push
2fe58de101519ca10ee6a5962f401f4b5099c2e8 9c995b5060fea401b4378d4f5b8666eb04798962 Erreur32 <postmaster@echosystem.fr> 1585856653 +0200 update by push
9c995b5060fea401b4378d4f5b8666eb04798962 0a8e27403998c48aa8228782419dae9012e5f9a3 Erreur32 <postmaster@echosystem.fr> 1585858035 +0200 update by push
0a8e27403998c48aa8228782419dae9012e5f9a3 29a631244477676803ef51cb5b76407c9ed167a8 Erreur32 <postmaster@echosystem.fr> 1585858210 +0200 update by push
29a631244477676803ef51cb5b76407c9ed167a8 9700c21c179ff05d25a54dc2378baa89fe1d4edd Erreur32 <postmaster@echosystem.fr> 1585908419 +0200 update by push
9700c21c179ff05d25a54dc2378baa89fe1d4edd 098b0ae4569c1364c872e5062d53f13e78c68543 Erreur32 <postmaster@echosystem.fr> 1585917184 +0200 update by push
098b0ae4569c1364c872e5062d53f13e78c68543 f8c4840e54c5c28ff8c26290ff05e78aa2aec8e9 Erreur32 <postmaster@echosystem.fr> 1585917273 +0200 update by push
f8c4840e54c5c28ff8c26290ff05e78aa2aec8e9 5623d2923eac9ae77ef87c1dd4541d7082a087aa Erreur32 <postmaster@echosystem.fr> 1585917429 +0200 update by push
5623d2923eac9ae77ef87c1dd4541d7082a087aa 2a8fb201013fa125104c868783cb4774e44a6d67 Erreur32 <postmaster@echosystem.fr> 1585917466 +0200 update by push
2a8fb201013fa125104c868783cb4774e44a6d67 ae7fb1b94e16361127464189e242ae6aefbf0e43 Erreur32 <postmaster@echosystem.fr> 1585919149 +0200 update by push
ae7fb1b94e16361127464189e242ae6aefbf0e43 88ce947955d74a4caea655dd2c5783ded2731e7f Erreur32 <postmaster@echosystem.fr> 1585919276 +0200 update by push
88ce947955d74a4caea655dd2c5783ded2731e7f 72672e071f9931f4956f90fa3500621fae606e34 Erreur32 <postmaster@echosystem.fr> 1585920090 +0200 update by push
72672e071f9931f4956f90fa3500621fae606e34 601a3da769080a38948fe4c1241700505fa479ee Erreur32 <postmaster@echosystem.fr> 1585920993 +0200 update by push
601a3da769080a38948fe4c1241700505fa479ee 7ffc1e870c3faf46b1633fd3ffa6ef156deba2cd Erreur32 <postmaster@echosystem.fr> 1585921327 +0200 update by push
7ffc1e870c3faf46b1633fd3ffa6ef156deba2cd e122cf07742d865f985bd04d31748630a91ba15e Erreur32 <postmaster@echosystem.fr> 1585921827 +0200 update by push
e122cf07742d865f985bd04d31748630a91ba15e 387cd4fe7f571495775d7d47d192b6b23665da27 Erreur32 <postmaster@echosystem.fr> 1585931006 +0200 update by push
387cd4fe7f571495775d7d47d192b6b23665da27 992c58db753349c027f6783127e1cced81941ce9 Erreur32 <postmaster@echosystem.fr> 1585933731 +0200 update by push
992c58db753349c027f6783127e1cced81941ce9 3b8d0314d923db6a78777adb3279b82b68009274 Erreur32 <postmaster@echosystem.fr> 1585935031 +0200 update by push
3b8d0314d923db6a78777adb3279b82b68009274 f553ecba02effab1f25eeac1664865226f0554ec Erreur32 <postmaster@echosystem.fr> 1585935193 +0200 update by push
f553ecba02effab1f25eeac1664865226f0554ec 87a8b4d3f65ab804f5138cc9b727af26444d7535 Erreur32 <postmaster@echosystem.fr> 1585993147 +0200 update by push
87a8b4d3f65ab804f5138cc9b727af26444d7535 36b1f2d4f5e29f56da477a790fb41d4c249509cc Erreur32 <postmaster@echosystem.fr> 1585995400 +0200 update by push
36b1f2d4f5e29f56da477a790fb41d4c249509cc 82fb85564a9a028800091845ab2f97135c60107b Erreur32 <postmaster@echosystem.fr> 1586015070 +0200 update by push
82fb85564a9a028800091845ab2f97135c60107b b96680dec5d495accc803cbc57f21ae6a1500786 Erreur32 <postmaster@echosystem.fr> 1586462899 +0200 update by push
b96680dec5d495accc803cbc57f21ae6a1500786 06789c81d8d952288678fb1da91055651620a483 Erreur32 <postmaster@echosystem.fr> 1611684235 +0100 pull: fast-forward
06789c81d8d952288678fb1da91055651620a483 bbbd6c65d3de6b3db041ebd35b107dda15e5e804 Erreur32 <postmaster@echosystem.fr> 1611684352 +0100 update by push
bbbd6c65d3de6b3db041ebd35b107dda15e5e804 ff54cadac5a16c53459c5ccf7bc5f702d824447b Erreur32 <postmaster@echosystem.fr> 1611684710 +0100 update by push
ff54cadac5a16c53459c5ccf7bc5f702d824447b 879026af043bd2427cac85384f129e98690988e2 Erreur32 <postmaster@echosystem.fr> 1611684912 +0100 update by push
879026af043bd2427cac85384f129e98690988e2 f7b34960852d563669c06b4920fdffeb6626f339 Erreur32 <postmaster@echosystem.fr> 1611685001 +0100 update by push
f7b34960852d563669c06b4920fdffeb6626f339 de924b2bc2f67b345ad0858e285d6962129659bf Erreur32 <postmaster@echosystem.fr> 1611685097 +0100 update by push
de924b2bc2f67b345ad0858e285d6962129659bf 6394a77e4ffd601e98c58b9ef549fc35b7c9e49c Erreur32 <postmaster@echosystem.fr> 1611687746 +0100 update by push
6394a77e4ffd601e98c58b9ef549fc35b7c9e49c 4e79c69c1a171baa3b898d4374155c96caf371b5 Erreur32 <postmaster@echosystem.fr> 1611687827 +0100 update by push
4e79c69c1a171baa3b898d4374155c96caf371b5 58f511590370a3e1656220e674c7c0395d19f97f Erreur32 <postmaster@echosystem.fr> 1611687976 +0100 update by push

View File

@ -0,0 +1 @@
x²▌=!F╜9╫┴│X 1фф┐П3d╥@лючч█чюНО}Ыrom⌡P÷&I╞C и╩╗0ipйdl]r╣·uRT4VЯ┼Lо)с'S╟.6&╞L╣}н!9p╠бb▄)н╒q÷kgЫ`╕²ДУугlqLБ;Е╣▐ВМRЫ&╣У6─Р╛@)▒©'С©\т█г■©ЯnUIП

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1 @@
x]OаJц@У<_Я╨Zk@Oz+A╙ZТЮ%P6⌡╠7q╥QBх©;V у9 Сoч╪) ╤юеуЕиИ,МcH▀й╖Л?P≤Х┬bшкplJDdшzс[⌡-cq6}├jг⌡_е1─B├[эH©┤фкЩ╢дJ8("╟u-4CJЕы╥9LсЮp═Рq'≤K╢┐dа⌡╠╝Р|·Шэ╚c∙▄╚╖╩ГiO≈]╫уО=┤ЗСd■╞L╝в?аE4┤~а÷} ░▄▐ы$и:сG& ЧL_lя[~

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,2 @@
xmQЛ
В0фњЇр ‚ёЏћь€АbUр T|аe?Ю™ґb[LИоtvg64Хµ®°ZoFcмЏЛтz;ЯSкА„Юr­В4±Ѓ_®mэФйЮw2оЎF*}50ЪЊl@ -АfiG2=№R±e5ІZpv`ZnQ4Sџй> L!;ICЧ3rўи®±кз4q&х\nnDвХўћѕEы»ю¦ўN\ыъЌgЌЧгјM юxXXх{№фmr

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,2 @@
xťŽ;Â0D©}
÷HČżőGB<EFBFBD><EFBFBD>¬ťµÂ­ť‚ŰÁ Đ4SĽyšŇ[ۦ4Vź&É<>Aą<>K.Z×hЀƀŃŐ´«<C2B4>0€/dzN™JJ<4A>AyU ťŇŮŮW!Gď=eĺBŠÉ<1B>ű\;Ë3ílŤĽľú<C4BE> Ç$ľSYűxµ]*ߤ†x$@0ň¬ŚR˘|OäsQ7Sţ,↹Iű

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1 @@
x]OMKÃ@õ<¿âu-Tk@Oz+¡T´èÁK l6Ó»Y%„üw×<77>Bõ2Ìæ}•M[âòúêätÅà³ÒºŒÝ;J Qh£× êbOD»èto[mX×ÛNéZí8;‰>¼íyûû{ <20>ã«4ï!±Áò{[b<>nD¬M É…Cþ¥ Õ48¨[ú„¹B2R"¼*m¬ãÂNô¤5×OwÏ“ ª«÷ò-² wXÌÇTLùáfóy*ÜòÿÈ<0F>yâR§b`¢)5þS”>‰;\Ð

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,2 @@
x<01>T]oÚ0ݳÅ™Ab“ÚhšJÊTM­´â«‰Íbšÿ}7$|Ú‰Õs}?Î=>ףČÐlwÎ^U^×GJ×mÌ*ù•´VL$®#¸Xâ³.fãDŠŒUðÕ8'<27>˜¹ÄÅÍe¿9,”‹©I"“ãØÀ“à÷<C3A0>V뮓rV€÷_®qóãfؽâþ<C3A2>_ƒü;ú™Iªc%<Á*É  4+¡‰f'€<>ÐÀN•Î7ZÂ/ÊÑŽ£{Ù».Ò£º¸<C2AE>ÓSp´nÿŸ¢—<ÃMÙýЄâ7”½—wg­)N> ïé÷)œJå9÷gÓ|ƒ?Ôk³i½B¸cw<63>ðå ™Ž”ñæ-Ãi¡éÎÖ¶÷ð´ Ú¼Úä[1-<2D>ÒÉ}—%î=^H·0Ùú䘥Â)£ñØÅã¬ns<6E>©hl¨ødÛ¢aVÇrš)íPý°ªm
=õi,¬Û…´N9.Ô¦¨gPõnE¸<45>©ý®Ú!ïõpÎæÚ:áàÙµ… ÅÕsÀÁ“¿œ8©™i'Ãœí<C593>µ07DìOT.„id?/Å<1E>—s¿µò+LPJ¸'“Äp”<70>—Æ£a#ûY®ÆÒÍÇfWš06&UÌefIA1»Dݶp™üÌ´LöµtNãÌÖªôlšeà|ÛOþДÑCâ—%4§Ï¿—ÇW—·½þ°»ÂEÀ<à…ïÈa?Çd87œþïÃÃØ_ÛYù

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1 @@
x<01>N;!µæô&†?CbŒ<62>Ø!»®ØÂÛKövïŸWöÖ¶!<21>Õ—ÁD²¦ŒK2h©$]­S5¤âª<C3A2>…@c<>ƒIQ|<7C>é=d™dmœ<6D>@Ú•`iº.ûª˜à&s9 <ƺ³|1ÓÁÖÈûgï£aÄO*ëÞ¿¶[å‡Ô| *We”å<9“ÿÕEݸϫçŠø™ŸJ

View File

@ -0,0 +1,3 @@
x•S]‹Ú@íóý‡Q6¦`ë²OU„²K(qE»é‰É- <09>32“`Aòß{c>Œ}hiÂÌ͹çœ{f²ÏÌîïß °‰lzÌq`]<5D>3…<33> ‡1[¢Ácè‡ìÈv®†£(†¼ãÔêðÀ²œ(_áîÇSì+zt'È®KÑ<>BGyj4\bN»,uù®FbäŸ QÆ¡¥“MsÞ5²ý 6xŸ±ÂŒ±<C592>ÕFVBÍQb0'¯ZÑ`µy˜½W<C2BD>éxqŒá6X,ž¿Â[‡=[ox^>?•È gåÛÑ<C39B>í°“+¬­¿ÒQ%¤¨Rð õOë XµF<C2B5>òzí÷­ ñFÜø0¢U{,'½Î®¸æ¼°º“–‰æXEéæ#……$‰:I%)±¸lƒÕ¡6r6
/Ç8ÌUê-Ö§ÿ"ñ©IKº<4B>j9ösÓÿíã÷RQlòDa•x<E280A2>¹ªâ­I¿«_Î|Öm%Åöò¼¯œŽë1Þ¹¤f׎qÕ_ˆYRi®[Ÿë†ªÉ¨‰òJ†Klÿ6óÖ¯/1fØ[ö…
í8Ç:X-¶­va$©i¦èÏ~†Š

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,2 @@
x<01>Ž=!F­9½‰<C2BD>~cl<°Cv Ä láíÝè ì¾â½—¯ôÖ¶)õi2D LŒ”Œ­˜—ì=i¬É—âQéˆ!╘žS†jS5¡XôN9—jŠ3T¶9ç<39>†¤½U"ísí,Ì´3¼¾ú˜-<2D>I|§²öñ>f»T¾Im¼Ó
å{ò ÿÓEÝxLù«ˆ ÍJ'

View File

@ -0,0 +1,2 @@
x<01><>=
1F­sŠé¶dò³™YQpKLP!®Älám¼Ø}Å{ð¾0å|®`œ^Ô"Ɉ Žì(&y1Á:Ô4ŽH,fv¬T·¡ÈµøQk£æȬ?TH¾#öÉPë£)èY s=MúRd.ÖÀZ~k+á4Ý÷*y•Êzl<7A>…%D¾‰UþÕAê缞p™æͱßíý*ÇF½ÐõKC

View File

@ -0,0 +1,3 @@
xe±
Â@D­÷+†«´&M°mEcá$q“,ś·ánńď=l¦ć˝Á뀦=lH&l߬ÖGU™<55>g¸łŠ1žĄŇ{ť3ŁË=n\ˇ>ś‚Â]5XdĽT`0jFÍžsÄѡ©ŃÖ;ŘÂ<C598>đ ŹKŃN÷GYÖ¨sä”\yŮ'ţ<>ş#Â$Dô
“3|

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

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