diff --git a/.git_corrupt_backup/COMMIT_EDITMSG b/.git_corrupt_backup/COMMIT_EDITMSG deleted file mode 100644 index c82d4a0..0000000 --- a/.git_corrupt_backup/COMMIT_EDITMSG +++ /dev/null @@ -1,9 +0,0 @@ -chore: HERV 통합 저장소 초기 커밋 - -- 펌웨어(program), C# 대시보드(TestProgram), 시뮬레이터(Simulator), - 프로토콜/문서(Protocol, doc) 전체를 단일 저장소로 통합 -- program 폴더의 별도 git 저장소를 제거하고 통합 저장소에 흡수 -- 빌드 산출물(program/build, bin/obj, *.o/.elf/.bin/.hex 등) .gitignore 처리 -- 사내 Synology NAS Git 원격 연결 예정 - -Co-Authored-By: Claude Opus 4.8 (1M context) diff --git a/.git_corrupt_backup/HEAD b/.git_corrupt_backup/HEAD deleted file mode 100644 index b870d82..0000000 --- a/.git_corrupt_backup/HEAD +++ /dev/null @@ -1 +0,0 @@ -ref: refs/heads/main diff --git a/.git_corrupt_backup/config b/.git_corrupt_backup/config deleted file mode 100644 index fe75c3b..0000000 --- a/.git_corrupt_backup/config +++ /dev/null @@ -1,10 +0,0 @@ -[core] - repositoryformatversion = 0 - filemode = false - bare = false - logallrefupdates = true - symlinks = false - ignorecase = true -[user] - email = jeon@himpelai.com - name = jeon diff --git a/.git_corrupt_backup/description b/.git_corrupt_backup/description deleted file mode 100644 index 498b267..0000000 --- a/.git_corrupt_backup/description +++ /dev/null @@ -1 +0,0 @@ -Unnamed repository; edit this file 'description' to name the repository. diff --git a/.git_corrupt_backup/hooks/applypatch-msg.sample b/.git_corrupt_backup/hooks/applypatch-msg.sample deleted file mode 100644 index a5d7b84..0000000 --- a/.git_corrupt_backup/hooks/applypatch-msg.sample +++ /dev/null @@ -1,15 +0,0 @@ -#!/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+"$@"} -: diff --git a/.git_corrupt_backup/hooks/commit-msg.sample b/.git_corrupt_backup/hooks/commit-msg.sample deleted file mode 100644 index f7458ef..0000000 --- a/.git_corrupt_backup/hooks/commit-msg.sample +++ /dev/null @@ -1,74 +0,0 @@ -#!/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 and messages that -# would confuse 'git am'. - -ret=0 - -test "" = "$(grep '^Signed-off-by: ' "$1" | - sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || { - echo >&2 Duplicate Signed-off-by lines. - ret=1 -} - -comment_re="$( - { - git config --get-regexp "^core\.comment(char|string)\$" || - echo '#' - } | sed -n -e ' - ${ - s/^[^ ]* // - s|[][*./\]|\\&|g - s/^auto$/[#;@!$%^&|:]/ - p - }' -)" -scissors_line="^${comment_re} -\{8,\} >8 -\{8,\}\$" -comment_line="^${comment_re}.*" -blank_line='^[ ]*$' -# Disallow lines starting with "diff -" or "Index: " in the body of the -# message. Stop looking if we see a scissors line. -line="$(sed -n -e " - # Skip comments and blank lines at the start of the file. - /${scissors_line}/q - /${comment_line}/d - /${blank_line}/d - # The first paragraph will become the subject header so - # does not need to be checked. - : subject - n - /${scissors_line}/q - /${blank_line}/!b subject - # Check the body of the message for problematic - # prefixes. - : body - n - /${scissors_line}/q - /${comment_line}/b body - /^diff -/{p;q;} - /^Index: /{p;q;} - b body - " "$1")" -if test -n "$line" -then - echo >&2 "Message contains a diff that will confuse 'git am'." - echo >&2 "To fix this indent the diff." - ret=1 -fi - -exit $ret diff --git a/.git_corrupt_backup/hooks/fsmonitor-watchman.sample b/.git_corrupt_backup/hooks/fsmonitor-watchman.sample deleted file mode 100644 index 429e0a5..0000000 --- a/.git_corrupt_backup/hooks/fsmonitor-watchman.sample +++ /dev/null @@ -1,168 +0,0 @@ -#!/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 2) and last update token -# formatted as a string and outputs to stdout a new update token and -# all files that have been modified since the update token. 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, $last_update_token) = @ARGV; - -# Uncomment for debugging -# print STDERR "$0 $version $last_update_token\n"; - -# Check the hook interface version -if ($version ne 2) { - die "Unsupported query-fsmonitor hook version '$version'.\n" . - "Falling back to scanning...\n"; -} - -my $git_work_tree = get_working_dir(); - -my $json_pkg; -eval { - require JSON::XS; - $json_pkg = "JSON::XS"; - 1; -} or do { - require JSON::PP; - $json_pkg = "JSON::PP"; -}; - -launch_watchman(); - -sub launch_watchman { - my $o = watchman_query(); - if (is_work_tree_watched($o)) { - output_result($o->{clock}, @{$o->{files}}); - } -} - -sub output_result { - my ($clockid, @files) = @_; - - # Uncomment for debugging watchman output - # open (my $fh, ">", ".git/watchman-output.out"); - # binmode $fh, ":utf8"; - # print $fh "$clockid\n@files\n"; - # close $fh; - - binmode STDOUT, ":utf8"; - print $clockid; - print "\0"; - local $, = "\0"; - print @files; -} - -sub watchman_clock { - my $response = qx/watchman clock "$git_work_tree"/; - die "Failed to get clock id on '$git_work_tree'.\n" . - "Falling back to scanning...\n" if $? != 0; - - return $json_pkg->new->utf8->decode($response); -} - -sub watchman_query { - 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 $last_update_token but not from the .git folder. - # - # 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. - my $last_update_line = ""; - if (substr($last_update_token, 0, 1) eq "c") { - $last_update_token = "\"$last_update_token\""; - $last_update_line = qq[\n"since": $last_update_token,]; - } - my $query = <<" END"; - ["query", "$git_work_tree", {$last_update_line - "fields": ["name"], - "expression": ["not", ["dirname", ".git"]] - }] - END - - # Uncomment for debugging the watchman query - # open (my $fh, ">", ".git/watchman-query.json"); - # print $fh $query; - # close $fh; - - print CHLD_IN $query; - close CHLD_IN; - my $response = do {local $/; }; - - # Uncomment for debugging the watch response - # open ($fh, ">", ".git/watchman-response.json"); - # print $fh $response; - # close $fh; - - 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 =~ /^\{/; - - return $json_pkg->new->utf8->decode($response); -} - -sub is_work_tree_watched { - my ($output) = @_; - my $error = $output->{error}; - if ($error and $error =~ m/unable to resolve root .* directory (.*) is not watched/) { - my $response = qx/watchman watch "$git_work_tree"/; - die "Failed to make watchman watch '$git_work_tree'.\n" . - "Falling back to scanning...\n" if $? != 0; - $output = $json_pkg->new->utf8->decode($response); - $error = $output->{error}; - die "Watchman: $error.\n" . - "Falling back to scanning...\n" if $error; - - # Uncomment for debugging watchman output - # open (my $fh, ">", ".git/watchman-output.out"); - # close $fh; - - # 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. - my $o = watchman_clock(); - $error = $o->{error}; - - die "Watchman: $error.\n" . - "Falling back to scanning...\n" if $error; - - output_result($o->{clock}, ("/")); - return 0; - } - - die "Watchman: $error.\n" . - "Falling back to scanning...\n" if $error; - - return 1; -} - -sub get_working_dir { - my $working_dir; - if ($^O =~ 'msys' || $^O =~ 'cygwin') { - $working_dir = Win32::GetCwd(); - $working_dir =~ tr/\\/\//; - } else { - require Cwd; - $working_dir = Cwd::cwd(); - } - - return $working_dir; -} diff --git a/.git_corrupt_backup/hooks/post-update.sample b/.git_corrupt_backup/hooks/post-update.sample deleted file mode 100644 index ec17ec1..0000000 --- a/.git_corrupt_backup/hooks/post-update.sample +++ /dev/null @@ -1,8 +0,0 @@ -#!/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 diff --git a/.git_corrupt_backup/hooks/pre-applypatch.sample b/.git_corrupt_backup/hooks/pre-applypatch.sample deleted file mode 100644 index 4142082..0000000 --- a/.git_corrupt_backup/hooks/pre-applypatch.sample +++ /dev/null @@ -1,14 +0,0 @@ -#!/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+"$@"} -: diff --git a/.git_corrupt_backup/hooks/pre-commit.sample b/.git_corrupt_backup/hooks/pre-commit.sample deleted file mode 100644 index 29ed5ee..0000000 --- a/.git_corrupt_backup/hooks/pre-commit.sample +++ /dev/null @@ -1,49 +0,0 @@ -#!/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=$(git hash-object -t tree /dev/null) -fi - -# If you want to allow non-ASCII filenames set this variable to true. -allownonascii=$(git config --type=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-index --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 -- diff --git a/.git_corrupt_backup/hooks/pre-merge-commit.sample b/.git_corrupt_backup/hooks/pre-merge-commit.sample deleted file mode 100644 index 399eab1..0000000 --- a/.git_corrupt_backup/hooks/pre-merge-commit.sample +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed. -# Called by "git merge" with no arguments. The hook should -# exit with non-zero status after issuing an appropriate message to -# stderr if it wants to stop the merge commit. -# -# To enable this hook, rename this file to "pre-merge-commit". - -. git-sh-setup -test -x "$GIT_DIR/hooks/pre-commit" && - exec "$GIT_DIR/hooks/pre-commit" -: diff --git a/.git_corrupt_backup/hooks/pre-push.sample b/.git_corrupt_backup/hooks/pre-push.sample deleted file mode 100644 index 4ce688d..0000000 --- a/.git_corrupt_backup/hooks/pre-push.sample +++ /dev/null @@ -1,53 +0,0 @@ -#!/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: -# -# -# -# This sample shows how to prevent push of commits where the log message starts -# with "WIP" (work in progress). - -remote="$1" -url="$2" - -zero=$(git hash-object --stdin &2 "Found WIP commit in $local_ref, not pushing" - exit 1 - fi - fi -done - -exit 0 diff --git a/.git_corrupt_backup/hooks/pre-rebase.sample b/.git_corrupt_backup/hooks/pre-rebase.sample deleted file mode 100644 index 6cbef5c..0000000 --- a/.git_corrupt_backup/hooks/pre-rebase.sample +++ /dev/null @@ -1,169 +0,0 @@ -#!/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 diff --git a/.git_corrupt_backup/hooks/pre-receive.sample b/.git_corrupt_backup/hooks/pre-receive.sample deleted file mode 100644 index a1fd29e..0000000 --- a/.git_corrupt_backup/hooks/pre-receive.sample +++ /dev/null @@ -1,24 +0,0 @@ -#!/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 diff --git a/.git_corrupt_backup/hooks/prepare-commit-msg.sample b/.git_corrupt_backup/hooks/prepare-commit-msg.sample deleted file mode 100644 index 10fa14c..0000000 --- a/.git_corrupt_backup/hooks/prepare-commit-msg.sample +++ /dev/null @@ -1,42 +0,0 @@ -#!/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 one removes the -# "# Please enter the commit message..." help message. -# -# 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. - -COMMIT_MSG_FILE=$1 -COMMIT_SOURCE=$2 -SHA1=$3 - -/usr/bin/perl -i.bak -ne 'print unless(m/^. Please enter the commit message/..m/^#$/)' "$COMMIT_MSG_FILE" - -# case "$COMMIT_SOURCE,$SHA1" in -# ,|template,) -# /usr/bin/perl -i.bak -pe ' -# print "\n" . `git diff --cached --name-status -r` -# if /^#/ && $first++ == 0' "$COMMIT_MSG_FILE" ;; -# *) ;; -# esac - -# SOB=$(git var GIT_COMMITTER_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# git interpret-trailers --in-place --trailer "$SOB" "$COMMIT_MSG_FILE" -# if test -z "$COMMIT_SOURCE" -# then -# /usr/bin/perl -i.bak -pe 'print "\n" if !$first_line++' "$COMMIT_MSG_FILE" -# fi diff --git a/.git_corrupt_backup/hooks/push-to-checkout.sample b/.git_corrupt_backup/hooks/push-to-checkout.sample deleted file mode 100644 index af5a0c0..0000000 --- a/.git_corrupt_backup/hooks/push-to-checkout.sample +++ /dev/null @@ -1,78 +0,0 @@ -#!/bin/sh - -# An example hook script to update a checked-out tree on a git push. -# -# This hook is invoked by git-receive-pack(1) when it reacts to git -# push and updates reference(s) in its repository, and when the push -# tries to update the branch that is currently checked out and the -# receive.denyCurrentBranch configuration variable is set to -# updateInstead. -# -# By default, such a push is refused if the working tree and the index -# of the remote repository has any difference from the currently -# checked out commit; when both the working tree and the index match -# the current commit, they are updated to match the newly pushed tip -# of the branch. This hook is to be used to override the default -# behaviour; however the code below reimplements the default behaviour -# as a starting point for convenient modification. -# -# The hook receives the commit with which the tip of the current -# branch is going to be updated: -commit=$1 - -# It can exit with a non-zero status to refuse the push (when it does -# so, it must not modify the index or the working tree). -die () { - echo >&2 "$*" - exit 1 -} - -# Or it can make any necessary changes to the working tree and to the -# index to bring them to the desired state when the tip of the current -# branch is updated to the new commit, and exit with a zero status. -# -# For example, the hook can simply run git read-tree -u -m HEAD "$1" -# in order to emulate git fetch that is run in the reverse direction -# with git push, as the two-tree form of git read-tree -u -m is -# essentially the same as git switch or git checkout that switches -# branches while keeping the local changes in the working tree that do -# not interfere with the difference between the branches. - -# The below is a more-or-less exact translation to shell of the C code -# for the default behaviour for git's push-to-checkout hook defined in -# the push_to_deploy() function in builtin/receive-pack.c. -# -# Note that the hook will be executed from the repository directory, -# not from the working tree, so if you want to perform operations on -# the working tree, you will have to adapt your code accordingly, e.g. -# by adding "cd .." or using relative paths. - -if ! git update-index -q --ignore-submodules --refresh -then - die "Up-to-date check failed" -fi - -if ! git diff-files --quiet --ignore-submodules -- -then - die "Working directory has unstaged changes" -fi - -# This is a rough translation of: -# -# head_has_history() ? "HEAD" : EMPTY_TREE_SHA1_HEX -if git cat-file -e HEAD 2>/dev/null -then - head=HEAD -else - head=$(git hash-object -t tree --stdin &2 - exit 1 -} - -unset GIT_DIR GIT_WORK_TREE -cd "$worktree" && - -if grep -q "^diff --git " "$1" -then - validate_patch "$1" -else - validate_cover_letter "$1" -fi && - -if test "$GIT_SENDEMAIL_FILE_COUNTER" = "$GIT_SENDEMAIL_FILE_TOTAL" -then - git config --unset-all sendemail.validateWorktree && - trap 'git worktree remove -ff "$worktree"' EXIT && - validate_series -fi diff --git a/.git_corrupt_backup/hooks/update.sample b/.git_corrupt_backup/hooks/update.sample deleted file mode 100644 index c4d426b..0000000 --- a/.git_corrupt_backup/hooks/update.sample +++ /dev/null @@ -1,128 +0,0 @@ -#!/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 )" >&2 - exit 1 -fi - -if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then - echo "usage: $0 " >&2 - exit 1 -fi - -# --- Config -allowunannotated=$(git config --type=bool hooks.allowunannotated) -allowdeletebranch=$(git config --type=bool hooks.allowdeletebranch) -denycreatebranch=$(git config --type=bool hooks.denycreatebranch) -allowdeletetag=$(git config --type=bool hooks.allowdeletetag) -allowmodifytag=$(git config --type=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=$(git hash-object --stdin &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 diff --git a/.git_corrupt_backup/index b/.git_corrupt_backup/index deleted file mode 100644 index f3e6c5a..0000000 Binary files a/.git_corrupt_backup/index and /dev/null differ diff --git a/.git_corrupt_backup/info/exclude b/.git_corrupt_backup/info/exclude deleted file mode 100644 index a5196d1..0000000 --- a/.git_corrupt_backup/info/exclude +++ /dev/null @@ -1,6 +0,0 @@ -# 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] -# *~ diff --git a/.git_corrupt_backup/logs/HEAD b/.git_corrupt_backup/logs/HEAD deleted file mode 100644 index 7d70bfb..0000000 --- a/.git_corrupt_backup/logs/HEAD +++ /dev/null @@ -1,2 +0,0 @@ -0000000000000000000000000000000000000000 1568237dc62f9ae863d0ab8bd5ae6d90934be870 goosam1 1781527333 +0900 commit (initial): chore: HERV 통합 저장소 초기 커밋 -1568237dc62f9ae863d0ab8bd5ae6d90934be870 5a96a696b16afe8b9e21e158185bc3e98f645e52 jeon 1781527463 +0900 commit (amend): chore: HERV 통합 저장소 초기 커밋 diff --git a/.git_corrupt_backup/logs/refs/heads/main b/.git_corrupt_backup/logs/refs/heads/main deleted file mode 100644 index 7d70bfb..0000000 --- a/.git_corrupt_backup/logs/refs/heads/main +++ /dev/null @@ -1,2 +0,0 @@ -0000000000000000000000000000000000000000 1568237dc62f9ae863d0ab8bd5ae6d90934be870 goosam1 1781527333 +0900 commit (initial): chore: HERV 통합 저장소 초기 커밋 -1568237dc62f9ae863d0ab8bd5ae6d90934be870 5a96a696b16afe8b9e21e158185bc3e98f645e52 jeon 1781527463 +0900 commit (amend): chore: HERV 통합 저장소 초기 커밋 diff --git a/.git_corrupt_backup/objects/00/58f0de2f0ac8ac31fe3d2c50cc8893c20eda67 b/.git_corrupt_backup/objects/00/58f0de2f0ac8ac31fe3d2c50cc8893c20eda67 deleted file mode 100644 index 0ce29f7..0000000 Binary files a/.git_corrupt_backup/objects/00/58f0de2f0ac8ac31fe3d2c50cc8893c20eda67 and /dev/null differ diff --git a/.git_corrupt_backup/objects/01/cafa4b44a65ade52de7b91e563de22cbfeeeca b/.git_corrupt_backup/objects/01/cafa4b44a65ade52de7b91e563de22cbfeeeca deleted file mode 100644 index 1100d3b..0000000 Binary files a/.git_corrupt_backup/objects/01/cafa4b44a65ade52de7b91e563de22cbfeeeca and /dev/null differ diff --git a/.git_corrupt_backup/objects/01/f1b1a4832a05a7264b551689a7d63b9efee87b b/.git_corrupt_backup/objects/01/f1b1a4832a05a7264b551689a7d63b9efee87b deleted file mode 100644 index b306ec4..0000000 Binary files a/.git_corrupt_backup/objects/01/f1b1a4832a05a7264b551689a7d63b9efee87b and /dev/null differ diff --git a/.git_corrupt_backup/objects/02/a4965d5c527efcc77c5bd54167bf75fb62a60d b/.git_corrupt_backup/objects/02/a4965d5c527efcc77c5bd54167bf75fb62a60d deleted file mode 100644 index 4450ef0..0000000 Binary files a/.git_corrupt_backup/objects/02/a4965d5c527efcc77c5bd54167bf75fb62a60d and /dev/null differ diff --git a/.git_corrupt_backup/objects/03/4d5d9371680ec4bc33ef9d1177cb1825955948 b/.git_corrupt_backup/objects/03/4d5d9371680ec4bc33ef9d1177cb1825955948 deleted file mode 100644 index 344f718..0000000 --- a/.git_corrupt_backup/objects/03/4d5d9371680ec4bc33ef9d1177cb1825955948 +++ /dev/null @@ -1,3 +0,0 @@ -xSQkPs~ř(&=lk7êeO j$qkÐiB\Q)?{vɊeιw|'#D!WS PEH@̀l.%I[/ga‰׺QA:&BHd5+-E.IUE?/Vx?x0sb\xFH DL uob -7[qbuSQa[Ӎ膭Q&IE+hqsu fĦǥ-U6?ck(xa_T~ʇ׀xk̿QUfS,zEM$x`T+{s1X@o6ժ@e(:TJ Ƥ~M-CJB"+KâSSA -!JTx8 f{Eod`Yrt|vR@ǔAq#:,wI$~#F&RtX^Sktj/yv}o>x4 CޭVO[zыoX \ No newline at end of file diff --git a/.git_corrupt_backup/objects/2d/6e7fc601688e66093bcc6fd536f666f298e30d b/.git_corrupt_backup/objects/2d/6e7fc601688e66093bcc6fd536f666f298e30d deleted file mode 100644 index 57244fb..0000000 Binary files a/.git_corrupt_backup/objects/2d/6e7fc601688e66093bcc6fd536f666f298e30d and /dev/null differ diff --git a/.git_corrupt_backup/objects/2d/8b3cd4d4d696033979e5a1a9e0853502524ab1 b/.git_corrupt_backup/objects/2d/8b3cd4d4d696033979e5a1a9e0853502524ab1 deleted file mode 100644 index 3cdd381..0000000 Binary files a/.git_corrupt_backup/objects/2d/8b3cd4d4d696033979e5a1a9e0853502524ab1 and /dev/null differ diff --git a/.git_corrupt_backup/objects/2d/dcae42cc1fbeb034fd289c2fa726339de3344d b/.git_corrupt_backup/objects/2d/dcae42cc1fbeb034fd289c2fa726339de3344d deleted file mode 100644 index 680b5bc..0000000 Binary files a/.git_corrupt_backup/objects/2d/dcae42cc1fbeb034fd289c2fa726339de3344d and /dev/null differ diff --git a/.git_corrupt_backup/objects/2e/1727da49074526c357760119868a728f4319ee b/.git_corrupt_backup/objects/2e/1727da49074526c357760119868a728f4319ee deleted file mode 100644 index 30cce49..0000000 --- a/.git_corrupt_backup/objects/2e/1727da49074526c357760119868a728f4319ee +++ /dev/null @@ -1,4 +0,0 @@ -x}MKA{ΧLLC6^ewM&JCƲ*UbDb!(J?PyXv/y":M%JZ;e(ko,ۄX ği'=8o-gֲյ*츄ˮn%rnic嶊(. -bA)y733!*.Q ) 8n13R2`}xvZII)}?LR':kN1{^w`%̈́\D*vܰw0O5 CmSw~_d5|F WɀH <7+(8ݺDWEš6v0]!4]Ԭ02ж:%TgW޽|$ -}V ٪B4 I7׮f2Z*+im=nIm7`Od?;,d Z6,'Ѓ,Mƌ͆=l :I77juv|<2bݣn:A${SlHb-ò(٧K6@",6$lv}aGmq;!ż<, ^ǣ ;tuHyk5c=;N%RunIznò55sҟv87z-"<ҜdI)'_( @:=@=1VZ_t+ `jg*K+ [KAoTfY fq]YN:cm'h |2i<ƽvD4f{ kf|ճ;TAıH -`4i86Wpx \ No newline at end of file diff --git a/.git_corrupt_backup/objects/3c/296d523f1daefe74c3510999a8f3c1627e299f b/.git_corrupt_backup/objects/3c/296d523f1daefe74c3510999a8f3c1627e299f deleted file mode 100644 index 29326ad..0000000 Binary files a/.git_corrupt_backup/objects/3c/296d523f1daefe74c3510999a8f3c1627e299f and /dev/null differ diff --git a/.git_corrupt_backup/objects/3d/13c3664a965b9551a39ad15f664ec8643340c5 b/.git_corrupt_backup/objects/3d/13c3664a965b9551a39ad15f664ec8643340c5 deleted file mode 100644 index a54ea4e..0000000 Binary files a/.git_corrupt_backup/objects/3d/13c3664a965b9551a39ad15f664ec8643340c5 and /dev/null differ diff --git a/.git_corrupt_backup/objects/40/558b414b6eca60a123182d7ab12f4204c66f21 b/.git_corrupt_backup/objects/40/558b414b6eca60a123182d7ab12f4204c66f21 deleted file mode 100644 index 4a8b925..0000000 Binary files a/.git_corrupt_backup/objects/40/558b414b6eca60a123182d7ab12f4204c66f21 and /dev/null differ diff --git a/.git_corrupt_backup/objects/42/0e028bc81a4f494be686d1dfd0e18d264c50a7 b/.git_corrupt_backup/objects/42/0e028bc81a4f494be686d1dfd0e18d264c50a7 deleted file mode 100644 index 2e96775..0000000 Binary files a/.git_corrupt_backup/objects/42/0e028bc81a4f494be686d1dfd0e18d264c50a7 and /dev/null differ diff --git a/.git_corrupt_backup/objects/42/127e2961e34bfac7740f475d336f507292f3e7 b/.git_corrupt_backup/objects/42/127e2961e34bfac7740f475d336f507292f3e7 deleted file mode 100644 index 90eacb6..0000000 Binary files a/.git_corrupt_backup/objects/42/127e2961e34bfac7740f475d336f507292f3e7 and /dev/null differ diff --git a/.git_corrupt_backup/objects/42/281a3ee9c6cd8085955da4da51b019a99fb25f b/.git_corrupt_backup/objects/42/281a3ee9c6cd8085955da4da51b019a99fb25f deleted file mode 100644 index 4205e31..0000000 Binary files a/.git_corrupt_backup/objects/42/281a3ee9c6cd8085955da4da51b019a99fb25f and /dev/null differ diff --git a/.git_corrupt_backup/objects/42/dd2b27fa72178f776fdb8e7e07f4e7038d9a82 b/.git_corrupt_backup/objects/42/dd2b27fa72178f776fdb8e7e07f4e7038d9a82 deleted file mode 100644 index 57b6605..0000000 Binary files a/.git_corrupt_backup/objects/42/dd2b27fa72178f776fdb8e7e07f4e7038d9a82 and /dev/null differ diff --git a/.git_corrupt_backup/objects/43/31ff966cfb17b47c18baea9d5a3e26150d7bce b/.git_corrupt_backup/objects/43/31ff966cfb17b47c18baea9d5a3e26150d7bce deleted file mode 100644 index b34f4d2..0000000 Binary files a/.git_corrupt_backup/objects/43/31ff966cfb17b47c18baea9d5a3e26150d7bce and /dev/null differ diff --git a/.git_corrupt_backup/objects/44/0d997d92ae6e56abec3748f04983ced5727662 b/.git_corrupt_backup/objects/44/0d997d92ae6e56abec3748f04983ced5727662 deleted file mode 100644 index d825df9..0000000 Binary files a/.git_corrupt_backup/objects/44/0d997d92ae6e56abec3748f04983ced5727662 and /dev/null differ diff --git a/.git_corrupt_backup/objects/44/7590f12a407eeeb731ce21c087e208160a0872 b/.git_corrupt_backup/objects/44/7590f12a407eeeb731ce21c087e208160a0872 deleted file mode 100644 index 91b8650..0000000 Binary files a/.git_corrupt_backup/objects/44/7590f12a407eeeb731ce21c087e208160a0872 and /dev/null differ diff --git a/.git_corrupt_backup/objects/44/dedaf72f7cbd0252773c2b6c9a06b2543935d4 b/.git_corrupt_backup/objects/44/dedaf72f7cbd0252773c2b6c9a06b2543935d4 deleted file mode 100644 index d4d3dbe..0000000 --- a/.git_corrupt_backup/objects/44/dedaf72f7cbd0252773c2b6c9a06b2543935d4 +++ /dev/null @@ -1 +0,0 @@ -xOk@=)=@K!k׬lVޙ277kd޵O ʍ<]GPδA=ːpo&c:hv"]} (ыze:h_n0"HUr*]ݑ!CI~8J2**YIvFipƌO BƑЖ%m?9y/>Ϲmh \ No newline at end of file diff --git a/.git_corrupt_backup/objects/44/fbf513c2eef10bb057079962e7450ce05c5ca3 b/.git_corrupt_backup/objects/44/fbf513c2eef10bb057079962e7450ce05c5ca3 deleted file mode 100644 index 5a20572..0000000 Binary files a/.git_corrupt_backup/objects/44/fbf513c2eef10bb057079962e7450ce05c5ca3 and /dev/null differ diff --git a/.git_corrupt_backup/objects/45/cb72706f8638b8ee32e590110f8d4e81c21710 b/.git_corrupt_backup/objects/45/cb72706f8638b8ee32e590110f8d4e81c21710 deleted file mode 100644 index d89663d..0000000 Binary files a/.git_corrupt_backup/objects/45/cb72706f8638b8ee32e590110f8d4e81c21710 and /dev/null differ diff --git a/.git_corrupt_backup/objects/46/6d24ed62cb5fc81b6b4faab0ac56c8163a8db3 b/.git_corrupt_backup/objects/46/6d24ed62cb5fc81b6b4faab0ac56c8163a8db3 deleted file mode 100644 index 9f1d807..0000000 Binary files a/.git_corrupt_backup/objects/46/6d24ed62cb5fc81b6b4faab0ac56c8163a8db3 and /dev/null differ diff --git a/.git_corrupt_backup/objects/46/ee5a169da93e4826e7a1a8ef7dbcd4087555ab b/.git_corrupt_backup/objects/46/ee5a169da93e4826e7a1a8ef7dbcd4087555ab deleted file mode 100644 index c81f0d3..0000000 Binary files a/.git_corrupt_backup/objects/46/ee5a169da93e4826e7a1a8ef7dbcd4087555ab and /dev/null differ diff --git a/.git_corrupt_backup/objects/48/0f7a1066cf5815a6f3683ca45ea9ae816d9b6d b/.git_corrupt_backup/objects/48/0f7a1066cf5815a6f3683ca45ea9ae816d9b6d deleted file mode 100644 index ef0820b..0000000 Binary files a/.git_corrupt_backup/objects/48/0f7a1066cf5815a6f3683ca45ea9ae816d9b6d and /dev/null differ diff --git a/.git_corrupt_backup/objects/49/5f1de1119e4fd17079d9f4daef82dcf648317e b/.git_corrupt_backup/objects/49/5f1de1119e4fd17079d9f4daef82dcf648317e deleted file mode 100644 index e27c489..0000000 Binary files a/.git_corrupt_backup/objects/49/5f1de1119e4fd17079d9f4daef82dcf648317e and /dev/null differ diff --git a/.git_corrupt_backup/objects/4a/0e7ce81c0147bc721412df12559cef15e466b5 b/.git_corrupt_backup/objects/4a/0e7ce81c0147bc721412df12559cef15e466b5 deleted file mode 100644 index efb0f96..0000000 Binary files a/.git_corrupt_backup/objects/4a/0e7ce81c0147bc721412df12559cef15e466b5 and /dev/null differ diff --git a/.git_corrupt_backup/objects/4a/952d08bf5c860c7e7a4f82274540446ee1f651 b/.git_corrupt_backup/objects/4a/952d08bf5c860c7e7a4f82274540446ee1f651 deleted file mode 100644 index 7278722..0000000 Binary files a/.git_corrupt_backup/objects/4a/952d08bf5c860c7e7a4f82274540446ee1f651 and /dev/null differ diff --git a/.git_corrupt_backup/objects/4a/e23a4b91cc0af6c89de4400f194404b363b116 b/.git_corrupt_backup/objects/4a/e23a4b91cc0af6c89de4400f194404b363b116 deleted file mode 100644 index 1efb437..0000000 Binary files a/.git_corrupt_backup/objects/4a/e23a4b91cc0af6c89de4400f194404b363b116 and /dev/null differ diff --git a/.git_corrupt_backup/objects/4b/1e1db6459dced540069f6b6a64425fc9bca560 b/.git_corrupt_backup/objects/4b/1e1db6459dced540069f6b6a64425fc9bca560 deleted file mode 100644 index a639007..0000000 Binary files a/.git_corrupt_backup/objects/4b/1e1db6459dced540069f6b6a64425fc9bca560 and /dev/null differ diff --git a/.git_corrupt_backup/objects/4b/67363a8788348d940e9c0520f707b989490bbe b/.git_corrupt_backup/objects/4b/67363a8788348d940e9c0520f707b989490bbe deleted file mode 100644 index 03e4211..0000000 Binary files a/.git_corrupt_backup/objects/4b/67363a8788348d940e9c0520f707b989490bbe and /dev/null differ diff --git a/.git_corrupt_backup/objects/4b/d3cbf04bca55e0a77beaad8558066079a5b9cc b/.git_corrupt_backup/objects/4b/d3cbf04bca55e0a77beaad8558066079a5b9cc deleted file mode 100644 index b3dbe2c..0000000 Binary files a/.git_corrupt_backup/objects/4b/d3cbf04bca55e0a77beaad8558066079a5b9cc and /dev/null differ diff --git a/.git_corrupt_backup/objects/4b/e1a8836d5be442040eb059a24fda846f5e8201 b/.git_corrupt_backup/objects/4b/e1a8836d5be442040eb059a24fda846f5e8201 deleted file mode 100644 index 9b140c1..0000000 Binary files a/.git_corrupt_backup/objects/4b/e1a8836d5be442040eb059a24fda846f5e8201 and /dev/null differ diff --git a/.git_corrupt_backup/objects/4f/1eb04d9ef7712ae913e6804fd1959837973661 b/.git_corrupt_backup/objects/4f/1eb04d9ef7712ae913e6804fd1959837973661 deleted file mode 100644 index d2342d0..0000000 Binary files a/.git_corrupt_backup/objects/4f/1eb04d9ef7712ae913e6804fd1959837973661 and /dev/null differ diff --git a/.git_corrupt_backup/objects/51/3cfabfb75f0c1207bb62283b43a05c514f4ea7 b/.git_corrupt_backup/objects/51/3cfabfb75f0c1207bb62283b43a05c514f4ea7 deleted file mode 100644 index 575ec06..0000000 Binary files a/.git_corrupt_backup/objects/51/3cfabfb75f0c1207bb62283b43a05c514f4ea7 and /dev/null differ diff --git a/.git_corrupt_backup/objects/51/4acb7c09468080a60c020fbcd9914d2c0dc180 b/.git_corrupt_backup/objects/51/4acb7c09468080a60c020fbcd9914d2c0dc180 deleted file mode 100644 index fbbba53..0000000 Binary files a/.git_corrupt_backup/objects/51/4acb7c09468080a60c020fbcd9914d2c0dc180 and /dev/null differ diff --git a/.git_corrupt_backup/objects/51/4dbd81b9f776af5e0f29e65d075866c05a4b5a b/.git_corrupt_backup/objects/51/4dbd81b9f776af5e0f29e65d075866c05a4b5a deleted file mode 100644 index d9dd6fc..0000000 Binary files a/.git_corrupt_backup/objects/51/4dbd81b9f776af5e0f29e65d075866c05a4b5a and /dev/null differ diff --git a/.git_corrupt_backup/objects/52/2637cc42c37f879bb7b1d608219836f8392519 b/.git_corrupt_backup/objects/52/2637cc42c37f879bb7b1d608219836f8392519 deleted file mode 100644 index 259ee8d..0000000 Binary files a/.git_corrupt_backup/objects/52/2637cc42c37f879bb7b1d608219836f8392519 and /dev/null differ diff --git a/.git_corrupt_backup/objects/52/5d61a6a2ca5d0adb7301e95fcf2562eb1b70d8 b/.git_corrupt_backup/objects/52/5d61a6a2ca5d0adb7301e95fcf2562eb1b70d8 deleted file mode 100644 index d22a1f7..0000000 Binary files a/.git_corrupt_backup/objects/52/5d61a6a2ca5d0adb7301e95fcf2562eb1b70d8 and /dev/null differ diff --git a/.git_corrupt_backup/objects/52/b9a170c24f0b45fc2137148112f6980d2c5734 b/.git_corrupt_backup/objects/52/b9a170c24f0b45fc2137148112f6980d2c5734 deleted file mode 100644 index 40d0566..0000000 Binary files a/.git_corrupt_backup/objects/52/b9a170c24f0b45fc2137148112f6980d2c5734 and /dev/null differ diff --git a/.git_corrupt_backup/objects/52/f6df579357cd7636257b40e4177f320eb8c5b8 b/.git_corrupt_backup/objects/52/f6df579357cd7636257b40e4177f320eb8c5b8 deleted file mode 100644 index b45d088..0000000 Binary files a/.git_corrupt_backup/objects/52/f6df579357cd7636257b40e4177f320eb8c5b8 and /dev/null differ diff --git a/.git_corrupt_backup/objects/55/39010ed4953fe01984415038184adc66512e16 b/.git_corrupt_backup/objects/55/39010ed4953fe01984415038184adc66512e16 deleted file mode 100644 index 1e99ccd..0000000 Binary files a/.git_corrupt_backup/objects/55/39010ed4953fe01984415038184adc66512e16 and /dev/null differ diff --git a/.git_corrupt_backup/objects/56/263dca83407ccf477b0b1ea3b5b6ff8a99f752 b/.git_corrupt_backup/objects/56/263dca83407ccf477b0b1ea3b5b6ff8a99f752 deleted file mode 100644 index 35f2ad9..0000000 Binary files a/.git_corrupt_backup/objects/56/263dca83407ccf477b0b1ea3b5b6ff8a99f752 and /dev/null differ diff --git a/.git_corrupt_backup/objects/56/69d76cd199db5c0f7d7c0d00973618fc507310 b/.git_corrupt_backup/objects/56/69d76cd199db5c0f7d7c0d00973618fc507310 deleted file mode 100644 index 27558ad..0000000 Binary files a/.git_corrupt_backup/objects/56/69d76cd199db5c0f7d7c0d00973618fc507310 and /dev/null differ diff --git a/.git_corrupt_backup/objects/57/02a7eca717592d6a9b023c89c13ef3efd7d210 b/.git_corrupt_backup/objects/57/02a7eca717592d6a9b023c89c13ef3efd7d210 deleted file mode 100644 index c16ffed..0000000 Binary files a/.git_corrupt_backup/objects/57/02a7eca717592d6a9b023c89c13ef3efd7d210 and /dev/null differ diff --git a/.git_corrupt_backup/objects/57/9ab09f1c74e9608f0831cade00f4ae7c013358 b/.git_corrupt_backup/objects/57/9ab09f1c74e9608f0831cade00f4ae7c013358 deleted file mode 100644 index 6e9302c..0000000 Binary files a/.git_corrupt_backup/objects/57/9ab09f1c74e9608f0831cade00f4ae7c013358 and /dev/null differ diff --git a/.git_corrupt_backup/objects/58/4668c21d0d6137f18bf238a1f172331d2a0452 b/.git_corrupt_backup/objects/58/4668c21d0d6137f18bf238a1f172331d2a0452 deleted file mode 100644 index da2cd38..0000000 Binary files a/.git_corrupt_backup/objects/58/4668c21d0d6137f18bf238a1f172331d2a0452 and /dev/null differ diff --git a/.git_corrupt_backup/objects/58/e96aa52a621fa278a0d2566f9414204a187bef b/.git_corrupt_backup/objects/58/e96aa52a621fa278a0d2566f9414204a187bef deleted file mode 100644 index 2c013ea..0000000 Binary files a/.git_corrupt_backup/objects/58/e96aa52a621fa278a0d2566f9414204a187bef and /dev/null differ diff --git a/.git_corrupt_backup/objects/59/37686bada8980e9643adf650faddc818e2a8a8 b/.git_corrupt_backup/objects/59/37686bada8980e9643adf650faddc818e2a8a8 deleted file mode 100644 index 6313acd..0000000 Binary files a/.git_corrupt_backup/objects/59/37686bada8980e9643adf650faddc818e2a8a8 and /dev/null differ diff --git a/.git_corrupt_backup/objects/59/3f1618ada8b6f87df69e33e4a3d1fad39dbd66 b/.git_corrupt_backup/objects/59/3f1618ada8b6f87df69e33e4a3d1fad39dbd66 deleted file mode 100644 index b4988af..0000000 Binary files a/.git_corrupt_backup/objects/59/3f1618ada8b6f87df69e33e4a3d1fad39dbd66 and /dev/null differ diff --git a/.git_corrupt_backup/objects/5a/96a696b16afe8b9e21e158185bc3e98f645e52 b/.git_corrupt_backup/objects/5a/96a696b16afe8b9e21e158185bc3e98f645e52 deleted file mode 100644 index 3c5a668..0000000 Binary files a/.git_corrupt_backup/objects/5a/96a696b16afe8b9e21e158185bc3e98f645e52 and /dev/null differ diff --git a/.git_corrupt_backup/objects/5c/4016880f3c3714527a1f4b007f2b6d5eec0042 b/.git_corrupt_backup/objects/5c/4016880f3c3714527a1f4b007f2b6d5eec0042 deleted file mode 100644 index d1004b2..0000000 Binary files a/.git_corrupt_backup/objects/5c/4016880f3c3714527a1f4b007f2b6d5eec0042 and /dev/null differ diff --git a/.git_corrupt_backup/objects/5c/4b61aa4c84970e0799cddbc121fdd25805cdb4 b/.git_corrupt_backup/objects/5c/4b61aa4c84970e0799cddbc121fdd25805cdb4 deleted file mode 100644 index 3bc4931..0000000 Binary files a/.git_corrupt_backup/objects/5c/4b61aa4c84970e0799cddbc121fdd25805cdb4 and /dev/null differ diff --git a/.git_corrupt_backup/objects/5f/0c352de9067010345784615c0469836e9b4f62 b/.git_corrupt_backup/objects/5f/0c352de9067010345784615c0469836e9b4f62 deleted file mode 100644 index 631d9d2..0000000 Binary files a/.git_corrupt_backup/objects/5f/0c352de9067010345784615c0469836e9b4f62 and /dev/null differ diff --git a/.git_corrupt_backup/objects/5f/9dbb906491c9ab3012ea32691ae6a1fe4245c8 b/.git_corrupt_backup/objects/5f/9dbb906491c9ab3012ea32691ae6a1fe4245c8 deleted file mode 100644 index 5867e9d..0000000 Binary files a/.git_corrupt_backup/objects/5f/9dbb906491c9ab3012ea32691ae6a1fe4245c8 and /dev/null differ diff --git a/.git_corrupt_backup/objects/60/2db708000249f256f0ca0cf470fa03611ceb39 b/.git_corrupt_backup/objects/60/2db708000249f256f0ca0cf470fa03611ceb39 deleted file mode 100644 index 73b84a2..0000000 Binary files a/.git_corrupt_backup/objects/60/2db708000249f256f0ca0cf470fa03611ceb39 and /dev/null differ diff --git a/.git_corrupt_backup/objects/60/fbbcb7383cf3dd66717982f27b44e15b253e5b b/.git_corrupt_backup/objects/60/fbbcb7383cf3dd66717982f27b44e15b253e5b deleted file mode 100644 index adc064c..0000000 Binary files a/.git_corrupt_backup/objects/60/fbbcb7383cf3dd66717982f27b44e15b253e5b and /dev/null differ diff --git a/.git_corrupt_backup/objects/61/5c95859a9857fad426ef7d26ac75a705abf467 b/.git_corrupt_backup/objects/61/5c95859a9857fad426ef7d26ac75a705abf467 deleted file mode 100644 index 78bd799..0000000 Binary files a/.git_corrupt_backup/objects/61/5c95859a9857fad426ef7d26ac75a705abf467 and /dev/null differ diff --git a/.git_corrupt_backup/objects/62/81ab95132ddc821abd6c6014c5819ea1aac39c b/.git_corrupt_backup/objects/62/81ab95132ddc821abd6c6014c5819ea1aac39c deleted file mode 100644 index 33b6bd0..0000000 --- a/.git_corrupt_backup/objects/62/81ab95132ddc821abd6c6014c5819ea1aac39c +++ /dev/null @@ -1,2 +0,0 @@ -xTMO0̯ GݬƳWp, m:ejK JBd{7o޴ͅӻǧ$;ZIve7a5 -& G9-`=jH -\--4`J_~<,K:gxEM8^q}59F7BguD6H(-.:W  >H>F ^Sc}N崯?UyLsNgXXd4uْPu19ejwaHLǵ!4@ʣ)˨ċc%H \ No newline at end of file diff --git a/.git_corrupt_backup/objects/62/895046340a967a6d4c855051478fbbdec8e3a4 b/.git_corrupt_backup/objects/62/895046340a967a6d4c855051478fbbdec8e3a4 deleted file mode 100644 index df37cc9..0000000 --- a/.git_corrupt_backup/objects/62/895046340a967a6d4c855051478fbbdec8e3a4 +++ /dev/null @@ -1 +0,0 @@ -x%10 E;>NBeI8Qwx{Iv8 7λӚ?H)o[PfM=mNأRL^ _8~y+/N89& \ No newline at end of file diff --git a/.git_corrupt_backup/objects/62/accf90248a8aee9cc7859c3e379c31392fb9c0 b/.git_corrupt_backup/objects/62/accf90248a8aee9cc7859c3e379c31392fb9c0 deleted file mode 100644 index 81bdcf2..0000000 Binary files a/.git_corrupt_backup/objects/62/accf90248a8aee9cc7859c3e379c31392fb9c0 and /dev/null differ diff --git a/.git_corrupt_backup/objects/65/2a48af07a93d9a48ea9bfa818eebd6429045da b/.git_corrupt_backup/objects/65/2a48af07a93d9a48ea9bfa818eebd6429045da deleted file mode 100644 index 7aba957..0000000 Binary files a/.git_corrupt_backup/objects/65/2a48af07a93d9a48ea9bfa818eebd6429045da and /dev/null differ diff --git a/.git_corrupt_backup/objects/66/79546ce6b71e22b42b2b0b3d74d0c5e3f10ef4 b/.git_corrupt_backup/objects/66/79546ce6b71e22b42b2b0b3d74d0c5e3f10ef4 deleted file mode 100644 index 9ad8b6b..0000000 Binary files a/.git_corrupt_backup/objects/66/79546ce6b71e22b42b2b0b3d74d0c5e3f10ef4 and /dev/null differ diff --git a/.git_corrupt_backup/objects/66/baf87d4cf82369c300366eb292d4109c30a01f b/.git_corrupt_backup/objects/66/baf87d4cf82369c300366eb292d4109c30a01f deleted file mode 100644 index 5fc4399..0000000 Binary files a/.git_corrupt_backup/objects/66/baf87d4cf82369c300366eb292d4109c30a01f and /dev/null differ diff --git a/.git_corrupt_backup/objects/66/bf5c2a725b6d1986ce32f2bd765ebe5aa481ea b/.git_corrupt_backup/objects/66/bf5c2a725b6d1986ce32f2bd765ebe5aa481ea deleted file mode 100644 index 6ec0369..0000000 --- a/.git_corrupt_backup/objects/66/bf5c2a725b6d1986ce32f2bd765ebe5aa481ea +++ /dev/null @@ -1,9 +0,0 @@ -xWkoH+"U-"W``4JC-mFU; IZjqϹ>vw7:ՠ_&г8U&MNvk^-w"7/*xLJ{4Q =|]DUmU-vitZ-ղ tcFN0P VdOTR:9@' -3TI%)5|SڮMȋlӍ|S4OhSThZ"5UZIZFҰZ7&YbRi/ߣURDS)+QEy~am ĺd+w@xTVCŎYH%e& -(M 'ߓ?=ѣKl -re Ð'EêlXh: -7lćI "? 9$ pP -&鹣iOz6y~0 -6㲱Ûi,wCΙBe1\xM t4_Yk_O*wȱ蝀pI /$5tFq̚Il$j48ۓpCj˅8jWA@ -'lC"*O=g N1f~ -e8  |gUW"8P?8iD fm>*YͽPtJ{_@\9==`..a#Ѧ:Bm QC$P:ggCRl $(8f]7@1y'!7"KONf@fk%كU5u[>f_h4 ^ f3hu]eәmyuZT>*ޞC+e&4*p(^O^v |6Ke_wie˚xuٲ[֯6WѲ4*-wČ'qo6l Y|^mJ }9ۤOpo5b %ެ4q X>7\f]03KmcfǺ, O5䈺=ƹaюVF88dbO .EqZri, /MXO'6{b}bpϭK^=%_-=ϵ&*N>< o'07wE DG ȇ{[Ȏ Zbae)r1ut^&֮,+Rڪ?I!9%G£S2?;וi/Ԯ QPfafTu4Dž9 yiݸ_)c)wdhke|%VjN|*Zyt>^\ X<^ {oj%/?o \ No newline at end of file diff --git a/.git_corrupt_backup/objects/75/894692d6a7be33c1625eeda37ec309b10ae9d0 b/.git_corrupt_backup/objects/75/894692d6a7be33c1625eeda37ec309b10ae9d0 deleted file mode 100644 index 5fc0dcc..0000000 Binary files a/.git_corrupt_backup/objects/75/894692d6a7be33c1625eeda37ec309b10ae9d0 and /dev/null differ diff --git a/.git_corrupt_backup/objects/75/e7d0d99b538c80e321eb0d18b9c77f339098b2 b/.git_corrupt_backup/objects/75/e7d0d99b538c80e321eb0d18b9c77f339098b2 deleted file mode 100644 index 9853493..0000000 Binary files a/.git_corrupt_backup/objects/75/e7d0d99b538c80e321eb0d18b9c77f339098b2 and /dev/null differ diff --git a/.git_corrupt_backup/objects/77/edab3cc917304f1ce5bdeee7ea899dd8418b85 b/.git_corrupt_backup/objects/77/edab3cc917304f1ce5bdeee7ea899dd8418b85 deleted file mode 100644 index 3001f73..0000000 Binary files a/.git_corrupt_backup/objects/77/edab3cc917304f1ce5bdeee7ea899dd8418b85 and /dev/null differ diff --git a/.git_corrupt_backup/objects/78/ec11c9e96294c0197febed4f1728c5286a5d27 b/.git_corrupt_backup/objects/78/ec11c9e96294c0197febed4f1728c5286a5d27 deleted file mode 100644 index 8a0f498..0000000 Binary files a/.git_corrupt_backup/objects/78/ec11c9e96294c0197febed4f1728c5286a5d27 and /dev/null differ diff --git a/.git_corrupt_backup/objects/79/8b28692097f56c6e55f3fe28b85aab170c741d b/.git_corrupt_backup/objects/79/8b28692097f56c6e55f3fe28b85aab170c741d deleted file mode 100644 index 4374d26..0000000 Binary files a/.git_corrupt_backup/objects/79/8b28692097f56c6e55f3fe28b85aab170c741d and /dev/null differ diff --git a/.git_corrupt_backup/objects/7a/29bd044bbc163676b278a4739adc39a836584b b/.git_corrupt_backup/objects/7a/29bd044bbc163676b278a4739adc39a836584b deleted file mode 100644 index 9e9d3ba..0000000 Binary files a/.git_corrupt_backup/objects/7a/29bd044bbc163676b278a4739adc39a836584b and /dev/null differ diff --git a/.git_corrupt_backup/objects/7a/e8eec5795a921eeb937f1d14c5f21f9aade2fc b/.git_corrupt_backup/objects/7a/e8eec5795a921eeb937f1d14c5f21f9aade2fc deleted file mode 100644 index eff8c16..0000000 Binary files a/.git_corrupt_backup/objects/7a/e8eec5795a921eeb937f1d14c5f21f9aade2fc and /dev/null differ diff --git a/.git_corrupt_backup/objects/7d/c4877854dd641ae85da88cfdba6b21b88b6fe5 b/.git_corrupt_backup/objects/7d/c4877854dd641ae85da88cfdba6b21b88b6fe5 deleted file mode 100644 index 2d61e80..0000000 Binary files a/.git_corrupt_backup/objects/7d/c4877854dd641ae85da88cfdba6b21b88b6fe5 and /dev/null differ diff --git a/.git_corrupt_backup/objects/7e/65ae93fdf92832e4d6c9a3ec6a96fb41c62fd0 b/.git_corrupt_backup/objects/7e/65ae93fdf92832e4d6c9a3ec6a96fb41c62fd0 deleted file mode 100644 index 8e86fd3..0000000 --- a/.git_corrupt_backup/objects/7e/65ae93fdf92832e4d6c9a3ec6a96fb41c62fd0 +++ /dev/null @@ -1,3 +0,0 @@ -xuRMkA=nl4Iv3a?lT Y! IŤ)xX$`DQL:]ge nڻL< WNAЗ<[Re ѠB(~y'赻 zSa6*"Av:Uq5ix4q\#)GDPTmPq sv@}<.0]|K 0:vjT'FuN sDCZg懟f}uǟa0R_ V^5pL￲H]%*qV -CeN`{(؇'u|LakvjAF"=Y;m `ƙU"s 4^)2 |`d_HBԷ7O<(H.}( -1pgF35`)g=]๽rjː5fk \ No newline at end of file diff --git a/.git_corrupt_backup/objects/7e/a9380c933a1b2c79ec9f382125c07a28334463 b/.git_corrupt_backup/objects/7e/a9380c933a1b2c79ec9f382125c07a28334463 deleted file mode 100644 index 93a8524..0000000 Binary files a/.git_corrupt_backup/objects/7e/a9380c933a1b2c79ec9f382125c07a28334463 and /dev/null differ diff --git a/.git_corrupt_backup/objects/7e/bad1d464b89073588c181d1bf444b184b43c9b b/.git_corrupt_backup/objects/7e/bad1d464b89073588c181d1bf444b184b43c9b deleted file mode 100644 index bc5d7f9..0000000 Binary files a/.git_corrupt_backup/objects/7e/bad1d464b89073588c181d1bf444b184b43c9b and /dev/null differ diff --git a/.git_corrupt_backup/objects/7f/be5f3f58fd35a08a5196287f3bb42c411f822b b/.git_corrupt_backup/objects/7f/be5f3f58fd35a08a5196287f3bb42c411f822b deleted file mode 100644 index 48f8130..0000000 --- a/.git_corrupt_backup/objects/7f/be5f3f58fd35a08a5196287f3bb42c411f822b +++ /dev/null @@ -1,3 +0,0 @@ -xSj@Z_qؖ -׸?J)F'4#4 ,(I)$EU.{t蝑J2i8qι3l:G  <$^d(aMk(`AC#2qI0$A؄B-p߲ fӲ좜(R ak]-_f2:h_Gf砥)Ů^5U XAK* :GA= l{'%ѫoՌ]VjY ԟ%$#Pe/x\rDHI0Oө -ϿYjEX0^`A,̆ 7 ȳH,&eY`s,X$?HsڶضF1l#L3ʴ\,oBq^Cr@qtNFyF QùK@q1CJk3RMKjq \ No newline at end of file diff --git a/.git_corrupt_backup/objects/80/15f6cb4185040061fc01e9080142ad272c28e4 b/.git_corrupt_backup/objects/80/15f6cb4185040061fc01e9080142ad272c28e4 deleted file mode 100644 index a9df532..0000000 Binary files a/.git_corrupt_backup/objects/80/15f6cb4185040061fc01e9080142ad272c28e4 and /dev/null differ diff --git a/.git_corrupt_backup/objects/80/40a32fd700540d46e706b0b7ddf29ed9f5bf23 b/.git_corrupt_backup/objects/80/40a32fd700540d46e706b0b7ddf29ed9f5bf23 deleted file mode 100644 index 9848906..0000000 Binary files a/.git_corrupt_backup/objects/80/40a32fd700540d46e706b0b7ddf29ed9f5bf23 and /dev/null differ diff --git a/.git_corrupt_backup/objects/80/cf3a0b23efb0dd8d71e50684478681c7f57bd0 b/.git_corrupt_backup/objects/80/cf3a0b23efb0dd8d71e50684478681c7f57bd0 deleted file mode 100644 index 7e6ca5a..0000000 Binary files a/.git_corrupt_backup/objects/80/cf3a0b23efb0dd8d71e50684478681c7f57bd0 and /dev/null differ diff --git a/.git_corrupt_backup/objects/81/92c2b9f98f14757841add20fe6745e94723549 b/.git_corrupt_backup/objects/81/92c2b9f98f14757841add20fe6745e94723549 deleted file mode 100644 index 59bbfd0..0000000 Binary files a/.git_corrupt_backup/objects/81/92c2b9f98f14757841add20fe6745e94723549 and /dev/null differ diff --git a/.git_corrupt_backup/objects/81/9989d284c9b30297a5b5b990b9f07c5d651006 b/.git_corrupt_backup/objects/81/9989d284c9b30297a5b5b990b9f07c5d651006 deleted file mode 100644 index 8363046..0000000 Binary files a/.git_corrupt_backup/objects/81/9989d284c9b30297a5b5b990b9f07c5d651006 and /dev/null differ diff --git a/.git_corrupt_backup/objects/81/ce972e4a62ce52632a5d4109f0289fd1f2be4f b/.git_corrupt_backup/objects/81/ce972e4a62ce52632a5d4109f0289fd1f2be4f deleted file mode 100644 index bb456cb..0000000 Binary files a/.git_corrupt_backup/objects/81/ce972e4a62ce52632a5d4109f0289fd1f2be4f and /dev/null differ diff --git a/.git_corrupt_backup/objects/81/f73c42b5942c8294f8957b3bd0de4cecf58d87 b/.git_corrupt_backup/objects/81/f73c42b5942c8294f8957b3bd0de4cecf58d87 deleted file mode 100644 index 174ccb9..0000000 Binary files a/.git_corrupt_backup/objects/81/f73c42b5942c8294f8957b3bd0de4cecf58d87 and /dev/null differ diff --git a/.git_corrupt_backup/objects/82/04102b83fb8619ca123108ed512e4f53fc63da b/.git_corrupt_backup/objects/82/04102b83fb8619ca123108ed512e4f53fc63da deleted file mode 100644 index fc150d1..0000000 Binary files a/.git_corrupt_backup/objects/82/04102b83fb8619ca123108ed512e4f53fc63da and /dev/null differ diff --git a/.git_corrupt_backup/objects/83/eab9542369acc0049a69b08bac1d83faa91797 b/.git_corrupt_backup/objects/83/eab9542369acc0049a69b08bac1d83faa91797 deleted file mode 100644 index 00713a0..0000000 Binary files a/.git_corrupt_backup/objects/83/eab9542369acc0049a69b08bac1d83faa91797 and /dev/null differ diff --git a/.git_corrupt_backup/objects/84/158321b2f90b28d5dc99c6cb1ec8788bdbbcba b/.git_corrupt_backup/objects/84/158321b2f90b28d5dc99c6cb1ec8788bdbbcba deleted file mode 100644 index 6f66956..0000000 Binary files a/.git_corrupt_backup/objects/84/158321b2f90b28d5dc99c6cb1ec8788bdbbcba and /dev/null differ diff --git a/.git_corrupt_backup/objects/84/34b1b277f2a1219ea652da3d98c2414f960165 b/.git_corrupt_backup/objects/84/34b1b277f2a1219ea652da3d98c2414f960165 deleted file mode 100644 index 61f697e..0000000 Binary files a/.git_corrupt_backup/objects/84/34b1b277f2a1219ea652da3d98c2414f960165 and /dev/null differ diff --git a/.git_corrupt_backup/objects/86/98db8a63d5169fc954752533a5d54e1489ea7e b/.git_corrupt_backup/objects/86/98db8a63d5169fc954752533a5d54e1489ea7e deleted file mode 100644 index 0c12544..0000000 Binary files a/.git_corrupt_backup/objects/86/98db8a63d5169fc954752533a5d54e1489ea7e and /dev/null differ diff --git a/.git_corrupt_backup/objects/89/5aba350490c5fe8d936a6e6823c2478fd43060 b/.git_corrupt_backup/objects/89/5aba350490c5fe8d936a6e6823c2478fd43060 deleted file mode 100644 index f3ffeb7..0000000 Binary files a/.git_corrupt_backup/objects/89/5aba350490c5fe8d936a6e6823c2478fd43060 and /dev/null differ diff --git a/.git_corrupt_backup/objects/89/64037b95ff65afc27e3b3bf4980fcbbb2189ca b/.git_corrupt_backup/objects/89/64037b95ff65afc27e3b3bf4980fcbbb2189ca deleted file mode 100644 index 496920c..0000000 Binary files a/.git_corrupt_backup/objects/89/64037b95ff65afc27e3b3bf4980fcbbb2189ca and /dev/null differ diff --git a/.git_corrupt_backup/objects/89/c3d6aa516575336fae96d2f61fd171793006d0 b/.git_corrupt_backup/objects/89/c3d6aa516575336fae96d2f61fd171793006d0 deleted file mode 100644 index 94822e8..0000000 Binary files a/.git_corrupt_backup/objects/89/c3d6aa516575336fae96d2f61fd171793006d0 and /dev/null differ diff --git a/.git_corrupt_backup/objects/8a/53caecfbeeba1d8c11de4240f73bf54e005839 b/.git_corrupt_backup/objects/8a/53caecfbeeba1d8c11de4240f73bf54e005839 deleted file mode 100644 index 6d6d1d4..0000000 Binary files a/.git_corrupt_backup/objects/8a/53caecfbeeba1d8c11de4240f73bf54e005839 and /dev/null differ diff --git a/.git_corrupt_backup/objects/8b/3ee1d0435e2ac0e1153b4f992896693e3a0d91 b/.git_corrupt_backup/objects/8b/3ee1d0435e2ac0e1153b4f992896693e3a0d91 deleted file mode 100644 index 9ce6214..0000000 Binary files a/.git_corrupt_backup/objects/8b/3ee1d0435e2ac0e1153b4f992896693e3a0d91 and /dev/null differ diff --git a/.git_corrupt_backup/objects/8b/45606c1cc403fe415ca9d6c652e4d4f81c0704 b/.git_corrupt_backup/objects/8b/45606c1cc403fe415ca9d6c652e4d4f81c0704 deleted file mode 100644 index 439f56c..0000000 Binary files a/.git_corrupt_backup/objects/8b/45606c1cc403fe415ca9d6c652e4d4f81c0704 and /dev/null differ diff --git a/.git_corrupt_backup/objects/8b/d18aa318a982b66863b4e413672eed272d2657 b/.git_corrupt_backup/objects/8b/d18aa318a982b66863b4e413672eed272d2657 deleted file mode 100644 index 7691da4..0000000 Binary files a/.git_corrupt_backup/objects/8b/d18aa318a982b66863b4e413672eed272d2657 and /dev/null differ diff --git a/.git_corrupt_backup/objects/8c/4c877858d81d10637caa73a20cb7bacee84f24 b/.git_corrupt_backup/objects/8c/4c877858d81d10637caa73a20cb7bacee84f24 deleted file mode 100644 index 60d1362..0000000 Binary files a/.git_corrupt_backup/objects/8c/4c877858d81d10637caa73a20cb7bacee84f24 and /dev/null differ diff --git a/.git_corrupt_backup/objects/8d/95ca1afd24d7d7aa038f11a598cc37b7623441 b/.git_corrupt_backup/objects/8d/95ca1afd24d7d7aa038f11a598cc37b7623441 deleted file mode 100644 index c23da16..0000000 Binary files a/.git_corrupt_backup/objects/8d/95ca1afd24d7d7aa038f11a598cc37b7623441 and /dev/null differ diff --git a/.git_corrupt_backup/objects/8d/e364f2efa6879d8ed15022a7ea5be44e17ab52 b/.git_corrupt_backup/objects/8d/e364f2efa6879d8ed15022a7ea5be44e17ab52 deleted file mode 100644 index 9bf7778..0000000 Binary files a/.git_corrupt_backup/objects/8d/e364f2efa6879d8ed15022a7ea5be44e17ab52 and /dev/null differ diff --git a/.git_corrupt_backup/objects/8e/e660eaf5d16ea6e1b9dac56dbd3ac446522895 b/.git_corrupt_backup/objects/8e/e660eaf5d16ea6e1b9dac56dbd3ac446522895 deleted file mode 100644 index 1fe0e58..0000000 Binary files a/.git_corrupt_backup/objects/8e/e660eaf5d16ea6e1b9dac56dbd3ac446522895 and /dev/null differ diff --git a/.git_corrupt_backup/objects/8f/3d6a8dd9ee76ca141abda3acd4d80282b7b553 b/.git_corrupt_backup/objects/8f/3d6a8dd9ee76ca141abda3acd4d80282b7b553 deleted file mode 100644 index dfa8672..0000000 Binary files a/.git_corrupt_backup/objects/8f/3d6a8dd9ee76ca141abda3acd4d80282b7b553 and /dev/null differ diff --git a/.git_corrupt_backup/objects/92/7f3e72e38ba3e7eb5ef6c724a5bfdcf77ee2bc b/.git_corrupt_backup/objects/92/7f3e72e38ba3e7eb5ef6c724a5bfdcf77ee2bc deleted file mode 100644 index a92503d..0000000 Binary files a/.git_corrupt_backup/objects/92/7f3e72e38ba3e7eb5ef6c724a5bfdcf77ee2bc and /dev/null differ diff --git a/.git_corrupt_backup/objects/92/e63f93154dc92e9ce987dfb349e612504c2253 b/.git_corrupt_backup/objects/92/e63f93154dc92e9ce987dfb349e612504c2253 deleted file mode 100644 index 41f22d4..0000000 Binary files a/.git_corrupt_backup/objects/92/e63f93154dc92e9ce987dfb349e612504c2253 and /dev/null differ diff --git a/.git_corrupt_backup/objects/93/32307dd19db363585d71f02c6e03dd72fd5a6c b/.git_corrupt_backup/objects/93/32307dd19db363585d71f02c6e03dd72fd5a6c deleted file mode 100644 index 845b210..0000000 Binary files a/.git_corrupt_backup/objects/93/32307dd19db363585d71f02c6e03dd72fd5a6c and /dev/null differ diff --git a/.git_corrupt_backup/objects/94/c470df5c77af087d9316d4626208f370ca4635 b/.git_corrupt_backup/objects/94/c470df5c77af087d9316d4626208f370ca4635 deleted file mode 100644 index 02bffa7..0000000 Binary files a/.git_corrupt_backup/objects/94/c470df5c77af087d9316d4626208f370ca4635 and /dev/null differ diff --git a/.git_corrupt_backup/objects/97/3edc85438beb69e34d2862e838ffc725732616 b/.git_corrupt_backup/objects/97/3edc85438beb69e34d2862e838ffc725732616 deleted file mode 100644 index e915be8..0000000 Binary files a/.git_corrupt_backup/objects/97/3edc85438beb69e34d2862e838ffc725732616 and /dev/null differ diff --git a/.git_corrupt_backup/objects/9a/1069842ff819276b312821c1ca82b5ef073dc1 b/.git_corrupt_backup/objects/9a/1069842ff819276b312821c1ca82b5ef073dc1 deleted file mode 100644 index 378aecd..0000000 Binary files a/.git_corrupt_backup/objects/9a/1069842ff819276b312821c1ca82b5ef073dc1 and /dev/null differ diff --git a/.git_corrupt_backup/objects/9a/939b676558b7917f6e5702060c05b2074c9e18 b/.git_corrupt_backup/objects/9a/939b676558b7917f6e5702060c05b2074c9e18 deleted file mode 100644 index 128db96..0000000 Binary files a/.git_corrupt_backup/objects/9a/939b676558b7917f6e5702060c05b2074c9e18 and /dev/null differ diff --git a/.git_corrupt_backup/objects/9a/b8b391a6007afb85a78325f47dd25d09cf1fdf b/.git_corrupt_backup/objects/9a/b8b391a6007afb85a78325f47dd25d09cf1fdf deleted file mode 100644 index c470139..0000000 Binary files a/.git_corrupt_backup/objects/9a/b8b391a6007afb85a78325f47dd25d09cf1fdf and /dev/null differ diff --git a/.git_corrupt_backup/objects/9b/b903874f137b4873aaca81d3a232245da96ac5 b/.git_corrupt_backup/objects/9b/b903874f137b4873aaca81d3a232245da96ac5 deleted file mode 100644 index fdf1b43..0000000 --- a/.git_corrupt_backup/objects/9b/b903874f137b4873aaca81d3a232245da96ac5 +++ /dev/null @@ -1,4 +0,0 @@ -xRKAӖ3`.2'ŵ,idbz`cNjgüB:S8.ѪײKW׶oՌ|I>r;ɡpNaB{yWr`SJ~Pл'D RzX:UlqdN 8\G;:jPŕev$Bٹ,u6hGK6/9( x̜ -+p\7* ,mGmD YfBzđvG&"M8qY@fa\;w tC<]2n.]ίrum#&n;4d %b9S*f?gG -:Ͼ -adQo5Niu5n9(kym%CAe毎oه/󷇕Qevtx{dx>~FeqcoU \ No newline at end of file diff --git a/.git_corrupt_backup/objects/9d/9799ff1d4c3442c9ad57cace32af37e952a53d b/.git_corrupt_backup/objects/9d/9799ff1d4c3442c9ad57cace32af37e952a53d deleted file mode 100644 index 895fb95..0000000 Binary files a/.git_corrupt_backup/objects/9d/9799ff1d4c3442c9ad57cace32af37e952a53d and /dev/null differ diff --git a/.git_corrupt_backup/objects/9e/ec9110e9b9b85f182ec5b477e176329a80289b b/.git_corrupt_backup/objects/9e/ec9110e9b9b85f182ec5b477e176329a80289b deleted file mode 100644 index de606cb..0000000 Binary files a/.git_corrupt_backup/objects/9e/ec9110e9b9b85f182ec5b477e176329a80289b and /dev/null differ diff --git a/.git_corrupt_backup/objects/9f/1e988c97237fc312bc108a5d425454de56b930 b/.git_corrupt_backup/objects/9f/1e988c97237fc312bc108a5d425454de56b930 deleted file mode 100644 index 64b359c..0000000 Binary files a/.git_corrupt_backup/objects/9f/1e988c97237fc312bc108a5d425454de56b930 and /dev/null differ diff --git a/.git_corrupt_backup/objects/9f/c5eb999a47f10f840254094eabe43e74247090 b/.git_corrupt_backup/objects/9f/c5eb999a47f10f840254094eabe43e74247090 deleted file mode 100644 index f6c6349..0000000 Binary files a/.git_corrupt_backup/objects/9f/c5eb999a47f10f840254094eabe43e74247090 and /dev/null differ diff --git a/.git_corrupt_backup/objects/a1/2ef10b366855a0b53dd039cd53460485515b23 b/.git_corrupt_backup/objects/a1/2ef10b366855a0b53dd039cd53460485515b23 deleted file mode 100644 index 0cbc003..0000000 Binary files a/.git_corrupt_backup/objects/a1/2ef10b366855a0b53dd039cd53460485515b23 and /dev/null differ diff --git a/.git_corrupt_backup/objects/a5/76a01b7d74adfbf3b777894f6228be924dae48 b/.git_corrupt_backup/objects/a5/76a01b7d74adfbf3b777894f6228be924dae48 deleted file mode 100644 index 7273ac0..0000000 --- a/.git_corrupt_backup/objects/a5/76a01b7d74adfbf3b777894f6228be924dae48 +++ /dev/null @@ -1 +0,0 @@ -xuN0Ǚ18,PV*nUűuNJGQ!$":TJ< #q߁3 w'a*ŇG{Y_}|Kܮ]¾5o*Jtyyh(0HELEPkM2xd$2wP 7I{npL{hSﲀ*\\p7teg*MxQ ˬ G;={>m]of/*07RD|G>7_+WifmXV%0DE? \ No newline at end of file diff --git a/.git_corrupt_backup/objects/a5/f61662d6e3c08480dbd2ea172ab3929aea44da b/.git_corrupt_backup/objects/a5/f61662d6e3c08480dbd2ea172ab3929aea44da deleted file mode 100644 index b00b7fb..0000000 Binary files a/.git_corrupt_backup/objects/a5/f61662d6e3c08480dbd2ea172ab3929aea44da and /dev/null differ diff --git a/.git_corrupt_backup/objects/a6/58598fd03840e9a6fcbf9ca348a3ce3a9bdd11 b/.git_corrupt_backup/objects/a6/58598fd03840e9a6fcbf9ca348a3ce3a9bdd11 deleted file mode 100644 index 743aa1a..0000000 Binary files a/.git_corrupt_backup/objects/a6/58598fd03840e9a6fcbf9ca348a3ce3a9bdd11 and /dev/null differ diff --git a/.git_corrupt_backup/objects/a7/559cb0e1af04db36a33579d38b8a4389c100c1 b/.git_corrupt_backup/objects/a7/559cb0e1af04db36a33579d38b8a4389c100c1 deleted file mode 100644 index 249c78e..0000000 Binary files a/.git_corrupt_backup/objects/a7/559cb0e1af04db36a33579d38b8a4389c100c1 and /dev/null differ diff --git a/.git_corrupt_backup/objects/a7/889663732e43f181b9906e181581073fa5b938 b/.git_corrupt_backup/objects/a7/889663732e43f181b9906e181581073fa5b938 deleted file mode 100644 index 0a4b0aa..0000000 Binary files a/.git_corrupt_backup/objects/a7/889663732e43f181b9906e181581073fa5b938 and /dev/null differ diff --git a/.git_corrupt_backup/objects/a9/850e086d1aec293605ed71b85e95863f00d17c b/.git_corrupt_backup/objects/a9/850e086d1aec293605ed71b85e95863f00d17c deleted file mode 100644 index 70387bc..0000000 Binary files a/.git_corrupt_backup/objects/a9/850e086d1aec293605ed71b85e95863f00d17c and /dev/null differ diff --git a/.git_corrupt_backup/objects/a9/eb5e00942c206bb4d75b6e2a004c9206806567 b/.git_corrupt_backup/objects/a9/eb5e00942c206bb4d75b6e2a004c9206806567 deleted file mode 100644 index 3e70bec..0000000 Binary files a/.git_corrupt_backup/objects/a9/eb5e00942c206bb4d75b6e2a004c9206806567 and /dev/null differ diff --git a/.git_corrupt_backup/objects/ab/fc8cde5a45a14d52c5cb4148c2814ac6ba5545 b/.git_corrupt_backup/objects/ab/fc8cde5a45a14d52c5cb4148c2814ac6ba5545 deleted file mode 100644 index 6a5f938..0000000 Binary files a/.git_corrupt_backup/objects/ab/fc8cde5a45a14d52c5cb4148c2814ac6ba5545 and /dev/null differ diff --git a/.git_corrupt_backup/objects/ad/7b98f4db2a63823fb5188d79e1f75bde944702 b/.git_corrupt_backup/objects/ad/7b98f4db2a63823fb5188d79e1f75bde944702 deleted file mode 100644 index 5ce652a..0000000 Binary files a/.git_corrupt_backup/objects/ad/7b98f4db2a63823fb5188d79e1f75bde944702 and /dev/null differ diff --git a/.git_corrupt_backup/objects/ad/9b005bf1af46250fc4e30af6cdd541f6c60b59 b/.git_corrupt_backup/objects/ad/9b005bf1af46250fc4e30af6cdd541f6c60b59 deleted file mode 100644 index 818c422..0000000 Binary files a/.git_corrupt_backup/objects/ad/9b005bf1af46250fc4e30af6cdd541f6c60b59 and /dev/null differ diff --git a/.git_corrupt_backup/objects/ae/024dc1c9730bfcf490406d51b48b769b642af3 b/.git_corrupt_backup/objects/ae/024dc1c9730bfcf490406d51b48b769b642af3 deleted file mode 100644 index 97ba52d..0000000 Binary files a/.git_corrupt_backup/objects/ae/024dc1c9730bfcf490406d51b48b769b642af3 and /dev/null differ diff --git a/.git_corrupt_backup/objects/ae/546fa79ba686d59a12194bbbb0ea04c87287c9 b/.git_corrupt_backup/objects/ae/546fa79ba686d59a12194bbbb0ea04c87287c9 deleted file mode 100644 index 2982dc5..0000000 Binary files a/.git_corrupt_backup/objects/ae/546fa79ba686d59a12194bbbb0ea04c87287c9 and /dev/null differ diff --git a/.git_corrupt_backup/objects/ae/7db3208c2480536e071c3018994277a2c4036c b/.git_corrupt_backup/objects/ae/7db3208c2480536e071c3018994277a2c4036c deleted file mode 100644 index a64b418..0000000 Binary files a/.git_corrupt_backup/objects/ae/7db3208c2480536e071c3018994277a2c4036c and /dev/null differ diff --git a/.git_corrupt_backup/objects/af/487f994a1507b93047e53a1cd58cd32c60215a b/.git_corrupt_backup/objects/af/487f994a1507b93047e53a1cd58cd32c60215a deleted file mode 100644 index 8ac888d..0000000 Binary files a/.git_corrupt_backup/objects/af/487f994a1507b93047e53a1cd58cd32c60215a and /dev/null differ diff --git a/.git_corrupt_backup/objects/af/76d632c27c67a6bc182b03d5dde520f71b7879 b/.git_corrupt_backup/objects/af/76d632c27c67a6bc182b03d5dde520f71b7879 deleted file mode 100644 index fbb101d..0000000 Binary files a/.git_corrupt_backup/objects/af/76d632c27c67a6bc182b03d5dde520f71b7879 and /dev/null differ diff --git a/.git_corrupt_backup/objects/b0/4aa3905323c5a0376c26989c1a3c9b8f3afe6a b/.git_corrupt_backup/objects/b0/4aa3905323c5a0376c26989c1a3c9b8f3afe6a deleted file mode 100644 index aafb04a..0000000 Binary files a/.git_corrupt_backup/objects/b0/4aa3905323c5a0376c26989c1a3c9b8f3afe6a and /dev/null differ diff --git a/.git_corrupt_backup/objects/b0/96d37e317dc44289dcaa9a82c0195330cd9db4 b/.git_corrupt_backup/objects/b0/96d37e317dc44289dcaa9a82c0195330cd9db4 deleted file mode 100644 index 809a026..0000000 Binary files a/.git_corrupt_backup/objects/b0/96d37e317dc44289dcaa9a82c0195330cd9db4 and /dev/null differ diff --git a/.git_corrupt_backup/objects/b2/4d64f9ca62718571654d99572ff8f58d3cefbb b/.git_corrupt_backup/objects/b2/4d64f9ca62718571654d99572ff8f58d3cefbb deleted file mode 100644 index b1c73c1..0000000 Binary files a/.git_corrupt_backup/objects/b2/4d64f9ca62718571654d99572ff8f58d3cefbb and /dev/null differ diff --git a/.git_corrupt_backup/objects/b3/81d20e2637290537632d39d04650ae1e2087b7 b/.git_corrupt_backup/objects/b3/81d20e2637290537632d39d04650ae1e2087b7 deleted file mode 100644 index 9e951d5..0000000 Binary files a/.git_corrupt_backup/objects/b3/81d20e2637290537632d39d04650ae1e2087b7 and /dev/null differ diff --git a/.git_corrupt_backup/objects/b4/282251ca74d807a7461c616dac396a69aff667 b/.git_corrupt_backup/objects/b4/282251ca74d807a7461c616dac396a69aff667 deleted file mode 100644 index 53beaf2..0000000 Binary files a/.git_corrupt_backup/objects/b4/282251ca74d807a7461c616dac396a69aff667 and /dev/null differ diff --git a/.git_corrupt_backup/objects/b4/522cb8242fb084b63cba677f5982168448bd95 b/.git_corrupt_backup/objects/b4/522cb8242fb084b63cba677f5982168448bd95 deleted file mode 100644 index d274ed0..0000000 Binary files a/.git_corrupt_backup/objects/b4/522cb8242fb084b63cba677f5982168448bd95 and /dev/null differ diff --git a/.git_corrupt_backup/objects/b4/77ae195273bc3430d214a1d11849a193d7b6e1 b/.git_corrupt_backup/objects/b4/77ae195273bc3430d214a1d11849a193d7b6e1 deleted file mode 100644 index cab03ca..0000000 Binary files a/.git_corrupt_backup/objects/b4/77ae195273bc3430d214a1d11849a193d7b6e1 and /dev/null differ diff --git a/.git_corrupt_backup/objects/b4/ac4c7b05a799590575c0b5c8e24c51748ee20b b/.git_corrupt_backup/objects/b4/ac4c7b05a799590575c0b5c8e24c51748ee20b deleted file mode 100644 index 461d818..0000000 Binary files a/.git_corrupt_backup/objects/b4/ac4c7b05a799590575c0b5c8e24c51748ee20b and /dev/null differ diff --git a/.git_corrupt_backup/objects/b7/184bc2b78c06850d21e2207bcfd0ebdea9e167 b/.git_corrupt_backup/objects/b7/184bc2b78c06850d21e2207bcfd0ebdea9e167 deleted file mode 100644 index 6bf474f..0000000 Binary files a/.git_corrupt_backup/objects/b7/184bc2b78c06850d21e2207bcfd0ebdea9e167 and /dev/null differ diff --git a/.git_corrupt_backup/objects/b7/3d72488cf2217c0fc30b97e334c139571981fa b/.git_corrupt_backup/objects/b7/3d72488cf2217c0fc30b97e334c139571981fa deleted file mode 100644 index e05364e..0000000 Binary files a/.git_corrupt_backup/objects/b7/3d72488cf2217c0fc30b97e334c139571981fa and /dev/null differ diff --git a/.git_corrupt_backup/objects/b7/9da6d2a21ebf228f18452d55f78ce501f15bdb b/.git_corrupt_backup/objects/b7/9da6d2a21ebf228f18452d55f78ce501f15bdb deleted file mode 100644 index 4b111f5..0000000 Binary files a/.git_corrupt_backup/objects/b7/9da6d2a21ebf228f18452d55f78ce501f15bdb and /dev/null differ diff --git a/.git_corrupt_backup/objects/b7/d7f174213a2d26d3eac6a8da4aee6d0ddb0035 b/.git_corrupt_backup/objects/b7/d7f174213a2d26d3eac6a8da4aee6d0ddb0035 deleted file mode 100644 index 585a239..0000000 Binary files a/.git_corrupt_backup/objects/b7/d7f174213a2d26d3eac6a8da4aee6d0ddb0035 and /dev/null differ diff --git a/.git_corrupt_backup/objects/b9/8fa72e40e940a6effe1878f59351883453d32f b/.git_corrupt_backup/objects/b9/8fa72e40e940a6effe1878f59351883453d32f deleted file mode 100644 index bc9d2ca..0000000 Binary files a/.git_corrupt_backup/objects/b9/8fa72e40e940a6effe1878f59351883453d32f and /dev/null differ diff --git a/.git_corrupt_backup/objects/ba/5c38fef14fae2b04769e84649cb0f279b6982f b/.git_corrupt_backup/objects/ba/5c38fef14fae2b04769e84649cb0f279b6982f deleted file mode 100644 index 05288d1..0000000 Binary files a/.git_corrupt_backup/objects/ba/5c38fef14fae2b04769e84649cb0f279b6982f and /dev/null differ diff --git a/.git_corrupt_backup/objects/ba/a62ebd6d1af9f7291cf961c8b63c3afa5a0298 b/.git_corrupt_backup/objects/ba/a62ebd6d1af9f7291cf961c8b63c3afa5a0298 deleted file mode 100644 index 2bae8e7..0000000 Binary files a/.git_corrupt_backup/objects/ba/a62ebd6d1af9f7291cf961c8b63c3afa5a0298 and /dev/null differ diff --git a/.git_corrupt_backup/objects/ba/eb8b2909d5ff0db82b11bab05305cfe0d6e5bc b/.git_corrupt_backup/objects/ba/eb8b2909d5ff0db82b11bab05305cfe0d6e5bc deleted file mode 100644 index ea62d98..0000000 Binary files a/.git_corrupt_backup/objects/ba/eb8b2909d5ff0db82b11bab05305cfe0d6e5bc and /dev/null differ diff --git a/.git_corrupt_backup/objects/ba/ed4ee1e6f7e4c37dcbf89abbd1a59427e25e56 b/.git_corrupt_backup/objects/ba/ed4ee1e6f7e4c37dcbf89abbd1a59427e25e56 deleted file mode 100644 index 64ca816..0000000 Binary files a/.git_corrupt_backup/objects/ba/ed4ee1e6f7e4c37dcbf89abbd1a59427e25e56 and /dev/null differ diff --git a/.git_corrupt_backup/objects/bb/89fbba9e40005859e15a8d584e998cbdb6ae59 b/.git_corrupt_backup/objects/bb/89fbba9e40005859e15a8d584e998cbdb6ae59 deleted file mode 100644 index 1f8542f..0000000 Binary files a/.git_corrupt_backup/objects/bb/89fbba9e40005859e15a8d584e998cbdb6ae59 and /dev/null differ diff --git a/.git_corrupt_backup/objects/bc/723e1089fadfb9928a6d9961d446a62857052b b/.git_corrupt_backup/objects/bc/723e1089fadfb9928a6d9961d446a62857052b deleted file mode 100644 index 2b247cc..0000000 Binary files a/.git_corrupt_backup/objects/bc/723e1089fadfb9928a6d9961d446a62857052b and /dev/null differ diff --git a/.git_corrupt_backup/objects/bd/876df7b3b5448d60aeca05749791bd16076166 b/.git_corrupt_backup/objects/bd/876df7b3b5448d60aeca05749791bd16076166 deleted file mode 100644 index 66b9ff3..0000000 Binary files a/.git_corrupt_backup/objects/bd/876df7b3b5448d60aeca05749791bd16076166 and /dev/null differ diff --git a/.git_corrupt_backup/objects/bd/ecbae6a412879de5d9ea6c4b66bdbf96e84069 b/.git_corrupt_backup/objects/bd/ecbae6a412879de5d9ea6c4b66bdbf96e84069 deleted file mode 100644 index 58ec8dd..0000000 Binary files a/.git_corrupt_backup/objects/bd/ecbae6a412879de5d9ea6c4b66bdbf96e84069 and /dev/null differ diff --git a/.git_corrupt_backup/objects/be/754f80fa68a7b7034187bd68caa9fa147aaf3b b/.git_corrupt_backup/objects/be/754f80fa68a7b7034187bd68caa9fa147aaf3b deleted file mode 100644 index d86f0b4..0000000 Binary files a/.git_corrupt_backup/objects/be/754f80fa68a7b7034187bd68caa9fa147aaf3b and /dev/null differ diff --git a/.git_corrupt_backup/objects/be/eb29657ab3615566b862205bfeb9e4eef6a5d1 b/.git_corrupt_backup/objects/be/eb29657ab3615566b862205bfeb9e4eef6a5d1 deleted file mode 100644 index 548dcc5..0000000 Binary files a/.git_corrupt_backup/objects/be/eb29657ab3615566b862205bfeb9e4eef6a5d1 and /dev/null differ diff --git a/.git_corrupt_backup/objects/c0/15204cbdf0ea5bce759e6c275b7de574fd4f8e b/.git_corrupt_backup/objects/c0/15204cbdf0ea5bce759e6c275b7de574fd4f8e deleted file mode 100644 index fa6d713..0000000 Binary files a/.git_corrupt_backup/objects/c0/15204cbdf0ea5bce759e6c275b7de574fd4f8e and /dev/null differ diff --git a/.git_corrupt_backup/objects/c0/2563745898ea649cd9c83dca7b3030ac12f1f9 b/.git_corrupt_backup/objects/c0/2563745898ea649cd9c83dca7b3030ac12f1f9 deleted file mode 100644 index f1d630e..0000000 Binary files a/.git_corrupt_backup/objects/c0/2563745898ea649cd9c83dca7b3030ac12f1f9 and /dev/null differ diff --git a/.git_corrupt_backup/objects/c0/eff069b81d1cd9a73f18df41310aae6a585dce b/.git_corrupt_backup/objects/c0/eff069b81d1cd9a73f18df41310aae6a585dce deleted file mode 100644 index fed7756..0000000 Binary files a/.git_corrupt_backup/objects/c0/eff069b81d1cd9a73f18df41310aae6a585dce and /dev/null differ diff --git a/.git_corrupt_backup/objects/c1/c211310b827e4442e6efa0b4ab9bb90caf689b b/.git_corrupt_backup/objects/c1/c211310b827e4442e6efa0b4ab9bb90caf689b deleted file mode 100644 index f0231b6..0000000 Binary files a/.git_corrupt_backup/objects/c1/c211310b827e4442e6efa0b4ab9bb90caf689b and /dev/null differ diff --git a/.git_corrupt_backup/objects/c1/dfb1330e8625ef757b61f9359f629bd2f632b2 b/.git_corrupt_backup/objects/c1/dfb1330e8625ef757b61f9359f629bd2f632b2 deleted file mode 100644 index ec68490..0000000 Binary files a/.git_corrupt_backup/objects/c1/dfb1330e8625ef757b61f9359f629bd2f632b2 and /dev/null differ diff --git a/.git_corrupt_backup/objects/c3/368c95e425dc9e4a541f162bd8d0e0dbf5ade2 b/.git_corrupt_backup/objects/c3/368c95e425dc9e4a541f162bd8d0e0dbf5ade2 deleted file mode 100644 index 6df2d0d..0000000 Binary files a/.git_corrupt_backup/objects/c3/368c95e425dc9e4a541f162bd8d0e0dbf5ade2 and /dev/null differ diff --git a/.git_corrupt_backup/objects/c3/67ab2240c46e7de0ba96ec8fd756d1b5d2bdfe b/.git_corrupt_backup/objects/c3/67ab2240c46e7de0ba96ec8fd756d1b5d2bdfe deleted file mode 100644 index 877625e..0000000 Binary files a/.git_corrupt_backup/objects/c3/67ab2240c46e7de0ba96ec8fd756d1b5d2bdfe and /dev/null differ diff --git a/.git_corrupt_backup/objects/c3/b139bbb332c03b93e0ce8e71b9438d0b9bd2b4 b/.git_corrupt_backup/objects/c3/b139bbb332c03b93e0ce8e71b9438d0b9bd2b4 deleted file mode 100644 index a281e97..0000000 Binary files a/.git_corrupt_backup/objects/c3/b139bbb332c03b93e0ce8e71b9438d0b9bd2b4 and /dev/null differ diff --git a/.git_corrupt_backup/objects/c4/c1eb00f91a63c2d0028a1a92ee8a662c951de9 b/.git_corrupt_backup/objects/c4/c1eb00f91a63c2d0028a1a92ee8a662c951de9 deleted file mode 100644 index fff9649..0000000 Binary files a/.git_corrupt_backup/objects/c4/c1eb00f91a63c2d0028a1a92ee8a662c951de9 and /dev/null differ diff --git a/.git_corrupt_backup/objects/c7/9d208e5dc3cc22ff4a8e160a54e2ca0d7d922b b/.git_corrupt_backup/objects/c7/9d208e5dc3cc22ff4a8e160a54e2ca0d7d922b deleted file mode 100644 index 278368c..0000000 Binary files a/.git_corrupt_backup/objects/c7/9d208e5dc3cc22ff4a8e160a54e2ca0d7d922b and /dev/null differ diff --git a/.git_corrupt_backup/objects/c8/244eecf71bd16654b5ba77d525fd1f2820a669 b/.git_corrupt_backup/objects/c8/244eecf71bd16654b5ba77d525fd1f2820a669 deleted file mode 100644 index a8c0bbd..0000000 Binary files a/.git_corrupt_backup/objects/c8/244eecf71bd16654b5ba77d525fd1f2820a669 and /dev/null differ diff --git a/.git_corrupt_backup/objects/c8/25e11b0993f5b6bd2ad0021e432b9e919336ab b/.git_corrupt_backup/objects/c8/25e11b0993f5b6bd2ad0021e432b9e919336ab deleted file mode 100644 index beb4d91..0000000 Binary files a/.git_corrupt_backup/objects/c8/25e11b0993f5b6bd2ad0021e432b9e919336ab and /dev/null differ diff --git a/.git_corrupt_backup/objects/c8/5fc9440a69fdffa9ad12f87455e332fb8adfd4 b/.git_corrupt_backup/objects/c8/5fc9440a69fdffa9ad12f87455e332fb8adfd4 deleted file mode 100644 index 5e1acba..0000000 Binary files a/.git_corrupt_backup/objects/c8/5fc9440a69fdffa9ad12f87455e332fb8adfd4 and /dev/null differ diff --git a/.git_corrupt_backup/objects/c8/f8c260128bfbaef82648b9de4e4f2a255d0cfc b/.git_corrupt_backup/objects/c8/f8c260128bfbaef82648b9de4e4f2a255d0cfc deleted file mode 100644 index 0d1fa71..0000000 --- a/.git_corrupt_backup/objects/c8/f8c260128bfbaef82648b9de4e4f2a255d0cfc +++ /dev/null @@ -1,2 +0,0 @@ -xVOA<KHB*"%6xx3rңTZBT lq5,J)VA;o]*[%9l2}(?,6"m%υ]YTպ|bP%;Fm=\ӽ CǍҐANƱ e1K;*O p|Z#ybsOz)z>$OtRk1*9 6l+s&*oW~"1;(7l-{4.z HMc>0tQ8UPUu{H\L;3ܤ\㴘T2dqS$H 8/ D#Єdh*>㏐ŒKQ[)m PZGfn+U6բQG 4BϽxpoܔwoo& ܊KvK\&qtIj 6)=λ{n#Lshz~CțP+"S)P ~۬ ߃%TG-eX!=)u" L \ No newline at end of file diff --git a/.git_corrupt_backup/objects/c9/4f04856e5b25b54af500a4d85b50b6ede35d03 b/.git_corrupt_backup/objects/c9/4f04856e5b25b54af500a4d85b50b6ede35d03 deleted file mode 100644 index 8031fd7..0000000 Binary files a/.git_corrupt_backup/objects/c9/4f04856e5b25b54af500a4d85b50b6ede35d03 and /dev/null differ diff --git a/.git_corrupt_backup/objects/c9/b773b4afa2c206aaebec9a7ae82a63363dd1d0 b/.git_corrupt_backup/objects/c9/b773b4afa2c206aaebec9a7ae82a63363dd1d0 deleted file mode 100644 index 799e2a0..0000000 Binary files a/.git_corrupt_backup/objects/c9/b773b4afa2c206aaebec9a7ae82a63363dd1d0 and /dev/null differ diff --git a/.git_corrupt_backup/objects/c9/ec1ff9af27e0086ff6f4cd75af6e4f5c8b50b0 b/.git_corrupt_backup/objects/c9/ec1ff9af27e0086ff6f4cd75af6e4f5c8b50b0 deleted file mode 100644 index d903514..0000000 Binary files a/.git_corrupt_backup/objects/c9/ec1ff9af27e0086ff6f4cd75af6e4f5c8b50b0 and /dev/null differ diff --git a/.git_corrupt_backup/objects/cc/30094480ce7eec0dfd3ef359454408b4a94711 b/.git_corrupt_backup/objects/cc/30094480ce7eec0dfd3ef359454408b4a94711 deleted file mode 100644 index 6b33d3c..0000000 Binary files a/.git_corrupt_backup/objects/cc/30094480ce7eec0dfd3ef359454408b4a94711 and /dev/null differ diff --git a/.git_corrupt_backup/objects/cc/817273375f718314f95d44f26eca10af50e575 b/.git_corrupt_backup/objects/cc/817273375f718314f95d44f26eca10af50e575 deleted file mode 100644 index 105a308..0000000 Binary files a/.git_corrupt_backup/objects/cc/817273375f718314f95d44f26eca10af50e575 and /dev/null differ diff --git a/.git_corrupt_backup/objects/cc/c8f4c0a7cb1e84e2358c0ef74d197909acdfb2 b/.git_corrupt_backup/objects/cc/c8f4c0a7cb1e84e2358c0ef74d197909acdfb2 deleted file mode 100644 index f588ff2..0000000 --- a/.git_corrupt_backup/objects/cc/c8f4c0a7cb1e84e2358c0ef74d197909acdfb2 +++ /dev/null @@ -1,3 +0,0 @@ -xn0wSYd1ِ Է_Ĉ))P@Ma^GFeԎ|AVYCrq$AY3eZ8*<yMG.u4I|/k"K ?$BJ@ -; -|l5roR͌f5s`R&0h+qn AݒիkFZ'0wx ܹ〩h|M2Q7%q MU9`+l%.]!2>r/e-l9# BL82M~ĿT75~B.q \ No newline at end of file diff --git a/.git_corrupt_backup/objects/cd/13240ce360250f496f1fd8c04df7ee23c0a8c9 b/.git_corrupt_backup/objects/cd/13240ce360250f496f1fd8c04df7ee23c0a8c9 deleted file mode 100644 index f33d7d3..0000000 Binary files a/.git_corrupt_backup/objects/cd/13240ce360250f496f1fd8c04df7ee23c0a8c9 and /dev/null differ diff --git a/.git_corrupt_backup/objects/ce/528e6f84ea52bb52504ff6ccdad88d0da2885d b/.git_corrupt_backup/objects/ce/528e6f84ea52bb52504ff6ccdad88d0da2885d deleted file mode 100644 index c7e1735..0000000 Binary files a/.git_corrupt_backup/objects/ce/528e6f84ea52bb52504ff6ccdad88d0da2885d and /dev/null differ diff --git a/.git_corrupt_backup/objects/ce/a0f38596430e89c8e1b250f44ed78c00ccaa77 b/.git_corrupt_backup/objects/ce/a0f38596430e89c8e1b250f44ed78c00ccaa77 deleted file mode 100644 index 7f13522..0000000 Binary files a/.git_corrupt_backup/objects/ce/a0f38596430e89c8e1b250f44ed78c00ccaa77 and /dev/null differ diff --git a/.git_corrupt_backup/objects/ce/c091673d3b70e4824dcd6c00bfb789589d0a80 b/.git_corrupt_backup/objects/ce/c091673d3b70e4824dcd6c00bfb789589d0a80 deleted file mode 100644 index aa7a2b6..0000000 Binary files a/.git_corrupt_backup/objects/ce/c091673d3b70e4824dcd6c00bfb789589d0a80 and /dev/null differ diff --git a/.git_corrupt_backup/objects/cf/5561197b42758c51bc4ae523bdaebdf7bff11c b/.git_corrupt_backup/objects/cf/5561197b42758c51bc4ae523bdaebdf7bff11c deleted file mode 100644 index 0afbc2d..0000000 Binary files a/.git_corrupt_backup/objects/cf/5561197b42758c51bc4ae523bdaebdf7bff11c and /dev/null differ diff --git a/.git_corrupt_backup/objects/cf/6af564ce7c7722e069324fa564f92abe3dd616 b/.git_corrupt_backup/objects/cf/6af564ce7c7722e069324fa564f92abe3dd616 deleted file mode 100644 index afc2d25..0000000 Binary files a/.git_corrupt_backup/objects/cf/6af564ce7c7722e069324fa564f92abe3dd616 and /dev/null differ diff --git a/.git_corrupt_backup/objects/d0/085ac5d4885418b5a2aa91411513f98c8f5682 b/.git_corrupt_backup/objects/d0/085ac5d4885418b5a2aa91411513f98c8f5682 deleted file mode 100644 index 38756a7..0000000 --- a/.git_corrupt_backup/objects/d0/085ac5d4885418b5a2aa91411513f98c8f5682 +++ /dev/null @@ -1 +0,0 @@ -xm0 D@ VD2ŭ"9n' Ca]_ld=ě1a3;ŚEWcU W5?H6^sPHDW6enbklP_ޘTv7JߐE*MbϿ pU+i* \ No newline at end of file diff --git a/.git_corrupt_backup/objects/d1/1c45a39def01d6dc0cc80dbbc98bdb14e181e1 b/.git_corrupt_backup/objects/d1/1c45a39def01d6dc0cc80dbbc98bdb14e181e1 deleted file mode 100644 index dc30c18..0000000 Binary files a/.git_corrupt_backup/objects/d1/1c45a39def01d6dc0cc80dbbc98bdb14e181e1 and /dev/null differ diff --git a/.git_corrupt_backup/objects/d2/379f0cdc0113da5b56de226f0cd30b7c39798f b/.git_corrupt_backup/objects/d2/379f0cdc0113da5b56de226f0cd30b7c39798f deleted file mode 100644 index 036056a..0000000 Binary files a/.git_corrupt_backup/objects/d2/379f0cdc0113da5b56de226f0cd30b7c39798f and /dev/null differ diff --git a/.git_corrupt_backup/objects/d4/2f8ed405fbfc5ec8a8470d608091c3fd2c75ce b/.git_corrupt_backup/objects/d4/2f8ed405fbfc5ec8a8470d608091c3fd2c75ce deleted file mode 100644 index 012aec6..0000000 Binary files a/.git_corrupt_backup/objects/d4/2f8ed405fbfc5ec8a8470d608091c3fd2c75ce and /dev/null differ diff --git a/.git_corrupt_backup/objects/d4/e9effb16f5912912daac072f7180caa026138d b/.git_corrupt_backup/objects/d4/e9effb16f5912912daac072f7180caa026138d deleted file mode 100644 index 3ed13c9..0000000 Binary files a/.git_corrupt_backup/objects/d4/e9effb16f5912912daac072f7180caa026138d and /dev/null differ diff --git a/.git_corrupt_backup/objects/d6/071a20326aca9f60bfd006124201d2e44ef792 b/.git_corrupt_backup/objects/d6/071a20326aca9f60bfd006124201d2e44ef792 deleted file mode 100644 index 86eb88b..0000000 Binary files a/.git_corrupt_backup/objects/d6/071a20326aca9f60bfd006124201d2e44ef792 and /dev/null differ diff --git a/.git_corrupt_backup/objects/d7/c4b07957614536a0e540d6f745ab799f3a1b89 b/.git_corrupt_backup/objects/d7/c4b07957614536a0e540d6f745ab799f3a1b89 deleted file mode 100644 index aae914c..0000000 Binary files a/.git_corrupt_backup/objects/d7/c4b07957614536a0e540d6f745ab799f3a1b89 and /dev/null differ diff --git a/.git_corrupt_backup/objects/d7/cf33b80c0747b878b7274ff45ebe711ab894f9 b/.git_corrupt_backup/objects/d7/cf33b80c0747b878b7274ff45ebe711ab894f9 deleted file mode 100644 index 006a6b1..0000000 Binary files a/.git_corrupt_backup/objects/d7/cf33b80c0747b878b7274ff45ebe711ab894f9 and /dev/null differ diff --git a/.git_corrupt_backup/objects/d9/26a24e7e378a71748a8051bbe7bc759218cd45 b/.git_corrupt_backup/objects/d9/26a24e7e378a71748a8051bbe7bc759218cd45 deleted file mode 100644 index 2299909..0000000 Binary files a/.git_corrupt_backup/objects/d9/26a24e7e378a71748a8051bbe7bc759218cd45 and /dev/null differ diff --git a/.git_corrupt_backup/objects/db/864566bb2ba53eade93ecd0ecda5d35784ec1e b/.git_corrupt_backup/objects/db/864566bb2ba53eade93ecd0ecda5d35784ec1e deleted file mode 100644 index 442edec..0000000 Binary files a/.git_corrupt_backup/objects/db/864566bb2ba53eade93ecd0ecda5d35784ec1e and /dev/null differ diff --git a/.git_corrupt_backup/objects/db/bf1a03f2becf079fe7e7b5972c0a1b37274ab4 b/.git_corrupt_backup/objects/db/bf1a03f2becf079fe7e7b5972c0a1b37274ab4 deleted file mode 100644 index 86ecd23..0000000 Binary files a/.git_corrupt_backup/objects/db/bf1a03f2becf079fe7e7b5972c0a1b37274ab4 and /dev/null differ diff --git a/.git_corrupt_backup/objects/db/e56f77ee97fa0a7f251fad5b1ae178e3cdb49e b/.git_corrupt_backup/objects/db/e56f77ee97fa0a7f251fad5b1ae178e3cdb49e deleted file mode 100644 index 4273c76..0000000 Binary files a/.git_corrupt_backup/objects/db/e56f77ee97fa0a7f251fad5b1ae178e3cdb49e and /dev/null differ diff --git a/.git_corrupt_backup/objects/dc/1a39c473d7de0ae71001fb118b421b3da7fe4d b/.git_corrupt_backup/objects/dc/1a39c473d7de0ae71001fb118b421b3da7fe4d deleted file mode 100644 index 19f9eb2..0000000 Binary files a/.git_corrupt_backup/objects/dc/1a39c473d7de0ae71001fb118b421b3da7fe4d and /dev/null differ diff --git a/.git_corrupt_backup/objects/dc/840ebf2221382b8ca8e9ed8ce72b99e4027ad1 b/.git_corrupt_backup/objects/dc/840ebf2221382b8ca8e9ed8ce72b99e4027ad1 deleted file mode 100644 index 31554f1..0000000 Binary files a/.git_corrupt_backup/objects/dc/840ebf2221382b8ca8e9ed8ce72b99e4027ad1 and /dev/null differ diff --git a/.git_corrupt_backup/objects/dd/5b597dc2fb3cc16265ad01cd8abba7bc79fadd b/.git_corrupt_backup/objects/dd/5b597dc2fb3cc16265ad01cd8abba7bc79fadd deleted file mode 100644 index 940ae48..0000000 Binary files a/.git_corrupt_backup/objects/dd/5b597dc2fb3cc16265ad01cd8abba7bc79fadd and /dev/null differ diff --git a/.git_corrupt_backup/objects/dd/788daba490cf80f25b5754296695482fc0be2a b/.git_corrupt_backup/objects/dd/788daba490cf80f25b5754296695482fc0be2a deleted file mode 100644 index bbaa5f4..0000000 Binary files a/.git_corrupt_backup/objects/dd/788daba490cf80f25b5754296695482fc0be2a and /dev/null differ diff --git a/.git_corrupt_backup/objects/de/980ea2e95fe575357165f4ef17585475b4818b b/.git_corrupt_backup/objects/de/980ea2e95fe575357165f4ef17585475b4818b deleted file mode 100644 index 4cb70bb..0000000 Binary files a/.git_corrupt_backup/objects/de/980ea2e95fe575357165f4ef17585475b4818b and /dev/null differ diff --git a/.git_corrupt_backup/objects/df/36673e5831e048afad8cc30ae036ee0cebfdc3 b/.git_corrupt_backup/objects/df/36673e5831e048afad8cc30ae036ee0cebfdc3 deleted file mode 100644 index 3b93d5e..0000000 Binary files a/.git_corrupt_backup/objects/df/36673e5831e048afad8cc30ae036ee0cebfdc3 and /dev/null differ diff --git a/.git_corrupt_backup/objects/df/d68eab341500610f7a762fee68ad73e6003116 b/.git_corrupt_backup/objects/df/d68eab341500610f7a762fee68ad73e6003116 deleted file mode 100644 index 644b643..0000000 Binary files a/.git_corrupt_backup/objects/df/d68eab341500610f7a762fee68ad73e6003116 and /dev/null differ diff --git a/.git_corrupt_backup/objects/e0/1f3e756ca9dbc0d7151e0f2e1c2374d1e0eca2 b/.git_corrupt_backup/objects/e0/1f3e756ca9dbc0d7151e0f2e1c2374d1e0eca2 deleted file mode 100644 index 44b4d66..0000000 Binary files a/.git_corrupt_backup/objects/e0/1f3e756ca9dbc0d7151e0f2e1c2374d1e0eca2 and /dev/null differ diff --git a/.git_corrupt_backup/objects/e0/3346580e97f0c7543473df472707d1d49f1a7a b/.git_corrupt_backup/objects/e0/3346580e97f0c7543473df472707d1d49f1a7a deleted file mode 100644 index 9c12d44..0000000 Binary files a/.git_corrupt_backup/objects/e0/3346580e97f0c7543473df472707d1d49f1a7a and /dev/null differ diff --git a/.git_corrupt_backup/objects/e0/c802dea0f227c21a12b4496c0e60ebca9e0b82 b/.git_corrupt_backup/objects/e0/c802dea0f227c21a12b4496c0e60ebca9e0b82 deleted file mode 100644 index 10ac4fc..0000000 Binary files a/.git_corrupt_backup/objects/e0/c802dea0f227c21a12b4496c0e60ebca9e0b82 and /dev/null differ diff --git a/.git_corrupt_backup/objects/e0/cba050362424c2c1233241005f9b101f93c803 b/.git_corrupt_backup/objects/e0/cba050362424c2c1233241005f9b101f93c803 deleted file mode 100644 index 81eb264..0000000 Binary files a/.git_corrupt_backup/objects/e0/cba050362424c2c1233241005f9b101f93c803 and /dev/null differ diff --git a/.git_corrupt_backup/objects/e2/db82410ecf23b94a32c79c0d534b3ac9e18e2b b/.git_corrupt_backup/objects/e2/db82410ecf23b94a32c79c0d534b3ac9e18e2b deleted file mode 100644 index 262fc37..0000000 --- a/.git_corrupt_backup/objects/e2/db82410ecf23b94a32c79c0d534b3ac9e18e2b +++ /dev/null @@ -1,2 +0,0 @@ -xj1F{S,yJ)t -Ku䏙vhLa[=?5-0*V3ba@bV';1X+Nth(p'iSgY |5Suu_ᯎ.iJE؊F~rPe?}'2F3L":[̓]_GRw+hh&rr \ No newline at end of file diff --git a/.git_corrupt_backup/objects/e3/e292077352d71f441ab31e334761317fca7c47 b/.git_corrupt_backup/objects/e3/e292077352d71f441ab31e334761317fca7c47 deleted file mode 100644 index c039e04..0000000 Binary files a/.git_corrupt_backup/objects/e3/e292077352d71f441ab31e334761317fca7c47 and /dev/null differ diff --git a/.git_corrupt_backup/objects/e4/2750ed05e351d0a54d9501ce18994b1bee3789 b/.git_corrupt_backup/objects/e4/2750ed05e351d0a54d9501ce18994b1bee3789 deleted file mode 100644 index 6faace9..0000000 Binary files a/.git_corrupt_backup/objects/e4/2750ed05e351d0a54d9501ce18994b1bee3789 and /dev/null differ diff --git a/.git_corrupt_backup/objects/e4/72ba8d5f9d1959ff1fc66d86879837195b96f0 b/.git_corrupt_backup/objects/e4/72ba8d5f9d1959ff1fc66d86879837195b96f0 deleted file mode 100644 index 0f5e906..0000000 --- a/.git_corrupt_backup/objects/e4/72ba8d5f9d1959ff1fc66d86879837195b96f0 +++ /dev/null @@ -1,2 +0,0 @@ -xe_KPƻS°.V9bM\]ɦGMt$/*$B+ / -FOξCl٬9p~yyfXp슩6QKeEo:j[dՑ;YG WC|7ţ7P$櫅}Qqox=~'d'5XN8,EEU-. Aˡ7\w1z'Sf~0ϖaQPd)B%H2],KJoF.cP" 9'P \ No newline at end of file diff --git a/.git_corrupt_backup/objects/e5/0a6fab709e64bf0827e10bb9eedc7c65b64841 b/.git_corrupt_backup/objects/e5/0a6fab709e64bf0827e10bb9eedc7c65b64841 deleted file mode 100644 index f74f15b..0000000 Binary files a/.git_corrupt_backup/objects/e5/0a6fab709e64bf0827e10bb9eedc7c65b64841 and /dev/null differ diff --git a/.git_corrupt_backup/objects/e7/0b04e51b4d0a9b74d8736097b97d3f384e750e b/.git_corrupt_backup/objects/e7/0b04e51b4d0a9b74d8736097b97d3f384e750e deleted file mode 100644 index bdac680..0000000 Binary files a/.git_corrupt_backup/objects/e7/0b04e51b4d0a9b74d8736097b97d3f384e750e and /dev/null differ diff --git a/.git_corrupt_backup/objects/e7/5b128a90e6227018192ee52cdc82fadd487e75 b/.git_corrupt_backup/objects/e7/5b128a90e6227018192ee52cdc82fadd487e75 deleted file mode 100644 index 1a4feb8..0000000 Binary files a/.git_corrupt_backup/objects/e7/5b128a90e6227018192ee52cdc82fadd487e75 and /dev/null differ diff --git a/.git_corrupt_backup/objects/e8/3a2056b04ced7c39b926ebbc41a5cb526fac36 b/.git_corrupt_backup/objects/e8/3a2056b04ced7c39b926ebbc41a5cb526fac36 deleted file mode 100644 index 98c9926..0000000 Binary files a/.git_corrupt_backup/objects/e8/3a2056b04ced7c39b926ebbc41a5cb526fac36 and /dev/null differ diff --git a/.git_corrupt_backup/objects/e9/037c514e51745c8427d0e4980a6c1f45f2c95c b/.git_corrupt_backup/objects/e9/037c514e51745c8427d0e4980a6c1f45f2c95c deleted file mode 100644 index c4df0e6..0000000 Binary files a/.git_corrupt_backup/objects/e9/037c514e51745c8427d0e4980a6c1f45f2c95c and /dev/null differ diff --git a/.git_corrupt_backup/objects/e9/e74fad35851c3d95fb44909cd09473356a2d04 b/.git_corrupt_backup/objects/e9/e74fad35851c3d95fb44909cd09473356a2d04 deleted file mode 100644 index a5b66f7..0000000 Binary files a/.git_corrupt_backup/objects/e9/e74fad35851c3d95fb44909cd09473356a2d04 and /dev/null differ diff --git a/.git_corrupt_backup/objects/ea/aeeb81bc5dbbb5b48f702b5a64ff4b327aff58 b/.git_corrupt_backup/objects/ea/aeeb81bc5dbbb5b48f702b5a64ff4b327aff58 deleted file mode 100644 index e119bb7..0000000 Binary files a/.git_corrupt_backup/objects/ea/aeeb81bc5dbbb5b48f702b5a64ff4b327aff58 and /dev/null differ diff --git a/.git_corrupt_backup/objects/eb/10c17cccb3fdbf3d9fb2cb84a93e3e9e16bd6e b/.git_corrupt_backup/objects/eb/10c17cccb3fdbf3d9fb2cb84a93e3e9e16bd6e deleted file mode 100644 index d82fa80..0000000 Binary files a/.git_corrupt_backup/objects/eb/10c17cccb3fdbf3d9fb2cb84a93e3e9e16bd6e and /dev/null differ diff --git a/.git_corrupt_backup/objects/ed/9ff5a3084d7b96ad425dfc5142e8a214676223 b/.git_corrupt_backup/objects/ed/9ff5a3084d7b96ad425dfc5142e8a214676223 deleted file mode 100644 index 05bc9c8..0000000 Binary files a/.git_corrupt_backup/objects/ed/9ff5a3084d7b96ad425dfc5142e8a214676223 and /dev/null differ diff --git a/.git_corrupt_backup/objects/ed/ca754abc4f9120904cf149f680778faed7e940 b/.git_corrupt_backup/objects/ed/ca754abc4f9120904cf149f680778faed7e940 deleted file mode 100644 index 9ab0a1d..0000000 Binary files a/.git_corrupt_backup/objects/ed/ca754abc4f9120904cf149f680778faed7e940 and /dev/null differ diff --git a/.git_corrupt_backup/objects/ed/ebf389f277ead9971502d1ccb7d20639a5e13c b/.git_corrupt_backup/objects/ed/ebf389f277ead9971502d1ccb7d20639a5e13c deleted file mode 100644 index 8f04a3c..0000000 Binary files a/.git_corrupt_backup/objects/ed/ebf389f277ead9971502d1ccb7d20639a5e13c and /dev/null differ diff --git a/.git_corrupt_backup/objects/ee/792febb1000ca501608d9be4eccab9fc706f7c b/.git_corrupt_backup/objects/ee/792febb1000ca501608d9be4eccab9fc706f7c deleted file mode 100644 index c11542c..0000000 Binary files a/.git_corrupt_backup/objects/ee/792febb1000ca501608d9be4eccab9fc706f7c and /dev/null differ diff --git a/.git_corrupt_backup/objects/ef/2ed3451d392faa0fb74784579bcb67a24e57e9 b/.git_corrupt_backup/objects/ef/2ed3451d392faa0fb74784579bcb67a24e57e9 deleted file mode 100644 index 0b399e7..0000000 Binary files a/.git_corrupt_backup/objects/ef/2ed3451d392faa0fb74784579bcb67a24e57e9 and /dev/null differ diff --git a/.git_corrupt_backup/objects/f1/a82d470560c60d6cd988153903439b8cf17b6a b/.git_corrupt_backup/objects/f1/a82d470560c60d6cd988153903439b8cf17b6a deleted file mode 100644 index dd6b011..0000000 Binary files a/.git_corrupt_backup/objects/f1/a82d470560c60d6cd988153903439b8cf17b6a and /dev/null differ diff --git a/.git_corrupt_backup/objects/f2/facb568f36c6aa928ab9b4196958bdf0b80c6d b/.git_corrupt_backup/objects/f2/facb568f36c6aa928ab9b4196958bdf0b80c6d deleted file mode 100644 index e308a10..0000000 Binary files a/.git_corrupt_backup/objects/f2/facb568f36c6aa928ab9b4196958bdf0b80c6d and /dev/null differ diff --git a/.git_corrupt_backup/objects/f3/046c9e20bc7683214a3439da817cc19ed433c5 b/.git_corrupt_backup/objects/f3/046c9e20bc7683214a3439da817cc19ed433c5 deleted file mode 100644 index f34de8c..0000000 Binary files a/.git_corrupt_backup/objects/f3/046c9e20bc7683214a3439da817cc19ed433c5 and /dev/null differ diff --git a/.git_corrupt_backup/objects/f3/35d262d5489d57a10467074c456c79bb3dc788 b/.git_corrupt_backup/objects/f3/35d262d5489d57a10467074c456c79bb3dc788 deleted file mode 100644 index 5a48a2a..0000000 Binary files a/.git_corrupt_backup/objects/f3/35d262d5489d57a10467074c456c79bb3dc788 and /dev/null differ diff --git a/.git_corrupt_backup/objects/f4/267a50a721c5037d7c7a339336ef89370116c7 b/.git_corrupt_backup/objects/f4/267a50a721c5037d7c7a339336ef89370116c7 deleted file mode 100644 index 86ddf7b..0000000 Binary files a/.git_corrupt_backup/objects/f4/267a50a721c5037d7c7a339336ef89370116c7 and /dev/null differ diff --git a/.git_corrupt_backup/objects/f4/74b0e6f362c73223e59af36ad30d2b87b9a61d b/.git_corrupt_backup/objects/f4/74b0e6f362c73223e59af36ad30d2b87b9a61d deleted file mode 100644 index b709050..0000000 Binary files a/.git_corrupt_backup/objects/f4/74b0e6f362c73223e59af36ad30d2b87b9a61d and /dev/null differ diff --git a/.git_corrupt_backup/objects/f5/f61df3b41d61e9c051180c11d8eb711c2f5206 b/.git_corrupt_backup/objects/f5/f61df3b41d61e9c051180c11d8eb711c2f5206 deleted file mode 100644 index 07dad79..0000000 Binary files a/.git_corrupt_backup/objects/f5/f61df3b41d61e9c051180c11d8eb711c2f5206 and /dev/null differ diff --git a/.git_corrupt_backup/objects/f8/9dd82d3193e95787744a312b90d72ab491a3c0 b/.git_corrupt_backup/objects/f8/9dd82d3193e95787744a312b90d72ab491a3c0 deleted file mode 100644 index 3a61fbb..0000000 Binary files a/.git_corrupt_backup/objects/f8/9dd82d3193e95787744a312b90d72ab491a3c0 and /dev/null differ diff --git a/.git_corrupt_backup/objects/f8/dbbef103683b3158c41b4760c375dca504e995 b/.git_corrupt_backup/objects/f8/dbbef103683b3158c41b4760c375dca504e995 deleted file mode 100644 index 3946d37..0000000 Binary files a/.git_corrupt_backup/objects/f8/dbbef103683b3158c41b4760c375dca504e995 and /dev/null differ diff --git a/.git_corrupt_backup/objects/f8/f62f5953434429d436e6698966f09a2ff10b25 b/.git_corrupt_backup/objects/f8/f62f5953434429d436e6698966f09a2ff10b25 deleted file mode 100644 index ca6c470..0000000 Binary files a/.git_corrupt_backup/objects/f8/f62f5953434429d436e6698966f09a2ff10b25 and /dev/null differ diff --git a/.git_corrupt_backup/objects/f9/40deb2f4336eae06c1d5d125eea7c0624373a2 b/.git_corrupt_backup/objects/f9/40deb2f4336eae06c1d5d125eea7c0624373a2 deleted file mode 100644 index 0516504..0000000 Binary files a/.git_corrupt_backup/objects/f9/40deb2f4336eae06c1d5d125eea7c0624373a2 and /dev/null differ diff --git a/.git_corrupt_backup/objects/fa/60d5cc87ddc8611d5ad714ebfbd607ee0259de b/.git_corrupt_backup/objects/fa/60d5cc87ddc8611d5ad714ebfbd607ee0259de deleted file mode 100644 index e9185b4..0000000 Binary files a/.git_corrupt_backup/objects/fa/60d5cc87ddc8611d5ad714ebfbd607ee0259de and /dev/null differ diff --git a/.git_corrupt_backup/objects/fa/e463b15523cd4192c73d1fe2e3b4d6a2eff378 b/.git_corrupt_backup/objects/fa/e463b15523cd4192c73d1fe2e3b4d6a2eff378 deleted file mode 100644 index bc13342..0000000 Binary files a/.git_corrupt_backup/objects/fa/e463b15523cd4192c73d1fe2e3b4d6a2eff378 and /dev/null differ diff --git a/.git_corrupt_backup/objects/fb/2447317ef25b446fd2fdfd2c6a641443a6b50b b/.git_corrupt_backup/objects/fb/2447317ef25b446fd2fdfd2c6a641443a6b50b deleted file mode 100644 index c9355bc..0000000 Binary files a/.git_corrupt_backup/objects/fb/2447317ef25b446fd2fdfd2c6a641443a6b50b and /dev/null differ diff --git a/.git_corrupt_backup/objects/fb/89bf00fbeec51e7ff79d1fe391cbcf4f1763b5 b/.git_corrupt_backup/objects/fb/89bf00fbeec51e7ff79d1fe391cbcf4f1763b5 deleted file mode 100644 index 621223e..0000000 Binary files a/.git_corrupt_backup/objects/fb/89bf00fbeec51e7ff79d1fe391cbcf4f1763b5 and /dev/null differ diff --git a/.git_corrupt_backup/objects/fb/bcc2a5622f615515bfc1fd1b425a6f282a2e63 b/.git_corrupt_backup/objects/fb/bcc2a5622f615515bfc1fd1b425a6f282a2e63 deleted file mode 100644 index b211742..0000000 Binary files a/.git_corrupt_backup/objects/fb/bcc2a5622f615515bfc1fd1b425a6f282a2e63 and /dev/null differ diff --git a/.git_corrupt_backup/objects/fe/8b16199e14db39e299ba65dd2039de49e44dc5 b/.git_corrupt_backup/objects/fe/8b16199e14db39e299ba65dd2039de49e44dc5 deleted file mode 100644 index 582d3a7..0000000 Binary files a/.git_corrupt_backup/objects/fe/8b16199e14db39e299ba65dd2039de49e44dc5 and /dev/null differ diff --git a/.git_corrupt_backup/objects/fe/b9fdaf0ef324b89073564060b16d2171e27430 b/.git_corrupt_backup/objects/fe/b9fdaf0ef324b89073564060b16d2171e27430 deleted file mode 100644 index d6c9eff..0000000 Binary files a/.git_corrupt_backup/objects/fe/b9fdaf0ef324b89073564060b16d2171e27430 and /dev/null differ diff --git a/.git_corrupt_backup/objects/ff/8571146a7edd75a095614f6efaf8b7045f95a8 b/.git_corrupt_backup/objects/ff/8571146a7edd75a095614f6efaf8b7045f95a8 deleted file mode 100644 index 814fd25..0000000 Binary files a/.git_corrupt_backup/objects/ff/8571146a7edd75a095614f6efaf8b7045f95a8 and /dev/null differ diff --git a/.git_corrupt_backup/objects/ff/8dc2c4d0dc7105e97443d0e762957e434347eb b/.git_corrupt_backup/objects/ff/8dc2c4d0dc7105e97443d0e762957e434347eb deleted file mode 100644 index f3ddfa8..0000000 Binary files a/.git_corrupt_backup/objects/ff/8dc2c4d0dc7105e97443d0e762957e434347eb and /dev/null differ diff --git a/.git_corrupt_backup/refs/heads/main b/.git_corrupt_backup/refs/heads/main deleted file mode 100644 index 75731ae..0000000 --- a/.git_corrupt_backup/refs/heads/main +++ /dev/null @@ -1 +0,0 @@ -5a96a696b16afe8b9e21e158185bc3e98f645e52