diff --git a/.git_backup/.DS_Store b/.git_backup/.DS_Store deleted file mode 100644 index 9d562a56..00000000 Binary files a/.git_backup/.DS_Store and /dev/null differ diff --git a/.git_backup/COMMIT_EDITMSG b/.git_backup/COMMIT_EDITMSG deleted file mode 100644 index ec182ccc..00000000 --- a/.git_backup/COMMIT_EDITMSG +++ /dev/null @@ -1 +0,0 @@ -Remove problematic file diff --git a/.git_backup/HEAD b/.git_backup/HEAD deleted file mode 100644 index 84fdbbee..00000000 --- a/.git_backup/HEAD +++ /dev/null @@ -1 +0,0 @@ -ref: refs/heads/temp_branch diff --git a/.git_backup/config b/.git_backup/config deleted file mode 100644 index 1423663e..00000000 --- a/.git_backup/config +++ /dev/null @@ -1,10 +0,0 @@ -[core] - repositoryformatversion = 0 - filemode = true - bare = false - logallrefupdates = true - ignorecase = true - precomposeunicode = true -[remote "origin"] - url = https://github.com/zli12321/interface.git - fetch = +refs/heads/*:refs/remotes/origin/* diff --git a/.git_backup/description b/.git_backup/description deleted file mode 100644 index 498b267a..00000000 --- a/.git_backup/description +++ /dev/null @@ -1 +0,0 @@ -Unnamed repository; edit this file 'description' to name the repository. diff --git a/.git_backup/gc.log b/.git_backup/gc.log deleted file mode 100644 index 486dc0d6..00000000 --- a/.git_backup/gc.log +++ /dev/null @@ -1 +0,0 @@ -warning: There are too many unreachable loose objects; run 'git prune' to remove them. diff --git a/.git_backup/hooks/applypatch-msg.sample b/.git_backup/hooks/applypatch-msg.sample deleted file mode 100644 index a5d7b84a..00000000 --- a/.git_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_backup/hooks/commit-msg.sample b/.git_backup/hooks/commit-msg.sample deleted file mode 100644 index b58d1184..00000000 --- a/.git_backup/hooks/commit-msg.sample +++ /dev/null @@ -1,24 +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. - -test "" = "$(grep '^Signed-off-by: ' "$1" | - sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || { - echo >&2 Duplicate Signed-off-by lines. - exit 1 -} diff --git a/.git_backup/hooks/fsmonitor-watchman.sample b/.git_backup/hooks/fsmonitor-watchman.sample deleted file mode 100644 index 23e856f5..00000000 --- a/.git_backup/hooks/fsmonitor-watchman.sample +++ /dev/null @@ -1,174 +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 $retry = 1; - -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 ($retry > 0 and $error and $error =~ m/unable to resolve root .* directory (.*) is not watched/) { - $retry--; - 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 = $output->{error}; - - die "Watchman: $error.\n" . - "Falling back to scanning...\n" if $error; - - output_result($o->{clock}, ("/")); - $last_update_token = $o->{clock}; - - eval { launch_watchman() }; - 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_backup/hooks/post-update.sample b/.git_backup/hooks/post-update.sample deleted file mode 100644 index ec17ec19..00000000 --- a/.git_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_backup/hooks/pre-applypatch.sample b/.git_backup/hooks/pre-applypatch.sample deleted file mode 100644 index 4142082b..00000000 --- a/.git_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_backup/hooks/pre-commit.sample b/.git_backup/hooks/pre-commit.sample deleted file mode 100644 index e144712c..00000000 --- a/.git_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 --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_backup/hooks/pre-merge-commit.sample b/.git_backup/hooks/pre-merge-commit.sample deleted file mode 100644 index 399eab19..00000000 --- a/.git_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_backup/hooks/pre-push.sample b/.git_backup/hooks/pre-push.sample deleted file mode 100644 index 4ce688d3..00000000 --- a/.git_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_backup/hooks/pre-rebase.sample b/.git_backup/hooks/pre-rebase.sample deleted file mode 100644 index 6cbef5c3..00000000 --- a/.git_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_backup/hooks/pre-receive.sample b/.git_backup/hooks/pre-receive.sample deleted file mode 100644 index a1fd29ec..00000000 --- a/.git_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_backup/hooks/prepare-commit-msg.sample b/.git_backup/hooks/prepare-commit-msg.sample deleted file mode 100644 index 10fa14c5..00000000 --- a/.git_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_backup/hooks/push-to-checkout.sample b/.git_backup/hooks/push-to-checkout.sample deleted file mode 100644 index af5a0c00..00000000 --- a/.git_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 - 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_backup/index b/.git_backup/index deleted file mode 100644 index a3ed081b..00000000 Binary files a/.git_backup/index and /dev/null differ diff --git a/.git_backup/info/exclude b/.git_backup/info/exclude deleted file mode 100644 index a5196d1b..00000000 --- a/.git_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_backup/info/refs b/.git_backup/info/refs deleted file mode 100644 index 0d829ce3..00000000 --- a/.git_backup/info/refs +++ /dev/null @@ -1 +0,0 @@ -5c18836708fb16a8e59bc5a46ed25f4b34ccc0ef refs/heads/master diff --git a/.git_backup/logs/HEAD b/.git_backup/logs/HEAD deleted file mode 100644 index cc3cc73d..00000000 --- a/.git_backup/logs/HEAD +++ /dev/null @@ -1,4 +0,0 @@ -0000000000000000000000000000000000000000 5c18836708fb16a8e59bc5a46ed25f4b34ccc0ef zli12321 <60415163+zli12321@users.noreply.github.com> 1678838137 -0400 commit (initial): init -5c18836708fb16a8e59bc5a46ed25f4b34ccc0ef 73c74ceecbd6a3a35f0cb7e1f4de8fea07143bfe zli12321 <60415163+zli12321@users.noreply.github.com> 1678839106 -0400 commit: add vercel configs -73c74ceecbd6a3a35f0cb7e1f4de8fea07143bfe 21c1e69fd904a5195ca731a2dacf874f41cbe929 zli12321 <60415163+zli12321@users.noreply.github.com> 1678840349 -0400 commit: trigger redeplloy -21c1e69fd904a5195ca731a2dacf874f41cbe929 21c1e69fd904a5195ca731a2dacf874f41cbe929 EC2 Default User 1682482983 +0000 checkout: moving from master to temp_branch diff --git a/.git_backup/logs/refs/heads/temp_branch b/.git_backup/logs/refs/heads/temp_branch deleted file mode 100644 index 1859852b..00000000 --- a/.git_backup/logs/refs/heads/temp_branch +++ /dev/null @@ -1 +0,0 @@ -0000000000000000000000000000000000000000 21c1e69fd904a5195ca731a2dacf874f41cbe929 EC2 Default User 1682482983 +0000 branch: Created from HEAD diff --git a/.git_backup/objects/.DS_Store b/.git_backup/objects/.DS_Store deleted file mode 100644 index f4ce2d72..00000000 Binary files a/.git_backup/objects/.DS_Store and /dev/null differ diff --git a/.git_backup/objects/00/0048549a9d74fefbcac9fae451b0bf0939d549 b/.git_backup/objects/00/0048549a9d74fefbcac9fae451b0bf0939d549 deleted file mode 100644 index c0766371..00000000 Binary files a/.git_backup/objects/00/0048549a9d74fefbcac9fae451b0bf0939d549 and /dev/null differ diff --git a/.git_backup/objects/00/02a3f6cbc426dc05dbdfce454da44483fbfa3e b/.git_backup/objects/00/02a3f6cbc426dc05dbdfce454da44483fbfa3e deleted file mode 100644 index 218413bf..00000000 --- a/.git_backup/objects/00/02a3f6cbc426dc05dbdfce454da44483fbfa3e +++ /dev/null @@ -1,5 +0,0 @@ -xVN0}Ŋ>k$ZHTE(E@Oos6#;%gggf7)퇣5 ғTMkG|0Wķxt+dByß;i4pqՊ-T U#ײT $ m߽,Rx&͢(`ӌ*tT U1S9¯ФBK&S Zv#C #H}o[uZiآ\2 ^qEn:MZJ7ي}3D %4A&Ut|%@{6T<((H -cySt4QJh#Rg|)Ii.DmuDŽKBN vqAz '3R 9o_EB>A'C/hbnZX%ʚBJvNI-e ~G1_ms`eZ \ No newline at end of file diff --git a/.git_backup/objects/00/03224e668a0d7fd3b3f370ebaa786936448364 b/.git_backup/objects/00/03224e668a0d7fd3b3f370ebaa786936448364 deleted file mode 100644 index 817d8336..00000000 Binary files a/.git_backup/objects/00/03224e668a0d7fd3b3f370ebaa786936448364 and /dev/null differ diff --git a/.git_backup/objects/00/05e653694d8ce273c71a23942e7ebc050772bd b/.git_backup/objects/00/05e653694d8ce273c71a23942e7ebc050772bd deleted file mode 100644 index 8e7f3d4b..00000000 Binary files a/.git_backup/objects/00/05e653694d8ce273c71a23942e7ebc050772bd and /dev/null differ diff --git a/.git_backup/objects/00/14046d29a38e9b8006f746fea794d7f71eb479 b/.git_backup/objects/00/14046d29a38e9b8006f746fea794d7f71eb479 deleted file mode 100644 index 57eb149e..00000000 Binary files a/.git_backup/objects/00/14046d29a38e9b8006f746fea794d7f71eb479 and /dev/null differ diff --git a/.git_backup/objects/00/159c3a8031d8ccd44b226db42090f97014cd9f b/.git_backup/objects/00/159c3a8031d8ccd44b226db42090f97014cd9f deleted file mode 100644 index 656194c0..00000000 Binary files a/.git_backup/objects/00/159c3a8031d8ccd44b226db42090f97014cd9f and /dev/null differ diff --git a/.git_backup/objects/00/1638c2f2a964eb2cc75660f66a1bcc447d7a57 b/.git_backup/objects/00/1638c2f2a964eb2cc75660f66a1bcc447d7a57 deleted file mode 100644 index 19b794a4..00000000 Binary files a/.git_backup/objects/00/1638c2f2a964eb2cc75660f66a1bcc447d7a57 and /dev/null differ diff --git a/.git_backup/objects/00/28d1b0bab1e6b8caa036f3baf35acca577803f b/.git_backup/objects/00/28d1b0bab1e6b8caa036f3baf35acca577803f deleted file mode 100644 index daaf9ef3..00000000 Binary files a/.git_backup/objects/00/28d1b0bab1e6b8caa036f3baf35acca577803f and /dev/null differ diff --git a/.git_backup/objects/00/3421b1b318cdc53752c1b47ed95d473a16d735 b/.git_backup/objects/00/3421b1b318cdc53752c1b47ed95d473a16d735 deleted file mode 100644 index 6bb1222c..00000000 Binary files a/.git_backup/objects/00/3421b1b318cdc53752c1b47ed95d473a16d735 and /dev/null differ diff --git a/.git_backup/objects/00/376349e69ad8b9dbf401cddc34055951e4b02e b/.git_backup/objects/00/376349e69ad8b9dbf401cddc34055951e4b02e deleted file mode 100644 index 6048ac62..00000000 --- a/.git_backup/objects/00/376349e69ad8b9dbf401cddc34055951e4b02e +++ /dev/null @@ -1,2 +0,0 @@ -xMA E$ʢ&.z D ^զ!30k]fnp06cxtQ/S@m?6 >9yRmiIZpѶ'6c )!B1J$kt} -%&}2nDt>&b&׋*Z \ No newline at end of file diff --git a/.git_backup/objects/00/3e4f08e3916381206a5f7a35856d9c0df51c68 b/.git_backup/objects/00/3e4f08e3916381206a5f7a35856d9c0df51c68 deleted file mode 100644 index 253c2e09..00000000 Binary files a/.git_backup/objects/00/3e4f08e3916381206a5f7a35856d9c0df51c68 and /dev/null differ diff --git a/.git_backup/objects/00/4496ff9522131f842e1ed78216061f821d983e b/.git_backup/objects/00/4496ff9522131f842e1ed78216061f821d983e deleted file mode 100644 index 789f1092..00000000 Binary files a/.git_backup/objects/00/4496ff9522131f842e1ed78216061f821d983e and /dev/null differ diff --git a/.git_backup/objects/00/46759bb36a122b0adc325e7ff7633f0dcf80eb b/.git_backup/objects/00/46759bb36a122b0adc325e7ff7633f0dcf80eb deleted file mode 100644 index ce58c7f2..00000000 Binary files a/.git_backup/objects/00/46759bb36a122b0adc325e7ff7633f0dcf80eb and /dev/null differ diff --git a/.git_backup/objects/00/488d1ee839db997953a64377b06f422a83a30b b/.git_backup/objects/00/488d1ee839db997953a64377b06f422a83a30b deleted file mode 100644 index 1accaf80..00000000 Binary files a/.git_backup/objects/00/488d1ee839db997953a64377b06f422a83a30b and /dev/null differ diff --git a/.git_backup/objects/00/4a569fdb4569de7f6444ade110594930647b25 b/.git_backup/objects/00/4a569fdb4569de7f6444ade110594930647b25 deleted file mode 100644 index 3ef3517c..00000000 Binary files a/.git_backup/objects/00/4a569fdb4569de7f6444ade110594930647b25 and /dev/null differ diff --git a/.git_backup/objects/00/4c01515cc763f9c0e6b94d775c8fe8b98b2f25 b/.git_backup/objects/00/4c01515cc763f9c0e6b94d775c8fe8b98b2f25 deleted file mode 100644 index 8c6756ad..00000000 Binary files a/.git_backup/objects/00/4c01515cc763f9c0e6b94d775c8fe8b98b2f25 and /dev/null differ diff --git a/.git_backup/objects/00/4d8baee675673937e6f7705981c1680941072e b/.git_backup/objects/00/4d8baee675673937e6f7705981c1680941072e deleted file mode 100644 index 7547546a..00000000 Binary files a/.git_backup/objects/00/4d8baee675673937e6f7705981c1680941072e and /dev/null differ diff --git a/.git_backup/objects/00/50ceb8579fe85fb3465c47b74eb5d2be4907a2 b/.git_backup/objects/00/50ceb8579fe85fb3465c47b74eb5d2be4907a2 deleted file mode 100644 index 0f93b6c4..00000000 Binary files a/.git_backup/objects/00/50ceb8579fe85fb3465c47b74eb5d2be4907a2 and /dev/null differ diff --git a/.git_backup/objects/00/545bdd8bfb22888028078cc148af82753d6cf4 b/.git_backup/objects/00/545bdd8bfb22888028078cc148af82753d6cf4 deleted file mode 100644 index ab0c0c04..00000000 Binary files a/.git_backup/objects/00/545bdd8bfb22888028078cc148af82753d6cf4 and /dev/null differ diff --git a/.git_backup/objects/00/57d6eabade5e964e6ef0e3ac8ed2dd67494b03 b/.git_backup/objects/00/57d6eabade5e964e6ef0e3ac8ed2dd67494b03 deleted file mode 100644 index 27242981..00000000 Binary files a/.git_backup/objects/00/57d6eabade5e964e6ef0e3ac8ed2dd67494b03 and /dev/null differ diff --git a/.git_backup/objects/00/584c0d47da606d6c6bbd75c4a1b26e73bcdc38 b/.git_backup/objects/00/584c0d47da606d6c6bbd75c4a1b26e73bcdc38 deleted file mode 100644 index 4b55eabc..00000000 Binary files a/.git_backup/objects/00/584c0d47da606d6c6bbd75c4a1b26e73bcdc38 and /dev/null differ diff --git a/.git_backup/objects/00/5c69048dd1de60edc5ab4a0000d731be4d2a34 b/.git_backup/objects/00/5c69048dd1de60edc5ab4a0000d731be4d2a34 deleted file mode 100644 index 1a5e7954..00000000 Binary files a/.git_backup/objects/00/5c69048dd1de60edc5ab4a0000d731be4d2a34 and /dev/null differ diff --git a/.git_backup/objects/00/63c1a59c4f2192eb020f4bf83f3bac70e39848 b/.git_backup/objects/00/63c1a59c4f2192eb020f4bf83f3bac70e39848 deleted file mode 100644 index 719e8679..00000000 Binary files a/.git_backup/objects/00/63c1a59c4f2192eb020f4bf83f3bac70e39848 and /dev/null differ diff --git a/.git_backup/objects/00/6661449899cf9da1c1d60e29ab93f4a6d54548 b/.git_backup/objects/00/6661449899cf9da1c1d60e29ab93f4a6d54548 deleted file mode 100644 index f629b9d7..00000000 Binary files a/.git_backup/objects/00/6661449899cf9da1c1d60e29ab93f4a6d54548 and /dev/null differ diff --git a/.git_backup/objects/00/6afc3b4c4a15d64b9d81f50520392bf3f9f291 b/.git_backup/objects/00/6afc3b4c4a15d64b9d81f50520392bf3f9f291 deleted file mode 100644 index 02c137a4..00000000 Binary files a/.git_backup/objects/00/6afc3b4c4a15d64b9d81f50520392bf3f9f291 and /dev/null differ diff --git a/.git_backup/objects/00/6e953102ded2db8e217e4507de3baa8bcc976d b/.git_backup/objects/00/6e953102ded2db8e217e4507de3baa8bcc976d deleted file mode 100644 index 3c8a04ef..00000000 Binary files a/.git_backup/objects/00/6e953102ded2db8e217e4507de3baa8bcc976d and /dev/null differ diff --git a/.git_backup/objects/00/70e9fa1ea08d8296876de2a7b5ce4fd9cda46a b/.git_backup/objects/00/70e9fa1ea08d8296876de2a7b5ce4fd9cda46a deleted file mode 100644 index 1f30924b..00000000 --- a/.git_backup/objects/00/70e9fa1ea08d8296876de2a7b5ce4fd9cda46a +++ /dev/null @@ -1,3 +0,0 @@ -xmAk0{WO[X -nZ*-%d(l"Il5n料/yo8ۛZ - j-jOpI"˽3=խ)gGo8#QJoѥW4SmRiё!?ѼHRd;$nT_.pZDIliao#UL+*FB9Frٸqȱ:5:y8GP(2K>#50|vk>v6t|c#4/|729B#tx-' \ No newline at end of file diff --git a/.git_backup/objects/00/75daf05e7792e80dcd565e791ce40e4dd49e85 b/.git_backup/objects/00/75daf05e7792e80dcd565e791ce40e4dd49e85 deleted file mode 100644 index 29c18e50..00000000 Binary files a/.git_backup/objects/00/75daf05e7792e80dcd565e791ce40e4dd49e85 and /dev/null differ diff --git a/.git_backup/objects/00/7a3f21080000e2ff0a731180390e5fd1975b21 b/.git_backup/objects/00/7a3f21080000e2ff0a731180390e5fd1975b21 deleted file mode 100644 index 7bde8997..00000000 Binary files a/.git_backup/objects/00/7a3f21080000e2ff0a731180390e5fd1975b21 and /dev/null differ diff --git a/.git_backup/objects/00/7c4bdea17f8664fe1ccca667c9cff590aa94ed b/.git_backup/objects/00/7c4bdea17f8664fe1ccca667c9cff590aa94ed deleted file mode 100644 index 1ef6c687..00000000 Binary files a/.git_backup/objects/00/7c4bdea17f8664fe1ccca667c9cff590aa94ed and /dev/null differ diff --git a/.git_backup/objects/00/7dfc4ed1ede66cabf098271a520685a53d3c69 b/.git_backup/objects/00/7dfc4ed1ede66cabf098271a520685a53d3c69 deleted file mode 100644 index ecec49dc..00000000 Binary files a/.git_backup/objects/00/7dfc4ed1ede66cabf098271a520685a53d3c69 and /dev/null differ diff --git a/.git_backup/objects/00/889efdcb8464571fc73513aa05da38de05237d b/.git_backup/objects/00/889efdcb8464571fc73513aa05da38de05237d deleted file mode 100644 index 56bb7008..00000000 Binary files a/.git_backup/objects/00/889efdcb8464571fc73513aa05da38de05237d and /dev/null differ diff --git a/.git_backup/objects/00/8f06a79bf598b149bdccb73e572d13331a1631 b/.git_backup/objects/00/8f06a79bf598b149bdccb73e572d13331a1631 deleted file mode 100644 index 24f4e185..00000000 --- a/.git_backup/objects/00/8f06a79bf598b149bdccb73e572d13331a1631 +++ /dev/null @@ -1,3 +0,0 @@ -xQo0̧8ԀuHCt=8FQo3i4?L&ӯ@. ̵ӿ 375 -VGUDb`6y&!jy4%ؚm2ΣBӨA,qDm;XѐnK4zx2VU8v.wbj8LjH%xB=̽sU\7T,O!%ۋi*lq 4EoʒVɦ֞LHu׭ c8CcHIVa \ No newline at end of file diff --git a/.git_backup/objects/00/8fba70b1a633c5d76b0cb4318c30227954761b b/.git_backup/objects/00/8fba70b1a633c5d76b0cb4318c30227954761b deleted file mode 100644 index 3c49fc40..00000000 Binary files a/.git_backup/objects/00/8fba70b1a633c5d76b0cb4318c30227954761b and /dev/null differ diff --git a/.git_backup/objects/00/a31e550966936d88a1af3c0ff4f402a53688a7 b/.git_backup/objects/00/a31e550966936d88a1af3c0ff4f402a53688a7 deleted file mode 100644 index b6db4be4..00000000 Binary files a/.git_backup/objects/00/a31e550966936d88a1af3c0ff4f402a53688a7 and /dev/null differ diff --git a/.git_backup/objects/00/ac4e6579629c5a7b6eb745f22dedb2b8c6b62b b/.git_backup/objects/00/ac4e6579629c5a7b6eb745f22dedb2b8c6b62b deleted file mode 100644 index 5b78e84b..00000000 Binary files a/.git_backup/objects/00/ac4e6579629c5a7b6eb745f22dedb2b8c6b62b and /dev/null differ diff --git a/.git_backup/objects/00/b1eaba5b3d5ca6c4e9e3b11360d8c60fd24568 b/.git_backup/objects/00/b1eaba5b3d5ca6c4e9e3b11360d8c60fd24568 deleted file mode 100644 index 74edbbf4..00000000 Binary files a/.git_backup/objects/00/b1eaba5b3d5ca6c4e9e3b11360d8c60fd24568 and /dev/null differ diff --git a/.git_backup/objects/00/c9421d3b0362526b8f90dc01e8db73841e0b61 b/.git_backup/objects/00/c9421d3b0362526b8f90dc01e8db73841e0b61 deleted file mode 100644 index 2fac3003..00000000 Binary files a/.git_backup/objects/00/c9421d3b0362526b8f90dc01e8db73841e0b61 and /dev/null differ diff --git a/.git_backup/objects/00/cd045ac86d6060e9e8b8dc0460caa49d2479b5 b/.git_backup/objects/00/cd045ac86d6060e9e8b8dc0460caa49d2479b5 deleted file mode 100644 index 1e6a7a6d..00000000 Binary files a/.git_backup/objects/00/cd045ac86d6060e9e8b8dc0460caa49d2479b5 and /dev/null differ diff --git a/.git_backup/objects/00/e242a3a1160ba105fe26ff6f92ce39196e9df3 b/.git_backup/objects/00/e242a3a1160ba105fe26ff6f92ce39196e9df3 deleted file mode 100644 index 7e61bfc8..00000000 Binary files a/.git_backup/objects/00/e242a3a1160ba105fe26ff6f92ce39196e9df3 and /dev/null differ diff --git a/.git_backup/objects/00/e7a7681b8534a71c8de66c517d4ef3e49c7d30 b/.git_backup/objects/00/e7a7681b8534a71c8de66c517d4ef3e49c7d30 deleted file mode 100644 index beddffc3..00000000 Binary files a/.git_backup/objects/00/e7a7681b8534a71c8de66c517d4ef3e49c7d30 and /dev/null differ diff --git a/.git_backup/objects/00/f253f2284d3d006bad5b0bb2d302c15e1a79df b/.git_backup/objects/00/f253f2284d3d006bad5b0bb2d302c15e1a79df deleted file mode 100644 index 8683d1b4..00000000 --- a/.git_backup/objects/00/f253f2284d3d006bad5b0bb2d302c15e1a79df +++ /dev/null @@ -1,2 +0,0 @@ -xUN0 jT P-dU%9xᕉJEJ>Α}[fW`>X;*De.QD HH9lCў6IA>|YdkqEZ $Cj(t0=ёȐu8-R9 +hE?"u']Ƣ/⺫q1nƸCUut! -L.uOM[v<UƠr\\w1TTNQ%EO\i1!”tނuIT1t0fPP.ZŐ|K2cPuHu/R‘ZDu^ٮM ҳuTuj͸aӴo 24-G&tàNvy~;-7 \ No newline at end of file diff --git a/.git_backup/objects/01/cb41b51ea6d4150854d6e24d173cba9542c0de b/.git_backup/objects/01/cb41b51ea6d4150854d6e24d173cba9542c0de deleted file mode 100644 index 8b927d3c..00000000 Binary files a/.git_backup/objects/01/cb41b51ea6d4150854d6e24d173cba9542c0de and /dev/null differ diff --git a/.git_backup/objects/01/cdeb803c2b11276e5b6316a788c0a70cce4c3e b/.git_backup/objects/01/cdeb803c2b11276e5b6316a788c0a70cce4c3e deleted file mode 100644 index a3c5efa6..00000000 Binary files a/.git_backup/objects/01/cdeb803c2b11276e5b6316a788c0a70cce4c3e and /dev/null differ diff --git a/.git_backup/objects/01/d8516213cbbdf94ff0510d140a587cb7d5f138 b/.git_backup/objects/01/d8516213cbbdf94ff0510d140a587cb7d5f138 deleted file mode 100644 index 161d7e42..00000000 --- a/.git_backup/objects/01/d8516213cbbdf94ff0510d140a587cb7d5f138 +++ /dev/null @@ -1 +0,0 @@ -x5=K@w71w~\iymsVbsVaaH~lHkʉp̼ k/.oVa6;"맰XGӟ"IiBD28ؐ8z(cӳ8%|99UeFɔOZYy,(cORn[xr_r+B]J^8cx+m˟TνyM[VMfwƉF!B6e!vP \ No newline at end of file diff --git a/.git_backup/objects/01/da496975f512b204defb06fcd19a36e235f97a b/.git_backup/objects/01/da496975f512b204defb06fcd19a36e235f97a deleted file mode 100644 index 0850cb02..00000000 Binary files a/.git_backup/objects/01/da496975f512b204defb06fcd19a36e235f97a and /dev/null differ diff --git a/.git_backup/objects/01/df8ae56acdbc1a71dca6f6ed667109c36efdd7 b/.git_backup/objects/01/df8ae56acdbc1a71dca6f6ed667109c36efdd7 deleted file mode 100644 index 42595ca7..00000000 --- a/.git_backup/objects/01/df8ae56acdbc1a71dca6f6ed667109c36efdd7 +++ /dev/null @@ -1,6 +0,0 @@ -x]k0w_ީÖ -8#m_hMJ2KLΏ\<=''Eu!Z4 Z0cxb&ޛB`|.j&x"L`1pϐ3hA9Ƅ)Zb<=Y\\/ -!5/Y -xjL {'Vdɣ t#dzfLyI#P 栴4ToVfk}05jPx k%I+.i[4M1δ5 -i^gT"dž;10a*"0qv?Z4= -ҷl'Cifs6ۮիVGq:F \ No newline at end of file diff --git a/.git_backup/objects/01/df8d4bad649f979911915aa4ba3c144157dd4c b/.git_backup/objects/01/df8d4bad649f979911915aa4ba3c144157dd4c deleted file mode 100644 index 562e2309..00000000 Binary files a/.git_backup/objects/01/df8d4bad649f979911915aa4ba3c144157dd4c and /dev/null differ diff --git a/.git_backup/objects/01/e9d9bf8deb06e28d13b8f3452135931ebed6bc b/.git_backup/objects/01/e9d9bf8deb06e28d13b8f3452135931ebed6bc deleted file mode 100644 index f54118ec..00000000 Binary files a/.git_backup/objects/01/e9d9bf8deb06e28d13b8f3452135931ebed6bc and /dev/null differ diff --git a/.git_backup/objects/01/ef4a4ca59b5f592c7b89bec136d6b8af785ba2 b/.git_backup/objects/01/ef4a4ca59b5f592c7b89bec136d6b8af785ba2 deleted file mode 100644 index 994f8bb2..00000000 Binary files a/.git_backup/objects/01/ef4a4ca59b5f592c7b89bec136d6b8af785ba2 and /dev/null differ diff --git a/.git_backup/objects/01/ef741cbc9a0d33f4253251695dd67ff878f771 b/.git_backup/objects/01/ef741cbc9a0d33f4253251695dd67ff878f771 deleted file mode 100644 index 59f95814..00000000 Binary files a/.git_backup/objects/01/ef741cbc9a0d33f4253251695dd67ff878f771 and /dev/null differ diff --git a/.git_backup/objects/02/14e5df49f0d5393e2bff3dc996ba96c916534a b/.git_backup/objects/02/14e5df49f0d5393e2bff3dc996ba96c916534a deleted file mode 100644 index fd38bd47..00000000 Binary files a/.git_backup/objects/02/14e5df49f0d5393e2bff3dc996ba96c916534a and /dev/null differ diff --git a/.git_backup/objects/02/1ceb045e7aa0da03cb708d32588665beb84b3d b/.git_backup/objects/02/1ceb045e7aa0da03cb708d32588665beb84b3d deleted file mode 100644 index 6d271486..00000000 Binary files a/.git_backup/objects/02/1ceb045e7aa0da03cb708d32588665beb84b3d and /dev/null differ diff --git a/.git_backup/objects/02/22428ed48e1cb84cde849f83b36e3079089245 b/.git_backup/objects/02/22428ed48e1cb84cde849f83b36e3079089245 deleted file mode 100644 index c917945e..00000000 Binary files a/.git_backup/objects/02/22428ed48e1cb84cde849f83b36e3079089245 and /dev/null differ diff --git a/.git_backup/objects/02/22c43177352fa6926b9f65e0ef69f0068f21fa b/.git_backup/objects/02/22c43177352fa6926b9f65e0ef69f0068f21fa deleted file mode 100644 index ce2001b1..00000000 --- a/.git_backup/objects/02/22c43177352fa6926b9f65e0ef69f0068f21fa +++ /dev/null @@ -1,4 +0,0 @@ -xTKo6˶"?b;.ZtMP[E>vX@0 BJ.){Ar7wSνJF8r8? lɬid|] 0!Vh4-Ѻ6p-7P¶֛#aWžE?A8p.yگwn [A:ЅlC0؅=؇8 =xp<>7'w&ҽ." Y2"ͳױle@k3Ncq6c[SB~_]0 -1c2|/DCՐ6]ZX/XҦimC,1VL*EPFe]V10ʮ6fyy~Ƭ26(EC -@vI$HI$z(QX:E&VV-U }kƍ&~}cܘ?9c>!mh_ҿ\rC, R'tt fJꜚb*ܑ%Iq|O3?NWŊK|`1empw;."N8[14J@a(JfN,gl^o1c1jXs10uUq 1^l56UZg ϘS(*b-Hij[c:gY|l_j"Y:}rou郧Iud#Wbgԟh_LDQNJ%wnM}훢 \yTWBMܫА8T?8$k|DцYFK!wWhD}pXDSEUJb\ic -Nv٪{l&^d.[Qs/ՉXA~t?9,9HA7;wlw\޴_/R \ No newline at end of file diff --git a/.git_backup/objects/02/27a07877db0f3cbf48c82cf333cd98e09f784b b/.git_backup/objects/02/27a07877db0f3cbf48c82cf333cd98e09f784b deleted file mode 100644 index e91ac61f..00000000 Binary files a/.git_backup/objects/02/27a07877db0f3cbf48c82cf333cd98e09f784b and /dev/null differ diff --git a/.git_backup/objects/02/2a4419dde553509875758470b79c84ba2f932a b/.git_backup/objects/02/2a4419dde553509875758470b79c84ba2f932a deleted file mode 100644 index 8dd72056..00000000 Binary files a/.git_backup/objects/02/2a4419dde553509875758470b79c84ba2f932a and /dev/null differ diff --git a/.git_backup/objects/02/3924444241b8ae70dd2f5c637325e9fb5c4e2f b/.git_backup/objects/02/3924444241b8ae70dd2f5c637325e9fb5c4e2f deleted file mode 100644 index b34dc24a..00000000 Binary files a/.git_backup/objects/02/3924444241b8ae70dd2f5c637325e9fb5c4e2f and /dev/null differ diff --git a/.git_backup/objects/02/4e962b10df8892631eaad20223f7fc8378ea83 b/.git_backup/objects/02/4e962b10df8892631eaad20223f7fc8378ea83 deleted file mode 100644 index 143b2801..00000000 Binary files a/.git_backup/objects/02/4e962b10df8892631eaad20223f7fc8378ea83 and /dev/null differ diff --git a/.git_backup/objects/02/54b29f18a5bce7078ad4d0656107b2d23d37c8 b/.git_backup/objects/02/54b29f18a5bce7078ad4d0656107b2d23d37c8 deleted file mode 100644 index 1b9d9f80..00000000 Binary files a/.git_backup/objects/02/54b29f18a5bce7078ad4d0656107b2d23d37c8 and /dev/null differ diff --git a/.git_backup/objects/02/56b8912107e5c9b2a469b32c61c15347623111 b/.git_backup/objects/02/56b8912107e5c9b2a469b32c61c15347623111 deleted file mode 100644 index 97a8b844..00000000 Binary files a/.git_backup/objects/02/56b8912107e5c9b2a469b32c61c15347623111 and /dev/null differ diff --git a/.git_backup/objects/02/57699228b336d799be6636e559d0af627284da b/.git_backup/objects/02/57699228b336d799be6636e559d0af627284da deleted file mode 100644 index 07ff2b39..00000000 Binary files a/.git_backup/objects/02/57699228b336d799be6636e559d0af627284da and /dev/null differ diff --git a/.git_backup/objects/02/579900468a355968439250551831c1842b828f b/.git_backup/objects/02/579900468a355968439250551831c1842b828f deleted file mode 100644 index 249d3df1..00000000 --- a/.git_backup/objects/02/579900468a355968439250551831c1842b828f +++ /dev/null @@ -1,3 +0,0 @@ -xmn0dƻ]=!n{XT>DWB,pD(X"g=&$Nd{i׾H{)x\9qCƉIJ"2Ǟ8Y?xr@^F!a\ V^c)f/~>@%Ko@_̠6b9= :f.}zvKovZK,i-v;KvZC;"{ݹ ޼h9kd6WmME g\8ΗbQHE]hzCKrFGQ4c` ^#‘p(j[0ML i ;}bf?A FoT -&c9UgȸA7j+{&L|> =oN\Qcu5PG1 FcۓCjkB GNh}߅$%)T/EY%t@>BډTwWB)̥ۇm5Rc.ӡʸP.54H`[ʀ{qHo>›EY$G5*?śғطkLRf\(P$65vp/7a?l7S/*j/=`d1aq=5<-Ɲ1j^e?D^ \ No newline at end of file diff --git a/.git_backup/objects/03/cfeb245c11d2c7f357310319a4930f5e941e49 b/.git_backup/objects/03/cfeb245c11d2c7f357310319a4930f5e941e49 deleted file mode 100644 index 28ec4666..00000000 Binary files a/.git_backup/objects/03/cfeb245c11d2c7f357310319a4930f5e941e49 and /dev/null differ diff --git a/.git_backup/objects/03/dd7638e67613538cf913fc59c56ca23f4ae35a b/.git_backup/objects/03/dd7638e67613538cf913fc59c56ca23f4ae35a deleted file mode 100644 index 4cbf46cc..00000000 Binary files a/.git_backup/objects/03/dd7638e67613538cf913fc59c56ca23f4ae35a and /dev/null differ diff --git a/.git_backup/objects/03/dd9affebde445e9bef4f2485c175927058968d b/.git_backup/objects/03/dd9affebde445e9bef4f2485c175927058968d deleted file mode 100644 index c73f0942..00000000 Binary files a/.git_backup/objects/03/dd9affebde445e9bef4f2485c175927058968d and /dev/null differ diff --git a/.git_backup/objects/03/e8a7115db6c5bac7e9c00784a9a6ec08268509 b/.git_backup/objects/03/e8a7115db6c5bac7e9c00784a9a6ec08268509 deleted file mode 100644 index a41b3b0a..00000000 Binary files a/.git_backup/objects/03/e8a7115db6c5bac7e9c00784a9a6ec08268509 and /dev/null differ diff --git a/.git_backup/objects/03/ec1442b4122cc3c08ba66f0bce3979d7e0f34d b/.git_backup/objects/03/ec1442b4122cc3c08ba66f0bce3979d7e0f34d deleted file mode 100644 index 3cb188b7..00000000 Binary files a/.git_backup/objects/03/ec1442b4122cc3c08ba66f0bce3979d7e0f34d and /dev/null differ diff --git a/.git_backup/objects/03/ed925b246dd551ec2ef45095ed6cad00fd2745 b/.git_backup/objects/03/ed925b246dd551ec2ef45095ed6cad00fd2745 deleted file mode 100644 index 346433de..00000000 Binary files a/.git_backup/objects/03/ed925b246dd551ec2ef45095ed6cad00fd2745 and /dev/null differ diff --git a/.git_backup/objects/03/ef183baa02303074da2984d518eb2a3f7ed112 b/.git_backup/objects/03/ef183baa02303074da2984d518eb2a3f7ed112 deleted file mode 100644 index 0b8a65bd..00000000 Binary files a/.git_backup/objects/03/ef183baa02303074da2984d518eb2a3f7ed112 and /dev/null differ diff --git a/.git_backup/objects/03/f08ebffea3f1dbc725eaeab113324cffdbd4db b/.git_backup/objects/03/f08ebffea3f1dbc725eaeab113324cffdbd4db deleted file mode 100644 index 0ecebcec..00000000 Binary files a/.git_backup/objects/03/f08ebffea3f1dbc725eaeab113324cffdbd4db and /dev/null differ diff --git a/.git_backup/objects/03/f2faf4337e97b965879515ab50365f43674049 b/.git_backup/objects/03/f2faf4337e97b965879515ab50365f43674049 deleted file mode 100644 index fe606634..00000000 Binary files a/.git_backup/objects/03/f2faf4337e97b965879515ab50365f43674049 and /dev/null differ diff --git a/.git_backup/objects/03/f53af02ad4fc552bc4df2ba8aba0577f4f4689 b/.git_backup/objects/03/f53af02ad4fc552bc4df2ba8aba0577f4f4689 deleted file mode 100644 index 038e1ce3..00000000 --- a/.git_backup/objects/03/f53af02ad4fc552bc4df2ba8aba0577f4f4689 +++ /dev/null @@ -1,2 +0,0 @@ -x5; -@g_^Al#RDDJ$;ht EHkemgDa^{8٬xsg1eq3C6[Fkki{ N%x0)r4kRwH+Y#y"LIR#ʼn0grx +DAT/qI5_;, \ No newline at end of file diff --git a/.git_backup/objects/04/05d150c0c04d299d37b7f768307d25cd984149 b/.git_backup/objects/04/05d150c0c04d299d37b7f768307d25cd984149 deleted file mode 100644 index d30ee106..00000000 Binary files a/.git_backup/objects/04/05d150c0c04d299d37b7f768307d25cd984149 and /dev/null differ diff --git a/.git_backup/objects/04/06d6c716a8ae6ed04a19a663884d387913c0b5 b/.git_backup/objects/04/06d6c716a8ae6ed04a19a663884d387913c0b5 deleted file mode 100644 index 443ecc69..00000000 Binary files a/.git_backup/objects/04/06d6c716a8ae6ed04a19a663884d387913c0b5 and /dev/null differ diff --git a/.git_backup/objects/04/085cc53d516ea2b4acffc26f8dfec23087670d b/.git_backup/objects/04/085cc53d516ea2b4acffc26f8dfec23087670d deleted file mode 100644 index f659862c..00000000 Binary files a/.git_backup/objects/04/085cc53d516ea2b4acffc26f8dfec23087670d and /dev/null differ diff --git a/.git_backup/objects/04/11b62e020f497e4a1ba1f1abbb053e5df7ec48 b/.git_backup/objects/04/11b62e020f497e4a1ba1f1abbb053e5df7ec48 deleted file mode 100644 index 76a6c013..00000000 Binary files a/.git_backup/objects/04/11b62e020f497e4a1ba1f1abbb053e5df7ec48 and /dev/null differ diff --git a/.git_backup/objects/04/147f7b282409c64d4a94aef9e2166fa82668b7 b/.git_backup/objects/04/147f7b282409c64d4a94aef9e2166fa82668b7 deleted file mode 100644 index 3d92fb2d..00000000 Binary files a/.git_backup/objects/04/147f7b282409c64d4a94aef9e2166fa82668b7 and /dev/null differ diff --git a/.git_backup/objects/04/1caba032b5637869ba5637113bffc29804f1d0 b/.git_backup/objects/04/1caba032b5637869ba5637113bffc29804f1d0 deleted file mode 100644 index d54b51db..00000000 Binary files a/.git_backup/objects/04/1caba032b5637869ba5637113bffc29804f1d0 and /dev/null differ diff --git a/.git_backup/objects/04/1f301928ecaf134f5371375f28d7adf1529c87 b/.git_backup/objects/04/1f301928ecaf134f5371375f28d7adf1529c87 deleted file mode 100644 index a1ed732e..00000000 Binary files a/.git_backup/objects/04/1f301928ecaf134f5371375f28d7adf1529c87 and /dev/null differ diff --git a/.git_backup/objects/04/266ca5b19078dd26306d052f88e76415975868 b/.git_backup/objects/04/266ca5b19078dd26306d052f88e76415975868 deleted file mode 100644 index ea8e1f35..00000000 --- a/.git_backup/objects/04/266ca5b19078dd26306d052f88e76415975868 +++ /dev/null @@ -1,4 +0,0 @@ -xS0 ܯ2R":{ڕFZ -P&:Hb8mڕ񋟟qggBO/SBy׃a)(*1JSwyl _ǨMQ*_ٍ, Go Oqin[N{+{dB(mP*9ȲZC=z/رT>4S -}q)W$s\jfe{:Q!,Ww/bH -i hT&dU0]7g뚕pAY/ \ No newline at end of file diff --git a/.git_backup/objects/04/27df0902d735b093e62979ac05af1ba7d4d113 b/.git_backup/objects/04/27df0902d735b093e62979ac05af1ba7d4d113 deleted file mode 100644 index af50f4ae..00000000 Binary files a/.git_backup/objects/04/27df0902d735b093e62979ac05af1ba7d4d113 and /dev/null differ diff --git a/.git_backup/objects/04/2ca8c9725202c53cafca236322f35ed4ad6c34 b/.git_backup/objects/04/2ca8c9725202c53cafca236322f35ed4ad6c34 deleted file mode 100644 index 2161b90d..00000000 Binary files a/.git_backup/objects/04/2ca8c9725202c53cafca236322f35ed4ad6c34 and /dev/null differ diff --git a/.git_backup/objects/04/2dac813e74b8187c3754cb9a937c7f7183e331 b/.git_backup/objects/04/2dac813e74b8187c3754cb9a937c7f7183e331 deleted file mode 100644 index 7709d9e6..00000000 Binary files a/.git_backup/objects/04/2dac813e74b8187c3754cb9a937c7f7183e331 and /dev/null differ diff --git a/.git_backup/objects/04/390e7b6bf2f4114dd214e04820059c1871333f b/.git_backup/objects/04/390e7b6bf2f4114dd214e04820059c1871333f deleted file mode 100644 index b7c16a3b..00000000 Binary files a/.git_backup/objects/04/390e7b6bf2f4114dd214e04820059c1871333f and /dev/null differ diff --git a/.git_backup/objects/04/3baad0eebf8ec9fb67ab6acc470cb7d27a4023 b/.git_backup/objects/04/3baad0eebf8ec9fb67ab6acc470cb7d27a4023 deleted file mode 100644 index bd50e44e..00000000 Binary files a/.git_backup/objects/04/3baad0eebf8ec9fb67ab6acc470cb7d27a4023 and /dev/null differ diff --git a/.git_backup/objects/04/3c8281893d6bb396f9c48e8e4ee120cd5036d4 b/.git_backup/objects/04/3c8281893d6bb396f9c48e8e4ee120cd5036d4 deleted file mode 100644 index 36936524..00000000 Binary files a/.git_backup/objects/04/3c8281893d6bb396f9c48e8e4ee120cd5036d4 and /dev/null differ diff --git a/.git_backup/objects/04/3f096c98f3df9355eb2dfdd47a04231101f90f b/.git_backup/objects/04/3f096c98f3df9355eb2dfdd47a04231101f90f deleted file mode 100644 index 1c4d5678..00000000 Binary files a/.git_backup/objects/04/3f096c98f3df9355eb2dfdd47a04231101f90f and /dev/null differ diff --git a/.git_backup/objects/04/42bcf6986be396ab55957af137347053a6f282 b/.git_backup/objects/04/42bcf6986be396ab55957af137347053a6f282 deleted file mode 100644 index a9ddc35b..00000000 Binary files a/.git_backup/objects/04/42bcf6986be396ab55957af137347053a6f282 and /dev/null differ diff --git a/.git_backup/objects/04/55e0d61ad977708445494280a2c329164ec242 b/.git_backup/objects/04/55e0d61ad977708445494280a2c329164ec242 deleted file mode 100644 index 2f0aa99d..00000000 Binary files a/.git_backup/objects/04/55e0d61ad977708445494280a2c329164ec242 and /dev/null differ diff --git a/.git_backup/objects/04/57ceb1e03e6a6d25015afdf13803a296701fec b/.git_backup/objects/04/57ceb1e03e6a6d25015afdf13803a296701fec deleted file mode 100644 index 7528ba5c..00000000 Binary files a/.git_backup/objects/04/57ceb1e03e6a6d25015afdf13803a296701fec and /dev/null differ diff --git a/.git_backup/objects/04/57db2b07430eb8e4379f0abf50f91da26f1811 b/.git_backup/objects/04/57db2b07430eb8e4379f0abf50f91da26f1811 deleted file mode 100644 index 71571c9a..00000000 Binary files a/.git_backup/objects/04/57db2b07430eb8e4379f0abf50f91da26f1811 and /dev/null differ diff --git a/.git_backup/objects/04/5c3cbb18ba69edfe3019e36c346beaeffc31ee b/.git_backup/objects/04/5c3cbb18ba69edfe3019e36c346beaeffc31ee deleted file mode 100644 index cb349c06..00000000 Binary files a/.git_backup/objects/04/5c3cbb18ba69edfe3019e36c346beaeffc31ee and /dev/null differ diff --git a/.git_backup/objects/04/5e994d8abb158593d89b5cac012f948b5af6d1 b/.git_backup/objects/04/5e994d8abb158593d89b5cac012f948b5af6d1 deleted file mode 100644 index 30a678ec..00000000 Binary files a/.git_backup/objects/04/5e994d8abb158593d89b5cac012f948b5af6d1 and /dev/null differ diff --git a/.git_backup/objects/04/652f6b3ca07b4b1218f5f2c05e2baa7be0d9c9 b/.git_backup/objects/04/652f6b3ca07b4b1218f5f2c05e2baa7be0d9c9 deleted file mode 100644 index 259ffad6..00000000 Binary files a/.git_backup/objects/04/652f6b3ca07b4b1218f5f2c05e2baa7be0d9c9 and /dev/null differ diff --git a/.git_backup/objects/04/671e4043fc28d60d38affe83a3bdf5a9b06a3d b/.git_backup/objects/04/671e4043fc28d60d38affe83a3bdf5a9b06a3d deleted file mode 100644 index a05da9b5..00000000 Binary files a/.git_backup/objects/04/671e4043fc28d60d38affe83a3bdf5a9b06a3d and /dev/null differ diff --git a/.git_backup/objects/04/6f7a4f9e1c3633a3462f63007f5513cba6d748 b/.git_backup/objects/04/6f7a4f9e1c3633a3462f63007f5513cba6d748 deleted file mode 100644 index 988d3496..00000000 Binary files a/.git_backup/objects/04/6f7a4f9e1c3633a3462f63007f5513cba6d748 and /dev/null differ diff --git a/.git_backup/objects/04/71456221104e17955f6448dc80f8867bf81cd2 b/.git_backup/objects/04/71456221104e17955f6448dc80f8867bf81cd2 deleted file mode 100644 index 0bbcf8c3..00000000 Binary files a/.git_backup/objects/04/71456221104e17955f6448dc80f8867bf81cd2 and /dev/null differ diff --git a/.git_backup/objects/04/7a53a0448ef68556321be7d70cfa57c3aa941b b/.git_backup/objects/04/7a53a0448ef68556321be7d70cfa57c3aa941b deleted file mode 100644 index 315095b1..00000000 --- a/.git_backup/objects/04/7a53a0448ef68556321be7d70cfa57c3aa941b +++ /dev/null @@ -1,2 +0,0 @@ -xm -@ =SJz{uS Tۻ-UD[efp )8Z{`CQ`6}3A Y\.= ƹ;ɶw$Ze!>)<"xt[Bڨyb`h IAV"_o> |[ iWW \ No newline at end of file diff --git a/.git_backup/objects/04/7f59bef7a91810af1576355278fa6c18259af2 b/.git_backup/objects/04/7f59bef7a91810af1576355278fa6c18259af2 deleted file mode 100644 index 9a4a3087..00000000 Binary files a/.git_backup/objects/04/7f59bef7a91810af1576355278fa6c18259af2 and /dev/null differ diff --git a/.git_backup/objects/04/88474aeee621ff3c5ce1cc78b76ea7c0faa9f8 b/.git_backup/objects/04/88474aeee621ff3c5ce1cc78b76ea7c0faa9f8 deleted file mode 100644 index 749beb6f..00000000 Binary files a/.git_backup/objects/04/88474aeee621ff3c5ce1cc78b76ea7c0faa9f8 and /dev/null differ diff --git a/.git_backup/objects/04/90a283aab0f873e336e4a2a7e2f31f145cb550 b/.git_backup/objects/04/90a283aab0f873e336e4a2a7e2f31f145cb550 deleted file mode 100644 index d4802220..00000000 Binary files a/.git_backup/objects/04/90a283aab0f873e336e4a2a7e2f31f145cb550 and /dev/null differ diff --git a/.git_backup/objects/04/a2e78828a719beda4dbd900ad32090bff2dd37 b/.git_backup/objects/04/a2e78828a719beda4dbd900ad32090bff2dd37 deleted file mode 100644 index 220b441d..00000000 Binary files a/.git_backup/objects/04/a2e78828a719beda4dbd900ad32090bff2dd37 and /dev/null differ diff --git a/.git_backup/objects/04/a60fae22214c9f99e109ceac6effc914c57b49 b/.git_backup/objects/04/a60fae22214c9f99e109ceac6effc914c57b49 deleted file mode 100644 index b98bf078..00000000 Binary files a/.git_backup/objects/04/a60fae22214c9f99e109ceac6effc914c57b49 and /dev/null differ diff --git a/.git_backup/objects/04/ae2b7134aae11b6b2fd1fbf02762f243ecdc73 b/.git_backup/objects/04/ae2b7134aae11b6b2fd1fbf02762f243ecdc73 deleted file mode 100644 index 9f72b2e5..00000000 Binary files a/.git_backup/objects/04/ae2b7134aae11b6b2fd1fbf02762f243ecdc73 and /dev/null differ diff --git a/.git_backup/objects/04/b56b023d7a4de6f42a4c7670f927268a94503b b/.git_backup/objects/04/b56b023d7a4de6f42a4c7670f927268a94503b deleted file mode 100644 index ee947c4b..00000000 Binary files a/.git_backup/objects/04/b56b023d7a4de6f42a4c7670f927268a94503b and /dev/null differ diff --git a/.git_backup/objects/04/b6bb95aae44d96e5df967f6973cb5966faa27b b/.git_backup/objects/04/b6bb95aae44d96e5df967f6973cb5966faa27b deleted file mode 100644 index 2a49b7ef..00000000 Binary files a/.git_backup/objects/04/b6bb95aae44d96e5df967f6973cb5966faa27b and /dev/null differ diff --git a/.git_backup/objects/04/c2df456ff0f879a419331dc3e9f4d4f68f0ecd b/.git_backup/objects/04/c2df456ff0f879a419331dc3e9f4d4f68f0ecd deleted file mode 100644 index ef81af19..00000000 --- a/.git_backup/objects/04/c2df456ff0f879a419331dc3e9f4d4f68f0ecd +++ /dev/null @@ -1,4 +0,0 @@ -xLu?> iqqBLOOB#Loi\9לB\͍t -pkY kG#7WW}=q|_ϖ-XG7?>dvm*%SS%}+/K]rߵxƕyn< ~wGnSSzںʩ~FO/W?g̭2dɽnFd[fG7#1`MG6\WP r>ӞQڮKͰzl})xTYŦ(ҥ;EM)<|eJS tYo ]~~jK<{H--Oܫ_e]ӵu\TUn0U렷C/ՙͪT^qgyɄ:eՙ%)*u}nzqǒ͚<~g¿gKC}nj&cGUSר~aG5Cdcwi񞔗"QӚy@ڂ5NL"4J45DW~6[[/ecqސWKO9W>sN7kkS}7f^?,h::ߔ=W6NIN'eM$IRJ"kT*#8O^_UUݚ -O_x 3@2 G; dD SAL 2 2%9!BfL 23djܐ!C )r%2MG;Od3E,2[d| #3F42kdڎv9fLc9fLcH )@r$fIG $@dI$!HF 9AhI   "$GH,!iryBh3 -I-$]BƑ1$e9CƑ5$m6oHm9!C@$?N660 CEE"' \ No newline at end of file diff --git a/.git_backup/objects/04/cfe912d73c5ad84fcb465aee3798ac899ddc29 b/.git_backup/objects/04/cfe912d73c5ad84fcb465aee3798ac899ddc29 deleted file mode 100644 index 0830bad8..00000000 Binary files a/.git_backup/objects/04/cfe912d73c5ad84fcb465aee3798ac899ddc29 and /dev/null differ diff --git a/.git_backup/objects/04/d3b4d5ae6c318d07eeee8bea736d8649a2b7a0 b/.git_backup/objects/04/d3b4d5ae6c318d07eeee8bea736d8649a2b7a0 deleted file mode 100644 index 1e461d46..00000000 Binary files a/.git_backup/objects/04/d3b4d5ae6c318d07eeee8bea736d8649a2b7a0 and /dev/null differ diff --git a/.git_backup/objects/04/d90791fa75894cfccc26759ee9f54cc70e98cb b/.git_backup/objects/04/d90791fa75894cfccc26759ee9f54cc70e98cb deleted file mode 100644 index 78d09505..00000000 Binary files a/.git_backup/objects/04/d90791fa75894cfccc26759ee9f54cc70e98cb and /dev/null differ diff --git a/.git_backup/objects/04/da41be9dc784114b55bd33fa9534c5adc33890 b/.git_backup/objects/04/da41be9dc784114b55bd33fa9534c5adc33890 deleted file mode 100644 index c8bb4976..00000000 Binary files a/.git_backup/objects/04/da41be9dc784114b55bd33fa9534c5adc33890 and /dev/null differ diff --git a/.git_backup/objects/04/dbc942e2530c4ff85810da1aa0e71e1c951103 b/.git_backup/objects/04/dbc942e2530c4ff85810da1aa0e71e1c951103 deleted file mode 100644 index 9f599a69..00000000 Binary files a/.git_backup/objects/04/dbc942e2530c4ff85810da1aa0e71e1c951103 and /dev/null differ diff --git a/.git_backup/objects/04/f50aa304f891a3b0412cba15094c12cad9f6e0 b/.git_backup/objects/04/f50aa304f891a3b0412cba15094c12cad9f6e0 deleted file mode 100644 index 6aae5677..00000000 --- a/.git_backup/objects/04/f50aa304f891a3b0412cba15094c12cad9f6e0 +++ /dev/null @@ -1,2 +0,0 @@ -xu -@D+(H,XDಛb^tꔏy3è>"́#ΣkˏJQf7X"+ɚ-b5ErS^1^o5E];GWN]>AH \ No newline at end of file diff --git a/.git_backup/objects/04/fb15ae8a6f8eeaa58bc11913de6b9b8fb0404e b/.git_backup/objects/04/fb15ae8a6f8eeaa58bc11913de6b9b8fb0404e deleted file mode 100644 index ee31c949..00000000 Binary files a/.git_backup/objects/04/fb15ae8a6f8eeaa58bc11913de6b9b8fb0404e and /dev/null differ diff --git a/.git_backup/objects/04/fd34a83f825bbeb2ac92c9c17db0912225df6b b/.git_backup/objects/04/fd34a83f825bbeb2ac92c9c17db0912225df6b deleted file mode 100644 index b23c528f..00000000 Binary files a/.git_backup/objects/04/fd34a83f825bbeb2ac92c9c17db0912225df6b and /dev/null differ diff --git a/.git_backup/objects/04/fdeeff17b5cc84b210f445b54b87d5b99e3748 b/.git_backup/objects/04/fdeeff17b5cc84b210f445b54b87d5b99e3748 deleted file mode 100644 index 4fbe45d0..00000000 --- a/.git_backup/objects/04/fdeeff17b5cc84b210f445b54b87d5b99e3748 +++ /dev/null @@ -1,3 +0,0 @@ -xmN -0XEK)R x!V&Td*(Ak^X-ɁTy3NZo炈/ǻ6jZxiX%tt9%Tcx{YI>9AdC(-1 -b<=(0JH${9yQ_He1fA` \ No newline at end of file diff --git a/.git_backup/objects/05/0642fc42f513fafceef7597b397630d0799101 b/.git_backup/objects/05/0642fc42f513fafceef7597b397630d0799101 deleted file mode 100644 index e3605843..00000000 Binary files a/.git_backup/objects/05/0642fc42f513fafceef7597b397630d0799101 and /dev/null differ diff --git a/.git_backup/objects/05/06b4d29cd0330612c44be3a8cd8b9852680b62 b/.git_backup/objects/05/06b4d29cd0330612c44be3a8cd8b9852680b62 deleted file mode 100644 index a80d1bc6..00000000 Binary files a/.git_backup/objects/05/06b4d29cd0330612c44be3a8cd8b9852680b62 and /dev/null differ diff --git a/.git_backup/objects/05/0a71fb035a0cbfca051ac71874eb1417911396 b/.git_backup/objects/05/0a71fb035a0cbfca051ac71874eb1417911396 deleted file mode 100644 index c3ff1e93..00000000 Binary files a/.git_backup/objects/05/0a71fb035a0cbfca051ac71874eb1417911396 and /dev/null differ diff --git a/.git_backup/objects/05/18655c6ce587ff1d7a14a336b6c83747664ea9 b/.git_backup/objects/05/18655c6ce587ff1d7a14a336b6c83747664ea9 deleted file mode 100644 index 512cdfc7..00000000 Binary files a/.git_backup/objects/05/18655c6ce587ff1d7a14a336b6c83747664ea9 and /dev/null differ diff --git a/.git_backup/objects/05/18d5c31923c63a3019b858e725340b840ef322 b/.git_backup/objects/05/18d5c31923c63a3019b858e725340b840ef322 deleted file mode 100644 index a963df93..00000000 Binary files a/.git_backup/objects/05/18d5c31923c63a3019b858e725340b840ef322 and /dev/null differ diff --git a/.git_backup/objects/05/1ab5aba2f6777ad9e9b1b6c4278ada06a77715 b/.git_backup/objects/05/1ab5aba2f6777ad9e9b1b6c4278ada06a77715 deleted file mode 100644 index 10940021..00000000 Binary files a/.git_backup/objects/05/1ab5aba2f6777ad9e9b1b6c4278ada06a77715 and /dev/null differ diff --git a/.git_backup/objects/05/1affd0af1f9a453a6601e944be9ed8295cc080 b/.git_backup/objects/05/1affd0af1f9a453a6601e944be9ed8295cc080 deleted file mode 100644 index 633a4e9c..00000000 --- a/.git_backup/objects/05/1affd0af1f9a453a6601e944be9ed8295cc080 +++ /dev/null @@ -1,2 +0,0 @@ -xuSn0 3_i/4U4M~&rЬI&a*^I[}0ʐ_ӳ [8:@:n4y߭%'xi?:J&i߮"2E O Bn!VX& s9Xk&m]'IVU.>,JuJ\$+0VcB5Ge뜝]R7)gqdPc  % -%f i>?T, \ No newline at end of file diff --git a/.git_backup/objects/05/1c1ccfccf70d4bc9c24eb010ec0a609fcb4cc4 b/.git_backup/objects/05/1c1ccfccf70d4bc9c24eb010ec0a609fcb4cc4 deleted file mode 100644 index 918613a8..00000000 Binary files a/.git_backup/objects/05/1c1ccfccf70d4bc9c24eb010ec0a609fcb4cc4 and /dev/null differ diff --git a/.git_backup/objects/05/1d0ef0c050f8ceb5acd6462cd8fef6d34fc84f b/.git_backup/objects/05/1d0ef0c050f8ceb5acd6462cd8fef6d34fc84f deleted file mode 100644 index 3514932d..00000000 Binary files a/.git_backup/objects/05/1d0ef0c050f8ceb5acd6462cd8fef6d34fc84f and /dev/null differ diff --git a/.git_backup/objects/05/1e6c435798530b3f5da88bb049032c38daae2f b/.git_backup/objects/05/1e6c435798530b3f5da88bb049032c38daae2f deleted file mode 100644 index 02d73a5d..00000000 Binary files a/.git_backup/objects/05/1e6c435798530b3f5da88bb049032c38daae2f and /dev/null differ diff --git a/.git_backup/objects/05/2546cc41b37dc03363b4c6389d7e5b01097bc9 b/.git_backup/objects/05/2546cc41b37dc03363b4c6389d7e5b01097bc9 deleted file mode 100644 index f771615e..00000000 Binary files a/.git_backup/objects/05/2546cc41b37dc03363b4c6389d7e5b01097bc9 and /dev/null differ diff --git a/.git_backup/objects/05/264bafb8b2d472bbeef18dd3fa89dbc3bfed87 b/.git_backup/objects/05/264bafb8b2d472bbeef18dd3fa89dbc3bfed87 deleted file mode 100644 index 79a45c4f..00000000 Binary files a/.git_backup/objects/05/264bafb8b2d472bbeef18dd3fa89dbc3bfed87 and /dev/null differ diff --git a/.git_backup/objects/05/33198ca51425532ac1e5e96bf7af978081a9b8 b/.git_backup/objects/05/33198ca51425532ac1e5e96bf7af978081a9b8 deleted file mode 100644 index 4746a090..00000000 Binary files a/.git_backup/objects/05/33198ca51425532ac1e5e96bf7af978081a9b8 and /dev/null differ diff --git a/.git_backup/objects/05/3335c6beb4250e3cd8a3a2ca8211c3912d7471 b/.git_backup/objects/05/3335c6beb4250e3cd8a3a2ca8211c3912d7471 deleted file mode 100644 index 021dd782..00000000 Binary files a/.git_backup/objects/05/3335c6beb4250e3cd8a3a2ca8211c3912d7471 and /dev/null differ diff --git a/.git_backup/objects/05/370c3e073e6cf0ecfdaba1f853129e34f455c0 b/.git_backup/objects/05/370c3e073e6cf0ecfdaba1f853129e34f455c0 deleted file mode 100644 index 07eca87d..00000000 Binary files a/.git_backup/objects/05/370c3e073e6cf0ecfdaba1f853129e34f455c0 and /dev/null differ diff --git a/.git_backup/objects/05/46e8388d1d991d00b354f8b3d71d18a1f19732 b/.git_backup/objects/05/46e8388d1d991d00b354f8b3d71d18a1f19732 deleted file mode 100644 index 9523b39d..00000000 Binary files a/.git_backup/objects/05/46e8388d1d991d00b354f8b3d71d18a1f19732 and /dev/null differ diff --git a/.git_backup/objects/05/4c23c6423e1f906f52f7bed536d5a6d5eaef2a b/.git_backup/objects/05/4c23c6423e1f906f52f7bed536d5a6d5eaef2a deleted file mode 100644 index 1313fe28..00000000 Binary files a/.git_backup/objects/05/4c23c6423e1f906f52f7bed536d5a6d5eaef2a and /dev/null differ diff --git a/.git_backup/objects/05/5bf74af6dc51ce94c76375930c072b52f72d3d b/.git_backup/objects/05/5bf74af6dc51ce94c76375930c072b52f72d3d deleted file mode 100644 index fcd32b84..00000000 Binary files a/.git_backup/objects/05/5bf74af6dc51ce94c76375930c072b52f72d3d and /dev/null differ diff --git a/.git_backup/objects/05/5bf9f4427862e54a84157166c66b303a3c6496 b/.git_backup/objects/05/5bf9f4427862e54a84157166c66b303a3c6496 deleted file mode 100644 index b098b566..00000000 Binary files a/.git_backup/objects/05/5bf9f4427862e54a84157166c66b303a3c6496 and /dev/null differ diff --git a/.git_backup/objects/05/5e4759bed164187980566639a4ce03cd476cc6 b/.git_backup/objects/05/5e4759bed164187980566639a4ce03cd476cc6 deleted file mode 100644 index fafda983..00000000 Binary files a/.git_backup/objects/05/5e4759bed164187980566639a4ce03cd476cc6 and /dev/null differ diff --git a/.git_backup/objects/05/611308b29c7f6522bab846f83379e3a0b1c663 b/.git_backup/objects/05/611308b29c7f6522bab846f83379e3a0b1c663 deleted file mode 100644 index 85e2ef2d..00000000 Binary files a/.git_backup/objects/05/611308b29c7f6522bab846f83379e3a0b1c663 and /dev/null differ diff --git a/.git_backup/objects/05/6333e713fb53b71d762b3623232a63830fb5aa b/.git_backup/objects/05/6333e713fb53b71d762b3623232a63830fb5aa deleted file mode 100644 index dd90a97c..00000000 Binary files a/.git_backup/objects/05/6333e713fb53b71d762b3623232a63830fb5aa and /dev/null differ diff --git a/.git_backup/objects/05/651fb98d35333318446c7d42772068fdb40f57 b/.git_backup/objects/05/651fb98d35333318446c7d42772068fdb40f57 deleted file mode 100644 index b2f43a7e..00000000 Binary files a/.git_backup/objects/05/651fb98d35333318446c7d42772068fdb40f57 and /dev/null differ diff --git a/.git_backup/objects/05/687f71fc0a9882acbf4e44c04138cabed6f388 b/.git_backup/objects/05/687f71fc0a9882acbf4e44c04138cabed6f388 deleted file mode 100644 index 7107b1d8..00000000 Binary files a/.git_backup/objects/05/687f71fc0a9882acbf4e44c04138cabed6f388 and /dev/null differ diff --git a/.git_backup/objects/05/6f5bef31e567c415048c496899768eb546f25a b/.git_backup/objects/05/6f5bef31e567c415048c496899768eb546f25a deleted file mode 100644 index cd1dd729..00000000 --- a/.git_backup/objects/05/6f5bef31e567c415048c496899768eb546f25a +++ /dev/null @@ -1 +0,0 @@ -xm;@ EQj+BJ"'a$Dz RvOty}'HxORV50̭_?uGrȥqI7,:IωKc*[=—*+= \ No newline at end of file diff --git a/.git_backup/objects/05/735243668328eca8564f6e65405570c7504f48 b/.git_backup/objects/05/735243668328eca8564f6e65405570c7504f48 deleted file mode 100644 index d7f7e0ba..00000000 Binary files a/.git_backup/objects/05/735243668328eca8564f6e65405570c7504f48 and /dev/null differ diff --git a/.git_backup/objects/05/77d898ca87f2b0f9143c888d09fc1941a84901 b/.git_backup/objects/05/77d898ca87f2b0f9143c888d09fc1941a84901 deleted file mode 100644 index c41bf41b..00000000 Binary files a/.git_backup/objects/05/77d898ca87f2b0f9143c888d09fc1941a84901 and /dev/null differ diff --git a/.git_backup/objects/05/7d0213237cec07aa882c51d6b25e165703d24d b/.git_backup/objects/05/7d0213237cec07aa882c51d6b25e165703d24d deleted file mode 100644 index 698c90c5..00000000 Binary files a/.git_backup/objects/05/7d0213237cec07aa882c51d6b25e165703d24d and /dev/null differ diff --git a/.git_backup/objects/05/7daad7035f537fc35945b23ec9f51ff1d6a83e b/.git_backup/objects/05/7daad7035f537fc35945b23ec9f51ff1d6a83e deleted file mode 100644 index 6ccb71cc..00000000 --- a/.git_backup/objects/05/7daad7035f537fc35945b23ec9f51ff1d6a83e +++ /dev/null @@ -1,2 +0,0 @@ -xMn@wmaD!(?C׀RX;6yYGCRP-xT騘]9fvۙ줅Lɜ;@ '$"@w{?(ypCisLfa+'ZQ74;lsMPCvxr/_=$W \ No newline at end of file diff --git a/.git_backup/objects/05/82549b9cfb309db3bfabbdafd36c9bf850057f b/.git_backup/objects/05/82549b9cfb309db3bfabbdafd36c9bf850057f deleted file mode 100644 index dcea191b..00000000 Binary files a/.git_backup/objects/05/82549b9cfb309db3bfabbdafd36c9bf850057f and /dev/null differ diff --git a/.git_backup/objects/05/893e115790a44df24fa4f0ea9bf7c4511de195 b/.git_backup/objects/05/893e115790a44df24fa4f0ea9bf7c4511de195 deleted file mode 100644 index ee37c4e1..00000000 Binary files a/.git_backup/objects/05/893e115790a44df24fa4f0ea9bf7c4511de195 and /dev/null differ diff --git a/.git_backup/objects/05/895d61326cdfa62ae9690cf75c6dfcb528068e b/.git_backup/objects/05/895d61326cdfa62ae9690cf75c6dfcb528068e deleted file mode 100644 index 2c26d687..00000000 Binary files a/.git_backup/objects/05/895d61326cdfa62ae9690cf75c6dfcb528068e and /dev/null differ diff --git a/.git_backup/objects/05/93b87a88844e889937087c49c514e751a3f883 b/.git_backup/objects/05/93b87a88844e889937087c49c514e751a3f883 deleted file mode 100644 index 331f1b74..00000000 Binary files a/.git_backup/objects/05/93b87a88844e889937087c49c514e751a3f883 and /dev/null differ diff --git a/.git_backup/objects/05/9b0b75f419050f47e05943c8f7dba211feb171 b/.git_backup/objects/05/9b0b75f419050f47e05943c8f7dba211feb171 deleted file mode 100644 index ee38f95b..00000000 Binary files a/.git_backup/objects/05/9b0b75f419050f47e05943c8f7dba211feb171 and /dev/null differ diff --git a/.git_backup/objects/05/9d0609a0cbd880cd4e62a2c180d88ea25fc05e b/.git_backup/objects/05/9d0609a0cbd880cd4e62a2c180d88ea25fc05e deleted file mode 100644 index e9f28ebf..00000000 Binary files a/.git_backup/objects/05/9d0609a0cbd880cd4e62a2c180d88ea25fc05e and /dev/null differ diff --git a/.git_backup/objects/05/9dfe0d5b0e23e0589575170bc4774945d82c87 b/.git_backup/objects/05/9dfe0d5b0e23e0589575170bc4774945d82c87 deleted file mode 100644 index e78cfadf..00000000 Binary files a/.git_backup/objects/05/9dfe0d5b0e23e0589575170bc4774945d82c87 and /dev/null differ diff --git a/.git_backup/objects/05/9f4c166ec0cc4ad2ffaf233b8abdbf4f86ae09 b/.git_backup/objects/05/9f4c166ec0cc4ad2ffaf233b8abdbf4f86ae09 deleted file mode 100644 index bca54b78..00000000 Binary files a/.git_backup/objects/05/9f4c166ec0cc4ad2ffaf233b8abdbf4f86ae09 and /dev/null differ diff --git a/.git_backup/objects/05/a1c129d6835c623956ead737243b095b5f5d71 b/.git_backup/objects/05/a1c129d6835c623956ead737243b095b5f5d71 deleted file mode 100644 index 4d28e3ca..00000000 --- a/.git_backup/objects/05/a1c129d6835c623956ead737243b095b5f5d71 +++ /dev/null @@ -1 +0,0 @@ -x=N1 ǯ]Z;xõB ,(R}\\%9F<ѕLLJ%;ga^q|m>w_r\0{̰7FM>҆" .U"@[[e`?&ePYR0-2f H?IbhX .Yi\1N5t3*yi7xG{`Dm[&F@}Ry{>>>3?E!pl#oNtz<4zs㧃0 -Cvi8#d~ɯkK蛕{2^ZӸH~t_\L' ܹ^`D%ܠҹ ᄛ Cп;tKx-| D@60gsv5("VioIL\EhNU|mPqˬB. }V,Wde"=;J3*N΀pvW+.ciY܇2<~ԅ7>n';Sq&<Ʋ%/%bWe,Nl&±M4EBԠ|tp֭PXi< 7Kŵஃ -[S3։U.s\;dj<)"_DF vYrM6RR[5dK{X'x Y4>X/V \ No newline at end of file diff --git a/.git_backup/objects/05/b5f4796a6985f881eb36a61e6519034952df90 b/.git_backup/objects/05/b5f4796a6985f881eb36a61e6519034952df90 deleted file mode 100644 index 735bf7f9..00000000 --- a/.git_backup/objects/05/b5f4796a6985f881eb36a61e6519034952df90 +++ /dev/null @@ -1 +0,0 @@ -x PLo<2+(M 5%ĸe8(%/XL.$M|js>GJJ \ No newline at end of file diff --git a/.git_backup/objects/05/b6adc5e742ec8aabaa163cfce7cd99a121bfca b/.git_backup/objects/05/b6adc5e742ec8aabaa163cfce7cd99a121bfca deleted file mode 100644 index 88461230..00000000 Binary files a/.git_backup/objects/05/b6adc5e742ec8aabaa163cfce7cd99a121bfca and /dev/null differ diff --git a/.git_backup/objects/05/bd62112ff2211af59c1affda1e293ae92f06e4 b/.git_backup/objects/05/bd62112ff2211af59c1affda1e293ae92f06e4 deleted file mode 100644 index 297d8082..00000000 Binary files a/.git_backup/objects/05/bd62112ff2211af59c1affda1e293ae92f06e4 and /dev/null differ diff --git a/.git_backup/objects/05/c1f5b716f40099fc6dd4b5faa96236cc65e4cb b/.git_backup/objects/05/c1f5b716f40099fc6dd4b5faa96236cc65e4cb deleted file mode 100644 index 63abafed..00000000 Binary files a/.git_backup/objects/05/c1f5b716f40099fc6dd4b5faa96236cc65e4cb and /dev/null differ diff --git a/.git_backup/objects/05/c5fc57d5a37022d26dbf5370be66f9be213cc3 b/.git_backup/objects/05/c5fc57d5a37022d26dbf5370be66f9be213cc3 deleted file mode 100644 index 04a2d3e6..00000000 Binary files a/.git_backup/objects/05/c5fc57d5a37022d26dbf5370be66f9be213cc3 and /dev/null differ diff --git a/.git_backup/objects/05/d1337b0b335238463b3555692cdf7ea78254c1 b/.git_backup/objects/05/d1337b0b335238463b3555692cdf7ea78254c1 deleted file mode 100644 index 23f771f8..00000000 Binary files a/.git_backup/objects/05/d1337b0b335238463b3555692cdf7ea78254c1 and /dev/null differ diff --git a/.git_backup/objects/05/d8fc355bf7112875341f1affa996c702d08bbd b/.git_backup/objects/05/d8fc355bf7112875341f1affa996c702d08bbd deleted file mode 100644 index 001160ba..00000000 Binary files a/.git_backup/objects/05/d8fc355bf7112875341f1affa996c702d08bbd and /dev/null differ diff --git a/.git_backup/objects/05/e3540a7e702e2e693912555956eaae9bb5fe13 b/.git_backup/objects/05/e3540a7e702e2e693912555956eaae9bb5fe13 deleted file mode 100644 index 3a435885..00000000 Binary files a/.git_backup/objects/05/e3540a7e702e2e693912555956eaae9bb5fe13 and /dev/null differ diff --git a/.git_backup/objects/05/eac0b76d8a034ffa25a9af78d12a85d5d99d0f b/.git_backup/objects/05/eac0b76d8a034ffa25a9af78d12a85d5d99d0f deleted file mode 100644 index badb9d53..00000000 --- a/.git_backup/objects/05/eac0b76d8a034ffa25a9af78d12a85d5d99d0f +++ /dev/null @@ -1,5 +0,0 @@ -xuQMK@4~W -% PxŴ - !٬m!M:PZz_"9-7ԃ߲;ogXgc1[@ dU}zm%3ǹqV?P])6 SeeP(%YXLMj:>6{~I@fv{JkO'1r#jGi@x5ÇV*OH@d~E -IC$KpsН-x-Ǡ@zІ H -3G0L}U~@ORXڗH䄕Ĭxv漧e"?y8 QO}|E!xP>f钻9˜br.tek>]{tθ(6圢DDEim~[A JH)R i!HI&RE"Hi6Ri#@L28v~N s8*nCO{T.Xꥁ.U$q"}xȞQՓgoLA`fB"Mr<!/G)Źs#c<:x߂ %OO5pjn?SrUq - -չA&1J514$r;L VJ&+Л9W,_Q3쇽}g'@c‚.ArZJBtJM+DZtGL1b,LյqZVY音Sa^ \ No newline at end of file diff --git a/.git_backup/objects/07/abe4e77831686f5ceb09a57b51c10577d69d3f b/.git_backup/objects/07/abe4e77831686f5ceb09a57b51c10577d69d3f deleted file mode 100644 index 490a617e..00000000 Binary files a/.git_backup/objects/07/abe4e77831686f5ceb09a57b51c10577d69d3f and /dev/null differ diff --git a/.git_backup/objects/07/b0ba9566ac9ac087970b5953af99ca2659d226 b/.git_backup/objects/07/b0ba9566ac9ac087970b5953af99ca2659d226 deleted file mode 100644 index 46978597..00000000 Binary files a/.git_backup/objects/07/b0ba9566ac9ac087970b5953af99ca2659d226 and /dev/null differ diff --git a/.git_backup/objects/07/b393bb7db14cef1e906ebe63cfbbe8cddc79d5 b/.git_backup/objects/07/b393bb7db14cef1e906ebe63cfbbe8cddc79d5 deleted file mode 100644 index 9b2c0120..00000000 Binary files a/.git_backup/objects/07/b393bb7db14cef1e906ebe63cfbbe8cddc79d5 and /dev/null differ diff --git a/.git_backup/objects/07/bf31f3e0665c517492be9bb339d6cb995085ea b/.git_backup/objects/07/bf31f3e0665c517492be9bb339d6cb995085ea deleted file mode 100644 index 197d514f..00000000 Binary files a/.git_backup/objects/07/bf31f3e0665c517492be9bb339d6cb995085ea and /dev/null differ diff --git a/.git_backup/objects/07/bf4760a26fd77af6a70e947ea17114b55743ea b/.git_backup/objects/07/bf4760a26fd77af6a70e947ea17114b55743ea deleted file mode 100644 index 23d06d18..00000000 Binary files a/.git_backup/objects/07/bf4760a26fd77af6a70e947ea17114b55743ea and /dev/null differ diff --git a/.git_backup/objects/07/cf839c23d44a5f3d133f161d74e5f348799528 b/.git_backup/objects/07/cf839c23d44a5f3d133f161d74e5f348799528 deleted file mode 100644 index 81d1a0c1..00000000 Binary files a/.git_backup/objects/07/cf839c23d44a5f3d133f161d74e5f348799528 and /dev/null differ diff --git a/.git_backup/objects/07/db1cd986a4c3b9929c01c1f22bcc3f562b1c16 b/.git_backup/objects/07/db1cd986a4c3b9929c01c1f22bcc3f562b1c16 deleted file mode 100644 index 55de4f41..00000000 Binary files a/.git_backup/objects/07/db1cd986a4c3b9929c01c1f22bcc3f562b1c16 and /dev/null differ diff --git a/.git_backup/objects/07/ddc3c653614661934f524dc1dbaee4922a0c8e b/.git_backup/objects/07/ddc3c653614661934f524dc1dbaee4922a0c8e deleted file mode 100644 index f2901461..00000000 Binary files a/.git_backup/objects/07/ddc3c653614661934f524dc1dbaee4922a0c8e and /dev/null differ diff --git a/.git_backup/objects/07/df5d69eec666731b2e8c1edd18eafff6d3c604 b/.git_backup/objects/07/df5d69eec666731b2e8c1edd18eafff6d3c604 deleted file mode 100644 index 78b2412a..00000000 --- a/.git_backup/objects/07/df5d69eec666731b2e8c1edd18eafff6d3c604 +++ /dev/null @@ -1 +0,0 @@ -xQKj0 ڧ^%)@/Mq_m2M# n-Av7BYs cO%jPQp*@Kh$)ə}Vq,-oDBu ^rϤ~נ|e4і4ҬlWHNz}03('ԣWm&!Ȏ%y`K8zOqbtU5tݜc/t>Ұؔ? dpB8hL,;*fC$&OBǺ \ No newline at end of file diff --git a/.git_backup/objects/07/e0d41ce349e71c0dbc18fe9f11f8b208350459 b/.git_backup/objects/07/e0d41ce349e71c0dbc18fe9f11f8b208350459 deleted file mode 100644 index 3e51601d..00000000 Binary files a/.git_backup/objects/07/e0d41ce349e71c0dbc18fe9f11f8b208350459 and /dev/null differ diff --git a/.git_backup/objects/07/e10e35b1517e0941f96e0ad99f81e8539d52f5 b/.git_backup/objects/07/e10e35b1517e0941f96e0ad99f81e8539d52f5 deleted file mode 100644 index 64c1ae86..00000000 Binary files a/.git_backup/objects/07/e10e35b1517e0941f96e0ad99f81e8539d52f5 and /dev/null differ diff --git a/.git_backup/objects/07/e6863201f886dc7bc65c3236fdc1c056cac2bf b/.git_backup/objects/07/e6863201f886dc7bc65c3236fdc1c056cac2bf deleted file mode 100644 index 17f1c907..00000000 Binary files a/.git_backup/objects/07/e6863201f886dc7bc65c3236fdc1c056cac2bf and /dev/null differ diff --git a/.git_backup/objects/07/e7dca456843004dcfd9023a800ea91d309814d b/.git_backup/objects/07/e7dca456843004dcfd9023a800ea91d309814d deleted file mode 100644 index 9eaf439d..00000000 Binary files a/.git_backup/objects/07/e7dca456843004dcfd9023a800ea91d309814d and /dev/null differ diff --git a/.git_backup/objects/07/f239b4aab7bed097c0c811f119dd7c774f75d0 b/.git_backup/objects/07/f239b4aab7bed097c0c811f119dd7c774f75d0 deleted file mode 100644 index 8642695b..00000000 Binary files a/.git_backup/objects/07/f239b4aab7bed097c0c811f119dd7c774f75d0 and /dev/null differ diff --git a/.git_backup/objects/07/f6193b0fd00f3d86a82d800e544bb3755c998e b/.git_backup/objects/07/f6193b0fd00f3d86a82d800e544bb3755c998e deleted file mode 100644 index 4993c0a0..00000000 Binary files a/.git_backup/objects/07/f6193b0fd00f3d86a82d800e544bb3755c998e and /dev/null differ diff --git a/.git_backup/objects/07/fa10cd7fc69ef822e417162bbd8e9d2101b91f b/.git_backup/objects/07/fa10cd7fc69ef822e417162bbd8e9d2101b91f deleted file mode 100644 index f4b684e0..00000000 Binary files a/.git_backup/objects/07/fa10cd7fc69ef822e417162bbd8e9d2101b91f and /dev/null differ diff --git a/.git_backup/objects/08/0172bb4e62f97a726bc63d6c613e10d141097f b/.git_backup/objects/08/0172bb4e62f97a726bc63d6c613e10d141097f deleted file mode 100644 index 14d8a01a..00000000 Binary files a/.git_backup/objects/08/0172bb4e62f97a726bc63d6c613e10d141097f and /dev/null differ diff --git a/.git_backup/objects/08/07846841b0b17fb4709f3c4693013fa369e6ce b/.git_backup/objects/08/07846841b0b17fb4709f3c4693013fa369e6ce deleted file mode 100644 index 33e20c5c..00000000 Binary files a/.git_backup/objects/08/07846841b0b17fb4709f3c4693013fa369e6ce and /dev/null differ diff --git a/.git_backup/objects/08/09033b029344282cd87db77161a676b92ff3f2 b/.git_backup/objects/08/09033b029344282cd87db77161a676b92ff3f2 deleted file mode 100644 index 34f2e23d..00000000 Binary files a/.git_backup/objects/08/09033b029344282cd87db77161a676b92ff3f2 and /dev/null differ diff --git a/.git_backup/objects/08/0af7429ff9587fd64ef6c6609d3b62e7a051f7 b/.git_backup/objects/08/0af7429ff9587fd64ef6c6609d3b62e7a051f7 deleted file mode 100644 index a55bee48..00000000 Binary files a/.git_backup/objects/08/0af7429ff9587fd64ef6c6609d3b62e7a051f7 and /dev/null differ diff --git a/.git_backup/objects/08/0b4966aceb490be21208857b6165f5904b4d4d b/.git_backup/objects/08/0b4966aceb490be21208857b6165f5904b4d4d deleted file mode 100644 index a1af7e9a..00000000 Binary files a/.git_backup/objects/08/0b4966aceb490be21208857b6165f5904b4d4d and /dev/null differ diff --git a/.git_backup/objects/08/0ca180337f064545bac4b365d722c1f46042cb b/.git_backup/objects/08/0ca180337f064545bac4b365d722c1f46042cb deleted file mode 100644 index 1af45996..00000000 Binary files a/.git_backup/objects/08/0ca180337f064545bac4b365d722c1f46042cb and /dev/null differ diff --git a/.git_backup/objects/08/0fee97dbfcb5e46d976ef1b07ad0f595456cf2 b/.git_backup/objects/08/0fee97dbfcb5e46d976ef1b07ad0f595456cf2 deleted file mode 100644 index d9b382d5..00000000 Binary files a/.git_backup/objects/08/0fee97dbfcb5e46d976ef1b07ad0f595456cf2 and /dev/null differ diff --git a/.git_backup/objects/08/17ae58c2140e912eaf3d61e040050016dede54 b/.git_backup/objects/08/17ae58c2140e912eaf3d61e040050016dede54 deleted file mode 100644 index ae2537ba..00000000 --- a/.git_backup/objects/08/17ae58c2140e912eaf3d61e040050016dede54 +++ /dev/null @@ -1,2 +0,0 @@ -xU09_1Dq$N[*UB!8lA}q6T ϼy&~XN>d*Aht.vJjHRA\Z"YZqvq>pJ`?.W e"1ac`4 f%;'[@Ho~  4w.'DԈ=Gh^jS, B%אC+D×\vw4&F5E^05؆/Jf5dfch^İQcd jXEO e<2/IÔ -BOڤ. za3ȔPK,_E6On*sO2p5bH'b R7h4)"2#:] {`gGJq~١RY)0MXlq3B| 7OmZ7e -xn<ŋ̷mSOupwv8!tNJvw,j -nDwAAMPk/:!`}Ktv(\ѶK}FzƯY:;wkG La \ No newline at end of file diff --git a/.git_backup/objects/08/1b7fa7f022de742256b3af432d209ea77e0593 b/.git_backup/objects/08/1b7fa7f022de742256b3af432d209ea77e0593 deleted file mode 100644 index a0759a27..00000000 Binary files a/.git_backup/objects/08/1b7fa7f022de742256b3af432d209ea77e0593 and /dev/null differ diff --git a/.git_backup/objects/08/249cc393d18555df8d63c983de8055ce26ae86 b/.git_backup/objects/08/249cc393d18555df8d63c983de8055ce26ae86 deleted file mode 100644 index 31e40ab6..00000000 Binary files a/.git_backup/objects/08/249cc393d18555df8d63c983de8055ce26ae86 and /dev/null differ diff --git a/.git_backup/objects/08/293d0bdf27d3bee6ad398e0c8b8464f346b129 b/.git_backup/objects/08/293d0bdf27d3bee6ad398e0c8b8464f346b129 deleted file mode 100644 index 5aca6439..00000000 Binary files a/.git_backup/objects/08/293d0bdf27d3bee6ad398e0c8b8464f346b129 and /dev/null differ diff --git a/.git_backup/objects/08/2ebe8f221d4e7e980e4d321c0a0c5da033b124 b/.git_backup/objects/08/2ebe8f221d4e7e980e4d321c0a0c5da033b124 deleted file mode 100644 index f93f98b8..00000000 Binary files a/.git_backup/objects/08/2ebe8f221d4e7e980e4d321c0a0c5da033b124 and /dev/null differ diff --git a/.git_backup/objects/08/366523e76cc482e19c87b89cc6db57f1c346e4 b/.git_backup/objects/08/366523e76cc482e19c87b89cc6db57f1c346e4 deleted file mode 100644 index da40bf46..00000000 Binary files a/.git_backup/objects/08/366523e76cc482e19c87b89cc6db57f1c346e4 and /dev/null differ diff --git a/.git_backup/objects/08/3b55a09dc9b732b0d2b4d756da6a0c04e705d2 b/.git_backup/objects/08/3b55a09dc9b732b0d2b4d756da6a0c04e705d2 deleted file mode 100644 index f36979a5..00000000 Binary files a/.git_backup/objects/08/3b55a09dc9b732b0d2b4d756da6a0c04e705d2 and /dev/null differ diff --git a/.git_backup/objects/08/469e7401a93213fcdbba637a5eb38e5400988e b/.git_backup/objects/08/469e7401a93213fcdbba637a5eb38e5400988e deleted file mode 100644 index 8c44e2b0..00000000 Binary files a/.git_backup/objects/08/469e7401a93213fcdbba637a5eb38e5400988e and /dev/null differ diff --git a/.git_backup/objects/08/48dea1753b7426a16c13eb4698f040373cb307 b/.git_backup/objects/08/48dea1753b7426a16c13eb4698f040373cb307 deleted file mode 100644 index bd6d16e3..00000000 Binary files a/.git_backup/objects/08/48dea1753b7426a16c13eb4698f040373cb307 and /dev/null differ diff --git a/.git_backup/objects/08/519c9facfb82faab6672b5d350d1ea57bb85f8 b/.git_backup/objects/08/519c9facfb82faab6672b5d350d1ea57bb85f8 deleted file mode 100644 index 76ae2298..00000000 Binary files a/.git_backup/objects/08/519c9facfb82faab6672b5d350d1ea57bb85f8 and /dev/null differ diff --git a/.git_backup/objects/08/52e0b1bf8313eacac1562115ab2c34fb46618a b/.git_backup/objects/08/52e0b1bf8313eacac1562115ab2c34fb46618a deleted file mode 100644 index 157842cd..00000000 Binary files a/.git_backup/objects/08/52e0b1bf8313eacac1562115ab2c34fb46618a and /dev/null differ diff --git a/.git_backup/objects/08/587521e892bed1e41d81fefa2fe2bf460e2dfa b/.git_backup/objects/08/587521e892bed1e41d81fefa2fe2bf460e2dfa deleted file mode 100644 index 250d0d57..00000000 Binary files a/.git_backup/objects/08/587521e892bed1e41d81fefa2fe2bf460e2dfa and /dev/null differ diff --git a/.git_backup/objects/08/60ef6b205da5780b52863f6ff323b6699b417d b/.git_backup/objects/08/60ef6b205da5780b52863f6ff323b6699b417d deleted file mode 100644 index 1ab1e0cc..00000000 Binary files a/.git_backup/objects/08/60ef6b205da5780b52863f6ff323b6699b417d and /dev/null differ diff --git a/.git_backup/objects/08/6b64dd3817c0c1a194ffc1959eeffdd2695bef b/.git_backup/objects/08/6b64dd3817c0c1a194ffc1959eeffdd2695bef deleted file mode 100644 index 1aefcf5c..00000000 --- a/.git_backup/objects/08/6b64dd3817c0c1a194ffc1959eeffdd2695bef +++ /dev/null @@ -1,2 +0,0 @@ -xe -@DC*K ^r1 mD{$mfy^,NKCD\]M%<(풻K|eYNy%uV"s͏Wp1)&X4?AR"A啑A)t;Nwhi鰎jK \ No newline at end of file diff --git a/.git_backup/objects/08/6ea2b014b09cd7219d0112069e816aa605bb8c b/.git_backup/objects/08/6ea2b014b09cd7219d0112069e816aa605bb8c deleted file mode 100644 index 53f3c00c..00000000 Binary files a/.git_backup/objects/08/6ea2b014b09cd7219d0112069e816aa605bb8c and /dev/null differ diff --git a/.git_backup/objects/08/79088e14c2af9224a6cde62d220539ba9c34e1 b/.git_backup/objects/08/79088e14c2af9224a6cde62d220539ba9c34e1 deleted file mode 100644 index 1357b425..00000000 Binary files a/.git_backup/objects/08/79088e14c2af9224a6cde62d220539ba9c34e1 and /dev/null differ diff --git a/.git_backup/objects/08/7ccbef7b778de686ade9fccca6424cd910ba37 b/.git_backup/objects/08/7ccbef7b778de686ade9fccca6424cd910ba37 deleted file mode 100644 index 3d22f5ed..00000000 Binary files a/.git_backup/objects/08/7ccbef7b778de686ade9fccca6424cd910ba37 and /dev/null differ diff --git a/.git_backup/objects/08/8163624dcdcbb29dfd24e8d50c388a15a13456 b/.git_backup/objects/08/8163624dcdcbb29dfd24e8d50c388a15a13456 deleted file mode 100644 index 7a30f6ed..00000000 Binary files a/.git_backup/objects/08/8163624dcdcbb29dfd24e8d50c388a15a13456 and /dev/null differ diff --git a/.git_backup/objects/08/81c8c0e1e0f55ca788ce8399884b34988256e7 b/.git_backup/objects/08/81c8c0e1e0f55ca788ce8399884b34988256e7 deleted file mode 100644 index 3f03512f..00000000 Binary files a/.git_backup/objects/08/81c8c0e1e0f55ca788ce8399884b34988256e7 and /dev/null differ diff --git a/.git_backup/objects/08/864aac97130a494f2612b060774ad0dfad3e34 b/.git_backup/objects/08/864aac97130a494f2612b060774ad0dfad3e34 deleted file mode 100644 index 9c8ff1f7..00000000 Binary files a/.git_backup/objects/08/864aac97130a494f2612b060774ad0dfad3e34 and /dev/null differ diff --git a/.git_backup/objects/08/8e10b0ba0704835323547f437e9fcc21741d91 b/.git_backup/objects/08/8e10b0ba0704835323547f437e9fcc21741d91 deleted file mode 100644 index d81d6e0d..00000000 Binary files a/.git_backup/objects/08/8e10b0ba0704835323547f437e9fcc21741d91 and /dev/null differ diff --git a/.git_backup/objects/08/9432854af2f942870f1df57192556d9088929a b/.git_backup/objects/08/9432854af2f942870f1df57192556d9088929a deleted file mode 100644 index 828b7186..00000000 --- a/.git_backup/objects/08/9432854af2f942870f1df57192556d9088929a +++ /dev/null @@ -1 +0,0 @@ -xE=0 F9wL9M"IC%&˿yJ:rZ :"X5P;Hb"*Pcu3rAL4o*XڡXťcHJm?;AEWĭL=.UKshټ 9a8,cb<"Z \ No newline at end of file diff --git a/.git_backup/objects/08/9aab65f514820d0e381517e72f151b12979a0c b/.git_backup/objects/08/9aab65f514820d0e381517e72f151b12979a0c deleted file mode 100644 index b65c9cc9..00000000 Binary files a/.git_backup/objects/08/9aab65f514820d0e381517e72f151b12979a0c and /dev/null differ diff --git a/.git_backup/objects/08/9ea86eeea3ce396d164c10443ea8a0c5f4ee31 b/.git_backup/objects/08/9ea86eeea3ce396d164c10443ea8a0c5f4ee31 deleted file mode 100644 index a6fca6d5..00000000 Binary files a/.git_backup/objects/08/9ea86eeea3ce396d164c10443ea8a0c5f4ee31 and /dev/null differ diff --git a/.git_backup/objects/08/a0be871a11f23a2f4761f008417b4c35ae6dd8 b/.git_backup/objects/08/a0be871a11f23a2f4761f008417b4c35ae6dd8 deleted file mode 100644 index f54e7e6e..00000000 Binary files a/.git_backup/objects/08/a0be871a11f23a2f4761f008417b4c35ae6dd8 and /dev/null differ diff --git a/.git_backup/objects/08/aa3cec792274887ce4ecc610282958d28ad428 b/.git_backup/objects/08/aa3cec792274887ce4ecc610282958d28ad428 deleted file mode 100644 index b76ca5c6..00000000 Binary files a/.git_backup/objects/08/aa3cec792274887ce4ecc610282958d28ad428 and /dev/null differ diff --git a/.git_backup/objects/08/ae642cdbff4c54da5908c6318d8a810462dcd4 b/.git_backup/objects/08/ae642cdbff4c54da5908c6318d8a810462dcd4 deleted file mode 100644 index 71c5a2f2..00000000 Binary files a/.git_backup/objects/08/ae642cdbff4c54da5908c6318d8a810462dcd4 and /dev/null differ diff --git a/.git_backup/objects/08/b27b0f8744546767b8fbdbd146d915eda9593b b/.git_backup/objects/08/b27b0f8744546767b8fbdbd146d915eda9593b deleted file mode 100644 index 01c805ee..00000000 Binary files a/.git_backup/objects/08/b27b0f8744546767b8fbdbd146d915eda9593b and /dev/null differ diff --git a/.git_backup/objects/08/b90dc47a69a4915bba2ec5dd5593e455e79677 b/.git_backup/objects/08/b90dc47a69a4915bba2ec5dd5593e455e79677 deleted file mode 100644 index 6259e07a..00000000 Binary files a/.git_backup/objects/08/b90dc47a69a4915bba2ec5dd5593e455e79677 and /dev/null differ diff --git a/.git_backup/objects/08/bfc74e0ef8dcfccfd2496ccc91cde128205b85 b/.git_backup/objects/08/bfc74e0ef8dcfccfd2496ccc91cde128205b85 deleted file mode 100644 index 805869ca..00000000 Binary files a/.git_backup/objects/08/bfc74e0ef8dcfccfd2496ccc91cde128205b85 and /dev/null differ diff --git a/.git_backup/objects/08/c34f9c0104b8c0965a0cf734921ac980954e56 b/.git_backup/objects/08/c34f9c0104b8c0965a0cf734921ac980954e56 deleted file mode 100644 index a571e1f9..00000000 Binary files a/.git_backup/objects/08/c34f9c0104b8c0965a0cf734921ac980954e56 and /dev/null differ diff --git a/.git_backup/objects/08/c5ea706111aa77605941d8e5ad14d610fce4fc b/.git_backup/objects/08/c5ea706111aa77605941d8e5ad14d610fce4fc deleted file mode 100644 index 65f28dfc..00000000 Binary files a/.git_backup/objects/08/c5ea706111aa77605941d8e5ad14d610fce4fc and /dev/null differ diff --git a/.git_backup/objects/08/c7a33e1d920f065cbb581a916d75e0af52c06c b/.git_backup/objects/08/c7a33e1d920f065cbb581a916d75e0af52c06c deleted file mode 100644 index c6dffe51..00000000 Binary files a/.git_backup/objects/08/c7a33e1d920f065cbb581a916d75e0af52c06c and /dev/null differ diff --git a/.git_backup/objects/08/c8e3160aa00bdf1c91d7e6b1ced48befccf716 b/.git_backup/objects/08/c8e3160aa00bdf1c91d7e6b1ced48befccf716 deleted file mode 100644 index 67831097..00000000 Binary files a/.git_backup/objects/08/c8e3160aa00bdf1c91d7e6b1ced48befccf716 and /dev/null differ diff --git a/.git_backup/objects/08/cb12a1373bb855554eaa3fe3ec2b76f99d2395 b/.git_backup/objects/08/cb12a1373bb855554eaa3fe3ec2b76f99d2395 deleted file mode 100644 index 2dffb0d9..00000000 Binary files a/.git_backup/objects/08/cb12a1373bb855554eaa3fe3ec2b76f99d2395 and /dev/null differ diff --git a/.git_backup/objects/08/d518b151425f85458727fbf69f6e601f12be86 b/.git_backup/objects/08/d518b151425f85458727fbf69f6e601f12be86 deleted file mode 100644 index 752a1ce8..00000000 Binary files a/.git_backup/objects/08/d518b151425f85458727fbf69f6e601f12be86 and /dev/null differ diff --git a/.git_backup/objects/08/d97056a6e9f651fbc2562a0100510a96573587 b/.git_backup/objects/08/d97056a6e9f651fbc2562a0100510a96573587 deleted file mode 100644 index 4a37c952..00000000 Binary files a/.git_backup/objects/08/d97056a6e9f651fbc2562a0100510a96573587 and /dev/null differ diff --git a/.git_backup/objects/08/da18cf268fbfa636e9df656ec75727ec8ac1b8 b/.git_backup/objects/08/da18cf268fbfa636e9df656ec75727ec8ac1b8 deleted file mode 100644 index 06cdebf6..00000000 Binary files a/.git_backup/objects/08/da18cf268fbfa636e9df656ec75727ec8ac1b8 and /dev/null differ diff --git a/.git_backup/objects/08/dbc1345b9d4c6daf822f12102fbe9937d11dba b/.git_backup/objects/08/dbc1345b9d4c6daf822f12102fbe9937d11dba deleted file mode 100644 index a6aa04b6..00000000 Binary files a/.git_backup/objects/08/dbc1345b9d4c6daf822f12102fbe9937d11dba and /dev/null differ diff --git a/.git_backup/objects/08/ddf685698cce40687f99aa3b3d51cd2c3ea018 b/.git_backup/objects/08/ddf685698cce40687f99aa3b3d51cd2c3ea018 deleted file mode 100644 index 28b6fb58..00000000 Binary files a/.git_backup/objects/08/ddf685698cce40687f99aa3b3d51cd2c3ea018 and /dev/null differ diff --git a/.git_backup/objects/08/e31f9d0fb157d4b730985f5cc94c1e49da5fb5 b/.git_backup/objects/08/e31f9d0fb157d4b730985f5cc94c1e49da5fb5 deleted file mode 100644 index b092d7c1..00000000 Binary files a/.git_backup/objects/08/e31f9d0fb157d4b730985f5cc94c1e49da5fb5 and /dev/null differ diff --git a/.git_backup/objects/08/e36c1d780f407e5d4e5edebb9a394533097721 b/.git_backup/objects/08/e36c1d780f407e5d4e5edebb9a394533097721 deleted file mode 100644 index bde812d5..00000000 Binary files a/.git_backup/objects/08/e36c1d780f407e5d4e5edebb9a394533097721 and /dev/null differ diff --git a/.git_backup/objects/08/eafce103cad921befedc2142e4f53b45a62f4c b/.git_backup/objects/08/eafce103cad921befedc2142e4f53b45a62f4c deleted file mode 100644 index fc49aecf..00000000 Binary files a/.git_backup/objects/08/eafce103cad921befedc2142e4f53b45a62f4c and /dev/null differ diff --git a/.git_backup/objects/08/ee1d708cead1832931e7ee07c7872302989714 b/.git_backup/objects/08/ee1d708cead1832931e7ee07c7872302989714 deleted file mode 100644 index 21c55f61..00000000 Binary files a/.git_backup/objects/08/ee1d708cead1832931e7ee07c7872302989714 and /dev/null differ diff --git a/.git_backup/objects/09/02308fb6af6802ba216e3aeec499d0ddfb1407 b/.git_backup/objects/09/02308fb6af6802ba216e3aeec499d0ddfb1407 deleted file mode 100644 index 3bdc7d68..00000000 Binary files a/.git_backup/objects/09/02308fb6af6802ba216e3aeec499d0ddfb1407 and /dev/null differ diff --git a/.git_backup/objects/09/067e7eba6e5728378784e9048ecab396c47cdc b/.git_backup/objects/09/067e7eba6e5728378784e9048ecab396c47cdc deleted file mode 100644 index c644063e..00000000 Binary files a/.git_backup/objects/09/067e7eba6e5728378784e9048ecab396c47cdc and /dev/null differ diff --git a/.git_backup/objects/09/109644f601a55e421711a5bee6e910854efb72 b/.git_backup/objects/09/109644f601a55e421711a5bee6e910854efb72 deleted file mode 100644 index d78e40b8..00000000 Binary files a/.git_backup/objects/09/109644f601a55e421711a5bee6e910854efb72 and /dev/null differ diff --git a/.git_backup/objects/09/1b47619a4639c02befef5838c1551041c78008 b/.git_backup/objects/09/1b47619a4639c02befef5838c1551041c78008 deleted file mode 100644 index fd1706d8..00000000 Binary files a/.git_backup/objects/09/1b47619a4639c02befef5838c1551041c78008 and /dev/null differ diff --git a/.git_backup/objects/09/1bd6e785225773e71a01fa1eff86ddcf8bf92b b/.git_backup/objects/09/1bd6e785225773e71a01fa1eff86ddcf8bf92b deleted file mode 100644 index 3408f719..00000000 Binary files a/.git_backup/objects/09/1bd6e785225773e71a01fa1eff86ddcf8bf92b and /dev/null differ diff --git a/.git_backup/objects/09/213b9e37aa21c448f774e9512b298f94bf495a b/.git_backup/objects/09/213b9e37aa21c448f774e9512b298f94bf495a deleted file mode 100644 index 6dda296e..00000000 Binary files a/.git_backup/objects/09/213b9e37aa21c448f774e9512b298f94bf495a and /dev/null differ diff --git a/.git_backup/objects/09/30038f4b92f9be04d27ed2c11a943a02a3c01a b/.git_backup/objects/09/30038f4b92f9be04d27ed2c11a943a02a3c01a deleted file mode 100644 index 65efcbde..00000000 Binary files a/.git_backup/objects/09/30038f4b92f9be04d27ed2c11a943a02a3c01a and /dev/null differ diff --git a/.git_backup/objects/09/33a67efa0976f49b14e07890045ac2a4a69a9f b/.git_backup/objects/09/33a67efa0976f49b14e07890045ac2a4a69a9f deleted file mode 100644 index 3634e72c..00000000 Binary files a/.git_backup/objects/09/33a67efa0976f49b14e07890045ac2a4a69a9f and /dev/null differ diff --git a/.git_backup/objects/09/4ac5094a842866666726b358d2c66bf927c9d2 b/.git_backup/objects/09/4ac5094a842866666726b358d2c66bf927c9d2 deleted file mode 100644 index 9735b3cb..00000000 Binary files a/.git_backup/objects/09/4ac5094a842866666726b358d2c66bf927c9d2 and /dev/null differ diff --git a/.git_backup/objects/09/4fc77173b68102c7ad4d2e67046ca926b4e4c0 b/.git_backup/objects/09/4fc77173b68102c7ad4d2e67046ca926b4e4c0 deleted file mode 100644 index 29fbf5a7..00000000 Binary files a/.git_backup/objects/09/4fc77173b68102c7ad4d2e67046ca926b4e4c0 and /dev/null differ diff --git a/.git_backup/objects/09/55e6f937339ea5956c72dbb630d12670358626 b/.git_backup/objects/09/55e6f937339ea5956c72dbb630d12670358626 deleted file mode 100644 index 8966486b..00000000 Binary files a/.git_backup/objects/09/55e6f937339ea5956c72dbb630d12670358626 and /dev/null differ diff --git a/.git_backup/objects/09/5643436a2d6b5f95c69bca2b63f7b329dd528c b/.git_backup/objects/09/5643436a2d6b5f95c69bca2b63f7b329dd528c deleted file mode 100644 index a2ea38ee..00000000 Binary files a/.git_backup/objects/09/5643436a2d6b5f95c69bca2b63f7b329dd528c and /dev/null differ diff --git a/.git_backup/objects/09/56f4b61ac34b51a3e6ef739b3a1c3a9ab5f9b3 b/.git_backup/objects/09/56f4b61ac34b51a3e6ef739b3a1c3a9ab5f9b3 deleted file mode 100644 index 5ff28553..00000000 Binary files a/.git_backup/objects/09/56f4b61ac34b51a3e6ef739b3a1c3a9ab5f9b3 and /dev/null differ diff --git a/.git_backup/objects/09/5b77088edca05e8fcf23f3b0f33cec0b3c48c5 b/.git_backup/objects/09/5b77088edca05e8fcf23f3b0f33cec0b3c48c5 deleted file mode 100644 index 004cc247..00000000 Binary files a/.git_backup/objects/09/5b77088edca05e8fcf23f3b0f33cec0b3c48c5 and /dev/null differ diff --git a/.git_backup/objects/09/6d9523610b9e5e26d637c97a6823ce3becca47 b/.git_backup/objects/09/6d9523610b9e5e26d637c97a6823ce3becca47 deleted file mode 100644 index 553a887e..00000000 Binary files a/.git_backup/objects/09/6d9523610b9e5e26d637c97a6823ce3becca47 and /dev/null differ diff --git a/.git_backup/objects/09/6ed11c2d853a6a41bcec9325a4e52bc2b70cbd b/.git_backup/objects/09/6ed11c2d853a6a41bcec9325a4e52bc2b70cbd deleted file mode 100644 index 5f1a3803..00000000 Binary files a/.git_backup/objects/09/6ed11c2d853a6a41bcec9325a4e52bc2b70cbd and /dev/null differ diff --git a/.git_backup/objects/09/706c5613b37cc00f84b402dd619e3d56aafe6f b/.git_backup/objects/09/706c5613b37cc00f84b402dd619e3d56aafe6f deleted file mode 100644 index ce433737..00000000 Binary files a/.git_backup/objects/09/706c5613b37cc00f84b402dd619e3d56aafe6f and /dev/null differ diff --git a/.git_backup/objects/09/70a3148fe386f1f34d2e25607c1b6d374edff3 b/.git_backup/objects/09/70a3148fe386f1f34d2e25607c1b6d374edff3 deleted file mode 100644 index ef17ae99..00000000 Binary files a/.git_backup/objects/09/70a3148fe386f1f34d2e25607c1b6d374edff3 and /dev/null differ diff --git a/.git_backup/objects/09/76e0c86b417db5f3a79c4641293865c926e2d3 b/.git_backup/objects/09/76e0c86b417db5f3a79c4641293865c926e2d3 deleted file mode 100644 index cac449ba..00000000 Binary files a/.git_backup/objects/09/76e0c86b417db5f3a79c4641293865c926e2d3 and /dev/null differ diff --git a/.git_backup/objects/09/8997e7dd972ca4acedc535c4a645ee966baa33 b/.git_backup/objects/09/8997e7dd972ca4acedc535c4a645ee966baa33 deleted file mode 100644 index 0e427f69..00000000 Binary files a/.git_backup/objects/09/8997e7dd972ca4acedc535c4a645ee966baa33 and /dev/null differ diff --git a/.git_backup/objects/09/8c6a0b0afc2c3ef3a6937104d270074ff2a9b6 b/.git_backup/objects/09/8c6a0b0afc2c3ef3a6937104d270074ff2a9b6 deleted file mode 100644 index f696ee4e..00000000 Binary files a/.git_backup/objects/09/8c6a0b0afc2c3ef3a6937104d270074ff2a9b6 and /dev/null differ diff --git a/.git_backup/objects/09/9418e67a81ab0c7a723d18322d2160a092920a b/.git_backup/objects/09/9418e67a81ab0c7a723d18322d2160a092920a deleted file mode 100644 index 26a15f66..00000000 Binary files a/.git_backup/objects/09/9418e67a81ab0c7a723d18322d2160a092920a and /dev/null differ diff --git a/.git_backup/objects/09/98e392344bdfc7bc019e130c69f18bc10b7095 b/.git_backup/objects/09/98e392344bdfc7bc019e130c69f18bc10b7095 deleted file mode 100644 index ccc36d25..00000000 Binary files a/.git_backup/objects/09/98e392344bdfc7bc019e130c69f18bc10b7095 and /dev/null differ diff --git a/.git_backup/objects/09/9e5c9324603e05eee265387865292e82d01476 b/.git_backup/objects/09/9e5c9324603e05eee265387865292e82d01476 deleted file mode 100644 index 784fd00c..00000000 Binary files a/.git_backup/objects/09/9e5c9324603e05eee265387865292e82d01476 and /dev/null differ diff --git a/.git_backup/objects/09/a0d326b983b59b58f84b00e55fbe6909a23793 b/.git_backup/objects/09/a0d326b983b59b58f84b00e55fbe6909a23793 deleted file mode 100644 index e3e23727..00000000 Binary files a/.git_backup/objects/09/a0d326b983b59b58f84b00e55fbe6909a23793 and /dev/null differ diff --git a/.git_backup/objects/09/a734284a76e806e4b71ce9a83d06e05a29a5e7 b/.git_backup/objects/09/a734284a76e806e4b71ce9a83d06e05a29a5e7 deleted file mode 100644 index 14a37a26..00000000 Binary files a/.git_backup/objects/09/a734284a76e806e4b71ce9a83d06e05a29a5e7 and /dev/null differ diff --git a/.git_backup/objects/09/a7f41cc063a86d0938832658e6588a13caec2f b/.git_backup/objects/09/a7f41cc063a86d0938832658e6588a13caec2f deleted file mode 100644 index abebd880..00000000 Binary files a/.git_backup/objects/09/a7f41cc063a86d0938832658e6588a13caec2f and /dev/null differ diff --git a/.git_backup/objects/09/ab6c7dc95b87f416863ff4d1db58da864d3627 b/.git_backup/objects/09/ab6c7dc95b87f416863ff4d1db58da864d3627 deleted file mode 100644 index 2d257a24..00000000 Binary files a/.git_backup/objects/09/ab6c7dc95b87f416863ff4d1db58da864d3627 and /dev/null differ diff --git a/.git_backup/objects/09/abcec54bc4ea09982a1bb7925f5d7234c86ee2 b/.git_backup/objects/09/abcec54bc4ea09982a1bb7925f5d7234c86ee2 deleted file mode 100644 index b5378552..00000000 Binary files a/.git_backup/objects/09/abcec54bc4ea09982a1bb7925f5d7234c86ee2 and /dev/null differ diff --git a/.git_backup/objects/09/c1fad40c54154069c5e6f954aeeb58a3167eb2 b/.git_backup/objects/09/c1fad40c54154069c5e6f954aeeb58a3167eb2 deleted file mode 100644 index 0b28dff9..00000000 Binary files a/.git_backup/objects/09/c1fad40c54154069c5e6f954aeeb58a3167eb2 and /dev/null differ diff --git a/.git_backup/objects/09/c46e0b4bc40ce9471ab37dffc4b83bff351059 b/.git_backup/objects/09/c46e0b4bc40ce9471ab37dffc4b83bff351059 deleted file mode 100644 index 9dbe0f8e..00000000 Binary files a/.git_backup/objects/09/c46e0b4bc40ce9471ab37dffc4b83bff351059 and /dev/null differ diff --git a/.git_backup/objects/09/c513ac239a3c5fc56cc814c41f491e1c7a1b71 b/.git_backup/objects/09/c513ac239a3c5fc56cc814c41f491e1c7a1b71 deleted file mode 100644 index cf90900a..00000000 Binary files a/.git_backup/objects/09/c513ac239a3c5fc56cc814c41f491e1c7a1b71 and /dev/null differ diff --git a/.git_backup/objects/09/c7f0635af3e0f8bd0127e44d91288c30a2975e b/.git_backup/objects/09/c7f0635af3e0f8bd0127e44d91288c30a2975e deleted file mode 100644 index 4bab7d54..00000000 Binary files a/.git_backup/objects/09/c7f0635af3e0f8bd0127e44d91288c30a2975e and /dev/null differ diff --git a/.git_backup/objects/09/cc79f72f074a80d7e864a9e9ed06a653784a75 b/.git_backup/objects/09/cc79f72f074a80d7e864a9e9ed06a653784a75 deleted file mode 100644 index 11d6e0bd..00000000 Binary files a/.git_backup/objects/09/cc79f72f074a80d7e864a9e9ed06a653784a75 and /dev/null differ diff --git a/.git_backup/objects/09/d965ef1f32268550bbf35a17f11529545054ed b/.git_backup/objects/09/d965ef1f32268550bbf35a17f11529545054ed deleted file mode 100644 index 9123aa5d..00000000 --- a/.git_backup/objects/09/d965ef1f32268550bbf35a17f11529545054ed +++ /dev/null @@ -1,3 +0,0 @@ -xeRn0 Y_A8 Cn=ibӉRY(yM~8 !GGrg3} |&I|AVGSH8\Ygq{`\1&zj/Z 똨) eD۩ Q+xyq*L5XCAKdh#c'rSQ7r4BȪp ;تyquY6 ۫&{Lِd)뙤IAvʅXSOU\,% 2ηƿ\prQ͵C%J,W); شa!'&) +^D(e&#sy}D>{֩9Tnfjl$ Bjjj͗QoMLл2@r蚍- 7w5ogZрRi"xIiT - -^" \ No newline at end of file diff --git a/.git_backup/objects/09/d992b9b2ff9bf3a3e9c1fec989e5e9e46b1286 b/.git_backup/objects/09/d992b9b2ff9bf3a3e9c1fec989e5e9e46b1286 deleted file mode 100644 index 0bca9ba3..00000000 Binary files a/.git_backup/objects/09/d992b9b2ff9bf3a3e9c1fec989e5e9e46b1286 and /dev/null differ diff --git a/.git_backup/objects/09/dc39e0205e3e1621e5191271909e71931ab776 b/.git_backup/objects/09/dc39e0205e3e1621e5191271909e71931ab776 deleted file mode 100644 index 44ad8b21..00000000 Binary files a/.git_backup/objects/09/dc39e0205e3e1621e5191271909e71931ab776 and /dev/null differ diff --git a/.git_backup/objects/09/e6483bf5adb89fee267a153c82ef76ccb1e12a b/.git_backup/objects/09/e6483bf5adb89fee267a153c82ef76ccb1e12a deleted file mode 100644 index 43f28e50..00000000 Binary files a/.git_backup/objects/09/e6483bf5adb89fee267a153c82ef76ccb1e12a and /dev/null differ diff --git a/.git_backup/objects/09/eae349cde001cb270c6fe527a361b297932f98 b/.git_backup/objects/09/eae349cde001cb270c6fe527a361b297932f98 deleted file mode 100644 index 61d97d7e..00000000 Binary files a/.git_backup/objects/09/eae349cde001cb270c6fe527a361b297932f98 and /dev/null differ diff --git a/.git_backup/objects/09/edbcb6cab48c5af7345e2ae2ce99fd603231cd b/.git_backup/objects/09/edbcb6cab48c5af7345e2ae2ce99fd603231cd deleted file mode 100644 index 47ab57b8..00000000 --- a/.git_backup/objects/09/edbcb6cab48c5af7345e2ae2ce99fd603231cd +++ /dev/null @@ -1,2 +0,0 @@ -xMj0)tC0Yt"a$;+M+GFh47~q&:i QƁu8j E7m/R`R| _`RKYE #u -&Tibtu],1?0@d:ӫw:s pm6)ߊ+'= Ui,ux&pZi3V¥v:G*Jz c*512BiơjH 4oLنK* "pi} \ No newline at end of file diff --git a/.git_backup/objects/0a/7bc739c54b2f4327667328ed6b8b6c7376c269 b/.git_backup/objects/0a/7bc739c54b2f4327667328ed6b8b6c7376c269 deleted file mode 100644 index 16c8892a..00000000 Binary files a/.git_backup/objects/0a/7bc739c54b2f4327667328ed6b8b6c7376c269 and /dev/null differ diff --git a/.git_backup/objects/0a/8121dc14b83b0914ed395ce03b952b4c11608e b/.git_backup/objects/0a/8121dc14b83b0914ed395ce03b952b4c11608e deleted file mode 100644 index 7a1b61b3..00000000 Binary files a/.git_backup/objects/0a/8121dc14b83b0914ed395ce03b952b4c11608e and /dev/null differ diff --git a/.git_backup/objects/0a/874cd06375a5b25372686984dba17e93a6244d b/.git_backup/objects/0a/874cd06375a5b25372686984dba17e93a6244d deleted file mode 100644 index c421528e..00000000 Binary files a/.git_backup/objects/0a/874cd06375a5b25372686984dba17e93a6244d and /dev/null differ diff --git a/.git_backup/objects/0a/8c10e796af45c9b187974e5410cb89dd5d7cec b/.git_backup/objects/0a/8c10e796af45c9b187974e5410cb89dd5d7cec deleted file mode 100644 index 60c42c5c..00000000 Binary files a/.git_backup/objects/0a/8c10e796af45c9b187974e5410cb89dd5d7cec and /dev/null differ diff --git a/.git_backup/objects/0a/8e350a334bbee29b155fb9944c6831460d973e b/.git_backup/objects/0a/8e350a334bbee29b155fb9944c6831460d973e deleted file mode 100644 index a34e26bc..00000000 Binary files a/.git_backup/objects/0a/8e350a334bbee29b155fb9944c6831460d973e and /dev/null differ diff --git a/.git_backup/objects/0a/91d065379cbb2334b7f11eec01e237a56ac97a b/.git_backup/objects/0a/91d065379cbb2334b7f11eec01e237a56ac97a deleted file mode 100644 index e520e033..00000000 Binary files a/.git_backup/objects/0a/91d065379cbb2334b7f11eec01e237a56ac97a and /dev/null differ diff --git a/.git_backup/objects/0a/943d22495c76a6ae7673095e82e8cdc941a7ba b/.git_backup/objects/0a/943d22495c76a6ae7673095e82e8cdc941a7ba deleted file mode 100644 index 28ce01d7..00000000 --- a/.git_backup/objects/0a/943d22495c76a6ae7673095e82e8cdc941a7ba +++ /dev/null @@ -1 +0,0 @@ -xMQMkA]r1{p6" AOAeXj+&vu׿/($g]]lfW5kalooZ ?~FE3lX'])XjJ5ˑ>NG{&ɶDh hУv)깚Ng2]WPX?Bm B%\Pex מwgFT>Y>ûDr:H#<פVK/ݟ e Eo=I0ǀ)Wi@wѽV:ݥ }M-I\ _h[mgY+\V6"d@e2S -WTi_;D Ơmڝ|9+oVj3lʟW:19?#˵">b/^ǺYG'ٝK)ss+H2O=-n e2)Geٞ \ No newline at end of file diff --git a/.git_backup/objects/0a/9a6c726c4d0060db40f22be5cbb4bdbe8ecbc7 b/.git_backup/objects/0a/9a6c726c4d0060db40f22be5cbb4bdbe8ecbc7 deleted file mode 100644 index 855855dc..00000000 --- a/.git_backup/objects/0a/9a6c726c4d0060db40f22be5cbb4bdbe8ecbc7 +++ /dev/null @@ -1,2 +0,0 @@ -x}Mn #uC\ɷ>"q,rb;R{߼Whj2o|ir#Lv!Qt_7i~Dh5G5eڝTzq(mJ+ɏAZPX])&*PO9g3#!%ak'c/P^SoS -9#<2>kdYk5B<+&hEՆ:n/>5ggq)`U[-&XOMCLgUӶQږs!H7D \ No newline at end of file diff --git a/.git_backup/objects/0a/a15dbda12b670f1177976662e05394653532a7 b/.git_backup/objects/0a/a15dbda12b670f1177976662e05394653532a7 deleted file mode 100644 index 6c2fbcbe..00000000 Binary files a/.git_backup/objects/0a/a15dbda12b670f1177976662e05394653532a7 and /dev/null differ diff --git a/.git_backup/objects/0a/b15e6fd312e69814e118e5fbd4fbf360d5efd2 b/.git_backup/objects/0a/b15e6fd312e69814e118e5fbd4fbf360d5efd2 deleted file mode 100644 index 419af2da..00000000 Binary files a/.git_backup/objects/0a/b15e6fd312e69814e118e5fbd4fbf360d5efd2 and /dev/null differ diff --git a/.git_backup/objects/0a/b231ad02106129fbb2086f969439b17d7af303 b/.git_backup/objects/0a/b231ad02106129fbb2086f969439b17d7af303 deleted file mode 100644 index 61d4e80f..00000000 Binary files a/.git_backup/objects/0a/b231ad02106129fbb2086f969439b17d7af303 and /dev/null differ diff --git a/.git_backup/objects/0a/b71d7206859de4208d6d1efc812b9021bb4287 b/.git_backup/objects/0a/b71d7206859de4208d6d1efc812b9021bb4287 deleted file mode 100644 index 64b19df3..00000000 --- a/.git_backup/objects/0a/b71d7206859de4208d6d1efc812b9021bb4287 +++ /dev/null @@ -1 +0,0 @@ -x5 FaL7C qe4G vi) $ 8Q^#)8b9Ј !|q?VIo99,5cNxw \ No newline at end of file diff --git a/.git_backup/objects/0b/25a5e07d579315ca1b40e9249debe7893b7a13 b/.git_backup/objects/0b/25a5e07d579315ca1b40e9249debe7893b7a13 deleted file mode 100644 index 586693dc..00000000 Binary files a/.git_backup/objects/0b/25a5e07d579315ca1b40e9249debe7893b7a13 and /dev/null differ diff --git a/.git_backup/objects/0b/26f51b86a1246c1bbf2d14b45a661b768459a8 b/.git_backup/objects/0b/26f51b86a1246c1bbf2d14b45a661b768459a8 deleted file mode 100644 index a4620f27..00000000 Binary files a/.git_backup/objects/0b/26f51b86a1246c1bbf2d14b45a661b768459a8 and /dev/null differ diff --git a/.git_backup/objects/0b/2b0f7e697cefa217fdb8fd50340b9cd7e74ea9 b/.git_backup/objects/0b/2b0f7e697cefa217fdb8fd50340b9cd7e74ea9 deleted file mode 100644 index 1f8eca72..00000000 Binary files a/.git_backup/objects/0b/2b0f7e697cefa217fdb8fd50340b9cd7e74ea9 and /dev/null differ diff --git a/.git_backup/objects/0b/2cf57247d3ba0e0ccf37da78e7af44db0344ea b/.git_backup/objects/0b/2cf57247d3ba0e0ccf37da78e7af44db0344ea deleted file mode 100644 index 71f24d6a..00000000 Binary files a/.git_backup/objects/0b/2cf57247d3ba0e0ccf37da78e7af44db0344ea and /dev/null differ diff --git a/.git_backup/objects/0b/356bdf073dfefafe7f5b1925fecca4e4c7be38 b/.git_backup/objects/0b/356bdf073dfefafe7f5b1925fecca4e4c7be38 deleted file mode 100644 index 794431e8..00000000 Binary files a/.git_backup/objects/0b/356bdf073dfefafe7f5b1925fecca4e4c7be38 and /dev/null differ diff --git a/.git_backup/objects/0b/3995075aa1c7fa91492d2007b191bb9aaaec07 b/.git_backup/objects/0b/3995075aa1c7fa91492d2007b191bb9aaaec07 deleted file mode 100644 index ef5e8e81..00000000 Binary files a/.git_backup/objects/0b/3995075aa1c7fa91492d2007b191bb9aaaec07 and /dev/null differ diff --git a/.git_backup/objects/0b/3e6c9afb2fcd4e19f9cbb3d05aa90b99bab107 b/.git_backup/objects/0b/3e6c9afb2fcd4e19f9cbb3d05aa90b99bab107 deleted file mode 100644 index 6ed7cd95..00000000 --- a/.git_backup/objects/0b/3e6c9afb2fcd4e19f9cbb3d05aa90b99bab107 +++ /dev/null @@ -1,3 +0,0 @@ -xeUk{ENmӖ7EiU$m-iL"ct;IiP1_g3-}CǂB^o-V fEV$_%QA&jXq+8 x q 2^x -x Uw1P'ulS|q_K-|۸&&vh|=<@;tC8C|G``g81<x D`#p9k/C-ɝ[Ʉ[ԏu7>dbq5 -5t'3GrC?r1HuXGOD8R:s `ey5~ a`!AZ`q>agnBJ`Iy=-?pV9[BPRk$C?= L/B!W_ؗke;-iQ!th۞x¥AX[=VvsqgVZn˪Zt[~&v^3m;{~kw)t:>[4ak5-aclIknnwX5:I /e˙|s~ť ̓^Q'̝GTen74eSg4@#]7Y9@ݑg 7R Vd&bnS1T D.aXU5T y,Ɓ*PVoHJ X xʩU":uU H-4H}*VY$[<&q):XY'rOBI jYm[[=tޤOH;"y{NnMo\ƃ^£ A# ܏֦cm6[= 7'Aa  MS-q f7ekj_VT \ No newline at end of file diff --git a/.git_backup/objects/0b/3e9bf7c6b59f4f346957f4f4211f6f0550cc47 b/.git_backup/objects/0b/3e9bf7c6b59f4f346957f4f4211f6f0550cc47 deleted file mode 100644 index b2202283..00000000 Binary files a/.git_backup/objects/0b/3e9bf7c6b59f4f346957f4f4211f6f0550cc47 and /dev/null differ diff --git a/.git_backup/objects/0b/3f30d6a1f43ff32d5c6545560ef3aa41c828fb b/.git_backup/objects/0b/3f30d6a1f43ff32d5c6545560ef3aa41c828fb deleted file mode 100644 index cfb5363a..00000000 --- a/.git_backup/objects/0b/3f30d6a1f43ff32d5c6545560ef3aa41c828fb +++ /dev/null @@ -1 +0,0 @@ -xmPMK0_h@d="5 d$i)}ӬQKd˓LF^ЗI笃!<7ۭuAˤf2nRZCNyH#><#rtDIJfWxx*2jJk/'1jwyX̔ Y*V v1^mh-DMXb-xIH+=i\NI!(G8J,ā}I \ No newline at end of file diff --git a/.git_backup/objects/0b/47b9032f11d4ea7dd6ac51aa329f7a98253638 b/.git_backup/objects/0b/47b9032f11d4ea7dd6ac51aa329f7a98253638 deleted file mode 100644 index 6e809c0d..00000000 Binary files a/.git_backup/objects/0b/47b9032f11d4ea7dd6ac51aa329f7a98253638 and /dev/null differ diff --git a/.git_backup/objects/0b/4aa83aa2f00450f6c7beb1199ee446f1db4549 b/.git_backup/objects/0b/4aa83aa2f00450f6c7beb1199ee446f1db4549 deleted file mode 100644 index 4303b1ee..00000000 Binary files a/.git_backup/objects/0b/4aa83aa2f00450f6c7beb1199ee446f1db4549 and /dev/null differ diff --git a/.git_backup/objects/0b/4c6d984c5a0dfeee31d96896d18569d5260b31 b/.git_backup/objects/0b/4c6d984c5a0dfeee31d96896d18569d5260b31 deleted file mode 100644 index e324bd81..00000000 Binary files a/.git_backup/objects/0b/4c6d984c5a0dfeee31d96896d18569d5260b31 and /dev/null differ diff --git a/.git_backup/objects/0b/4ff670425c5e5515b0437aba4091242c1226ed b/.git_backup/objects/0b/4ff670425c5e5515b0437aba4091242c1226ed deleted file mode 100644 index 26393078..00000000 Binary files a/.git_backup/objects/0b/4ff670425c5e5515b0437aba4091242c1226ed and /dev/null differ diff --git a/.git_backup/objects/0b/521770732a3a1cce94ca4116af2ef978f3c6b0 b/.git_backup/objects/0b/521770732a3a1cce94ca4116af2ef978f3c6b0 deleted file mode 100644 index 64dd74b7..00000000 Binary files a/.git_backup/objects/0b/521770732a3a1cce94ca4116af2ef978f3c6b0 and /dev/null differ diff --git a/.git_backup/objects/0b/5600885173a7cd793a516614a941151ad9eac3 b/.git_backup/objects/0b/5600885173a7cd793a516614a941151ad9eac3 deleted file mode 100644 index 31f87de0..00000000 Binary files a/.git_backup/objects/0b/5600885173a7cd793a516614a941151ad9eac3 and /dev/null differ diff --git a/.git_backup/objects/0b/59e877cd9a113b99572ee57dbdfc4fdf250dc5 b/.git_backup/objects/0b/59e877cd9a113b99572ee57dbdfc4fdf250dc5 deleted file mode 100644 index 5847047d..00000000 Binary files a/.git_backup/objects/0b/59e877cd9a113b99572ee57dbdfc4fdf250dc5 and /dev/null differ diff --git a/.git_backup/objects/0b/5babae2b23058f0d18dd88be705ea57b24f1bf b/.git_backup/objects/0b/5babae2b23058f0d18dd88be705ea57b24f1bf deleted file mode 100644 index 4f6ac512..00000000 Binary files a/.git_backup/objects/0b/5babae2b23058f0d18dd88be705ea57b24f1bf and /dev/null differ diff --git a/.git_backup/objects/0b/619abed1afdbc856a7aa75fe360e37947d6357 b/.git_backup/objects/0b/619abed1afdbc856a7aa75fe360e37947d6357 deleted file mode 100644 index 93ba87f6..00000000 Binary files a/.git_backup/objects/0b/619abed1afdbc856a7aa75fe360e37947d6357 and /dev/null differ diff --git a/.git_backup/objects/0b/623ac1da299f711eeebb47479e928b4c29ed9c b/.git_backup/objects/0b/623ac1da299f711eeebb47479e928b4c29ed9c deleted file mode 100644 index 43b458b0..00000000 Binary files a/.git_backup/objects/0b/623ac1da299f711eeebb47479e928b4c29ed9c and /dev/null differ diff --git a/.git_backup/objects/0b/642542564572e00d24e0a4d525e14b99ba66de b/.git_backup/objects/0b/642542564572e00d24e0a4d525e14b99ba66de deleted file mode 100644 index 667e6ee2..00000000 Binary files a/.git_backup/objects/0b/642542564572e00d24e0a4d525e14b99ba66de and /dev/null differ diff --git a/.git_backup/objects/0b/65e49fca21f1be92c3ab0dfa4cd05137f028b2 b/.git_backup/objects/0b/65e49fca21f1be92c3ab0dfa4cd05137f028b2 deleted file mode 100644 index b4cf710d..00000000 --- a/.git_backup/objects/0b/65e49fca21f1be92c3ab0dfa4cd05137f028b2 +++ /dev/null @@ -1,3 +0,0 @@ -xKTQk/SiAc"bIRi i,ZHf`jJ(HYE 0E`:NMjQ6|Dt.7pvt@R(wrx0tktȶ|mo1뀙\y>O].L:-)s|wS2uZ4ѤgJ%Vj9v? ޘFJ$agDR}N$)aɋ$F2#Hώ~~$Y @L 2d.d  -!SBL -2-d^Đ!Smc i:+qTicNg9H`e@ ] \ No newline at end of file diff --git a/.git_backup/objects/0b/cd0345a9c1b90c45b0e9e3340ab4da4ec5c6d7 b/.git_backup/objects/0b/cd0345a9c1b90c45b0e9e3340ab4da4ec5c6d7 deleted file mode 100644 index e5f0b267..00000000 Binary files a/.git_backup/objects/0b/cd0345a9c1b90c45b0e9e3340ab4da4ec5c6d7 and /dev/null differ diff --git a/.git_backup/objects/0b/d13d40b8ac751e4e57f2e4a2f7b447283dca9d b/.git_backup/objects/0b/d13d40b8ac751e4e57f2e4a2f7b447283dca9d deleted file mode 100644 index 746847ec..00000000 Binary files a/.git_backup/objects/0b/d13d40b8ac751e4e57f2e4a2f7b447283dca9d and /dev/null differ diff --git a/.git_backup/objects/0b/d4094d8cf09aa3eb2c93b82c1eb76a18acf3eb b/.git_backup/objects/0b/d4094d8cf09aa3eb2c93b82c1eb76a18acf3eb deleted file mode 100644 index f8fe4a5b..00000000 Binary files a/.git_backup/objects/0b/d4094d8cf09aa3eb2c93b82c1eb76a18acf3eb and /dev/null differ diff --git a/.git_backup/objects/0b/d646e12ef4f77f77e1f2d0a88c356f950683ed b/.git_backup/objects/0b/d646e12ef4f77f77e1f2d0a88c356f950683ed deleted file mode 100644 index 1bfc2384..00000000 Binary files a/.git_backup/objects/0b/d646e12ef4f77f77e1f2d0a88c356f950683ed and /dev/null differ diff --git a/.git_backup/objects/0b/d683096f18eadceb7168f811c75bf072baecfe b/.git_backup/objects/0b/d683096f18eadceb7168f811c75bf072baecfe deleted file mode 100644 index 45043082..00000000 Binary files a/.git_backup/objects/0b/d683096f18eadceb7168f811c75bf072baecfe and /dev/null differ diff --git a/.git_backup/objects/0b/d98661ff29c1749447750efeda37fcd2008309 b/.git_backup/objects/0b/d98661ff29c1749447750efeda37fcd2008309 deleted file mode 100644 index 5573ee15..00000000 Binary files a/.git_backup/objects/0b/d98661ff29c1749447750efeda37fcd2008309 and /dev/null differ diff --git a/.git_backup/objects/0b/db9f9bf982aba91c4f9972b15608f077708b67 b/.git_backup/objects/0b/db9f9bf982aba91c4f9972b15608f077708b67 deleted file mode 100644 index 55a574d3..00000000 Binary files a/.git_backup/objects/0b/db9f9bf982aba91c4f9972b15608f077708b67 and /dev/null differ diff --git a/.git_backup/objects/0b/dc9dc83fe4474af04ffdd6a1cf3115ba09c586 b/.git_backup/objects/0b/dc9dc83fe4474af04ffdd6a1cf3115ba09c586 deleted file mode 100644 index 18c2dd36..00000000 Binary files a/.git_backup/objects/0b/dc9dc83fe4474af04ffdd6a1cf3115ba09c586 and /dev/null differ diff --git a/.git_backup/objects/0b/e436ae48fcd2556617147e6de2008cec44dd87 b/.git_backup/objects/0b/e436ae48fcd2556617147e6de2008cec44dd87 deleted file mode 100644 index a51a5ae5..00000000 --- a/.git_backup/objects/0b/e436ae48fcd2556617147e6de2008cec44dd87 +++ /dev/null @@ -1,11 +0,0 @@ -xmVn6zBUD ǝi^5 CQ#DQ%)!N1Azt؞+<5EۯFgBxN}F~]+ӹLX}d\&,겫Y~ߣw|wb&m`Sɂ0Atn 4M3"h} { zh)fh_ aM ?dOy pxͼHꪔPAP͎]x\_ -OOTA0u0?wruzB?X -<|i/-l$!>:Kn:"Y Db1rАK(])[ٝY!VhzT$uWѻYr Ki`R -@BA --I:SXNNC[Tpot$bC%fG{ߋ8ׄ귗_Jm{s?4*t^pBJ&GA'al偾NOU85Vuhv=jr0/jb -RO -:O ۇm$=A<g# -"}9]4C"Q;(h܈k$1֘Qy;Z#]qtÍ?O.?N{=AA~<(~|ŗ6]|v]~^|gqN4ËgO, \ No newline at end of file diff --git a/.git_backup/objects/0b/ea04b04554d5ff8eb13e74c5df98ea3941334d b/.git_backup/objects/0b/ea04b04554d5ff8eb13e74c5df98ea3941334d deleted file mode 100644 index 112d5440..00000000 Binary files a/.git_backup/objects/0b/ea04b04554d5ff8eb13e74c5df98ea3941334d and /dev/null differ diff --git a/.git_backup/objects/0b/f361e5eb46fe54a436ac43d4724de1bb88e4fc b/.git_backup/objects/0b/f361e5eb46fe54a436ac43d4724de1bb88e4fc deleted file mode 100644 index 68613bc3..00000000 Binary files a/.git_backup/objects/0b/f361e5eb46fe54a436ac43d4724de1bb88e4fc and /dev/null differ diff --git a/.git_backup/objects/0b/f5b478994678ec902b676469e93774e5ba7c1c b/.git_backup/objects/0b/f5b478994678ec902b676469e93774e5ba7c1c deleted file mode 100644 index 06457376..00000000 --- a/.git_backup/objects/0b/f5b478994678ec902b676469e93774e5ba7c1c +++ /dev/null @@ -1,2 +0,0 @@ -x=N -0X^CAMB=Z[(4MC^ffwfwΖowf"Z3qcJMTënK߾Nż'J"g8Kz:SIcϼ"24}hH8ӂ0_Hyr .o^2NFZ< \ No newline at end of file diff --git a/.git_backup/objects/0c/01d5b08b6b44379b931d54d7fcf5221fdc9fde b/.git_backup/objects/0c/01d5b08b6b44379b931d54d7fcf5221fdc9fde deleted file mode 100644 index 86844563..00000000 Binary files a/.git_backup/objects/0c/01d5b08b6b44379b931d54d7fcf5221fdc9fde and /dev/null differ diff --git a/.git_backup/objects/0c/039d21b25bec45d00b6a017ce8d7901a3436dc b/.git_backup/objects/0c/039d21b25bec45d00b6a017ce8d7901a3436dc deleted file mode 100644 index d684f2ed..00000000 Binary files a/.git_backup/objects/0c/039d21b25bec45d00b6a017ce8d7901a3436dc and /dev/null differ diff --git a/.git_backup/objects/0c/045465e406ccc13331c074196a2d74fff658d7 b/.git_backup/objects/0c/045465e406ccc13331c074196a2d74fff658d7 deleted file mode 100644 index ac2a0649..00000000 Binary files a/.git_backup/objects/0c/045465e406ccc13331c074196a2d74fff658d7 and /dev/null differ diff --git a/.git_backup/objects/0c/05a605001ef00e748d2fe596d8b99c3708d07e b/.git_backup/objects/0c/05a605001ef00e748d2fe596d8b99c3708d07e deleted file mode 100644 index 2370645f..00000000 Binary files a/.git_backup/objects/0c/05a605001ef00e748d2fe596d8b99c3708d07e and /dev/null differ diff --git a/.git_backup/objects/0c/0bdc1de14c650aa48771e79651474b580c4b61 b/.git_backup/objects/0c/0bdc1de14c650aa48771e79651474b580c4b61 deleted file mode 100644 index 7fc8ab54..00000000 Binary files a/.git_backup/objects/0c/0bdc1de14c650aa48771e79651474b580c4b61 and /dev/null differ diff --git a/.git_backup/objects/0c/0f5308a63f734f0a1b9b8f5a72926b1fdb312d b/.git_backup/objects/0c/0f5308a63f734f0a1b9b8f5a72926b1fdb312d deleted file mode 100644 index 7acc7452..00000000 Binary files a/.git_backup/objects/0c/0f5308a63f734f0a1b9b8f5a72926b1fdb312d and /dev/null differ diff --git a/.git_backup/objects/0c/183eb8b1d8111ac90e22af60f7a825681aeff8 b/.git_backup/objects/0c/183eb8b1d8111ac90e22af60f7a825681aeff8 deleted file mode 100644 index 37ddbcbc..00000000 Binary files a/.git_backup/objects/0c/183eb8b1d8111ac90e22af60f7a825681aeff8 and /dev/null differ diff --git a/.git_backup/objects/0c/1be58d78a0dbed9701a0df208192fdc86d6290 b/.git_backup/objects/0c/1be58d78a0dbed9701a0df208192fdc86d6290 deleted file mode 100644 index 2dc106e0..00000000 Binary files a/.git_backup/objects/0c/1be58d78a0dbed9701a0df208192fdc86d6290 and /dev/null differ diff --git a/.git_backup/objects/0c/1ceaca55a7bfaa109a1a47aa001f5b2166233e b/.git_backup/objects/0c/1ceaca55a7bfaa109a1a47aa001f5b2166233e deleted file mode 100644 index d1b0c933..00000000 Binary files a/.git_backup/objects/0c/1ceaca55a7bfaa109a1a47aa001f5b2166233e and /dev/null differ diff --git a/.git_backup/objects/0c/246e8d442a19c3783d8b943122be7a17a88d95 b/.git_backup/objects/0c/246e8d442a19c3783d8b943122be7a17a88d95 deleted file mode 100644 index 2b78870f..00000000 Binary files a/.git_backup/objects/0c/246e8d442a19c3783d8b943122be7a17a88d95 and /dev/null differ diff --git a/.git_backup/objects/0c/32691b39faaab934280d14bbb1a54c35a85fbc b/.git_backup/objects/0c/32691b39faaab934280d14bbb1a54c35a85fbc deleted file mode 100644 index 2ca4e1f9..00000000 Binary files a/.git_backup/objects/0c/32691b39faaab934280d14bbb1a54c35a85fbc and /dev/null differ diff --git a/.git_backup/objects/0c/3bf7caf2f51c4606e627b419a74c75abcf1ff9 b/.git_backup/objects/0c/3bf7caf2f51c4606e627b419a74c75abcf1ff9 deleted file mode 100644 index 8ab7c914..00000000 Binary files a/.git_backup/objects/0c/3bf7caf2f51c4606e627b419a74c75abcf1ff9 and /dev/null differ diff --git a/.git_backup/objects/0c/4729c56b6ab1e8945249a4d3144c79d8538e9e b/.git_backup/objects/0c/4729c56b6ab1e8945249a4d3144c79d8538e9e deleted file mode 100644 index 5be9ea83..00000000 Binary files a/.git_backup/objects/0c/4729c56b6ab1e8945249a4d3144c79d8538e9e and /dev/null differ diff --git a/.git_backup/objects/0c/50c5cf7e2b77b8c9e24250270c9130d8f2723d b/.git_backup/objects/0c/50c5cf7e2b77b8c9e24250270c9130d8f2723d deleted file mode 100644 index 7187b87c..00000000 Binary files a/.git_backup/objects/0c/50c5cf7e2b77b8c9e24250270c9130d8f2723d and /dev/null differ diff --git a/.git_backup/objects/0c/54ffbb41ddc2aba242333202daba488ef054a6 b/.git_backup/objects/0c/54ffbb41ddc2aba242333202daba488ef054a6 deleted file mode 100644 index 0092694f..00000000 Binary files a/.git_backup/objects/0c/54ffbb41ddc2aba242333202daba488ef054a6 and /dev/null differ diff --git a/.git_backup/objects/0c/56ae0d227ad7f044c2eaa4bc169d905745e0a0 b/.git_backup/objects/0c/56ae0d227ad7f044c2eaa4bc169d905745e0a0 deleted file mode 100644 index c9a70055..00000000 --- a/.git_backup/objects/0c/56ae0d227ad7f044c2eaa4bc169d905745e0a0 +++ /dev/null @@ -1,4 +0,0 @@ -xTM0_arrPFR)"*m&vK3ۀ@]{|彙m$ϲ7M׫~4BEݠ:{^rτ$QFB6C#xQQF@ -ϪKZ1˧(>XLJ#;y q6ԞY moG'EbG(:t L;?YG|LrGo -Lpqٞݰg^sí~zkM)eTnέⵦ6r>}q$%ڱ̛PYj K,ʾM9#V{KQMP q bVK+r/4PdMZmkZnULXJueu8ɣνكSk4ӣ4\6G 6ES\>Kq5-\:.Z">ƕ!DMǭiSf\" 6ו:5aE<$5R歓\bf&xpsw{(y+md:jέT(KVli;Q&cP | -KkyZ)O*U5m>V0GII811F]=[cf"Fz|MѦ e|D:rnt_6FGQTs5HQ -s3AUa=`8cpGp·73kH81JhdNZ6.fx)ЫU1c~=D \ No newline at end of file diff --git a/.git_backup/objects/0d/78fd6d7c4ef6c253e98a625b357f7bafed6792 b/.git_backup/objects/0d/78fd6d7c4ef6c253e98a625b357f7bafed6792 deleted file mode 100644 index adf272e4..00000000 Binary files a/.git_backup/objects/0d/78fd6d7c4ef6c253e98a625b357f7bafed6792 and /dev/null differ diff --git a/.git_backup/objects/0d/7f63ec7ce06cb5fadb4852965e9597c695dd9d b/.git_backup/objects/0d/7f63ec7ce06cb5fadb4852965e9597c695dd9d deleted file mode 100644 index 0c2fa2cf..00000000 Binary files a/.git_backup/objects/0d/7f63ec7ce06cb5fadb4852965e9597c695dd9d and /dev/null differ diff --git a/.git_backup/objects/0d/7ffbb187a8418d78b827944be55efe7539050d b/.git_backup/objects/0d/7ffbb187a8418d78b827944be55efe7539050d deleted file mode 100644 index 95389372..00000000 Binary files a/.git_backup/objects/0d/7ffbb187a8418d78b827944be55efe7539050d and /dev/null differ diff --git a/.git_backup/objects/0d/854ca28cf4dcdb968476ba0138082573087a0a b/.git_backup/objects/0d/854ca28cf4dcdb968476ba0138082573087a0a deleted file mode 100644 index 5b258af4..00000000 Binary files a/.git_backup/objects/0d/854ca28cf4dcdb968476ba0138082573087a0a and /dev/null differ diff --git a/.git_backup/objects/0d/8828302031e80454786588dd73c35b37149fa1 b/.git_backup/objects/0d/8828302031e80454786588dd73c35b37149fa1 deleted file mode 100644 index 8d445554..00000000 Binary files a/.git_backup/objects/0d/8828302031e80454786588dd73c35b37149fa1 and /dev/null differ diff --git a/.git_backup/objects/0d/8c41dee139d7a0e1e2a5032b3522db85c54054 b/.git_backup/objects/0d/8c41dee139d7a0e1e2a5032b3522db85c54054 deleted file mode 100644 index 4a443541..00000000 Binary files a/.git_backup/objects/0d/8c41dee139d7a0e1e2a5032b3522db85c54054 and /dev/null differ diff --git a/.git_backup/objects/0d/90d9b2871d9b3695c4ca0cc1c840830e7fe021 b/.git_backup/objects/0d/90d9b2871d9b3695c4ca0cc1c840830e7fe021 deleted file mode 100644 index a5d252a3..00000000 Binary files a/.git_backup/objects/0d/90d9b2871d9b3695c4ca0cc1c840830e7fe021 and /dev/null differ diff --git a/.git_backup/objects/0d/94948659623ec15b29e405c65c64d9fa318519 b/.git_backup/objects/0d/94948659623ec15b29e405c65c64d9fa318519 deleted file mode 100644 index f4f48503..00000000 Binary files a/.git_backup/objects/0d/94948659623ec15b29e405c65c64d9fa318519 and /dev/null differ diff --git a/.git_backup/objects/0d/9fe89a9dc3158727eef9e139058d1be2243f0b b/.git_backup/objects/0d/9fe89a9dc3158727eef9e139058d1be2243f0b deleted file mode 100644 index 5e788d9d..00000000 Binary files a/.git_backup/objects/0d/9fe89a9dc3158727eef9e139058d1be2243f0b and /dev/null differ diff --git a/.git_backup/objects/0d/a3670caee56284fc7847c201a1169f8d3ee90a b/.git_backup/objects/0d/a3670caee56284fc7847c201a1169f8d3ee90a deleted file mode 100644 index 11fbae8b..00000000 Binary files a/.git_backup/objects/0d/a3670caee56284fc7847c201a1169f8d3ee90a and /dev/null differ diff --git a/.git_backup/objects/0d/a4a1fc017c286668535c6bd7deb2b22eaa8bc7 b/.git_backup/objects/0d/a4a1fc017c286668535c6bd7deb2b22eaa8bc7 deleted file mode 100644 index 1ecbd179..00000000 Binary files a/.git_backup/objects/0d/a4a1fc017c286668535c6bd7deb2b22eaa8bc7 and /dev/null differ diff --git a/.git_backup/objects/0d/aa2677672693963dc4a5f50d8e48779360dadb b/.git_backup/objects/0d/aa2677672693963dc4a5f50d8e48779360dadb deleted file mode 100644 index d087dbd1..00000000 Binary files a/.git_backup/objects/0d/aa2677672693963dc4a5f50d8e48779360dadb and /dev/null differ diff --git a/.git_backup/objects/0d/ab9271bfee575665ee34e809f38c5e887b6d81 b/.git_backup/objects/0d/ab9271bfee575665ee34e809f38c5e887b6d81 deleted file mode 100644 index 2d66ed15..00000000 Binary files a/.git_backup/objects/0d/ab9271bfee575665ee34e809f38c5e887b6d81 and /dev/null differ diff --git a/.git_backup/objects/0d/b813a5cf112fa9d0246e610bd498d05863e1fc b/.git_backup/objects/0d/b813a5cf112fa9d0246e610bd498d05863e1fc deleted file mode 100644 index 047b741d..00000000 Binary files a/.git_backup/objects/0d/b813a5cf112fa9d0246e610bd498d05863e1fc and /dev/null differ diff --git a/.git_backup/objects/0d/ceadfc437ac08f7dff76ba7472a05d3113b78b b/.git_backup/objects/0d/ceadfc437ac08f7dff76ba7472a05d3113b78b deleted file mode 100644 index 1e3bc8db..00000000 Binary files a/.git_backup/objects/0d/ceadfc437ac08f7dff76ba7472a05d3113b78b and /dev/null differ diff --git a/.git_backup/objects/0d/cebc5bb5408ecd2a0c1658fd830bb1e56fab24 b/.git_backup/objects/0d/cebc5bb5408ecd2a0c1658fd830bb1e56fab24 deleted file mode 100644 index b4e395fb..00000000 Binary files a/.git_backup/objects/0d/cebc5bb5408ecd2a0c1658fd830bb1e56fab24 and /dev/null differ diff --git a/.git_backup/objects/0d/cef67384f3c0586741b864e12ea34107aef74a b/.git_backup/objects/0d/cef67384f3c0586741b864e12ea34107aef74a deleted file mode 100644 index 01406f50..00000000 Binary files a/.git_backup/objects/0d/cef67384f3c0586741b864e12ea34107aef74a and /dev/null differ diff --git a/.git_backup/objects/0d/d06ef5003ca88669dc357f7f93fa1f0286bb21 b/.git_backup/objects/0d/d06ef5003ca88669dc357f7f93fa1f0286bb21 deleted file mode 100644 index a682a4f7..00000000 Binary files a/.git_backup/objects/0d/d06ef5003ca88669dc357f7f93fa1f0286bb21 and /dev/null differ diff --git a/.git_backup/objects/0d/d42856b9b0310fb1050b896b2a77e16b300b0e b/.git_backup/objects/0d/d42856b9b0310fb1050b896b2a77e16b300b0e deleted file mode 100644 index 17fa2b54..00000000 --- a/.git_backup/objects/0d/d42856b9b0310fb1050b896b2a77e16b300b0e +++ /dev/null @@ -1,2 +0,0 @@ -xE= -@W;ZDDBD+F&;%͐٠Sx[`}3o^3)p0N-W3৆_Pb/zMTǭpd)C˰$H'a[ Ֆd&zI$Cv *O@@!.t}fEj[|o> \ No newline at end of file diff --git a/.git_backup/objects/0d/d5971668f8cacff89db4f51c70a0a352524a97 b/.git_backup/objects/0d/d5971668f8cacff89db4f51c70a0a352524a97 deleted file mode 100644 index 82320f7d..00000000 Binary files a/.git_backup/objects/0d/d5971668f8cacff89db4f51c70a0a352524a97 and /dev/null differ diff --git a/.git_backup/objects/0d/da5a3e4b4f320d76221c43b94c5457d415361e b/.git_backup/objects/0d/da5a3e4b4f320d76221c43b94c5457d415361e deleted file mode 100644 index afd3b3d0..00000000 Binary files a/.git_backup/objects/0d/da5a3e4b4f320d76221c43b94c5457d415361e and /dev/null differ diff --git a/.git_backup/objects/0d/e93b479e43e5cafa2d0cda03c9bd18d7be7592 b/.git_backup/objects/0d/e93b479e43e5cafa2d0cda03c9bd18d7be7592 deleted file mode 100644 index 9429452e..00000000 --- a/.git_backup/objects/0d/e93b479e43e5cafa2d0cda03c9bd18d7be7592 +++ /dev/null @@ -1,6 +0,0 @@ -xV[:湿2JV!].BTt^8VIܮYɱv{~=35MrC3q-|}HtC-Qc7 3D 04-7v#S-3e%EmH0;q<[g}ЬĵƿWP;gb/o WjlQJVKG[xAǑ۫ߺ R03<ĖLjEh˛ԯx Js-,ԈRI!4m!i5oroV'/&aߞV`m/t=hKM%;n:!C AAk~WTJ3굙nAF<HB}y{&tݿɧ0 & ]̾ ^w -Yd4t^-c˹%hz2h>n"+Gi5v1v0oK`jAº!>m@o^|S_%xۯ_ !N` -LHK' M POR /Cf_nKSt`ŪXSɔ=uGz6v_~Mڿq$ \ No newline at end of file diff --git a/.git_backup/objects/0d/efb82e21f21da442706e25145b4ef0b59d576c b/.git_backup/objects/0d/efb82e21f21da442706e25145b4ef0b59d576c deleted file mode 100644 index 861dccd4..00000000 --- a/.git_backup/objects/0d/efb82e21f21da442706e25145b4ef0b59d576c +++ /dev/null @@ -1,2 +0,0 @@ -xM -0D=+<Гq0'==UǪGss =՜L `$7ppzѡv@Lzte~\?@h ->8% -6[ ! QHw&l  \ No newline at end of file diff --git a/.git_backup/objects/0d/fe24bb65102e82618d9fadde93383df8b15071 b/.git_backup/objects/0d/fe24bb65102e82618d9fadde93383df8b15071 deleted file mode 100644 index ecd1ab4c..00000000 Binary files a/.git_backup/objects/0d/fe24bb65102e82618d9fadde93383df8b15071 and /dev/null differ diff --git a/.git_backup/objects/0e/00ad291ab69363d4b2b07a37b082ed869be29b b/.git_backup/objects/0e/00ad291ab69363d4b2b07a37b082ed869be29b deleted file mode 100644 index bfc53b91..00000000 Binary files a/.git_backup/objects/0e/00ad291ab69363d4b2b07a37b082ed869be29b and /dev/null differ diff --git a/.git_backup/objects/0e/02e4a2d34d91733ffd863aa9344d3a5a04e97e b/.git_backup/objects/0e/02e4a2d34d91733ffd863aa9344d3a5a04e97e deleted file mode 100644 index fec26b6a..00000000 Binary files a/.git_backup/objects/0e/02e4a2d34d91733ffd863aa9344d3a5a04e97e and /dev/null differ diff --git a/.git_backup/objects/0e/030e30546453b73bde84ef08e0daa4dc2ef8a4 b/.git_backup/objects/0e/030e30546453b73bde84ef08e0daa4dc2ef8a4 deleted file mode 100644 index 8d6a1aa4..00000000 Binary files a/.git_backup/objects/0e/030e30546453b73bde84ef08e0daa4dc2ef8a4 and /dev/null differ diff --git a/.git_backup/objects/0e/0333bb972ddc11ce365408188a302b8ca0c232 b/.git_backup/objects/0e/0333bb972ddc11ce365408188a302b8ca0c232 deleted file mode 100644 index ae8c3b41..00000000 Binary files a/.git_backup/objects/0e/0333bb972ddc11ce365408188a302b8ca0c232 and /dev/null differ diff --git a/.git_backup/objects/0e/06b9e0f72f6a94579ea1d1a9320560b1ad82fe b/.git_backup/objects/0e/06b9e0f72f6a94579ea1d1a9320560b1ad82fe deleted file mode 100644 index 0639f09d..00000000 Binary files a/.git_backup/objects/0e/06b9e0f72f6a94579ea1d1a9320560b1ad82fe and /dev/null differ diff --git a/.git_backup/objects/0e/0dcd235c4973becf25f38eb4e5bb26e154c86a b/.git_backup/objects/0e/0dcd235c4973becf25f38eb4e5bb26e154c86a deleted file mode 100644 index 4aef991d..00000000 Binary files a/.git_backup/objects/0e/0dcd235c4973becf25f38eb4e5bb26e154c86a and /dev/null differ diff --git a/.git_backup/objects/0e/10907f7f1e673b3e0dd2f6d363c80206b6cde2 b/.git_backup/objects/0e/10907f7f1e673b3e0dd2f6d363c80206b6cde2 deleted file mode 100644 index a387e22a..00000000 --- a/.git_backup/objects/0e/10907f7f1e673b3e0dd2f6d363c80206b6cde2 +++ /dev/null @@ -1 +0,0 @@ -xTk0s}IBp)c)FtA/Yg$9wA~}V_z' h ,Up$ObJBnɓ$ȶxY(c~G&Q{ !kꚬwݩJ8#ɚ' aGCFb 7 ]m 'Wd2XT(IEo7Wx$| 8$k8qRAo-VBe!{E!D<5. B9,f@6tN3 djY8dnjO@h''qHp<;j8JQ$값H*\I.BUȃg`}ir0W+W济*rDm =WStI~ZӫxlNcRumWe)nQpo%(БKpR 'gGT-es/ec-soG^Kp$>~>T \ No newline at end of file diff --git a/.git_backup/objects/0e/1c16d32eca7652aa7e1392e606cf5b54e26bc5 b/.git_backup/objects/0e/1c16d32eca7652aa7e1392e606cf5b54e26bc5 deleted file mode 100644 index ffe378fc..00000000 Binary files a/.git_backup/objects/0e/1c16d32eca7652aa7e1392e606cf5b54e26bc5 and /dev/null differ diff --git a/.git_backup/objects/0e/218a6f9f75ea2060a8b08d1f1a043fdad68df8 b/.git_backup/objects/0e/218a6f9f75ea2060a8b08d1f1a043fdad68df8 deleted file mode 100644 index 45f5e022..00000000 Binary files a/.git_backup/objects/0e/218a6f9f75ea2060a8b08d1f1a043fdad68df8 and /dev/null differ diff --git a/.git_backup/objects/0e/271ef42ca939a5b95788e0a801c437685e3ec5 b/.git_backup/objects/0e/271ef42ca939a5b95788e0a801c437685e3ec5 deleted file mode 100644 index 4e827328..00000000 Binary files a/.git_backup/objects/0e/271ef42ca939a5b95788e0a801c437685e3ec5 and /dev/null differ diff --git a/.git_backup/objects/0e/3097533fb0f6c42c0213122c2f13c186f92b26 b/.git_backup/objects/0e/3097533fb0f6c42c0213122c2f13c186f92b26 deleted file mode 100644 index 95da103c..00000000 Binary files a/.git_backup/objects/0e/3097533fb0f6c42c0213122c2f13c186f92b26 and /dev/null differ diff --git a/.git_backup/objects/0e/31221543adcd5cbec489985bbf473dcf7503f6 b/.git_backup/objects/0e/31221543adcd5cbec489985bbf473dcf7503f6 deleted file mode 100644 index e794a13b..00000000 Binary files a/.git_backup/objects/0e/31221543adcd5cbec489985bbf473dcf7503f6 and /dev/null differ diff --git a/.git_backup/objects/0e/31a7dee5be6b2818d576899a6b85af09e0a1b3 b/.git_backup/objects/0e/31a7dee5be6b2818d576899a6b85af09e0a1b3 deleted file mode 100644 index eb759d58..00000000 Binary files a/.git_backup/objects/0e/31a7dee5be6b2818d576899a6b85af09e0a1b3 and /dev/null differ diff --git a/.git_backup/objects/0e/32d0f4e1359e3ae9a35a6a51b3d37d8da84d02 b/.git_backup/objects/0e/32d0f4e1359e3ae9a35a6a51b3d37d8da84d02 deleted file mode 100644 index 3851a661..00000000 Binary files a/.git_backup/objects/0e/32d0f4e1359e3ae9a35a6a51b3d37d8da84d02 and /dev/null differ diff --git a/.git_backup/objects/0e/3538bf23e33ee90c906e95b708ca109ab7c8d3 b/.git_backup/objects/0e/3538bf23e33ee90c906e95b708ca109ab7c8d3 deleted file mode 100644 index 95eab249..00000000 Binary files a/.git_backup/objects/0e/3538bf23e33ee90c906e95b708ca109ab7c8d3 and /dev/null differ diff --git a/.git_backup/objects/0e/3701a91a559c7536674d091a74407aa8e52119 b/.git_backup/objects/0e/3701a91a559c7536674d091a74407aa8e52119 deleted file mode 100644 index 14eb7a5e..00000000 Binary files a/.git_backup/objects/0e/3701a91a559c7536674d091a74407aa8e52119 and /dev/null differ diff --git a/.git_backup/objects/0e/3d6da9516dd0f1070204b31a660e30de4d20e7 b/.git_backup/objects/0e/3d6da9516dd0f1070204b31a660e30de4d20e7 deleted file mode 100644 index 2e9cc270..00000000 Binary files a/.git_backup/objects/0e/3d6da9516dd0f1070204b31a660e30de4d20e7 and /dev/null differ diff --git a/.git_backup/objects/0e/3dc9dea5a0ff92d617cdfee4f10ef600a02433 b/.git_backup/objects/0e/3dc9dea5a0ff92d617cdfee4f10ef600a02433 deleted file mode 100644 index 33803c6c..00000000 Binary files a/.git_backup/objects/0e/3dc9dea5a0ff92d617cdfee4f10ef600a02433 and /dev/null differ diff --git a/.git_backup/objects/0e/461d91dc262404baa24b6ea25b8f8a6811116f b/.git_backup/objects/0e/461d91dc262404baa24b6ea25b8f8a6811116f deleted file mode 100644 index e7a9ef47..00000000 Binary files a/.git_backup/objects/0e/461d91dc262404baa24b6ea25b8f8a6811116f and /dev/null differ diff --git a/.git_backup/objects/0e/49c045cfd583745c30e40da2c888d84f6d5762 b/.git_backup/objects/0e/49c045cfd583745c30e40da2c888d84f6d5762 deleted file mode 100644 index 8e8cb988..00000000 Binary files a/.git_backup/objects/0e/49c045cfd583745c30e40da2c888d84f6d5762 and /dev/null differ diff --git a/.git_backup/objects/0e/4a2fc8cccb86d28c3f32a01cb8f11c4223dff8 b/.git_backup/objects/0e/4a2fc8cccb86d28c3f32a01cb8f11c4223dff8 deleted file mode 100644 index 4448679a..00000000 --- a/.git_backup/objects/0e/4a2fc8cccb86d28c3f32a01cb8f11c4223dff8 +++ /dev/null @@ -1,2 +0,0 @@ -x5PMK1mVz=thՃ lPKv3fd߱W<:0o1dBept77G9'͙OÀ×k&kV -nTĭS`y3+X$ȪЀA^P#JrWp ]R *41$;r2l3*쟞KE?&N&VT)SyiɊ]pu׿f?b?E[;JKεSAXjnWrY{Z :c;ψL<,=O>z:״~ \ No newline at end of file diff --git a/.git_backup/objects/0e/4d879332d21c93c229fc25587205020eeb3127 b/.git_backup/objects/0e/4d879332d21c93c229fc25587205020eeb3127 deleted file mode 100644 index 91e6cb9c..00000000 Binary files a/.git_backup/objects/0e/4d879332d21c93c229fc25587205020eeb3127 and /dev/null differ diff --git a/.git_backup/objects/0e/51035b6cbced6fffe2f56dba7d5190cd88e355 b/.git_backup/objects/0e/51035b6cbced6fffe2f56dba7d5190cd88e355 deleted file mode 100644 index 206824f4..00000000 Binary files a/.git_backup/objects/0e/51035b6cbced6fffe2f56dba7d5190cd88e355 and /dev/null differ diff --git a/.git_backup/objects/0e/57d15e7e1691f4f6eee12e40ee775bf9af191b b/.git_backup/objects/0e/57d15e7e1691f4f6eee12e40ee775bf9af191b deleted file mode 100644 index 5a98e02b..00000000 Binary files a/.git_backup/objects/0e/57d15e7e1691f4f6eee12e40ee775bf9af191b and /dev/null differ diff --git a/.git_backup/objects/0e/58e53661970c609116afd977b1fc81deb66205 b/.git_backup/objects/0e/58e53661970c609116afd977b1fc81deb66205 deleted file mode 100644 index e7c6d0d1..00000000 Binary files a/.git_backup/objects/0e/58e53661970c609116afd977b1fc81deb66205 and /dev/null differ diff --git a/.git_backup/objects/0e/5fe09c7b1d2b432f7c7d9125d11a791f53472b b/.git_backup/objects/0e/5fe09c7b1d2b432f7c7d9125d11a791f53472b deleted file mode 100644 index c1faf013..00000000 Binary files a/.git_backup/objects/0e/5fe09c7b1d2b432f7c7d9125d11a791f53472b and /dev/null differ diff --git a/.git_backup/objects/0e/6725583fa2b33f0ba2eaeb301c985ef4979bcd b/.git_backup/objects/0e/6725583fa2b33f0ba2eaeb301c985ef4979bcd deleted file mode 100644 index 2e1e7dc2..00000000 Binary files a/.git_backup/objects/0e/6725583fa2b33f0ba2eaeb301c985ef4979bcd and /dev/null differ diff --git a/.git_backup/objects/0e/69a7f6bac8ff8f3101d0e960399fade9d431a4 b/.git_backup/objects/0e/69a7f6bac8ff8f3101d0e960399fade9d431a4 deleted file mode 100644 index 71325879..00000000 Binary files a/.git_backup/objects/0e/69a7f6bac8ff8f3101d0e960399fade9d431a4 and /dev/null differ diff --git a/.git_backup/objects/0e/6bd0fb897006b1da01fb800f56892382f7cfc5 b/.git_backup/objects/0e/6bd0fb897006b1da01fb800f56892382f7cfc5 deleted file mode 100644 index d21b06db..00000000 Binary files a/.git_backup/objects/0e/6bd0fb897006b1da01fb800f56892382f7cfc5 and /dev/null differ diff --git a/.git_backup/objects/0e/6c15d46aeea97153abb498ae58bda1cdd79b58 b/.git_backup/objects/0e/6c15d46aeea97153abb498ae58bda1cdd79b58 deleted file mode 100644 index adbd16fd..00000000 Binary files a/.git_backup/objects/0e/6c15d46aeea97153abb498ae58bda1cdd79b58 and /dev/null differ diff --git a/.git_backup/objects/0e/7277379c872a3ab1b34d6420cf2b8d66e505b7 b/.git_backup/objects/0e/7277379c872a3ab1b34d6420cf2b8d66e505b7 deleted file mode 100644 index e12d7daa..00000000 Binary files a/.git_backup/objects/0e/7277379c872a3ab1b34d6420cf2b8d66e505b7 and /dev/null differ diff --git a/.git_backup/objects/0e/737564bc541498d5b5a11db8482ad7af20299b b/.git_backup/objects/0e/737564bc541498d5b5a11db8482ad7af20299b deleted file mode 100644 index 23e4a5aa..00000000 Binary files a/.git_backup/objects/0e/737564bc541498d5b5a11db8482ad7af20299b and /dev/null differ diff --git a/.git_backup/objects/0e/75b5f7a66b5a49f2d0541fb02b2c198dc51553 b/.git_backup/objects/0e/75b5f7a66b5a49f2d0541fb02b2c198dc51553 deleted file mode 100644 index f043c11c..00000000 Binary files a/.git_backup/objects/0e/75b5f7a66b5a49f2d0541fb02b2c198dc51553 and /dev/null differ diff --git a/.git_backup/objects/0e/799fe5cce4b734c9d5f45d0836b49e9fabd3a2 b/.git_backup/objects/0e/799fe5cce4b734c9d5f45d0836b49e9fabd3a2 deleted file mode 100644 index c8e657b7..00000000 Binary files a/.git_backup/objects/0e/799fe5cce4b734c9d5f45d0836b49e9fabd3a2 and /dev/null differ diff --git a/.git_backup/objects/0e/7a271722828e2c3056bf2683c7979b02564e05 b/.git_backup/objects/0e/7a271722828e2c3056bf2683c7979b02564e05 deleted file mode 100644 index fc0504f3..00000000 Binary files a/.git_backup/objects/0e/7a271722828e2c3056bf2683c7979b02564e05 and /dev/null differ diff --git a/.git_backup/objects/0e/8097cf1fc787847516a0de3a2519f626219476 b/.git_backup/objects/0e/8097cf1fc787847516a0de3a2519f626219476 deleted file mode 100644 index 745dd145..00000000 Binary files a/.git_backup/objects/0e/8097cf1fc787847516a0de3a2519f626219476 and /dev/null differ diff --git a/.git_backup/objects/0e/812f2d4590ccedccb6fbaf5180fde06d02def2 b/.git_backup/objects/0e/812f2d4590ccedccb6fbaf5180fde06d02def2 deleted file mode 100644 index e86880d2..00000000 Binary files a/.git_backup/objects/0e/812f2d4590ccedccb6fbaf5180fde06d02def2 and /dev/null differ diff --git a/.git_backup/objects/0e/8418026fd0332f5768270e9d2d616affac8735 b/.git_backup/objects/0e/8418026fd0332f5768270e9d2d616affac8735 deleted file mode 100644 index 0c57b9e6..00000000 Binary files a/.git_backup/objects/0e/8418026fd0332f5768270e9d2d616affac8735 and /dev/null differ diff --git a/.git_backup/objects/0e/894d9de814fb103d7992b9807e15b920463d0c b/.git_backup/objects/0e/894d9de814fb103d7992b9807e15b920463d0c deleted file mode 100644 index 04010d88..00000000 Binary files a/.git_backup/objects/0e/894d9de814fb103d7992b9807e15b920463d0c and /dev/null differ diff --git a/.git_backup/objects/0e/8e5e1608b911e789a3d346ebe48aa7cc54b79e b/.git_backup/objects/0e/8e5e1608b911e789a3d346ebe48aa7cc54b79e deleted file mode 100644 index 0f53b08b..00000000 Binary files a/.git_backup/objects/0e/8e5e1608b911e789a3d346ebe48aa7cc54b79e and /dev/null differ diff --git a/.git_backup/objects/0e/909a3a5c66cb2bfbabf78b541397ea28825f87 b/.git_backup/objects/0e/909a3a5c66cb2bfbabf78b541397ea28825f87 deleted file mode 100644 index d9083298..00000000 Binary files a/.git_backup/objects/0e/909a3a5c66cb2bfbabf78b541397ea28825f87 and /dev/null differ diff --git a/.git_backup/objects/0e/93c4848d75432c97189273f4f2e0cbc6c04e20 b/.git_backup/objects/0e/93c4848d75432c97189273f4f2e0cbc6c04e20 deleted file mode 100644 index 08f8979c..00000000 Binary files a/.git_backup/objects/0e/93c4848d75432c97189273f4f2e0cbc6c04e20 and /dev/null differ diff --git a/.git_backup/objects/0e/96b477ef7456e5ce575b17698323b7ff479dcd b/.git_backup/objects/0e/96b477ef7456e5ce575b17698323b7ff479dcd deleted file mode 100644 index 38e33533..00000000 Binary files a/.git_backup/objects/0e/96b477ef7456e5ce575b17698323b7ff479dcd and /dev/null differ diff --git a/.git_backup/objects/0e/c970472436f8db2b8887a954664232f8d15460 b/.git_backup/objects/0e/c970472436f8db2b8887a954664232f8d15460 deleted file mode 100644 index 38945e96..00000000 Binary files a/.git_backup/objects/0e/c970472436f8db2b8887a954664232f8d15460 and /dev/null differ diff --git a/.git_backup/objects/0e/cf26cafd8e1d27082ceed7ddf3b586b5ffcf18 b/.git_backup/objects/0e/cf26cafd8e1d27082ceed7ddf3b586b5ffcf18 deleted file mode 100644 index 3b36f49b..00000000 Binary files a/.git_backup/objects/0e/cf26cafd8e1d27082ceed7ddf3b586b5ffcf18 and /dev/null differ diff --git a/.git_backup/objects/0e/d91d1240028aaa4e2540925d64836159a5911a b/.git_backup/objects/0e/d91d1240028aaa4e2540925d64836159a5911a deleted file mode 100644 index bc4775e1..00000000 Binary files a/.git_backup/objects/0e/d91d1240028aaa4e2540925d64836159a5911a and /dev/null differ diff --git a/.git_backup/objects/0e/dc98fb194d1ceeae5da20e11cefa50af0be846 b/.git_backup/objects/0e/dc98fb194d1ceeae5da20e11cefa50af0be846 deleted file mode 100644 index ed1bddf1..00000000 Binary files a/.git_backup/objects/0e/dc98fb194d1ceeae5da20e11cefa50af0be846 and /dev/null differ diff --git a/.git_backup/objects/0e/dd35ccabe5bc534b91a7b8d8356f0083732e0d b/.git_backup/objects/0e/dd35ccabe5bc534b91a7b8d8356f0083732e0d deleted file mode 100644 index df4bc75f..00000000 Binary files a/.git_backup/objects/0e/dd35ccabe5bc534b91a7b8d8356f0083732e0d and /dev/null differ diff --git a/.git_backup/objects/0e/de33d471b862127a8b461c43e52e14e5ad122e b/.git_backup/objects/0e/de33d471b862127a8b461c43e52e14e5ad122e deleted file mode 100644 index 4ee3594d..00000000 Binary files a/.git_backup/objects/0e/de33d471b862127a8b461c43e52e14e5ad122e and /dev/null differ diff --git a/.git_backup/objects/0e/e464803029ae4885814acae9e3291771401e62 b/.git_backup/objects/0e/e464803029ae4885814acae9e3291771401e62 deleted file mode 100644 index f08f518c..00000000 Binary files a/.git_backup/objects/0e/e464803029ae4885814acae9e3291771401e62 and /dev/null differ diff --git a/.git_backup/objects/0e/e563f6d53bd79aa91c524f50752f48adfa50d6 b/.git_backup/objects/0e/e563f6d53bd79aa91c524f50752f48adfa50d6 deleted file mode 100644 index 12adefd2..00000000 Binary files a/.git_backup/objects/0e/e563f6d53bd79aa91c524f50752f48adfa50d6 and /dev/null differ diff --git a/.git_backup/objects/0e/e6cb0796644f7d40a05b8f2a8342a5f7661ae0 b/.git_backup/objects/0e/e6cb0796644f7d40a05b8f2a8342a5f7661ae0 deleted file mode 100644 index 325a36b3..00000000 Binary files a/.git_backup/objects/0e/e6cb0796644f7d40a05b8f2a8342a5f7661ae0 and /dev/null differ diff --git a/.git_backup/objects/0e/e770e5678c7d49766bda96b64fdffd68c39144 b/.git_backup/objects/0e/e770e5678c7d49766bda96b64fdffd68c39144 deleted file mode 100644 index b3886118..00000000 Binary files a/.git_backup/objects/0e/e770e5678c7d49766bda96b64fdffd68c39144 and /dev/null differ diff --git a/.git_backup/objects/0e/e904b18cc9ec6197ed3ad009fae1da593c5219 b/.git_backup/objects/0e/e904b18cc9ec6197ed3ad009fae1da593c5219 deleted file mode 100644 index 8d44ade0..00000000 Binary files a/.git_backup/objects/0e/e904b18cc9ec6197ed3ad009fae1da593c5219 and /dev/null differ diff --git a/.git_backup/objects/0e/ec0d7a65be025a1506223146a76a34b6185ddc b/.git_backup/objects/0e/ec0d7a65be025a1506223146a76a34b6185ddc deleted file mode 100644 index a804bbd2..00000000 Binary files a/.git_backup/objects/0e/ec0d7a65be025a1506223146a76a34b6185ddc and /dev/null differ diff --git a/.git_backup/objects/0e/ed9b788bf8ed4023dee003e3c0845f14e5b967 b/.git_backup/objects/0e/ed9b788bf8ed4023dee003e3c0845f14e5b967 deleted file mode 100644 index 6cd98fda..00000000 Binary files a/.git_backup/objects/0e/ed9b788bf8ed4023dee003e3c0845f14e5b967 and /dev/null differ diff --git a/.git_backup/objects/0e/ef6c4ffe7f60a624d6831af336886bd2a4178a b/.git_backup/objects/0e/ef6c4ffe7f60a624d6831af336886bd2a4178a deleted file mode 100644 index 10c1c59b..00000000 Binary files a/.git_backup/objects/0e/ef6c4ffe7f60a624d6831af336886bd2a4178a and /dev/null differ diff --git a/.git_backup/objects/0e/f1fd35d2886704ac37bab0779c8d71fe42f51a b/.git_backup/objects/0e/f1fd35d2886704ac37bab0779c8d71fe42f51a deleted file mode 100644 index d3ad5a82..00000000 Binary files a/.git_backup/objects/0e/f1fd35d2886704ac37bab0779c8d71fe42f51a and /dev/null differ diff --git a/.git_backup/objects/0e/f42740c44ae321e545734ecaa159d687561e5e b/.git_backup/objects/0e/f42740c44ae321e545734ecaa159d687561e5e deleted file mode 100644 index a029e8ab..00000000 Binary files a/.git_backup/objects/0e/f42740c44ae321e545734ecaa159d687561e5e and /dev/null differ diff --git a/.git_backup/objects/0e/fb0663a0327420eea5a062fbf09c91adc926bc b/.git_backup/objects/0e/fb0663a0327420eea5a062fbf09c91adc926bc deleted file mode 100644 index d2d3f83d..00000000 Binary files a/.git_backup/objects/0e/fb0663a0327420eea5a062fbf09c91adc926bc and /dev/null differ diff --git a/.git_backup/objects/0f/09af269148bc6fec712b9b1df63cca6f44d248 b/.git_backup/objects/0f/09af269148bc6fec712b9b1df63cca6f44d248 deleted file mode 100644 index 8fbdd315..00000000 Binary files a/.git_backup/objects/0f/09af269148bc6fec712b9b1df63cca6f44d248 and /dev/null differ diff --git a/.git_backup/objects/0f/0e093b2709c82ede36fbaf84be95dc255da6e3 b/.git_backup/objects/0f/0e093b2709c82ede36fbaf84be95dc255da6e3 deleted file mode 100644 index 1de49d23..00000000 --- a/.git_backup/objects/0f/0e093b2709c82ede36fbaf84be95dc255da6e3 +++ /dev/null @@ -1,4 +0,0 @@ -xmA0=W młv-?@4LH65l>g4ٽ) -S>Xo:G6!.pir6Aq**e{{=^SvC)M -ձLєN]f". -Lceuc>/??Lf) \ No newline at end of file diff --git a/.git_backup/objects/0f/123aaf3a0396202805facc4042c261015745c2 b/.git_backup/objects/0f/123aaf3a0396202805facc4042c261015745c2 deleted file mode 100644 index 6c563805..00000000 Binary files a/.git_backup/objects/0f/123aaf3a0396202805facc4042c261015745c2 and /dev/null differ diff --git a/.git_backup/objects/0f/15e6e65b0d4837213e45bcca8b6c666592f8b0 b/.git_backup/objects/0f/15e6e65b0d4837213e45bcca8b6c666592f8b0 deleted file mode 100644 index b794b62e..00000000 Binary files a/.git_backup/objects/0f/15e6e65b0d4837213e45bcca8b6c666592f8b0 and /dev/null differ diff --git a/.git_backup/objects/0f/222c9c6c31a11c1b76ca540d27a1f417de7d1e b/.git_backup/objects/0f/222c9c6c31a11c1b76ca540d27a1f417de7d1e deleted file mode 100644 index ac48f286..00000000 Binary files a/.git_backup/objects/0f/222c9c6c31a11c1b76ca540d27a1f417de7d1e and /dev/null differ diff --git a/.git_backup/objects/0f/225c786d5b3c75034e60bc4c6aedc2947525b5 b/.git_backup/objects/0f/225c786d5b3c75034e60bc4c6aedc2947525b5 deleted file mode 100644 index ee44cf8c..00000000 Binary files a/.git_backup/objects/0f/225c786d5b3c75034e60bc4c6aedc2947525b5 and /dev/null differ diff --git a/.git_backup/objects/0f/279f9db13d90f2b3ccb4e61df7ad9946c7b683 b/.git_backup/objects/0f/279f9db13d90f2b3ccb4e61df7ad9946c7b683 deleted file mode 100644 index 5c805d04..00000000 Binary files a/.git_backup/objects/0f/279f9db13d90f2b3ccb4e61df7ad9946c7b683 and /dev/null differ diff --git a/.git_backup/objects/0f/2c40e6d1a2c78964f5a90671dbff5aeccd2272 b/.git_backup/objects/0f/2c40e6d1a2c78964f5a90671dbff5aeccd2272 deleted file mode 100644 index ad561f50..00000000 Binary files a/.git_backup/objects/0f/2c40e6d1a2c78964f5a90671dbff5aeccd2272 and /dev/null differ diff --git a/.git_backup/objects/0f/32b5f6207441753482e8b24e0f4ff10c5614d8 b/.git_backup/objects/0f/32b5f6207441753482e8b24e0f4ff10c5614d8 deleted file mode 100644 index b0e24afe..00000000 Binary files a/.git_backup/objects/0f/32b5f6207441753482e8b24e0f4ff10c5614d8 and /dev/null differ diff --git a/.git_backup/objects/0f/36a32ba3399efc216b9974254cd1f7eed07a9f b/.git_backup/objects/0f/36a32ba3399efc216b9974254cd1f7eed07a9f deleted file mode 100644 index 662effa3..00000000 Binary files a/.git_backup/objects/0f/36a32ba3399efc216b9974254cd1f7eed07a9f and /dev/null differ diff --git a/.git_backup/objects/0f/3810f3c014aafac0e149cfc6da0ec38c61f165 b/.git_backup/objects/0f/3810f3c014aafac0e149cfc6da0ec38c61f165 deleted file mode 100644 index ff7f7d5b..00000000 --- a/.git_backup/objects/0f/3810f3c014aafac0e149cfc6da0ec38c61f165 +++ /dev/null @@ -1,4 +0,0 @@ -x -0=)z1P -z.ib MBݝJ -E[ٞ`!A'H矸2 Ui黯K]:bI%ɒsO|rӻ3me \ No newline at end of file diff --git a/.git_backup/objects/0f/3f2f35377882a0fae603edfc8edb46371429fe b/.git_backup/objects/0f/3f2f35377882a0fae603edfc8edb46371429fe deleted file mode 100644 index 4b5118ce..00000000 --- a/.git_backup/objects/0f/3f2f35377882a0fae603edfc8edb46371429fe +++ /dev/null @@ -1,2 +0,0 @@ -x=˻ -1ay!B`,2̲}{9wb:NVV3S/*g %D TKS<{cmS&zYc$;w⎽?1 \ No newline at end of file diff --git a/.git_backup/objects/0f/484b77820d3c0dca63c084296613cf8110dc02 b/.git_backup/objects/0f/484b77820d3c0dca63c084296613cf8110dc02 deleted file mode 100644 index a88784f3..00000000 Binary files a/.git_backup/objects/0f/484b77820d3c0dca63c084296613cf8110dc02 and /dev/null differ diff --git a/.git_backup/objects/0f/4ab1f9d76526d34ef1afa40c7e71ddb723ba06 b/.git_backup/objects/0f/4ab1f9d76526d34ef1afa40c7e71ddb723ba06 deleted file mode 100644 index a05b7dff..00000000 Binary files a/.git_backup/objects/0f/4ab1f9d76526d34ef1afa40c7e71ddb723ba06 and /dev/null differ diff --git a/.git_backup/objects/0f/50a639e5a3cfb2b32d2e09cbf48355e32e70b7 b/.git_backup/objects/0f/50a639e5a3cfb2b32d2e09cbf48355e32e70b7 deleted file mode 100644 index e34fd164..00000000 Binary files a/.git_backup/objects/0f/50a639e5a3cfb2b32d2e09cbf48355e32e70b7 and /dev/null differ diff --git a/.git_backup/objects/0f/550b0218470245dd76e820fb5b81ccdf12a02d b/.git_backup/objects/0f/550b0218470245dd76e820fb5b81ccdf12a02d deleted file mode 100644 index 57d449d4..00000000 Binary files a/.git_backup/objects/0f/550b0218470245dd76e820fb5b81ccdf12a02d and /dev/null differ diff --git a/.git_backup/objects/0f/5bec75f64309f18877d3d312c7595353530cd7 b/.git_backup/objects/0f/5bec75f64309f18877d3d312c7595353530cd7 deleted file mode 100644 index 231bc85f..00000000 Binary files a/.git_backup/objects/0f/5bec75f64309f18877d3d312c7595353530cd7 and /dev/null differ diff --git a/.git_backup/objects/0f/5c440826c1d5df5f081a2a2e4353513ea381a7 b/.git_backup/objects/0f/5c440826c1d5df5f081a2a2e4353513ea381a7 deleted file mode 100644 index 60134739..00000000 Binary files a/.git_backup/objects/0f/5c440826c1d5df5f081a2a2e4353513ea381a7 and /dev/null differ diff --git a/.git_backup/objects/0f/5d86551cfcfef109e75169d7b446639995ce38 b/.git_backup/objects/0f/5d86551cfcfef109e75169d7b446639995ce38 deleted file mode 100644 index 3719cafb..00000000 Binary files a/.git_backup/objects/0f/5d86551cfcfef109e75169d7b446639995ce38 and /dev/null differ diff --git a/.git_backup/objects/0f/6e963b1cd883d4725f67e2ee82e9c66f3da2a2 b/.git_backup/objects/0f/6e963b1cd883d4725f67e2ee82e9c66f3da2a2 deleted file mode 100644 index 57919444..00000000 Binary files a/.git_backup/objects/0f/6e963b1cd883d4725f67e2ee82e9c66f3da2a2 and /dev/null differ diff --git a/.git_backup/objects/0f/6f5444b0c1e4bcd80dc0f63b28523d655b05d0 b/.git_backup/objects/0f/6f5444b0c1e4bcd80dc0f63b28523d655b05d0 deleted file mode 100644 index ac6c2bfe..00000000 Binary files a/.git_backup/objects/0f/6f5444b0c1e4bcd80dc0f63b28523d655b05d0 and /dev/null differ diff --git a/.git_backup/objects/0f/70ea184fb7f43d554aaafdfc8e4c4c712d1b59 b/.git_backup/objects/0f/70ea184fb7f43d554aaafdfc8e4c4c712d1b59 deleted file mode 100644 index 436beaca..00000000 Binary files a/.git_backup/objects/0f/70ea184fb7f43d554aaafdfc8e4c4c712d1b59 and /dev/null differ diff --git a/.git_backup/objects/0f/77ffedf023e496546032cffa834738f1e1154d b/.git_backup/objects/0f/77ffedf023e496546032cffa834738f1e1154d deleted file mode 100644 index f93403e7..00000000 Binary files a/.git_backup/objects/0f/77ffedf023e496546032cffa834738f1e1154d and /dev/null differ diff --git a/.git_backup/objects/0f/84e4befe550d4386d24264648abf1323e682ff b/.git_backup/objects/0f/84e4befe550d4386d24264648abf1323e682ff deleted file mode 100644 index 1d5eca72..00000000 --- a/.git_backup/objects/0f/84e4befe550d4386d24264648abf1323e682ff +++ /dev/null @@ -1,3 +0,0 @@ -xUk0޳=Ϭ 1Öuctʞ\,I^?pbYv˓mwߝ.lװj^__́I”E ן`f%XߢXFo mkWM Ơ60Tyf\TLjn.WȵQ{UlDܻ.1mn񹱥qɄxg=pM5ϴO'` -M?H" -xKln+7;l<<6mQ,.N\`iQJuZH>=ps,"~TWgIc02?3#Zgy]?;å6;T*|t"fٶ~mYSO+G{gaL8{bTffΉ{g4{?=bqNT4?DxhW):7ƻ1G7P'sٖv鸝)hfqn{Eܞ>iK1̏zl&oDLݻ&q1 !|JV#\ҋ0n?)M \ No newline at end of file diff --git a/.git_backup/objects/0f/86f53cd93cf96617c3e26d527f4b2dae4e957c b/.git_backup/objects/0f/86f53cd93cf96617c3e26d527f4b2dae4e957c deleted file mode 100644 index 47500a52..00000000 Binary files a/.git_backup/objects/0f/86f53cd93cf96617c3e26d527f4b2dae4e957c and /dev/null differ diff --git a/.git_backup/objects/0f/886b3fbff4ea1b79cb9cf8d80b4c10e7fd1a24 b/.git_backup/objects/0f/886b3fbff4ea1b79cb9cf8d80b4c10e7fd1a24 deleted file mode 100644 index 025fc88e..00000000 Binary files a/.git_backup/objects/0f/886b3fbff4ea1b79cb9cf8d80b4c10e7fd1a24 and /dev/null differ diff --git a/.git_backup/objects/0f/9024b83faf1bdc065ee63da03e56c7210daad8 b/.git_backup/objects/0f/9024b83faf1bdc065ee63da03e56c7210daad8 deleted file mode 100644 index d43fcb53..00000000 Binary files a/.git_backup/objects/0f/9024b83faf1bdc065ee63da03e56c7210daad8 and /dev/null differ diff --git a/.git_backup/objects/0f/9fd546a9d2ae3e9a20c0684f79eb0b3d61ee92 b/.git_backup/objects/0f/9fd546a9d2ae3e9a20c0684f79eb0b3d61ee92 deleted file mode 100644 index 3044ec12..00000000 Binary files a/.git_backup/objects/0f/9fd546a9d2ae3e9a20c0684f79eb0b3d61ee92 and /dev/null differ diff --git a/.git_backup/objects/0f/a1c11dd6763ac4b673dd2c0e6ecd1aeed522f8 b/.git_backup/objects/0f/a1c11dd6763ac4b673dd2c0e6ecd1aeed522f8 deleted file mode 100644 index fc0595ae..00000000 Binary files a/.git_backup/objects/0f/a1c11dd6763ac4b673dd2c0e6ecd1aeed522f8 and /dev/null differ diff --git a/.git_backup/objects/0f/a3a96323c67e2836d8fe87ba8740fa1965cb66 b/.git_backup/objects/0f/a3a96323c67e2836d8fe87ba8740fa1965cb66 deleted file mode 100644 index c7293def..00000000 Binary files a/.git_backup/objects/0f/a3a96323c67e2836d8fe87ba8740fa1965cb66 and /dev/null differ diff --git a/.git_backup/objects/0f/afbbf47159af909b6197d30761f9ba2bfa927a b/.git_backup/objects/0f/afbbf47159af909b6197d30761f9ba2bfa927a deleted file mode 100644 index 35c99584..00000000 Binary files a/.git_backup/objects/0f/afbbf47159af909b6197d30761f9ba2bfa927a and /dev/null differ diff --git a/.git_backup/objects/0f/b1da777e35732c2f20deee187a347fd564cefc b/.git_backup/objects/0f/b1da777e35732c2f20deee187a347fd564cefc deleted file mode 100644 index 165b168d..00000000 Binary files a/.git_backup/objects/0f/b1da777e35732c2f20deee187a347fd564cefc and /dev/null differ diff --git a/.git_backup/objects/0f/db461c778c15426f66c336cb6a1ce337ff4e9b b/.git_backup/objects/0f/db461c778c15426f66c336cb6a1ce337ff4e9b deleted file mode 100644 index f5a9d707..00000000 Binary files a/.git_backup/objects/0f/db461c778c15426f66c336cb6a1ce337ff4e9b and /dev/null differ diff --git a/.git_backup/objects/0f/de6702e0c894ca2ae3dc1ee9883bbdc48de1c7 b/.git_backup/objects/0f/de6702e0c894ca2ae3dc1ee9883bbdc48de1c7 deleted file mode 100644 index 1e673262..00000000 Binary files a/.git_backup/objects/0f/de6702e0c894ca2ae3dc1ee9883bbdc48de1c7 and /dev/null differ diff --git a/.git_backup/objects/0f/e214cc8852ca0f34843b4924df55f9a5f3c656 b/.git_backup/objects/0f/e214cc8852ca0f34843b4924df55f9a5f3c656 deleted file mode 100644 index 4b50787b..00000000 Binary files a/.git_backup/objects/0f/e214cc8852ca0f34843b4924df55f9a5f3c656 and /dev/null differ diff --git a/.git_backup/objects/0f/e34081497626ee92b670e4378e37d9455726f5 b/.git_backup/objects/0f/e34081497626ee92b670e4378e37d9455726f5 deleted file mode 100644 index a7c3d22d..00000000 Binary files a/.git_backup/objects/0f/e34081497626ee92b670e4378e37d9455726f5 and /dev/null differ diff --git a/.git_backup/objects/0f/ee777c2ae7c17e6e8e628c2c5982a81c398ca4 b/.git_backup/objects/0f/ee777c2ae7c17e6e8e628c2c5982a81c398ca4 deleted file mode 100644 index c1feefb2..00000000 Binary files a/.git_backup/objects/0f/ee777c2ae7c17e6e8e628c2c5982a81c398ca4 and /dev/null differ diff --git a/.git_backup/objects/0f/f17a483385bec07f9aef023b16fc331e66fb6f b/.git_backup/objects/0f/f17a483385bec07f9aef023b16fc331e66fb6f deleted file mode 100644 index c5b5b03c..00000000 Binary files a/.git_backup/objects/0f/f17a483385bec07f9aef023b16fc331e66fb6f and /dev/null differ diff --git a/.git_backup/objects/0f/f966f3db84980af0b4e6e6ecaa82f1ca6bad72 b/.git_backup/objects/0f/f966f3db84980af0b4e6e6ecaa82f1ca6bad72 deleted file mode 100644 index e61fd70b..00000000 --- a/.git_backup/objects/0f/f966f3db84980af0b4e6e6ecaa82f1ca6bad72 +++ /dev/null @@ -1,5 +0,0 @@ -xS[kAͭ5ZZ%O"⅊b-Viΐlaw -^)Z;i>'b}s93ߙԍɾ .Wnb ->? 5\ -PJ$ Q@ !M  -1hVhvNn8腣p ~ -`(Z$pz\հ\;wӣU:ȜOKgjKy9K~ÜgNUV{nT Z kp\lJx\}͜ {$b|)za:VYXGx>27뜲*A"%z|O#iug'pհmV{&=j%DxA_c)d YB68G0dy>䰰9["pk@#&s6*$mOA/e )CP9-qV[Ap6D kNjÞqx{Ԟ;%u('ZUqm}*BCMZJ] <qcܽ@U02GκK&Hb7s+r&-,uy FUֹ3tӥJ1=c`57`YglGTŢlZ%+*F954-MF)+osLQ Ư)6Mt6m*Ϲ=_xՅB!]$B6ܣNƃnP$*f H6 ?L_?.ڬ|nJрNrR(J "!V \ No newline at end of file diff --git a/.git_backup/objects/0f/fa1ec0677865512ca9a2b1b52d47ab86d2668a b/.git_backup/objects/0f/fa1ec0677865512ca9a2b1b52d47ab86d2668a deleted file mode 100644 index ab9e2fb4..00000000 Binary files a/.git_backup/objects/0f/fa1ec0677865512ca9a2b1b52d47ab86d2668a and /dev/null differ diff --git a/.git_backup/objects/0f/fbcdd2c3e21b68566c88a3f05239447489df84 b/.git_backup/objects/0f/fbcdd2c3e21b68566c88a3f05239447489df84 deleted file mode 100644 index 9774635b..00000000 Binary files a/.git_backup/objects/0f/fbcdd2c3e21b68566c88a3f05239447489df84 and /dev/null differ diff --git a/.git_backup/objects/10/085ddde5c8fc719cb4fdd0e212ceb0066c1192 b/.git_backup/objects/10/085ddde5c8fc719cb4fdd0e212ceb0066c1192 deleted file mode 100644 index 221e0aa9..00000000 Binary files a/.git_backup/objects/10/085ddde5c8fc719cb4fdd0e212ceb0066c1192 and /dev/null differ diff --git a/.git_backup/objects/10/10c24b6e61237ed9193dbd50e279ee1f057b24 b/.git_backup/objects/10/10c24b6e61237ed9193dbd50e279ee1f057b24 deleted file mode 100644 index c91959ab..00000000 Binary files a/.git_backup/objects/10/10c24b6e61237ed9193dbd50e279ee1f057b24 and /dev/null differ diff --git a/.git_backup/objects/10/20a3fa7058e29e5c90001210633e2972c3394c b/.git_backup/objects/10/20a3fa7058e29e5c90001210633e2972c3394c deleted file mode 100644 index f2e5da38..00000000 Binary files a/.git_backup/objects/10/20a3fa7058e29e5c90001210633e2972c3394c and /dev/null differ diff --git a/.git_backup/objects/10/2210c9f57e123e1c72d10e1b1b4ad0df31a855 b/.git_backup/objects/10/2210c9f57e123e1c72d10e1b1b4ad0df31a855 deleted file mode 100644 index 6a72d8ed..00000000 Binary files a/.git_backup/objects/10/2210c9f57e123e1c72d10e1b1b4ad0df31a855 and /dev/null differ diff --git a/.git_backup/objects/10/232ab38ec595b889167a3f0f037a940ef2ac98 b/.git_backup/objects/10/232ab38ec595b889167a3f0f037a940ef2ac98 deleted file mode 100644 index 0ba862c0..00000000 Binary files a/.git_backup/objects/10/232ab38ec595b889167a3f0f037a940ef2ac98 and /dev/null differ diff --git a/.git_backup/objects/10/2fe57e6405a951fab30b395c4406c0da51cccb b/.git_backup/objects/10/2fe57e6405a951fab30b395c4406c0da51cccb deleted file mode 100644 index 6d38caa9..00000000 Binary files a/.git_backup/objects/10/2fe57e6405a951fab30b395c4406c0da51cccb and /dev/null differ diff --git a/.git_backup/objects/10/3321c04d8f2047f9eb49352b750525e802c131 b/.git_backup/objects/10/3321c04d8f2047f9eb49352b750525e802c131 deleted file mode 100644 index dc752da0..00000000 Binary files a/.git_backup/objects/10/3321c04d8f2047f9eb49352b750525e802c131 and /dev/null differ diff --git a/.git_backup/objects/10/3489e4abe986115bb70b6701dcdfdcb6e0aef2 b/.git_backup/objects/10/3489e4abe986115bb70b6701dcdfdcb6e0aef2 deleted file mode 100644 index b05e36df..00000000 Binary files a/.git_backup/objects/10/3489e4abe986115bb70b6701dcdfdcb6e0aef2 and /dev/null differ diff --git a/.git_backup/objects/10/381a785caf0a8ee44db361e60af3114a9cd4d1 b/.git_backup/objects/10/381a785caf0a8ee44db361e60af3114a9cd4d1 deleted file mode 100644 index 0b3b2b19..00000000 Binary files a/.git_backup/objects/10/381a785caf0a8ee44db361e60af3114a9cd4d1 and /dev/null differ diff --git a/.git_backup/objects/10/385b11f2a15910498fd6e9f6284155f395a2bd b/.git_backup/objects/10/385b11f2a15910498fd6e9f6284155f395a2bd deleted file mode 100644 index 63679f1a..00000000 Binary files a/.git_backup/objects/10/385b11f2a15910498fd6e9f6284155f395a2bd and /dev/null differ diff --git a/.git_backup/objects/10/38e83d25ce978379bd84a3bb4b93a23584b7bf b/.git_backup/objects/10/38e83d25ce978379bd84a3bb4b93a23584b7bf deleted file mode 100644 index 5cad6f22..00000000 Binary files a/.git_backup/objects/10/38e83d25ce978379bd84a3bb4b93a23584b7bf and /dev/null differ diff --git a/.git_backup/objects/10/3c5cb31795edc15d548ef4ca71f1e04e2996b5 b/.git_backup/objects/10/3c5cb31795edc15d548ef4ca71f1e04e2996b5 deleted file mode 100644 index 0f75b7fe..00000000 Binary files a/.git_backup/objects/10/3c5cb31795edc15d548ef4ca71f1e04e2996b5 and /dev/null differ diff --git a/.git_backup/objects/10/3c7044ed94d5939a8504a00a969bff3ecfbc23 b/.git_backup/objects/10/3c7044ed94d5939a8504a00a969bff3ecfbc23 deleted file mode 100644 index 0a5d4503..00000000 Binary files a/.git_backup/objects/10/3c7044ed94d5939a8504a00a969bff3ecfbc23 and /dev/null differ diff --git a/.git_backup/objects/10/427efd5e37a4c2569daa061ffc83f0adbb2c7f b/.git_backup/objects/10/427efd5e37a4c2569daa061ffc83f0adbb2c7f deleted file mode 100644 index c1117318..00000000 Binary files a/.git_backup/objects/10/427efd5e37a4c2569daa061ffc83f0adbb2c7f and /dev/null differ diff --git a/.git_backup/objects/10/443cbc71907012e3cbf3452c0c3b4c3830d799 b/.git_backup/objects/10/443cbc71907012e3cbf3452c0c3b4c3830d799 deleted file mode 100644 index cdf9639c..00000000 --- a/.git_backup/objects/10/443cbc71907012e3cbf3452c0c3b4c3830d799 +++ /dev/null @@ -1 +0,0 @@ -x5N=KA,K!TDG)6F@/v TvVF`ޛ7Zbw$̿~e].`)Y(`)ֱpBj4TXڱ"Od6/;V45+K'!5Rg2׃H o/c=.*=~a85ho"1+H \ No newline at end of file diff --git a/.git_backup/objects/10/44809f04082fe8ba43e57946638870e494dd40 b/.git_backup/objects/10/44809f04082fe8ba43e57946638870e494dd40 deleted file mode 100644 index 08721171..00000000 Binary files a/.git_backup/objects/10/44809f04082fe8ba43e57946638870e494dd40 and /dev/null differ diff --git a/.git_backup/objects/10/4baa04d3459f720166274ef0bedbb9217d20b5 b/.git_backup/objects/10/4baa04d3459f720166274ef0bedbb9217d20b5 deleted file mode 100644 index a349a1c6..00000000 Binary files a/.git_backup/objects/10/4baa04d3459f720166274ef0bedbb9217d20b5 and /dev/null differ diff --git a/.git_backup/objects/10/4e5478cbc5155b80834086b0379e9b0ec18721 b/.git_backup/objects/10/4e5478cbc5155b80834086b0379e9b0ec18721 deleted file mode 100644 index 1f8e7b3a..00000000 Binary files a/.git_backup/objects/10/4e5478cbc5155b80834086b0379e9b0ec18721 and /dev/null differ diff --git a/.git_backup/objects/10/55b4e62ff907b37f5bcab832ad34e2ec7af549 b/.git_backup/objects/10/55b4e62ff907b37f5bcab832ad34e2ec7af549 deleted file mode 100644 index 6fcdc693..00000000 Binary files a/.git_backup/objects/10/55b4e62ff907b37f5bcab832ad34e2ec7af549 and /dev/null differ diff --git a/.git_backup/objects/10/55f4b1817c57bcb2d26d37aa9ca6b56a8f8326 b/.git_backup/objects/10/55f4b1817c57bcb2d26d37aa9ca6b56a8f8326 deleted file mode 100644 index 04c39825..00000000 Binary files a/.git_backup/objects/10/55f4b1817c57bcb2d26d37aa9ca6b56a8f8326 and /dev/null differ diff --git a/.git_backup/objects/10/573d46893e45032e000d6da2030256877a4c05 b/.git_backup/objects/10/573d46893e45032e000d6da2030256877a4c05 deleted file mode 100644 index 9013cb28..00000000 Binary files a/.git_backup/objects/10/573d46893e45032e000d6da2030256877a4c05 and /dev/null differ diff --git a/.git_backup/objects/10/651450cf20c7a97acd10bc5c6f3a90e056a86e b/.git_backup/objects/10/651450cf20c7a97acd10bc5c6f3a90e056a86e deleted file mode 100644 index 49605012..00000000 Binary files a/.git_backup/objects/10/651450cf20c7a97acd10bc5c6f3a90e056a86e and /dev/null differ diff --git a/.git_backup/objects/10/65547c7d37d090a633cb0f93b2d41e172bff00 b/.git_backup/objects/10/65547c7d37d090a633cb0f93b2d41e172bff00 deleted file mode 100644 index e7237afb..00000000 Binary files a/.git_backup/objects/10/65547c7d37d090a633cb0f93b2d41e172bff00 and /dev/null differ diff --git a/.git_backup/objects/10/656a23322b4c5718463b02ed5ce1a5799fec44 b/.git_backup/objects/10/656a23322b4c5718463b02ed5ce1a5799fec44 deleted file mode 100644 index e294bd42..00000000 Binary files a/.git_backup/objects/10/656a23322b4c5718463b02ed5ce1a5799fec44 and /dev/null differ diff --git a/.git_backup/objects/10/69be7466a6a98fa57073a97cf38d882a335e00 b/.git_backup/objects/10/69be7466a6a98fa57073a97cf38d882a335e00 deleted file mode 100644 index 93085015..00000000 Binary files a/.git_backup/objects/10/69be7466a6a98fa57073a97cf38d882a335e00 and /dev/null differ diff --git a/.git_backup/objects/10/6c2e38217a633829329a94df077c097fbcbf7a b/.git_backup/objects/10/6c2e38217a633829329a94df077c097fbcbf7a deleted file mode 100644 index 6b71630a..00000000 Binary files a/.git_backup/objects/10/6c2e38217a633829329a94df077c097fbcbf7a and /dev/null differ diff --git a/.git_backup/objects/10/6cbd44377e5d6ae330c6d4bba46739189743f3 b/.git_backup/objects/10/6cbd44377e5d6ae330c6d4bba46739189743f3 deleted file mode 100644 index 061ca9d6..00000000 Binary files a/.git_backup/objects/10/6cbd44377e5d6ae330c6d4bba46739189743f3 and /dev/null differ diff --git a/.git_backup/objects/10/7436e4b334323975fc345b8c42f3380194f053 b/.git_backup/objects/10/7436e4b334323975fc345b8c42f3380194f053 deleted file mode 100644 index 742dbaf9..00000000 Binary files a/.git_backup/objects/10/7436e4b334323975fc345b8c42f3380194f053 and /dev/null differ diff --git a/.git_backup/objects/10/75a49a273ec6c0acac40814ee6f27816eab134 b/.git_backup/objects/10/75a49a273ec6c0acac40814ee6f27816eab134 deleted file mode 100644 index 84b1b215..00000000 Binary files a/.git_backup/objects/10/75a49a273ec6c0acac40814ee6f27816eab134 and /dev/null differ diff --git a/.git_backup/objects/10/76eef29dbfcb5a2ad9f94c671a63e267e93c4b b/.git_backup/objects/10/76eef29dbfcb5a2ad9f94c671a63e267e93c4b deleted file mode 100644 index 156e29e8..00000000 Binary files a/.git_backup/objects/10/76eef29dbfcb5a2ad9f94c671a63e267e93c4b and /dev/null differ diff --git a/.git_backup/objects/10/83301c089cef66318401b39cef5ebe9c24beb6 b/.git_backup/objects/10/83301c089cef66318401b39cef5ebe9c24beb6 deleted file mode 100644 index 9e738390..00000000 Binary files a/.git_backup/objects/10/83301c089cef66318401b39cef5ebe9c24beb6 and /dev/null differ diff --git a/.git_backup/objects/10/914cfaabb8c9639636f6b6a7a903a5ddcf4272 b/.git_backup/objects/10/914cfaabb8c9639636f6b6a7a903a5ddcf4272 deleted file mode 100644 index 39ffeddf..00000000 Binary files a/.git_backup/objects/10/914cfaabb8c9639636f6b6a7a903a5ddcf4272 and /dev/null differ diff --git a/.git_backup/objects/10/91ef5ff2e812fcb2d6e17d1bf7bc36ac23c69f b/.git_backup/objects/10/91ef5ff2e812fcb2d6e17d1bf7bc36ac23c69f deleted file mode 100644 index c9f4a857..00000000 Binary files a/.git_backup/objects/10/91ef5ff2e812fcb2d6e17d1bf7bc36ac23c69f and /dev/null differ diff --git a/.git_backup/objects/10/92638e70843d78cb840dd6d27f988b023bd7f3 b/.git_backup/objects/10/92638e70843d78cb840dd6d27f988b023bd7f3 deleted file mode 100644 index 662a66f2..00000000 Binary files a/.git_backup/objects/10/92638e70843d78cb840dd6d27f988b023bd7f3 and /dev/null differ diff --git a/.git_backup/objects/10/92c5a50fdf7d470f9b511d3f50da6e8febdd89 b/.git_backup/objects/10/92c5a50fdf7d470f9b511d3f50da6e8febdd89 deleted file mode 100644 index c1c393f8..00000000 Binary files a/.git_backup/objects/10/92c5a50fdf7d470f9b511d3f50da6e8febdd89 and /dev/null differ diff --git a/.git_backup/objects/10/998df3bbe67aa8a02602301d10ec2b2c33006b b/.git_backup/objects/10/998df3bbe67aa8a02602301d10ec2b2c33006b deleted file mode 100644 index 44380127..00000000 Binary files a/.git_backup/objects/10/998df3bbe67aa8a02602301d10ec2b2c33006b and /dev/null differ diff --git a/.git_backup/objects/10/a0c6013450a12739c1005fc0f58247c3e5b820 b/.git_backup/objects/10/a0c6013450a12739c1005fc0f58247c3e5b820 deleted file mode 100644 index de819c64..00000000 Binary files a/.git_backup/objects/10/a0c6013450a12739c1005fc0f58247c3e5b820 and /dev/null differ diff --git a/.git_backup/objects/10/ae24da33c9614c1ea3ebbff643307a196c5edb b/.git_backup/objects/10/ae24da33c9614c1ea3ebbff643307a196c5edb deleted file mode 100644 index 383f995c..00000000 Binary files a/.git_backup/objects/10/ae24da33c9614c1ea3ebbff643307a196c5edb and /dev/null differ diff --git a/.git_backup/objects/10/b50f88f51fd1471d0f0fedae0fe0665a9dbcaf b/.git_backup/objects/10/b50f88f51fd1471d0f0fedae0fe0665a9dbcaf deleted file mode 100644 index 4f626dd6..00000000 Binary files a/.git_backup/objects/10/b50f88f51fd1471d0f0fedae0fe0665a9dbcaf and /dev/null differ diff --git a/.git_backup/objects/10/b7639bfa5782b40d766ede2a27a331aabddce1 b/.git_backup/objects/10/b7639bfa5782b40d766ede2a27a331aabddce1 deleted file mode 100644 index eafb70fb..00000000 Binary files a/.git_backup/objects/10/b7639bfa5782b40d766ede2a27a331aabddce1 and /dev/null differ diff --git a/.git_backup/objects/10/bbd2e4599e1de9bdf6b752fc55a975ce92a2ad b/.git_backup/objects/10/bbd2e4599e1de9bdf6b752fc55a975ce92a2ad deleted file mode 100644 index a52ef54e..00000000 Binary files a/.git_backup/objects/10/bbd2e4599e1de9bdf6b752fc55a975ce92a2ad and /dev/null differ diff --git a/.git_backup/objects/10/c61ad54059a7e59ae239cbe4a3f17ac324b8ca b/.git_backup/objects/10/c61ad54059a7e59ae239cbe4a3f17ac324b8ca deleted file mode 100644 index 748ee6e8..00000000 Binary files a/.git_backup/objects/10/c61ad54059a7e59ae239cbe4a3f17ac324b8ca and /dev/null differ diff --git a/.git_backup/objects/10/c86427365a9583455129c17e1300d873908785 b/.git_backup/objects/10/c86427365a9583455129c17e1300d873908785 deleted file mode 100644 index 9da097b1..00000000 Binary files a/.git_backup/objects/10/c86427365a9583455129c17e1300d873908785 and /dev/null differ diff --git a/.git_backup/objects/10/c8ccae67fb2ceb61fcec422866fe3e8d5785de b/.git_backup/objects/10/c8ccae67fb2ceb61fcec422866fe3e8d5785de deleted file mode 100644 index e59ed9b4..00000000 Binary files a/.git_backup/objects/10/c8ccae67fb2ceb61fcec422866fe3e8d5785de and /dev/null differ diff --git a/.git_backup/objects/10/d3d0233ea61af61f0637766828aeb5239f7df0 b/.git_backup/objects/10/d3d0233ea61af61f0637766828aeb5239f7df0 deleted file mode 100644 index 50819972..00000000 Binary files a/.git_backup/objects/10/d3d0233ea61af61f0637766828aeb5239f7df0 and /dev/null differ diff --git a/.git_backup/objects/10/dacad220f4e1233f11874e3af95e326ec085e2 b/.git_backup/objects/10/dacad220f4e1233f11874e3af95e326ec085e2 deleted file mode 100644 index 72a55b99..00000000 Binary files a/.git_backup/objects/10/dacad220f4e1233f11874e3af95e326ec085e2 and /dev/null differ diff --git a/.git_backup/objects/10/ddb38f07f65e17f5275267c9806f1fe7b83083 b/.git_backup/objects/10/ddb38f07f65e17f5275267c9806f1fe7b83083 deleted file mode 100644 index 46d36566..00000000 Binary files a/.git_backup/objects/10/ddb38f07f65e17f5275267c9806f1fe7b83083 and /dev/null differ diff --git a/.git_backup/objects/10/e30eb6abb03446edc338c52a6cf63cc4a1fa84 b/.git_backup/objects/10/e30eb6abb03446edc338c52a6cf63cc4a1fa84 deleted file mode 100644 index 975e22b9..00000000 Binary files a/.git_backup/objects/10/e30eb6abb03446edc338c52a6cf63cc4a1fa84 and /dev/null differ diff --git a/.git_backup/objects/10/e9edea84c12e20d49e8100b89e9c6b0d688b16 b/.git_backup/objects/10/e9edea84c12e20d49e8100b89e9c6b0d688b16 deleted file mode 100644 index 76e411b7..00000000 Binary files a/.git_backup/objects/10/e9edea84c12e20d49e8100b89e9c6b0d688b16 and /dev/null differ diff --git a/.git_backup/objects/10/eae03f5a4a00d594a4e6ec6cc4bd2ec1ca3785 b/.git_backup/objects/10/eae03f5a4a00d594a4e6ec6cc4bd2ec1ca3785 deleted file mode 100644 index 330379fd..00000000 Binary files a/.git_backup/objects/10/eae03f5a4a00d594a4e6ec6cc4bd2ec1ca3785 and /dev/null differ diff --git a/.git_backup/objects/10/f186468c7e428d6eed180dcff955f33fdd3854 b/.git_backup/objects/10/f186468c7e428d6eed180dcff955f33fdd3854 deleted file mode 100644 index bd9236ed..00000000 --- a/.git_backup/objects/10/f186468c7e428d6eed180dcff955f33fdd3854 +++ /dev/null @@ -1,6 +0,0 @@ -xuSKOAX<&B$QB1c&T20/{#GoǜLh!/wA):c-mIbm֦9[Iip|?5i' bo4ܑW2#y<+;QH-םd"SłoDDiuHN] -n/ swGei&m;'U \ No newline at end of file diff --git a/.git_backup/objects/10/f391a49d98f98d3132595f9503ac112f3746a2 b/.git_backup/objects/10/f391a49d98f98d3132595f9503ac112f3746a2 deleted file mode 100644 index 4e11e3f0..00000000 Binary files a/.git_backup/objects/10/f391a49d98f98d3132595f9503ac112f3746a2 and /dev/null differ diff --git a/.git_backup/objects/10/f5a7e9a1dc4f56c9aab7d9f6cfd20536c8b95c b/.git_backup/objects/10/f5a7e9a1dc4f56c9aab7d9f6cfd20536c8b95c deleted file mode 100644 index 6566547b..00000000 Binary files a/.git_backup/objects/10/f5a7e9a1dc4f56c9aab7d9f6cfd20536c8b95c and /dev/null differ diff --git a/.git_backup/objects/10/fb36c4e350d8ca6f65e4036a60c48a9b3216fc b/.git_backup/objects/10/fb36c4e350d8ca6f65e4036a60c48a9b3216fc deleted file mode 100644 index 547d06d5..00000000 Binary files a/.git_backup/objects/10/fb36c4e350d8ca6f65e4036a60c48a9b3216fc and /dev/null differ diff --git a/.git_backup/objects/10/fc0d7e9f398dd550a42c6b8c0637684882ee60 b/.git_backup/objects/10/fc0d7e9f398dd550a42c6b8c0637684882ee60 deleted file mode 100644 index f03f55ac..00000000 Binary files a/.git_backup/objects/10/fc0d7e9f398dd550a42c6b8c0637684882ee60 and /dev/null differ diff --git a/.git_backup/objects/11/0096a46b81e48a82cfa8f83e8c731e49e34a8a b/.git_backup/objects/11/0096a46b81e48a82cfa8f83e8c731e49e34a8a deleted file mode 100644 index e4d2d33b..00000000 Binary files a/.git_backup/objects/11/0096a46b81e48a82cfa8f83e8c731e49e34a8a and /dev/null differ diff --git a/.git_backup/objects/11/0730c8a5c5e10749def2c09b04026c08e2331b b/.git_backup/objects/11/0730c8a5c5e10749def2c09b04026c08e2331b deleted file mode 100644 index d2bbb929..00000000 Binary files a/.git_backup/objects/11/0730c8a5c5e10749def2c09b04026c08e2331b and /dev/null differ diff --git a/.git_backup/objects/11/1e37945c7bb61beca554fdb5e9c8019217f206 b/.git_backup/objects/11/1e37945c7bb61beca554fdb5e9c8019217f206 deleted file mode 100644 index 936c27b9..00000000 Binary files a/.git_backup/objects/11/1e37945c7bb61beca554fdb5e9c8019217f206 and /dev/null differ diff --git a/.git_backup/objects/11/1ea25c2f27d2feeec82db94dee6954bce27976 b/.git_backup/objects/11/1ea25c2f27d2feeec82db94dee6954bce27976 deleted file mode 100644 index 3b3fb275..00000000 Binary files a/.git_backup/objects/11/1ea25c2f27d2feeec82db94dee6954bce27976 and /dev/null differ diff --git a/.git_backup/objects/11/20c5762ba50434db0e3ed94c47caf4ad660cc0 b/.git_backup/objects/11/20c5762ba50434db0e3ed94c47caf4ad660cc0 deleted file mode 100644 index 845511e8..00000000 Binary files a/.git_backup/objects/11/20c5762ba50434db0e3ed94c47caf4ad660cc0 and /dev/null differ diff --git a/.git_backup/objects/11/38e93c6176d37f39c8939e9019b3db202973bf b/.git_backup/objects/11/38e93c6176d37f39c8939e9019b3db202973bf deleted file mode 100644 index 548626ec..00000000 Binary files a/.git_backup/objects/11/38e93c6176d37f39c8939e9019b3db202973bf and /dev/null differ diff --git a/.git_backup/objects/11/3c5a4cb512bfa29adc5545a7940fb208bb7c84 b/.git_backup/objects/11/3c5a4cb512bfa29adc5545a7940fb208bb7c84 deleted file mode 100644 index 0b0a7356..00000000 Binary files a/.git_backup/objects/11/3c5a4cb512bfa29adc5545a7940fb208bb7c84 and /dev/null differ diff --git a/.git_backup/objects/11/3dec1d3d12a20eb130e8892f5018b22af2748a b/.git_backup/objects/11/3dec1d3d12a20eb130e8892f5018b22af2748a deleted file mode 100644 index 289601a6..00000000 Binary files a/.git_backup/objects/11/3dec1d3d12a20eb130e8892f5018b22af2748a and /dev/null differ diff --git a/.git_backup/objects/11/3ef9de54239d5053cf9ae30e9eb2dceaeaf630 b/.git_backup/objects/11/3ef9de54239d5053cf9ae30e9eb2dceaeaf630 deleted file mode 100644 index 98fb69a0..00000000 Binary files a/.git_backup/objects/11/3ef9de54239d5053cf9ae30e9eb2dceaeaf630 and /dev/null differ diff --git a/.git_backup/objects/11/55d64ad8b113768c395790241639e6e4981c0a b/.git_backup/objects/11/55d64ad8b113768c395790241639e6e4981c0a deleted file mode 100644 index b1f3bb3b..00000000 Binary files a/.git_backup/objects/11/55d64ad8b113768c395790241639e6e4981c0a and /dev/null differ diff --git a/.git_backup/objects/11/5a9ba1d634a9de69ede5ee40e6710be4ee7cee b/.git_backup/objects/11/5a9ba1d634a9de69ede5ee40e6710be4ee7cee deleted file mode 100644 index 60b5ccd2..00000000 Binary files a/.git_backup/objects/11/5a9ba1d634a9de69ede5ee40e6710be4ee7cee and /dev/null differ diff --git a/.git_backup/objects/11/5d9aaf01ec53f42dcc02d40b0d4d3a1ea2b4c7 b/.git_backup/objects/11/5d9aaf01ec53f42dcc02d40b0d4d3a1ea2b4c7 deleted file mode 100644 index 464c7195..00000000 Binary files a/.git_backup/objects/11/5d9aaf01ec53f42dcc02d40b0d4d3a1ea2b4c7 and /dev/null differ diff --git a/.git_backup/objects/11/5ef58e085cc6fd4da951db672122026f9df1db b/.git_backup/objects/11/5ef58e085cc6fd4da951db672122026f9df1db deleted file mode 100644 index 6a54fdd9..00000000 Binary files a/.git_backup/objects/11/5ef58e085cc6fd4da951db672122026f9df1db and /dev/null differ diff --git a/.git_backup/objects/11/610c75e80dd1106e66afc5395b11e0190a0f8a b/.git_backup/objects/11/610c75e80dd1106e66afc5395b11e0190a0f8a deleted file mode 100644 index bd1ec28c..00000000 Binary files a/.git_backup/objects/11/610c75e80dd1106e66afc5395b11e0190a0f8a and /dev/null differ diff --git a/.git_backup/objects/11/61bb13934c66862e328e259b4b0d13e51818f6 b/.git_backup/objects/11/61bb13934c66862e328e259b4b0d13e51818f6 deleted file mode 100644 index b863ef5c..00000000 Binary files a/.git_backup/objects/11/61bb13934c66862e328e259b4b0d13e51818f6 and /dev/null differ diff --git a/.git_backup/objects/11/665150a8819246a113f09dde5f3c7354660b6a b/.git_backup/objects/11/665150a8819246a113f09dde5f3c7354660b6a deleted file mode 100644 index 4beada49..00000000 Binary files a/.git_backup/objects/11/665150a8819246a113f09dde5f3c7354660b6a and /dev/null differ diff --git a/.git_backup/objects/11/67751e604de96510f65007c2a303d8d7238d83 b/.git_backup/objects/11/67751e604de96510f65007c2a303d8d7238d83 deleted file mode 100644 index 6834096d..00000000 Binary files a/.git_backup/objects/11/67751e604de96510f65007c2a303d8d7238d83 and /dev/null differ diff --git a/.git_backup/objects/11/6b5f7b56a142d0c868a7ada2f20586a3d450e8 b/.git_backup/objects/11/6b5f7b56a142d0c868a7ada2f20586a3d450e8 deleted file mode 100644 index ef9c7638..00000000 Binary files a/.git_backup/objects/11/6b5f7b56a142d0c868a7ada2f20586a3d450e8 and /dev/null differ diff --git a/.git_backup/objects/11/6c06365a4c27e1f8b3fe5b1c88f434a4a62687 b/.git_backup/objects/11/6c06365a4c27e1f8b3fe5b1c88f434a4a62687 deleted file mode 100644 index 849d77af..00000000 Binary files a/.git_backup/objects/11/6c06365a4c27e1f8b3fe5b1c88f434a4a62687 and /dev/null differ diff --git a/.git_backup/objects/11/7080632f14e3a5ffc61e5db3a5a6fe8f197be6 b/.git_backup/objects/11/7080632f14e3a5ffc61e5db3a5a6fe8f197be6 deleted file mode 100644 index 0b6dc794..00000000 Binary files a/.git_backup/objects/11/7080632f14e3a5ffc61e5db3a5a6fe8f197be6 and /dev/null differ diff --git a/.git_backup/objects/11/8095b5dcdbc4f63ba511feb954673485f34427 b/.git_backup/objects/11/8095b5dcdbc4f63ba511feb954673485f34427 deleted file mode 100644 index 2302c4ac..00000000 --- a/.git_backup/objects/11/8095b5dcdbc4f63ba511feb954673485f34427 +++ /dev/null @@ -1,2 +0,0 @@ -xU -0E]+WJB B &a&{(s==de#+`\.9Q<= Bc Y LlcW6zM 5n5ʨSac-W#,Ea@qrծE!\4(`pNf4Ns}yְi Da \ No newline at end of file diff --git a/.git_backup/objects/11/877a660ad1d2188025eb68d08b80bd44f23899 b/.git_backup/objects/11/877a660ad1d2188025eb68d08b80bd44f23899 deleted file mode 100644 index 4b5b5435..00000000 --- a/.git_backup/objects/11/877a660ad1d2188025eb68d08b80bd44f23899 +++ /dev/null @@ -1,4 +0,0 @@ -x}RQO0 -k{i׎ ӉjBHׅI$$ݠT۟?vW:_CXrWrU:^"dZW[i:[M{HRĆl!͞dp\d<=O2+ -awn4MC* _ -,y+)YcGX>)LxEHS&@eZkZ B?/W({ V"]RqE,$X2QS[j&]C-ņY7IH==r2H=/Jl/)u0N>Aw3.;N]fo5oz ON,f~)h'w5++G-ϪQM?Ѕ$;ȹ.|]]o/=H>( \ No newline at end of file diff --git a/.git_backup/objects/11/8fb21907de1866ade5d83c1591c4033df12fbd b/.git_backup/objects/11/8fb21907de1866ade5d83c1591c4033df12fbd deleted file mode 100644 index 2846d174..00000000 Binary files a/.git_backup/objects/11/8fb21907de1866ade5d83c1591c4033df12fbd and /dev/null differ diff --git a/.git_backup/objects/11/929c18847cbb94d7bbd9b6488c71525d3410a8 b/.git_backup/objects/11/929c18847cbb94d7bbd9b6488c71525d3410a8 deleted file mode 100644 index c29b1826..00000000 Binary files a/.git_backup/objects/11/929c18847cbb94d7bbd9b6488c71525d3410a8 and /dev/null differ diff --git a/.git_backup/objects/11/977a7e3510ec4af202ac153c0e3b2b89d5d9b5 b/.git_backup/objects/11/977a7e3510ec4af202ac153c0e3b2b89d5d9b5 deleted file mode 100644 index 8d90c9ce..00000000 Binary files a/.git_backup/objects/11/977a7e3510ec4af202ac153c0e3b2b89d5d9b5 and /dev/null differ diff --git a/.git_backup/objects/11/a1817e67490d997f0f30dd0a18e060bf953bc1 b/.git_backup/objects/11/a1817e67490d997f0f30dd0a18e060bf953bc1 deleted file mode 100644 index e8efa115..00000000 Binary files a/.git_backup/objects/11/a1817e67490d997f0f30dd0a18e060bf953bc1 and /dev/null differ diff --git a/.git_backup/objects/11/ac87975a027e949c720dfe8e2d154c579d0b95 b/.git_backup/objects/11/ac87975a027e949c720dfe8e2d154c579d0b95 deleted file mode 100644 index c86cafba..00000000 Binary files a/.git_backup/objects/11/ac87975a027e949c720dfe8e2d154c579d0b95 and /dev/null differ diff --git a/.git_backup/objects/11/afb412056ad803f0d8ac1d9dcb188d42285fdf b/.git_backup/objects/11/afb412056ad803f0d8ac1d9dcb188d42285fdf deleted file mode 100644 index bcd24bb4..00000000 Binary files a/.git_backup/objects/11/afb412056ad803f0d8ac1d9dcb188d42285fdf and /dev/null differ diff --git a/.git_backup/objects/11/b208003ebd08d5bffee2dcf9272fdf10bd5b74 b/.git_backup/objects/11/b208003ebd08d5bffee2dcf9272fdf10bd5b74 deleted file mode 100644 index 3477efd7..00000000 Binary files a/.git_backup/objects/11/b208003ebd08d5bffee2dcf9272fdf10bd5b74 and /dev/null differ diff --git a/.git_backup/objects/11/b95bd71c2b9db9137db5dce1144840c227d089 b/.git_backup/objects/11/b95bd71c2b9db9137db5dce1144840c227d089 deleted file mode 100644 index 52bc3eda..00000000 Binary files a/.git_backup/objects/11/b95bd71c2b9db9137db5dce1144840c227d089 and /dev/null differ diff --git a/.git_backup/objects/11/c7b3991da583fd9282a8b7c41fa3ea171bc7bd b/.git_backup/objects/11/c7b3991da583fd9282a8b7c41fa3ea171bc7bd deleted file mode 100644 index b0c93738..00000000 Binary files a/.git_backup/objects/11/c7b3991da583fd9282a8b7c41fa3ea171bc7bd and /dev/null differ diff --git a/.git_backup/objects/11/caa14294132a4cc79a4ee133ead1bc8d7b7532 b/.git_backup/objects/11/caa14294132a4cc79a4ee133ead1bc8d7b7532 deleted file mode 100644 index e8c87cdb..00000000 Binary files a/.git_backup/objects/11/caa14294132a4cc79a4ee133ead1bc8d7b7532 and /dev/null differ diff --git a/.git_backup/objects/11/cbaea79d1f4f46f9ae4bea542d7c66ded96e34 b/.git_backup/objects/11/cbaea79d1f4f46f9ae4bea542d7c66ded96e34 deleted file mode 100644 index 12361faf..00000000 --- a/.git_backup/objects/11/cbaea79d1f4f46f9ae4bea542d7c66ded96e34 +++ /dev/null @@ -1,4 +0,0 @@ -xe1k@ ;W[[cf N GϖSB뻤P =t|m1{$)X -94:@b$>$mV팩T~6ubL0L, -lXѷIlEXnƃH/2DŽ 3t,_𡃅b% Ń+rx -qZdj2[NSo \ No newline at end of file diff --git a/.git_backup/objects/11/ce3d1aa3e578eb7aa729252a50c642bee585a0 b/.git_backup/objects/11/ce3d1aa3e578eb7aa729252a50c642bee585a0 deleted file mode 100644 index b79872ad..00000000 Binary files a/.git_backup/objects/11/ce3d1aa3e578eb7aa729252a50c642bee585a0 and /dev/null differ diff --git a/.git_backup/objects/11/d2e2ca1c74323e8723ecd75a3252ac428bfadf b/.git_backup/objects/11/d2e2ca1c74323e8723ecd75a3252ac428bfadf deleted file mode 100644 index ee2eb01c..00000000 Binary files a/.git_backup/objects/11/d2e2ca1c74323e8723ecd75a3252ac428bfadf and /dev/null differ diff --git a/.git_backup/objects/11/d4adf771f3f90bb5f1cc11043599b48e955c22 b/.git_backup/objects/11/d4adf771f3f90bb5f1cc11043599b48e955c22 deleted file mode 100644 index b53967bf..00000000 Binary files a/.git_backup/objects/11/d4adf771f3f90bb5f1cc11043599b48e955c22 and /dev/null differ diff --git a/.git_backup/objects/11/d62cc752d2a87e9df5182a839202c8042ba29f b/.git_backup/objects/11/d62cc752d2a87e9df5182a839202c8042ba29f deleted file mode 100644 index 91e734f6..00000000 Binary files a/.git_backup/objects/11/d62cc752d2a87e9df5182a839202c8042ba29f and /dev/null differ diff --git a/.git_backup/objects/11/de4b50530c9a40a3f4b791f8a7cfb97e9aa587 b/.git_backup/objects/11/de4b50530c9a40a3f4b791f8a7cfb97e9aa587 deleted file mode 100644 index 43aa7f45..00000000 Binary files a/.git_backup/objects/11/de4b50530c9a40a3f4b791f8a7cfb97e9aa587 and /dev/null differ diff --git a/.git_backup/objects/11/e43e5349c4019dcd38120fce60cb563ec5320f b/.git_backup/objects/11/e43e5349c4019dcd38120fce60cb563ec5320f deleted file mode 100644 index 01061eea..00000000 Binary files a/.git_backup/objects/11/e43e5349c4019dcd38120fce60cb563ec5320f and /dev/null differ diff --git a/.git_backup/objects/11/e751e5348b533f18b0e000126026504de7ecd3 b/.git_backup/objects/11/e751e5348b533f18b0e000126026504de7ecd3 deleted file mode 100644 index 9acbd44f..00000000 Binary files a/.git_backup/objects/11/e751e5348b533f18b0e000126026504de7ecd3 and /dev/null differ diff --git a/.git_backup/objects/11/ec695ff79627463a0282d25079527562de9e42 b/.git_backup/objects/11/ec695ff79627463a0282d25079527562de9e42 deleted file mode 100644 index a6d37d72..00000000 Binary files a/.git_backup/objects/11/ec695ff79627463a0282d25079527562de9e42 and /dev/null differ diff --git a/.git_backup/objects/11/ec699acc561cda2ed0392b9e5973464f4b196c b/.git_backup/objects/11/ec699acc561cda2ed0392b9e5973464f4b196c deleted file mode 100644 index 20063080..00000000 Binary files a/.git_backup/objects/11/ec699acc561cda2ed0392b9e5973464f4b196c and /dev/null differ diff --git a/.git_backup/objects/11/f3d795c39ffa750378f4736b5c203fdd1210ba b/.git_backup/objects/11/f3d795c39ffa750378f4736b5c203fdd1210ba deleted file mode 100644 index f49d536d..00000000 Binary files a/.git_backup/objects/11/f3d795c39ffa750378f4736b5c203fdd1210ba and /dev/null differ diff --git a/.git_backup/objects/11/f87766ed6d3cb1e9b0e5ef2d9716c93fdf4867 b/.git_backup/objects/11/f87766ed6d3cb1e9b0e5ef2d9716c93fdf4867 deleted file mode 100644 index 2f012602..00000000 Binary files a/.git_backup/objects/11/f87766ed6d3cb1e9b0e5ef2d9716c93fdf4867 and /dev/null differ diff --git a/.git_backup/objects/11/fcd85dc6322277443abb9942eb6069fc1108dc b/.git_backup/objects/11/fcd85dc6322277443abb9942eb6069fc1108dc deleted file mode 100644 index 061ce4e5..00000000 --- a/.git_backup/objects/11/fcd85dc6322277443abb9942eb6069fc1108dc +++ /dev/null @@ -1,5 +0,0 @@ -xUKo1漿¤T"R\rv԰kN{nPJry|KtRV^jEdicOO59!g3|9QT \m!+{dA~@YJǦ, -.TSQV[Y[ 80UG<|^?Mzoz᫓+ts- ^Y6?#aMyOjQq+j"^̨d΄fPW@9 -:P_X9 -ޡ_2bRNB RhZp>i6XԣDiG$!4.02aTk{8l5N 2Cٮ`V>%::' zW5a-wbNZi#wXI%9-a{ -re# r|~UrU U^mKkvxg 6&@g )mPpF+ݶZQd3PbO' TTBL,\n %AIiwJ،d G02}L,(+xr_D`N{uz8CE(3BkH>A9^Լ>aI14Am'{ ܔDG R$ OF \ No newline at end of file diff --git a/.git_backup/objects/12/0003427b45d131f84ce4884992f1022f205d9c b/.git_backup/objects/12/0003427b45d131f84ce4884992f1022f205d9c deleted file mode 100644 index 313a3d33..00000000 Binary files a/.git_backup/objects/12/0003427b45d131f84ce4884992f1022f205d9c and /dev/null differ diff --git a/.git_backup/objects/12/05c618686fbb0e28bb9f61a782d7be790d1163 b/.git_backup/objects/12/05c618686fbb0e28bb9f61a782d7be790d1163 deleted file mode 100644 index c1d0d23b..00000000 Binary files a/.git_backup/objects/12/05c618686fbb0e28bb9f61a782d7be790d1163 and /dev/null differ diff --git a/.git_backup/objects/12/0adbfdf5ddf5b7497096c98563bb0827954619 b/.git_backup/objects/12/0adbfdf5ddf5b7497096c98563bb0827954619 deleted file mode 100644 index 638bd338..00000000 Binary files a/.git_backup/objects/12/0adbfdf5ddf5b7497096c98563bb0827954619 and /dev/null differ diff --git a/.git_backup/objects/12/11964841c4fdf4f901a7a13f40b95eff3d3f7d b/.git_backup/objects/12/11964841c4fdf4f901a7a13f40b95eff3d3f7d deleted file mode 100644 index 5074df28..00000000 Binary files a/.git_backup/objects/12/11964841c4fdf4f901a7a13f40b95eff3d3f7d and /dev/null differ diff --git a/.git_backup/objects/12/132fafe3a7a533bafe9d07e796e2a2535fea47 b/.git_backup/objects/12/132fafe3a7a533bafe9d07e796e2a2535fea47 deleted file mode 100644 index f613fcc2..00000000 Binary files a/.git_backup/objects/12/132fafe3a7a533bafe9d07e796e2a2535fea47 and /dev/null differ diff --git a/.git_backup/objects/12/141a29ae718192fda1210482281806e69f0de9 b/.git_backup/objects/12/141a29ae718192fda1210482281806e69f0de9 deleted file mode 100644 index 7e449a10..00000000 Binary files a/.git_backup/objects/12/141a29ae718192fda1210482281806e69f0de9 and /dev/null differ diff --git a/.git_backup/objects/12/1e6cad451114d694a07442f2ed1e208d8f284f b/.git_backup/objects/12/1e6cad451114d694a07442f2ed1e208d8f284f deleted file mode 100644 index dc2e3984..00000000 Binary files a/.git_backup/objects/12/1e6cad451114d694a07442f2ed1e208d8f284f and /dev/null differ diff --git a/.git_backup/objects/12/21fd11e3478de009933fb94efadaa06e3efa87 b/.git_backup/objects/12/21fd11e3478de009933fb94efadaa06e3efa87 deleted file mode 100644 index 26356bd1..00000000 Binary files a/.git_backup/objects/12/21fd11e3478de009933fb94efadaa06e3efa87 and /dev/null differ diff --git a/.git_backup/objects/12/220e825aed4f5cd74d9d7e137e3d42c1fbebfe b/.git_backup/objects/12/220e825aed4f5cd74d9d7e137e3d42c1fbebfe deleted file mode 100644 index 045bb1ca..00000000 Binary files a/.git_backup/objects/12/220e825aed4f5cd74d9d7e137e3d42c1fbebfe and /dev/null differ diff --git a/.git_backup/objects/12/29f4ef18ec6cef4cab860f4337c9580e9e728b b/.git_backup/objects/12/29f4ef18ec6cef4cab860f4337c9580e9e728b deleted file mode 100644 index 0812358d..00000000 Binary files a/.git_backup/objects/12/29f4ef18ec6cef4cab860f4337c9580e9e728b and /dev/null differ diff --git a/.git_backup/objects/12/2e6009bd71e77ae39f55da5cf056500ff526a9 b/.git_backup/objects/12/2e6009bd71e77ae39f55da5cf056500ff526a9 deleted file mode 100644 index a859c99f..00000000 Binary files a/.git_backup/objects/12/2e6009bd71e77ae39f55da5cf056500ff526a9 and /dev/null differ diff --git a/.git_backup/objects/12/2e934210cabf0b29a2dd7d11eb8220ed1cad43 b/.git_backup/objects/12/2e934210cabf0b29a2dd7d11eb8220ed1cad43 deleted file mode 100644 index abbbcc88..00000000 Binary files a/.git_backup/objects/12/2e934210cabf0b29a2dd7d11eb8220ed1cad43 and /dev/null differ diff --git a/.git_backup/objects/12/39db882e1ca31d1a9776f57c06afe57ef1904c b/.git_backup/objects/12/39db882e1ca31d1a9776f57c06afe57ef1904c deleted file mode 100644 index 8bd4e786..00000000 Binary files a/.git_backup/objects/12/39db882e1ca31d1a9776f57c06afe57ef1904c and /dev/null differ diff --git a/.git_backup/objects/12/3b768e9bd8371246a665c4e9f5acc90f81e325 b/.git_backup/objects/12/3b768e9bd8371246a665c4e9f5acc90f81e325 deleted file mode 100644 index 4d577186..00000000 Binary files a/.git_backup/objects/12/3b768e9bd8371246a665c4e9f5acc90f81e325 and /dev/null differ diff --git a/.git_backup/objects/12/4ba394f45343824cc482c2c8dd23d29bcaaf79 b/.git_backup/objects/12/4ba394f45343824cc482c2c8dd23d29bcaaf79 deleted file mode 100644 index 7a978e96..00000000 Binary files a/.git_backup/objects/12/4ba394f45343824cc482c2c8dd23d29bcaaf79 and /dev/null differ diff --git a/.git_backup/objects/12/4db153c5150f3be1d83f22593e78888a363acd b/.git_backup/objects/12/4db153c5150f3be1d83f22593e78888a363acd deleted file mode 100644 index 54fad606..00000000 Binary files a/.git_backup/objects/12/4db153c5150f3be1d83f22593e78888a363acd and /dev/null differ diff --git a/.git_backup/objects/12/50ddeb6d31935dd73f5d67184fa96cedadc926 b/.git_backup/objects/12/50ddeb6d31935dd73f5d67184fa96cedadc926 deleted file mode 100644 index dc6fda97..00000000 Binary files a/.git_backup/objects/12/50ddeb6d31935dd73f5d67184fa96cedadc926 and /dev/null differ diff --git a/.git_backup/objects/12/590ae209f8a45f1b0ec9fadba9aa373c02101f b/.git_backup/objects/12/590ae209f8a45f1b0ec9fadba9aa373c02101f deleted file mode 100644 index e888b4b9..00000000 Binary files a/.git_backup/objects/12/590ae209f8a45f1b0ec9fadba9aa373c02101f and /dev/null differ diff --git a/.git_backup/objects/12/5d15d0f71153cf29ad0ed06fc9202660448cd4 b/.git_backup/objects/12/5d15d0f71153cf29ad0ed06fc9202660448cd4 deleted file mode 100644 index 5c495367..00000000 Binary files a/.git_backup/objects/12/5d15d0f71153cf29ad0ed06fc9202660448cd4 and /dev/null differ diff --git a/.git_backup/objects/12/602ff1eb05d80639bb29626faab6e3794bd9c1 b/.git_backup/objects/12/602ff1eb05d80639bb29626faab6e3794bd9c1 deleted file mode 100644 index e9e577d8..00000000 Binary files a/.git_backup/objects/12/602ff1eb05d80639bb29626faab6e3794bd9c1 and /dev/null differ diff --git a/.git_backup/objects/12/664e44633431a0f8f1d717b8a037614dc8c529 b/.git_backup/objects/12/664e44633431a0f8f1d717b8a037614dc8c529 deleted file mode 100644 index f5e51f52..00000000 Binary files a/.git_backup/objects/12/664e44633431a0f8f1d717b8a037614dc8c529 and /dev/null differ diff --git a/.git_backup/objects/12/7c1c6e48094213112bdb4d7b82c9afec310ce2 b/.git_backup/objects/12/7c1c6e48094213112bdb4d7b82c9afec310ce2 deleted file mode 100644 index ebe2a0ee..00000000 Binary files a/.git_backup/objects/12/7c1c6e48094213112bdb4d7b82c9afec310ce2 and /dev/null differ diff --git a/.git_backup/objects/12/8493d90ed6705b963cee3e04086311c073a966 b/.git_backup/objects/12/8493d90ed6705b963cee3e04086311c073a966 deleted file mode 100644 index e2e293f7..00000000 Binary files a/.git_backup/objects/12/8493d90ed6705b963cee3e04086311c073a966 and /dev/null differ diff --git a/.git_backup/objects/12/84fbc0b3bfa9f72314461e674dc9ccf7d9798f b/.git_backup/objects/12/84fbc0b3bfa9f72314461e674dc9ccf7d9798f deleted file mode 100644 index b80d8a08..00000000 Binary files a/.git_backup/objects/12/84fbc0b3bfa9f72314461e674dc9ccf7d9798f and /dev/null differ diff --git a/.git_backup/objects/12/887ab5e460fcc1244c883b2296cf1cb6ffb60d b/.git_backup/objects/12/887ab5e460fcc1244c883b2296cf1cb6ffb60d deleted file mode 100644 index b1917942..00000000 Binary files a/.git_backup/objects/12/887ab5e460fcc1244c883b2296cf1cb6ffb60d and /dev/null differ diff --git a/.git_backup/objects/12/8fa0701f53a150d271d30695bd874cad17dd39 b/.git_backup/objects/12/8fa0701f53a150d271d30695bd874cad17dd39 deleted file mode 100644 index aa61af13..00000000 Binary files a/.git_backup/objects/12/8fa0701f53a150d271d30695bd874cad17dd39 and /dev/null differ diff --git a/.git_backup/objects/12/936c92d8f8a122f2342a7782f56e7506010c40 b/.git_backup/objects/12/936c92d8f8a122f2342a7782f56e7506010c40 deleted file mode 100644 index dcb3d96b..00000000 Binary files a/.git_backup/objects/12/936c92d8f8a122f2342a7782f56e7506010c40 and /dev/null differ diff --git a/.git_backup/objects/12/9e367cecc835ee115bee37c526bca72d054c0d b/.git_backup/objects/12/9e367cecc835ee115bee37c526bca72d054c0d deleted file mode 100644 index 2788b690..00000000 Binary files a/.git_backup/objects/12/9e367cecc835ee115bee37c526bca72d054c0d and /dev/null differ diff --git a/.git_backup/objects/12/a07bac25a59e8d3e3757898d4950a0f69804c3 b/.git_backup/objects/12/a07bac25a59e8d3e3757898d4950a0f69804c3 deleted file mode 100644 index 39223a1e..00000000 --- a/.git_backup/objects/12/a07bac25a59e8d3e3757898d4950a0f69804c3 +++ /dev/null @@ -1,3 +0,0 @@ -xS=o0̯89 HRզK![!MEe>D}m :TP|޽3(bt}TEe4+Jm:9ۚ҂.˱ZDBkPefYIDu }N?n[`Йay-]s8etsi+e tZ -;YaMJuBRs@vı &o+L-L}l:]3*^_TP -ad7yJ]^0K  q]PsͦD vM{HtvHC(\hӪWɃ"'9D DTL\XQ' ϋM|cRY \ No newline at end of file diff --git a/.git_backup/objects/12/a13c75ac89fac1d9b9427ec2fd158c1533205b b/.git_backup/objects/12/a13c75ac89fac1d9b9427ec2fd158c1533205b deleted file mode 100644 index 26c54600..00000000 Binary files a/.git_backup/objects/12/a13c75ac89fac1d9b9427ec2fd158c1533205b and /dev/null differ diff --git a/.git_backup/objects/12/a76ee635d1a4ed46735da170e208c7f7eeb75f b/.git_backup/objects/12/a76ee635d1a4ed46735da170e208c7f7eeb75f deleted file mode 100644 index 1adef049..00000000 Binary files a/.git_backup/objects/12/a76ee635d1a4ed46735da170e208c7f7eeb75f and /dev/null differ diff --git a/.git_backup/objects/12/a7cacdce87bc73ba666475c6b36986c3369907 b/.git_backup/objects/12/a7cacdce87bc73ba666475c6b36986c3369907 deleted file mode 100644 index 06f6bb72..00000000 Binary files a/.git_backup/objects/12/a7cacdce87bc73ba666475c6b36986c3369907 and /dev/null differ diff --git a/.git_backup/objects/12/ab23713a70dda46edd300bd975b02bfb2be031 b/.git_backup/objects/12/ab23713a70dda46edd300bd975b02bfb2be031 deleted file mode 100644 index 69da0bee..00000000 Binary files a/.git_backup/objects/12/ab23713a70dda46edd300bd975b02bfb2be031 and /dev/null differ diff --git a/.git_backup/objects/12/b1527e01e27cdb3f79857b70a9797275320e0e b/.git_backup/objects/12/b1527e01e27cdb3f79857b70a9797275320e0e deleted file mode 100644 index 431920bc..00000000 Binary files a/.git_backup/objects/12/b1527e01e27cdb3f79857b70a9797275320e0e and /dev/null differ diff --git a/.git_backup/objects/12/b2fd3356e88963b6159352ac7d6529dca40821 b/.git_backup/objects/12/b2fd3356e88963b6159352ac7d6529dca40821 deleted file mode 100644 index de5d9219..00000000 Binary files a/.git_backup/objects/12/b2fd3356e88963b6159352ac7d6529dca40821 and /dev/null differ diff --git a/.git_backup/objects/12/b9af5bd54df545a15fd7300891eeb26e5f9a6e b/.git_backup/objects/12/b9af5bd54df545a15fd7300891eeb26e5f9a6e deleted file mode 100644 index e99e8c43..00000000 Binary files a/.git_backup/objects/12/b9af5bd54df545a15fd7300891eeb26e5f9a6e and /dev/null differ diff --git a/.git_backup/objects/12/bbddcfd01257f0216308e89d3bcee267b29447 b/.git_backup/objects/12/bbddcfd01257f0216308e89d3bcee267b29447 deleted file mode 100644 index ef6837c3..00000000 Binary files a/.git_backup/objects/12/bbddcfd01257f0216308e89d3bcee267b29447 and /dev/null differ diff --git a/.git_backup/objects/12/bcb3c825b7340a847d5f8fbca78028185578e2 b/.git_backup/objects/12/bcb3c825b7340a847d5f8fbca78028185578e2 deleted file mode 100644 index 3533aa7a..00000000 Binary files a/.git_backup/objects/12/bcb3c825b7340a847d5f8fbca78028185578e2 and /dev/null differ diff --git a/.git_backup/objects/12/be3c6f23bfcb754af4c9df94bb122d63c4bbc5 b/.git_backup/objects/12/be3c6f23bfcb754af4c9df94bb122d63c4bbc5 deleted file mode 100644 index 6181f8a9..00000000 Binary files a/.git_backup/objects/12/be3c6f23bfcb754af4c9df94bb122d63c4bbc5 and /dev/null differ diff --git a/.git_backup/objects/12/bf2ab604ab10aef15f0044e11409281eb21339 b/.git_backup/objects/12/bf2ab604ab10aef15f0044e11409281eb21339 deleted file mode 100644 index 18408205..00000000 Binary files a/.git_backup/objects/12/bf2ab604ab10aef15f0044e11409281eb21339 and /dev/null differ diff --git a/.git_backup/objects/12/c0784ec9496c3420531d5a86279b57d8ee45bf b/.git_backup/objects/12/c0784ec9496c3420531d5a86279b57d8ee45bf deleted file mode 100644 index fa8a4ef0..00000000 Binary files a/.git_backup/objects/12/c0784ec9496c3420531d5a86279b57d8ee45bf and /dev/null differ diff --git a/.git_backup/objects/12/c86c33449ea69c73416b1c43c6760a43cec9fa b/.git_backup/objects/12/c86c33449ea69c73416b1c43c6760a43cec9fa deleted file mode 100644 index 0e4dd20e..00000000 Binary files a/.git_backup/objects/12/c86c33449ea69c73416b1c43c6760a43cec9fa and /dev/null differ diff --git a/.git_backup/objects/12/ccb03c21231f81fd33537d083283a8d6013e32 b/.git_backup/objects/12/ccb03c21231f81fd33537d083283a8d6013e32 deleted file mode 100644 index 623f91fd..00000000 Binary files a/.git_backup/objects/12/ccb03c21231f81fd33537d083283a8d6013e32 and /dev/null differ diff --git a/.git_backup/objects/12/ce24cbeae404efe6921081d21289be452ff88d b/.git_backup/objects/12/ce24cbeae404efe6921081d21289be452ff88d deleted file mode 100644 index 0a963fbf..00000000 Binary files a/.git_backup/objects/12/ce24cbeae404efe6921081d21289be452ff88d and /dev/null differ diff --git a/.git_backup/objects/12/d2118dff4ea6f406a86fbc72a9b98d5d9903d2 b/.git_backup/objects/12/d2118dff4ea6f406a86fbc72a9b98d5d9903d2 deleted file mode 100644 index 928f7bf6..00000000 Binary files a/.git_backup/objects/12/d2118dff4ea6f406a86fbc72a9b98d5d9903d2 and /dev/null differ diff --git a/.git_backup/objects/12/d23786c3387102568d0d60cb67b857073521d6 b/.git_backup/objects/12/d23786c3387102568d0d60cb67b857073521d6 deleted file mode 100644 index b877df78..00000000 Binary files a/.git_backup/objects/12/d23786c3387102568d0d60cb67b857073521d6 and /dev/null differ diff --git a/.git_backup/objects/12/d87e22a3c0c66b66b37b7edf5feb53204cdba0 b/.git_backup/objects/12/d87e22a3c0c66b66b37b7edf5feb53204cdba0 deleted file mode 100644 index db15ec96..00000000 Binary files a/.git_backup/objects/12/d87e22a3c0c66b66b37b7edf5feb53204cdba0 and /dev/null differ diff --git a/.git_backup/objects/12/dbe801aeb06823483525727f6f6695dec1bc24 b/.git_backup/objects/12/dbe801aeb06823483525727f6f6695dec1bc24 deleted file mode 100644 index 20bfa411..00000000 Binary files a/.git_backup/objects/12/dbe801aeb06823483525727f6f6695dec1bc24 and /dev/null differ diff --git a/.git_backup/objects/12/e14ce57f346d1c6cb327766ee919f8442158ee b/.git_backup/objects/12/e14ce57f346d1c6cb327766ee919f8442158ee deleted file mode 100644 index 4ff1b8d9..00000000 Binary files a/.git_backup/objects/12/e14ce57f346d1c6cb327766ee919f8442158ee and /dev/null differ diff --git a/.git_backup/objects/12/e9689165575e94946b13554ce77d9a52d840ca b/.git_backup/objects/12/e9689165575e94946b13554ce77d9a52d840ca deleted file mode 100644 index f4cb5235..00000000 Binary files a/.git_backup/objects/12/e9689165575e94946b13554ce77d9a52d840ca and /dev/null differ diff --git a/.git_backup/objects/12/ea0be38a6063ae80bf17c502d086dd4dda7cfa b/.git_backup/objects/12/ea0be38a6063ae80bf17c502d086dd4dda7cfa deleted file mode 100644 index c74ec0a0..00000000 Binary files a/.git_backup/objects/12/ea0be38a6063ae80bf17c502d086dd4dda7cfa and /dev/null differ diff --git a/.git_backup/objects/12/f424fd4167ddee54955814f7e7d5628ca5cb8a b/.git_backup/objects/12/f424fd4167ddee54955814f7e7d5628ca5cb8a deleted file mode 100644 index b6077b51..00000000 Binary files a/.git_backup/objects/12/f424fd4167ddee54955814f7e7d5628ca5cb8a and /dev/null differ diff --git a/.git_backup/objects/13/07c1e42bdabfd9984c7b1ff1597d52673828cc b/.git_backup/objects/13/07c1e42bdabfd9984c7b1ff1597d52673828cc deleted file mode 100644 index 150c8913..00000000 Binary files a/.git_backup/objects/13/07c1e42bdabfd9984c7b1ff1597d52673828cc and /dev/null differ diff --git a/.git_backup/objects/13/19b1ce5eb2b92ded767e25b7b1ef512d770c88 b/.git_backup/objects/13/19b1ce5eb2b92ded767e25b7b1ef512d770c88 deleted file mode 100644 index ee19d970..00000000 Binary files a/.git_backup/objects/13/19b1ce5eb2b92ded767e25b7b1ef512d770c88 and /dev/null differ diff --git a/.git_backup/objects/13/20401919826a8ae7a15adf4352814f4bbc06f7 b/.git_backup/objects/13/20401919826a8ae7a15adf4352814f4bbc06f7 deleted file mode 100644 index b7cfc128..00000000 Binary files a/.git_backup/objects/13/20401919826a8ae7a15adf4352814f4bbc06f7 and /dev/null differ diff --git a/.git_backup/objects/13/232d454a48c7f66fb0d6fecb1ea80eca5e6882 b/.git_backup/objects/13/232d454a48c7f66fb0d6fecb1ea80eca5e6882 deleted file mode 100644 index ec5c60e3..00000000 Binary files a/.git_backup/objects/13/232d454a48c7f66fb0d6fecb1ea80eca5e6882 and /dev/null differ diff --git a/.git_backup/objects/13/2435701bddb345a8e5f976f889d4961fb10c08 b/.git_backup/objects/13/2435701bddb345a8e5f976f889d4961fb10c08 deleted file mode 100644 index 0f0f31f9..00000000 Binary files a/.git_backup/objects/13/2435701bddb345a8e5f976f889d4961fb10c08 and /dev/null differ diff --git a/.git_backup/objects/13/27db2ceb7a66d0c9617e7b8c9628cc45111be0 b/.git_backup/objects/13/27db2ceb7a66d0c9617e7b8c9628cc45111be0 deleted file mode 100644 index 0c338cf0..00000000 Binary files a/.git_backup/objects/13/27db2ceb7a66d0c9617e7b8c9628cc45111be0 and /dev/null differ diff --git a/.git_backup/objects/13/2a0f87740cb5c0123a30cfd4f8c807cffdd394 b/.git_backup/objects/13/2a0f87740cb5c0123a30cfd4f8c807cffdd394 deleted file mode 100644 index 4f4aa831..00000000 Binary files a/.git_backup/objects/13/2a0f87740cb5c0123a30cfd4f8c807cffdd394 and /dev/null differ diff --git a/.git_backup/objects/13/2c9df314a33a93c2ddb5e3d1780eaa9695a163 b/.git_backup/objects/13/2c9df314a33a93c2ddb5e3d1780eaa9695a163 deleted file mode 100644 index 36022e7b..00000000 Binary files a/.git_backup/objects/13/2c9df314a33a93c2ddb5e3d1780eaa9695a163 and /dev/null differ diff --git a/.git_backup/objects/13/33911a3b78daa32a1d9c1bf7b0d6ba48000eda b/.git_backup/objects/13/33911a3b78daa32a1d9c1bf7b0d6ba48000eda deleted file mode 100644 index 8104b4f3..00000000 Binary files a/.git_backup/objects/13/33911a3b78daa32a1d9c1bf7b0d6ba48000eda and /dev/null differ diff --git a/.git_backup/objects/13/385cd2409d7d1615c74d8114211a4907b50eac b/.git_backup/objects/13/385cd2409d7d1615c74d8114211a4907b50eac deleted file mode 100644 index ad4e7f95..00000000 Binary files a/.git_backup/objects/13/385cd2409d7d1615c74d8114211a4907b50eac and /dev/null differ diff --git a/.git_backup/objects/13/41ad1c84fba94dc3567c9d6d0724e600d43321 b/.git_backup/objects/13/41ad1c84fba94dc3567c9d6d0724e600d43321 deleted file mode 100644 index b82f5c5e..00000000 Binary files a/.git_backup/objects/13/41ad1c84fba94dc3567c9d6d0724e600d43321 and /dev/null differ diff --git a/.git_backup/objects/13/4848ae526e54e2b18738f83088c4a17efcce96 b/.git_backup/objects/13/4848ae526e54e2b18738f83088c4a17efcce96 deleted file mode 100644 index 0d51a7e1..00000000 Binary files a/.git_backup/objects/13/4848ae526e54e2b18738f83088c4a17efcce96 and /dev/null differ diff --git a/.git_backup/objects/13/4883e159407ca33c26496b1c2b09d924375dc8 b/.git_backup/objects/13/4883e159407ca33c26496b1c2b09d924375dc8 deleted file mode 100644 index fabc0164..00000000 Binary files a/.git_backup/objects/13/4883e159407ca33c26496b1c2b09d924375dc8 and /dev/null differ diff --git a/.git_backup/objects/13/4ea599fff3db9409971d220ea050184cabd450 b/.git_backup/objects/13/4ea599fff3db9409971d220ea050184cabd450 deleted file mode 100644 index 0b39188a..00000000 Binary files a/.git_backup/objects/13/4ea599fff3db9409971d220ea050184cabd450 and /dev/null differ diff --git a/.git_backup/objects/13/55282d57acf6f9b605c89762b2ceac17ba7688 b/.git_backup/objects/13/55282d57acf6f9b605c89762b2ceac17ba7688 deleted file mode 100644 index 106b7ede..00000000 Binary files a/.git_backup/objects/13/55282d57acf6f9b605c89762b2ceac17ba7688 and /dev/null differ diff --git a/.git_backup/objects/13/55f0a7f3f4f1b3a660caf85a72b8ea972bbbe1 b/.git_backup/objects/13/55f0a7f3f4f1b3a660caf85a72b8ea972bbbe1 deleted file mode 100644 index fbec33d4..00000000 Binary files a/.git_backup/objects/13/55f0a7f3f4f1b3a660caf85a72b8ea972bbbe1 and /dev/null differ diff --git a/.git_backup/objects/13/560646ffc47b2957dfa649e4bb70693a14ac99 b/.git_backup/objects/13/560646ffc47b2957dfa649e4bb70693a14ac99 deleted file mode 100644 index a093abb2..00000000 Binary files a/.git_backup/objects/13/560646ffc47b2957dfa649e4bb70693a14ac99 and /dev/null differ diff --git a/.git_backup/objects/13/5974fb83e3d779540bc6af37fd103ebbdb9764 b/.git_backup/objects/13/5974fb83e3d779540bc6af37fd103ebbdb9764 deleted file mode 100644 index 9192db55..00000000 Binary files a/.git_backup/objects/13/5974fb83e3d779540bc6af37fd103ebbdb9764 and /dev/null differ diff --git a/.git_backup/objects/13/5eb1026deee8a0a1cf829c34f172e28b4b2e5a b/.git_backup/objects/13/5eb1026deee8a0a1cf829c34f172e28b4b2e5a deleted file mode 100644 index 8af45917..00000000 --- a/.git_backup/objects/13/5eb1026deee8a0a1cf829c34f172e28b4b2e5a +++ /dev/null @@ -1,2 +0,0 @@ -xŖn@9)F[rT&*TT\ٸVȻ!'D ĕ#R5$",ogwZk++WL4 :,nϸ'@0^4BF'fr)w`'XQS"s@o5qRűuks/wXD\GA`¡!~vL$r'{ m5~nLL4mgNp6˒Zae.5Zqg^YRiଭKo5E6%]U+jD!aX3X-`Poס$~6)fs[̩/êuf`:|9N9m@sPZ85f.<E+yH^Hcy!Sy M3ez&C9.Uukjy>4Ӡg(7]I-Zi&U4DBvcL;4 -ْ^ғ=]mjqk o/V*r.u>s(fi|􏟽.eC9[t+߿=z=?xm@5{nL##T=8f3Ir ^IF]vմ3IhH@wǁiUυ~k@jTNZVXp #!YVTT!"ItQk ah eI(elp$krJ2[Rm| #L \ No newline at end of file diff --git a/.git_backup/objects/13/60b66e77dc0246732269ed9352fc78aa538e50 b/.git_backup/objects/13/60b66e77dc0246732269ed9352fc78aa538e50 deleted file mode 100644 index 52a850bf..00000000 Binary files a/.git_backup/objects/13/60b66e77dc0246732269ed9352fc78aa538e50 and /dev/null differ diff --git a/.git_backup/objects/13/61934ed30c092df1590413a354808635149585 b/.git_backup/objects/13/61934ed30c092df1590413a354808635149585 deleted file mode 100644 index f0dc8bf9..00000000 Binary files a/.git_backup/objects/13/61934ed30c092df1590413a354808635149585 and /dev/null differ diff --git a/.git_backup/objects/13/64174aadd6f41bce8346c77f770ef70fcfa99a b/.git_backup/objects/13/64174aadd6f41bce8346c77f770ef70fcfa99a deleted file mode 100644 index 9d663485..00000000 Binary files a/.git_backup/objects/13/64174aadd6f41bce8346c77f770ef70fcfa99a and /dev/null differ diff --git a/.git_backup/objects/13/6fd6b6d53d6500880212d9086f8c027309a6dc b/.git_backup/objects/13/6fd6b6d53d6500880212d9086f8c027309a6dc deleted file mode 100644 index b1cd47d2..00000000 Binary files a/.git_backup/objects/13/6fd6b6d53d6500880212d9086f8c027309a6dc and /dev/null differ diff --git a/.git_backup/objects/13/70216e5dbe5d8e70e548a18f797d5e8476d0c2 b/.git_backup/objects/13/70216e5dbe5d8e70e548a18f797d5e8476d0c2 deleted file mode 100644 index c8ef8834..00000000 Binary files a/.git_backup/objects/13/70216e5dbe5d8e70e548a18f797d5e8476d0c2 and /dev/null differ diff --git a/.git_backup/objects/13/7232d747769cf89fb92f6e9e909f88fa43424a b/.git_backup/objects/13/7232d747769cf89fb92f6e9e909f88fa43424a deleted file mode 100644 index afe808a1..00000000 Binary files a/.git_backup/objects/13/7232d747769cf89fb92f6e9e909f88fa43424a and /dev/null differ diff --git a/.git_backup/objects/13/73c5f9cb686841a7e88de2227f5748c9e0e3ab b/.git_backup/objects/13/73c5f9cb686841a7e88de2227f5748c9e0e3ab deleted file mode 100644 index d20e7d9b..00000000 Binary files a/.git_backup/objects/13/73c5f9cb686841a7e88de2227f5748c9e0e3ab and /dev/null differ diff --git a/.git_backup/objects/13/7561e1f636d7b08959e43e969a6984eb7a3b37 b/.git_backup/objects/13/7561e1f636d7b08959e43e969a6984eb7a3b37 deleted file mode 100644 index 860f89b7..00000000 --- a/.git_backup/objects/13/7561e1f636d7b08959e43e969a6984eb7a3b37 +++ /dev/null @@ -1 +0,0 @@ -xKOR067e```~ $XA$(3/"0~p#| a`c>0yz:a`<}0s`q < #\` %*c \ No newline at end of file diff --git a/.git_backup/objects/13/892b5604abeea6cea42cbed88c7797ca060d28 b/.git_backup/objects/13/892b5604abeea6cea42cbed88c7797ca060d28 deleted file mode 100644 index 1455931b..00000000 Binary files a/.git_backup/objects/13/892b5604abeea6cea42cbed88c7797ca060d28 and /dev/null differ diff --git a/.git_backup/objects/13/9199ba826c9d7ae4bd415ca617eb865e34aa57 b/.git_backup/objects/13/9199ba826c9d7ae4bd415ca617eb865e34aa57 deleted file mode 100644 index 088e4da1..00000000 Binary files a/.git_backup/objects/13/9199ba826c9d7ae4bd415ca617eb865e34aa57 and /dev/null differ diff --git a/.git_backup/objects/13/9995ac3f109a82664e4913f7ebc32ecf7617e1 b/.git_backup/objects/13/9995ac3f109a82664e4913f7ebc32ecf7617e1 deleted file mode 100644 index c3e4a9a7..00000000 Binary files a/.git_backup/objects/13/9995ac3f109a82664e4913f7ebc32ecf7617e1 and /dev/null differ diff --git a/.git_backup/objects/13/9b949f7f2dad487477ec18a635de9865d29d69 b/.git_backup/objects/13/9b949f7f2dad487477ec18a635de9865d29d69 deleted file mode 100644 index 3e0800d5..00000000 Binary files a/.git_backup/objects/13/9b949f7f2dad487477ec18a635de9865d29d69 and /dev/null differ diff --git a/.git_backup/objects/13/9c014470c678c806675aa4ce69649c54fa4d09 b/.git_backup/objects/13/9c014470c678c806675aa4ce69649c54fa4d09 deleted file mode 100644 index 5b9e365c..00000000 Binary files a/.git_backup/objects/13/9c014470c678c806675aa4ce69649c54fa4d09 and /dev/null differ diff --git a/.git_backup/objects/13/aab8cdbf148dfafcd14bc9c87b0962b2afb9e3 b/.git_backup/objects/13/aab8cdbf148dfafcd14bc9c87b0962b2afb9e3 deleted file mode 100644 index 5c79915d..00000000 Binary files a/.git_backup/objects/13/aab8cdbf148dfafcd14bc9c87b0962b2afb9e3 and /dev/null differ diff --git a/.git_backup/objects/13/ac638625c1f2ff05429e2b942c785b81d8ce22 b/.git_backup/objects/13/ac638625c1f2ff05429e2b942c785b81d8ce22 deleted file mode 100644 index 8360b545..00000000 Binary files a/.git_backup/objects/13/ac638625c1f2ff05429e2b942c785b81d8ce22 and /dev/null differ diff --git a/.git_backup/objects/13/b0c73c3176266046055223f2fcc47e88969d5c b/.git_backup/objects/13/b0c73c3176266046055223f2fcc47e88969d5c deleted file mode 100644 index f90ad045..00000000 Binary files a/.git_backup/objects/13/b0c73c3176266046055223f2fcc47e88969d5c and /dev/null differ diff --git a/.git_backup/objects/13/b1c0e8fd25a829c13a8961b3fc48963b56befa b/.git_backup/objects/13/b1c0e8fd25a829c13a8961b3fc48963b56befa deleted file mode 100644 index 50df3cd5..00000000 Binary files a/.git_backup/objects/13/b1c0e8fd25a829c13a8961b3fc48963b56befa and /dev/null differ diff --git a/.git_backup/objects/13/cab1ed026d615ccde28b29bd3fea93e0be3a0c b/.git_backup/objects/13/cab1ed026d615ccde28b29bd3fea93e0be3a0c deleted file mode 100644 index c8c8f1fd..00000000 Binary files a/.git_backup/objects/13/cab1ed026d615ccde28b29bd3fea93e0be3a0c and /dev/null differ diff --git a/.git_backup/objects/13/d25f580c3d273fbfa83c8d96c30990295055a1 b/.git_backup/objects/13/d25f580c3d273fbfa83c8d96c30990295055a1 deleted file mode 100644 index 4ee4a179..00000000 Binary files a/.git_backup/objects/13/d25f580c3d273fbfa83c8d96c30990295055a1 and /dev/null differ diff --git a/.git_backup/objects/13/d92c3615aefb297193b8f51759f2bff658ada3 b/.git_backup/objects/13/d92c3615aefb297193b8f51759f2bff658ada3 deleted file mode 100644 index e1cb4118..00000000 Binary files a/.git_backup/objects/13/d92c3615aefb297193b8f51759f2bff658ada3 and /dev/null differ diff --git a/.git_backup/objects/13/dc1910a106b054d380671ee27dd38add8385b0 b/.git_backup/objects/13/dc1910a106b054d380671ee27dd38add8385b0 deleted file mode 100644 index 9355bb0a..00000000 Binary files a/.git_backup/objects/13/dc1910a106b054d380671ee27dd38add8385b0 and /dev/null differ diff --git a/.git_backup/objects/13/dc3d5a4bc71c6feb1c4bfb7e995335c561d7fd b/.git_backup/objects/13/dc3d5a4bc71c6feb1c4bfb7e995335c561d7fd deleted file mode 100644 index 959b8f2d..00000000 Binary files a/.git_backup/objects/13/dc3d5a4bc71c6feb1c4bfb7e995335c561d7fd and /dev/null differ diff --git a/.git_backup/objects/13/dc82d779f953fbea54323785bdcadc3e24dfd8 b/.git_backup/objects/13/dc82d779f953fbea54323785bdcadc3e24dfd8 deleted file mode 100644 index 840cb8d8..00000000 Binary files a/.git_backup/objects/13/dc82d779f953fbea54323785bdcadc3e24dfd8 and /dev/null differ diff --git a/.git_backup/objects/13/dec96b144ff3130af59980f9e400b4af8ec1ba b/.git_backup/objects/13/dec96b144ff3130af59980f9e400b4af8ec1ba deleted file mode 100644 index 5017e20b..00000000 Binary files a/.git_backup/objects/13/dec96b144ff3130af59980f9e400b4af8ec1ba and /dev/null differ diff --git a/.git_backup/objects/13/e7d3818761c07393460c1a281728dd51361e1e b/.git_backup/objects/13/e7d3818761c07393460c1a281728dd51361e1e deleted file mode 100644 index 92c2df9b..00000000 Binary files a/.git_backup/objects/13/e7d3818761c07393460c1a281728dd51361e1e and /dev/null differ diff --git a/.git_backup/objects/13/e7e359d10f5d80eaf91c4e74eaef7b21578102 b/.git_backup/objects/13/e7e359d10f5d80eaf91c4e74eaef7b21578102 deleted file mode 100644 index f5d0f5d7..00000000 Binary files a/.git_backup/objects/13/e7e359d10f5d80eaf91c4e74eaef7b21578102 and /dev/null differ diff --git a/.git_backup/objects/13/f131e399996bb28ce3df0e3f17d1dcd79df1c8 b/.git_backup/objects/13/f131e399996bb28ce3df0e3f17d1dcd79df1c8 deleted file mode 100644 index 2b60a9e4..00000000 Binary files a/.git_backup/objects/13/f131e399996bb28ce3df0e3f17d1dcd79df1c8 and /dev/null differ diff --git a/.git_backup/objects/13/f196a567952090dc0b30be269ce726820b2bc5 b/.git_backup/objects/13/f196a567952090dc0b30be269ce726820b2bc5 deleted file mode 100644 index cb1dee95..00000000 Binary files a/.git_backup/objects/13/f196a567952090dc0b30be269ce726820b2bc5 and /dev/null differ diff --git a/.git_backup/objects/13/f2ff3d1e3806fedfa0592f2396f01edc2268b7 b/.git_backup/objects/13/f2ff3d1e3806fedfa0592f2396f01edc2268b7 deleted file mode 100644 index 4c34bff7..00000000 Binary files a/.git_backup/objects/13/f2ff3d1e3806fedfa0592f2396f01edc2268b7 and /dev/null differ diff --git a/.git_backup/objects/13/f3512cf075f635359a5e2384435b990ad34286 b/.git_backup/objects/13/f3512cf075f635359a5e2384435b990ad34286 deleted file mode 100644 index f10841eb..00000000 Binary files a/.git_backup/objects/13/f3512cf075f635359a5e2384435b990ad34286 and /dev/null differ diff --git a/.git_backup/objects/13/fec9829c3dbf683862e8ec63d7522b4fe8ce10 b/.git_backup/objects/13/fec9829c3dbf683862e8ec63d7522b4fe8ce10 deleted file mode 100644 index efb07165..00000000 Binary files a/.git_backup/objects/13/fec9829c3dbf683862e8ec63d7522b4fe8ce10 and /dev/null differ diff --git a/.git_backup/objects/13/ff8f028c2a4142fd11d79a511de560e899d50e b/.git_backup/objects/13/ff8f028c2a4142fd11d79a511de560e899d50e deleted file mode 100644 index 6098ba8c..00000000 Binary files a/.git_backup/objects/13/ff8f028c2a4142fd11d79a511de560e899d50e and /dev/null differ diff --git a/.git_backup/objects/14/0592dcdff62f6753411911d20ad6cd974e5efb b/.git_backup/objects/14/0592dcdff62f6753411911d20ad6cd974e5efb deleted file mode 100644 index de2ab51f..00000000 Binary files a/.git_backup/objects/14/0592dcdff62f6753411911d20ad6cd974e5efb and /dev/null differ diff --git a/.git_backup/objects/14/0baa7f69625080fbfec7a18e08796fa16ee642 b/.git_backup/objects/14/0baa7f69625080fbfec7a18e08796fa16ee642 deleted file mode 100644 index aa960a9f..00000000 Binary files a/.git_backup/objects/14/0baa7f69625080fbfec7a18e08796fa16ee642 and /dev/null differ diff --git a/.git_backup/objects/14/113e39bb8a329f312ce3d29b399198f5c416af b/.git_backup/objects/14/113e39bb8a329f312ce3d29b399198f5c416af deleted file mode 100644 index 47af6f1b..00000000 Binary files a/.git_backup/objects/14/113e39bb8a329f312ce3d29b399198f5c416af and /dev/null differ diff --git a/.git_backup/objects/14/15c29897c488017457fca6db2d004065aa4e40 b/.git_backup/objects/14/15c29897c488017457fca6db2d004065aa4e40 deleted file mode 100644 index 7513d47f..00000000 Binary files a/.git_backup/objects/14/15c29897c488017457fca6db2d004065aa4e40 and /dev/null differ diff --git a/.git_backup/objects/14/25d10ecaa59a9e49b73cea2b8b4747de73f6b5 b/.git_backup/objects/14/25d10ecaa59a9e49b73cea2b8b4747de73f6b5 deleted file mode 100644 index f9b560c1..00000000 Binary files a/.git_backup/objects/14/25d10ecaa59a9e49b73cea2b8b4747de73f6b5 and /dev/null differ diff --git a/.git_backup/objects/14/27fa6e43baab3313a7ee29cdf67e5146add9d6 b/.git_backup/objects/14/27fa6e43baab3313a7ee29cdf67e5146add9d6 deleted file mode 100644 index 72a91a01..00000000 Binary files a/.git_backup/objects/14/27fa6e43baab3313a7ee29cdf67e5146add9d6 and /dev/null differ diff --git a/.git_backup/objects/14/2f90d0e58510da5d7fe4d80d415657ec5f5027 b/.git_backup/objects/14/2f90d0e58510da5d7fe4d80d415657ec5f5027 deleted file mode 100644 index 52953fda..00000000 Binary files a/.git_backup/objects/14/2f90d0e58510da5d7fe4d80d415657ec5f5027 and /dev/null differ diff --git a/.git_backup/objects/14/3694cf8361b9d82a589cf2a24ae59379c0207e b/.git_backup/objects/14/3694cf8361b9d82a589cf2a24ae59379c0207e deleted file mode 100644 index 65af609b..00000000 Binary files a/.git_backup/objects/14/3694cf8361b9d82a589cf2a24ae59379c0207e and /dev/null differ diff --git a/.git_backup/objects/14/386e5c94b317732257975b1984d55414d553b7 b/.git_backup/objects/14/386e5c94b317732257975b1984d55414d553b7 deleted file mode 100644 index e79ecf20..00000000 Binary files a/.git_backup/objects/14/386e5c94b317732257975b1984d55414d553b7 and /dev/null differ diff --git a/.git_backup/objects/14/43b49085bd625920fa1e98ee7640dedfb35023 b/.git_backup/objects/14/43b49085bd625920fa1e98ee7640dedfb35023 deleted file mode 100644 index ff332b32..00000000 Binary files a/.git_backup/objects/14/43b49085bd625920fa1e98ee7640dedfb35023 and /dev/null differ diff --git a/.git_backup/objects/14/4cc89b21c3b4bd2a788da9c1bc88fd48adc04a b/.git_backup/objects/14/4cc89b21c3b4bd2a788da9c1bc88fd48adc04a deleted file mode 100644 index 1f7ecbc7..00000000 Binary files a/.git_backup/objects/14/4cc89b21c3b4bd2a788da9c1bc88fd48adc04a and /dev/null differ diff --git a/.git_backup/objects/14/4d906d1d9e4925d9f39d511ce0e46aa9d9166e b/.git_backup/objects/14/4d906d1d9e4925d9f39d511ce0e46aa9d9166e deleted file mode 100644 index 1b048018..00000000 Binary files a/.git_backup/objects/14/4d906d1d9e4925d9f39d511ce0e46aa9d9166e and /dev/null differ diff --git a/.git_backup/objects/14/5526007c36bce8948d6e4a7301489da6599a1f b/.git_backup/objects/14/5526007c36bce8948d6e4a7301489da6599a1f deleted file mode 100644 index 5fdcf000..00000000 Binary files a/.git_backup/objects/14/5526007c36bce8948d6e4a7301489da6599a1f and /dev/null differ diff --git a/.git_backup/objects/14/59b6b6ea635b17b5eb04c941e197f98cf04bf1 b/.git_backup/objects/14/59b6b6ea635b17b5eb04c941e197f98cf04bf1 deleted file mode 100644 index 7b8a038a..00000000 --- a/.git_backup/objects/14/59b6b6ea635b17b5eb04c941e197f98cf04bf1 +++ /dev/null @@ -1,3 +0,0 @@ -xUMNQ]s9qc$쌚xAĸ -ʊYa7oF7*]_ծnjez]_3e?f7|!4 $"tY/&ұRbb"e7n4OJ߄hjw[?kTZy]Zt!AϻmxqFOYL]^R4*n:o5cɭJQW}4i -[ \ No newline at end of file diff --git a/.git_backup/objects/14/603c91a081faf85c4b14064075f05b7e4331f5 b/.git_backup/objects/14/603c91a081faf85c4b14064075f05b7e4331f5 deleted file mode 100644 index 924c78b1..00000000 Binary files a/.git_backup/objects/14/603c91a081faf85c4b14064075f05b7e4331f5 and /dev/null differ diff --git a/.git_backup/objects/14/61c4e63530dfa37e3221992b64383b25fbf3ee b/.git_backup/objects/14/61c4e63530dfa37e3221992b64383b25fbf3ee deleted file mode 100644 index 663c2b57..00000000 --- a/.git_backup/objects/14/61c4e63530dfa37e3221992b64383b25fbf3ee +++ /dev/null @@ -1 +0,0 @@ -x PLo7p%Ƹ索 68,,~Gĕ ŴZ!gX:P \ No newline at end of file diff --git a/.git_backup/objects/14/63e47a7ae149c4d8eb4deeac1d1dccd02efd7f b/.git_backup/objects/14/63e47a7ae149c4d8eb4deeac1d1dccd02efd7f deleted file mode 100644 index b32c34d0..00000000 Binary files a/.git_backup/objects/14/63e47a7ae149c4d8eb4deeac1d1dccd02efd7f and /dev/null differ diff --git a/.git_backup/objects/14/6dfd075b84b78a3c514e796349653eaae32b87 b/.git_backup/objects/14/6dfd075b84b78a3c514e796349653eaae32b87 deleted file mode 100644 index 88c3fabc..00000000 --- a/.git_backup/objects/14/6dfd075b84b78a3c514e796349653eaae32b87 +++ /dev/null @@ -1 +0,0 @@ -xSn09_r/pZz@'dZrl^u% JH6o,g}Oo]K0]E:%xDZE XT9[p遑Y;Z׺OXgORg_ĬN ,Y.])k__;U ) MS[hK yw0bB0 }>? '犨1wݨRL,7\UXoKwܥjе"es;d|o:%,VǏl!Pİ!yλ  \ No newline at end of file diff --git a/.git_backup/objects/14/6f021156b9b321764fa17719f0ba4eff65884b b/.git_backup/objects/14/6f021156b9b321764fa17719f0ba4eff65884b deleted file mode 100644 index df203090..00000000 Binary files a/.git_backup/objects/14/6f021156b9b321764fa17719f0ba4eff65884b and /dev/null differ diff --git a/.git_backup/objects/14/78bb59448c9c6a6cca0feb4f9ef3e3fa705ab2 b/.git_backup/objects/14/78bb59448c9c6a6cca0feb4f9ef3e3fa705ab2 deleted file mode 100644 index 4ba8aa0d..00000000 Binary files a/.git_backup/objects/14/78bb59448c9c6a6cca0feb4f9ef3e3fa705ab2 and /dev/null differ diff --git a/.git_backup/objects/14/7d6ced4959dbc34187544c06fb3c719830df39 b/.git_backup/objects/14/7d6ced4959dbc34187544c06fb3c719830df39 deleted file mode 100644 index 75321419..00000000 Binary files a/.git_backup/objects/14/7d6ced4959dbc34187544c06fb3c719830df39 and /dev/null differ diff --git a/.git_backup/objects/14/7eefe536b0bf76d6bb72cac499077a4d13e333 b/.git_backup/objects/14/7eefe536b0bf76d6bb72cac499077a4d13e333 deleted file mode 100644 index 26c9e35a..00000000 Binary files a/.git_backup/objects/14/7eefe536b0bf76d6bb72cac499077a4d13e333 and /dev/null differ diff --git a/.git_backup/objects/14/82573293677f06d283d45e5b88f724b037fc40 b/.git_backup/objects/14/82573293677f06d283d45e5b88f724b037fc40 deleted file mode 100644 index 195cb27c..00000000 --- a/.git_backup/objects/14/82573293677f06d283d45e5b88f724b037fc40 +++ /dev/null @@ -1,2 +0,0 @@ -xuJ1=)=%aO>RBVGn$S=SmϾ:V| YBd2]Ymc)5yH gVF&i5,3"Z{ `cE5Ġħ \ No newline at end of file diff --git a/.git_backup/objects/14/858272152b5c7bf80ce6302e144cbd0e219542 b/.git_backup/objects/14/858272152b5c7bf80ce6302e144cbd0e219542 deleted file mode 100644 index ab31a6d1..00000000 --- a/.git_backup/objects/14/858272152b5c7bf80ce6302e144cbd0e219542 +++ /dev/null @@ -1,4 +0,0 @@ -xVoEٍ4HGAՇTTPhQE/)82ZmDc)c|'P` G=:к"Xս~YMczxbzl95i3go=§kxFʥ}2KvRk-nw}HHRWʚPwdw]HȵVMJ`)K $I(qMhr{>6xkyv]Fntܑv5W|DB`r>$M n1& SXF+ΞKܡ$ ZePSM6O˧1ro!i^Y!1_IP YrT!;l)T_ >H.yLB! jc eZS+L hmz+-Q94MR/hJq/ht{KD(pLDԄo> '|\_KL5%zwEԗzk -FWEW{ 66_xpWharzp_ļ+i z@ \S}1i-P8T]@u -bsF0-g\7yPYZ kKHp'IB2&X|u`v[ ꄫ -|ƪgK.^^?81;E JAvD7 !l0?q?fzNƭ~jɀ<6o+$J"7s`oW_{HZ2Oݺ37vC{"3NCM&aC4sw`34-rT8+}%XjI2oNXvCwXUԀTDSj+-M$g#w3M+t IHe&3a'7X \ No newline at end of file diff --git a/.git_backup/objects/14/875d826b85a830897706b4487671067128c028 b/.git_backup/objects/14/875d826b85a830897706b4487671067128c028 deleted file mode 100644 index a67953aa..00000000 Binary files a/.git_backup/objects/14/875d826b85a830897706b4487671067128c028 and /dev/null differ diff --git a/.git_backup/objects/14/876000de895a609d5b9f3de39c3c8fc44ef1fc b/.git_backup/objects/14/876000de895a609d5b9f3de39c3c8fc44ef1fc deleted file mode 100644 index 85adc1fb..00000000 Binary files a/.git_backup/objects/14/876000de895a609d5b9f3de39c3c8fc44ef1fc and /dev/null differ diff --git a/.git_backup/objects/14/8999d90d554b26b7ad2be483594a68c3b16ac6 b/.git_backup/objects/14/8999d90d554b26b7ad2be483594a68c3b16ac6 deleted file mode 100644 index ef07fb02..00000000 Binary files a/.git_backup/objects/14/8999d90d554b26b7ad2be483594a68c3b16ac6 and /dev/null differ diff --git a/.git_backup/objects/14/8d776c29c820c113ce854f9e0a804a46d1a4b5 b/.git_backup/objects/14/8d776c29c820c113ce854f9e0a804a46d1a4b5 deleted file mode 100644 index f65c2464..00000000 Binary files a/.git_backup/objects/14/8d776c29c820c113ce854f9e0a804a46d1a4b5 and /dev/null differ diff --git a/.git_backup/objects/14/9419f1295c729204c014b6fe19617a1406e72b b/.git_backup/objects/14/9419f1295c729204c014b6fe19617a1406e72b deleted file mode 100644 index 160253a1..00000000 Binary files a/.git_backup/objects/14/9419f1295c729204c014b6fe19617a1406e72b and /dev/null differ diff --git a/.git_backup/objects/14/a2d1e1fd4b3ac16dae193961779fc0338bf609 b/.git_backup/objects/14/a2d1e1fd4b3ac16dae193961779fc0338bf609 deleted file mode 100644 index 1a24de9f..00000000 Binary files a/.git_backup/objects/14/a2d1e1fd4b3ac16dae193961779fc0338bf609 and /dev/null differ diff --git a/.git_backup/objects/14/a31988fe428ff77025ae380b0e11f43ac57e8f b/.git_backup/objects/14/a31988fe428ff77025ae380b0e11f43ac57e8f deleted file mode 100644 index 45b8c54a..00000000 Binary files a/.git_backup/objects/14/a31988fe428ff77025ae380b0e11f43ac57e8f and /dev/null differ diff --git a/.git_backup/objects/14/acd7172a8da224a5338cf9117ee6407f146117 b/.git_backup/objects/14/acd7172a8da224a5338cf9117ee6407f146117 deleted file mode 100644 index d931d042..00000000 --- a/.git_backup/objects/14/acd7172a8da224a5338cf9117ee6407f146117 +++ /dev/null @@ -1,2 +0,0 @@ -xmPN0&R%B@EyH88qĦVvZqB -`O4W-u1$sy#a!ZJ>'>eԷɒb1pL:&`׷'!7RwU`M^szCCQp]ޖ+7˖SO jSRt` &TӁuWr=lbN|Pc+@.iQ,O=O\v \ No newline at end of file diff --git a/.git_backup/objects/14/b4ed9b574c589cfe0b2cc12469df3aebdd9e6f b/.git_backup/objects/14/b4ed9b574c589cfe0b2cc12469df3aebdd9e6f deleted file mode 100644 index 9319c36d..00000000 Binary files a/.git_backup/objects/14/b4ed9b574c589cfe0b2cc12469df3aebdd9e6f and /dev/null differ diff --git a/.git_backup/objects/14/b5888b27974540378b8327983f637ba36bde9b b/.git_backup/objects/14/b5888b27974540378b8327983f637ba36bde9b deleted file mode 100644 index a8a0982d..00000000 Binary files a/.git_backup/objects/14/b5888b27974540378b8327983f637ba36bde9b and /dev/null differ diff --git a/.git_backup/objects/14/ba0ef42aafbfb18f35adf33f7a42e0e73e9695 b/.git_backup/objects/14/ba0ef42aafbfb18f35adf33f7a42e0e73e9695 deleted file mode 100644 index fd869b71..00000000 Binary files a/.git_backup/objects/14/ba0ef42aafbfb18f35adf33f7a42e0e73e9695 and /dev/null differ diff --git a/.git_backup/objects/14/c62b4d1b905ec71d8ab97dfdb3f18638d707f1 b/.git_backup/objects/14/c62b4d1b905ec71d8ab97dfdb3f18638d707f1 deleted file mode 100644 index 466951ac..00000000 Binary files a/.git_backup/objects/14/c62b4d1b905ec71d8ab97dfdb3f18638d707f1 and /dev/null differ diff --git a/.git_backup/objects/14/cd4cdc1f19c6c0450fe5a22b1d153b3b0ff992 b/.git_backup/objects/14/cd4cdc1f19c6c0450fe5a22b1d153b3b0ff992 deleted file mode 100644 index d2fe62db..00000000 Binary files a/.git_backup/objects/14/cd4cdc1f19c6c0450fe5a22b1d153b3b0ff992 and /dev/null differ diff --git a/.git_backup/objects/14/d059c04b7c073c6ad8d48e368b847d54fed7ba b/.git_backup/objects/14/d059c04b7c073c6ad8d48e368b847d54fed7ba deleted file mode 100644 index d3007998..00000000 Binary files a/.git_backup/objects/14/d059c04b7c073c6ad8d48e368b847d54fed7ba and /dev/null differ diff --git a/.git_backup/objects/14/d21a60776b9cda4c1c0af3f3ecafca8033448d b/.git_backup/objects/14/d21a60776b9cda4c1c0af3f3ecafca8033448d deleted file mode 100644 index ef2ef6ca..00000000 Binary files a/.git_backup/objects/14/d21a60776b9cda4c1c0af3f3ecafca8033448d and /dev/null differ diff --git a/.git_backup/objects/14/d4a42c5e0d379a059b7904970aaf57ccc676f3 b/.git_backup/objects/14/d4a42c5e0d379a059b7904970aaf57ccc676f3 deleted file mode 100644 index 0ec8b6d7..00000000 Binary files a/.git_backup/objects/14/d4a42c5e0d379a059b7904970aaf57ccc676f3 and /dev/null differ diff --git a/.git_backup/objects/14/d523a753e1e701961e9f9e14f2561889a43e3c b/.git_backup/objects/14/d523a753e1e701961e9f9e14f2561889a43e3c deleted file mode 100644 index 8a346247..00000000 Binary files a/.git_backup/objects/14/d523a753e1e701961e9f9e14f2561889a43e3c and /dev/null differ diff --git a/.git_backup/objects/14/dc5513174d36a192e2b7b26c98f6acc9a5e27e b/.git_backup/objects/14/dc5513174d36a192e2b7b26c98f6acc9a5e27e deleted file mode 100644 index 331efe5d..00000000 Binary files a/.git_backup/objects/14/dc5513174d36a192e2b7b26c98f6acc9a5e27e and /dev/null differ diff --git a/.git_backup/objects/14/ed103a3799af90dbb811d21f7001e780cc642f b/.git_backup/objects/14/ed103a3799af90dbb811d21f7001e780cc642f deleted file mode 100644 index 7f21d94d..00000000 Binary files a/.git_backup/objects/14/ed103a3799af90dbb811d21f7001e780cc642f and /dev/null differ diff --git a/.git_backup/objects/14/eea34f887c1217b01d793d325e9ef25389558f b/.git_backup/objects/14/eea34f887c1217b01d793d325e9ef25389558f deleted file mode 100644 index 4311c244..00000000 Binary files a/.git_backup/objects/14/eea34f887c1217b01d793d325e9ef25389558f and /dev/null differ diff --git a/.git_backup/objects/14/f077a8e1185157ea29f9b88f77cfd6572ef1e2 b/.git_backup/objects/14/f077a8e1185157ea29f9b88f77cfd6572ef1e2 deleted file mode 100644 index a40020ac..00000000 Binary files a/.git_backup/objects/14/f077a8e1185157ea29f9b88f77cfd6572ef1e2 and /dev/null differ diff --git a/.git_backup/objects/14/f69737583f4655357d654bf55fbc3a580b594b b/.git_backup/objects/14/f69737583f4655357d654bf55fbc3a580b594b deleted file mode 100644 index 3c506ff9..00000000 Binary files a/.git_backup/objects/14/f69737583f4655357d654bf55fbc3a580b594b and /dev/null differ diff --git a/.git_backup/objects/14/f8f5c86c91b60d68fce5b1cf727dbe6f331d7d b/.git_backup/objects/14/f8f5c86c91b60d68fce5b1cf727dbe6f331d7d deleted file mode 100644 index acd1d20f..00000000 Binary files a/.git_backup/objects/14/f8f5c86c91b60d68fce5b1cf727dbe6f331d7d and /dev/null differ diff --git a/.git_backup/objects/14/ffb68199da3d65e3d3b0e3313c856abb04c3c4 b/.git_backup/objects/14/ffb68199da3d65e3d3b0e3313c856abb04c3c4 deleted file mode 100644 index b9018afd..00000000 Binary files a/.git_backup/objects/14/ffb68199da3d65e3d3b0e3313c856abb04c3c4 and /dev/null differ diff --git a/.git_backup/objects/15/0136938548af6aa5ae1f716b330d0eb2d3e013 b/.git_backup/objects/15/0136938548af6aa5ae1f716b330d0eb2d3e013 deleted file mode 100644 index fc6833c3..00000000 Binary files a/.git_backup/objects/15/0136938548af6aa5ae1f716b330d0eb2d3e013 and /dev/null differ diff --git a/.git_backup/objects/15/0516aadffc62bc5caa7e981e28db18941de1a7 b/.git_backup/objects/15/0516aadffc62bc5caa7e981e28db18941de1a7 deleted file mode 100644 index 07aced8f..00000000 Binary files a/.git_backup/objects/15/0516aadffc62bc5caa7e981e28db18941de1a7 and /dev/null differ diff --git a/.git_backup/objects/15/06d66bf4e93afb60ad46c23f234b31c46b3a7e b/.git_backup/objects/15/06d66bf4e93afb60ad46c23f234b31c46b3a7e deleted file mode 100644 index 275bafd4..00000000 Binary files a/.git_backup/objects/15/06d66bf4e93afb60ad46c23f234b31c46b3a7e and /dev/null differ diff --git a/.git_backup/objects/15/0ba11d5b9d668161970e42faf7df8577970e63 b/.git_backup/objects/15/0ba11d5b9d668161970e42faf7df8577970e63 deleted file mode 100644 index 8d4d0adc..00000000 Binary files a/.git_backup/objects/15/0ba11d5b9d668161970e42faf7df8577970e63 and /dev/null differ diff --git a/.git_backup/objects/15/1164aa7c98d06c05125659a28271e4fb4b17ed b/.git_backup/objects/15/1164aa7c98d06c05125659a28271e4fb4b17ed deleted file mode 100644 index c9b492b6..00000000 Binary files a/.git_backup/objects/15/1164aa7c98d06c05125659a28271e4fb4b17ed and /dev/null differ diff --git a/.git_backup/objects/15/1979db70436589def4e3a8c8bafedc42dc5341 b/.git_backup/objects/15/1979db70436589def4e3a8c8bafedc42dc5341 deleted file mode 100644 index 80f55490..00000000 --- a/.git_backup/objects/15/1979db70436589def4e3a8c8bafedc42dc5341 +++ /dev/null @@ -1 +0,0 @@ -xj EW yJ`l!F')W)4pgFPU$@J&g҈0 |u1zނCKOwM4IJRn] ZY#+(4M^9"hEZ*5׍`%ӱvk" -4iB#Qf j^/n a< 75&Oh6ȦP%_cB )_92~)^F<@lvUsӈw\ \ No newline at end of file diff --git a/.git_backup/objects/15/1db87ee8d460612a98c6b70c61022084044268 b/.git_backup/objects/15/1db87ee8d460612a98c6b70c61022084044268 deleted file mode 100644 index bdd7d0bf..00000000 Binary files a/.git_backup/objects/15/1db87ee8d460612a98c6b70c61022084044268 and /dev/null differ diff --git a/.git_backup/objects/15/21fde608475d9c59991820f86cf70214ff1aa1 b/.git_backup/objects/15/21fde608475d9c59991820f86cf70214ff1aa1 deleted file mode 100644 index 79af1624..00000000 --- a/.git_backup/objects/15/21fde608475d9c59991820f86cf70214ff1aa1 +++ /dev/null @@ -1 +0,0 @@ -xuRMO0 _6U8 $n?0iQ[XTW4~=I("Wxp߁vUmY>+%]CVV _bT܀U5x-՜{Kј ʢM3uz*z018iŎ ]1N7XւQ2Z[Wվ͝yQE'نK_ҔQx?̸B \ No newline at end of file diff --git a/.git_backup/objects/15/ba4508ca4b66e5177c988ebe5b2a5dfe1df964 b/.git_backup/objects/15/ba4508ca4b66e5177c988ebe5b2a5dfe1df964 deleted file mode 100644 index 1724dc79..00000000 Binary files a/.git_backup/objects/15/ba4508ca4b66e5177c988ebe5b2a5dfe1df964 and /dev/null differ diff --git a/.git_backup/objects/15/be2fe79b34a3dbbefc3701075cb8b7e596a80a b/.git_backup/objects/15/be2fe79b34a3dbbefc3701075cb8b7e596a80a deleted file mode 100644 index 840677b9..00000000 Binary files a/.git_backup/objects/15/be2fe79b34a3dbbefc3701075cb8b7e596a80a and /dev/null differ diff --git a/.git_backup/objects/15/bf67bfd1f3b365ce05125db2e0ba616e39634d b/.git_backup/objects/15/bf67bfd1f3b365ce05125db2e0ba616e39634d deleted file mode 100644 index 1f2c0806..00000000 Binary files a/.git_backup/objects/15/bf67bfd1f3b365ce05125db2e0ba616e39634d and /dev/null differ diff --git a/.git_backup/objects/15/c1b867fddaf98e7b9db8d7b9a98ac22ea300e9 b/.git_backup/objects/15/c1b867fddaf98e7b9db8d7b9a98ac22ea300e9 deleted file mode 100644 index 6ccebb2d..00000000 Binary files a/.git_backup/objects/15/c1b867fddaf98e7b9db8d7b9a98ac22ea300e9 and /dev/null differ diff --git a/.git_backup/objects/15/c760a6b859b5743b3415cce01cbb8086d3ff70 b/.git_backup/objects/15/c760a6b859b5743b3415cce01cbb8086d3ff70 deleted file mode 100644 index f38361b7..00000000 Binary files a/.git_backup/objects/15/c760a6b859b5743b3415cce01cbb8086d3ff70 and /dev/null differ diff --git a/.git_backup/objects/15/cb8f71cdcf3221800e6dca43390ae79114a9df b/.git_backup/objects/15/cb8f71cdcf3221800e6dca43390ae79114a9df deleted file mode 100644 index 51e51896..00000000 --- a/.git_backup/objects/15/cb8f71cdcf3221800e6dca43390ae79114a9df +++ /dev/null @@ -1,4 +0,0 @@ -xSj0Y_1$"7^zDJĒ\w,M - 2is`jW -ap–DpR[ /FcBbBT;2[Y6R >=q OK,V8Zp]([MP i&P0G{) RyHS8PsGCZ7"S837 [[NQ܉fBME ﱋG:Zk2 HkL -F8Zc/xf \ No newline at end of file diff --git a/.git_backup/objects/15/ced49bcbbb9e0bc69cf760576ac36005629899 b/.git_backup/objects/15/ced49bcbbb9e0bc69cf760576ac36005629899 deleted file mode 100644 index f643b7dd..00000000 Binary files a/.git_backup/objects/15/ced49bcbbb9e0bc69cf760576ac36005629899 and /dev/null differ diff --git a/.git_backup/objects/15/d79aeffdbc20f9e0398d5b2e91897b69e4a93c b/.git_backup/objects/15/d79aeffdbc20f9e0398d5b2e91897b69e4a93c deleted file mode 100644 index 3f265b0f..00000000 Binary files a/.git_backup/objects/15/d79aeffdbc20f9e0398d5b2e91897b69e4a93c and /dev/null differ diff --git a/.git_backup/objects/15/e25275bd84635162277d7ca2462031a3bb36e0 b/.git_backup/objects/15/e25275bd84635162277d7ca2462031a3bb36e0 deleted file mode 100644 index 327c94c3..00000000 Binary files a/.git_backup/objects/15/e25275bd84635162277d7ca2462031a3bb36e0 and /dev/null differ diff --git a/.git_backup/objects/15/e7326f18aa40c7359ad7f6de58e37e42fc39b2 b/.git_backup/objects/15/e7326f18aa40c7359ad7f6de58e37e42fc39b2 deleted file mode 100644 index 4b92ca85..00000000 Binary files a/.git_backup/objects/15/e7326f18aa40c7359ad7f6de58e37e42fc39b2 and /dev/null differ diff --git a/.git_backup/objects/15/fe881f59f044c32fbc4f9943e02ffb72cc91ea b/.git_backup/objects/15/fe881f59f044c32fbc4f9943e02ffb72cc91ea deleted file mode 100644 index f7ae9d52..00000000 Binary files a/.git_backup/objects/15/fe881f59f044c32fbc4f9943e02ffb72cc91ea and /dev/null differ diff --git a/.git_backup/objects/16/0d9a073bb500a1aa28d6a5bc8d8b2b8c04b7e8 b/.git_backup/objects/16/0d9a073bb500a1aa28d6a5bc8d8b2b8c04b7e8 deleted file mode 100644 index be80c7f7..00000000 Binary files a/.git_backup/objects/16/0d9a073bb500a1aa28d6a5bc8d8b2b8c04b7e8 and /dev/null differ diff --git a/.git_backup/objects/16/0e00f5fb93030e04db8a7ca45545a38cc37db5 b/.git_backup/objects/16/0e00f5fb93030e04db8a7ca45545a38cc37db5 deleted file mode 100644 index 9b6d6633..00000000 Binary files a/.git_backup/objects/16/0e00f5fb93030e04db8a7ca45545a38cc37db5 and /dev/null differ diff --git a/.git_backup/objects/16/1528052d9985bd0d52e665d96ffdb7314c4790 b/.git_backup/objects/16/1528052d9985bd0d52e665d96ffdb7314c4790 deleted file mode 100644 index d8419492..00000000 Binary files a/.git_backup/objects/16/1528052d9985bd0d52e665d96ffdb7314c4790 and /dev/null differ diff --git a/.git_backup/objects/16/1a3884a5bd32e6236df07dde4717fd335a67e7 b/.git_backup/objects/16/1a3884a5bd32e6236df07dde4717fd335a67e7 deleted file mode 100644 index 7da0b669..00000000 Binary files a/.git_backup/objects/16/1a3884a5bd32e6236df07dde4717fd335a67e7 and /dev/null differ diff --git a/.git_backup/objects/16/235cc98fde03c36382fa16a897ed6ac6fee0a9 b/.git_backup/objects/16/235cc98fde03c36382fa16a897ed6ac6fee0a9 deleted file mode 100644 index 59e63dcf..00000000 Binary files a/.git_backup/objects/16/235cc98fde03c36382fa16a897ed6ac6fee0a9 and /dev/null differ diff --git a/.git_backup/objects/16/2fd002e621d5a8b9735194171eea20c10cab31 b/.git_backup/objects/16/2fd002e621d5a8b9735194171eea20c10cab31 deleted file mode 100644 index 6283b28a..00000000 Binary files a/.git_backup/objects/16/2fd002e621d5a8b9735194171eea20c10cab31 and /dev/null differ diff --git a/.git_backup/objects/16/339097709396fb89f07ba926b46d7cd6bf6263 b/.git_backup/objects/16/339097709396fb89f07ba926b46d7cd6bf6263 deleted file mode 100644 index fe736557..00000000 Binary files a/.git_backup/objects/16/339097709396fb89f07ba926b46d7cd6bf6263 and /dev/null differ diff --git a/.git_backup/objects/16/34399981ba271d8681118be81f677f3eeebc51 b/.git_backup/objects/16/34399981ba271d8681118be81f677f3eeebc51 deleted file mode 100644 index c11228e1..00000000 Binary files a/.git_backup/objects/16/34399981ba271d8681118be81f677f3eeebc51 and /dev/null differ diff --git a/.git_backup/objects/16/3befc71162812ef4d158130247cff8afdbe263 b/.git_backup/objects/16/3befc71162812ef4d158130247cff8afdbe263 deleted file mode 100644 index 3606f5bf..00000000 Binary files a/.git_backup/objects/16/3befc71162812ef4d158130247cff8afdbe263 and /dev/null differ diff --git a/.git_backup/objects/16/44a5a0ab02b6948efc10ad8ae4a1296390a905 b/.git_backup/objects/16/44a5a0ab02b6948efc10ad8ae4a1296390a905 deleted file mode 100644 index 7a49b1b8..00000000 Binary files a/.git_backup/objects/16/44a5a0ab02b6948efc10ad8ae4a1296390a905 and /dev/null differ diff --git a/.git_backup/objects/16/4be1109d977cf7681b1ea00a5df80d5e8f8e71 b/.git_backup/objects/16/4be1109d977cf7681b1ea00a5df80d5e8f8e71 deleted file mode 100644 index 36a9893f..00000000 Binary files a/.git_backup/objects/16/4be1109d977cf7681b1ea00a5df80d5e8f8e71 and /dev/null differ diff --git a/.git_backup/objects/16/57c5978710e0a7f18aa9def39422fe09c0bd4a b/.git_backup/objects/16/57c5978710e0a7f18aa9def39422fe09c0bd4a deleted file mode 100644 index 82af0fe9..00000000 Binary files a/.git_backup/objects/16/57c5978710e0a7f18aa9def39422fe09c0bd4a and /dev/null differ diff --git a/.git_backup/objects/16/613e87e309573c324db423adc6455912498895 b/.git_backup/objects/16/613e87e309573c324db423adc6455912498895 deleted file mode 100644 index 9e620ab2..00000000 Binary files a/.git_backup/objects/16/613e87e309573c324db423adc6455912498895 and /dev/null differ diff --git a/.git_backup/objects/16/622cf9367fcfd08867235a0d12661ab7b68114 b/.git_backup/objects/16/622cf9367fcfd08867235a0d12661ab7b68114 deleted file mode 100644 index 808a484c..00000000 Binary files a/.git_backup/objects/16/622cf9367fcfd08867235a0d12661ab7b68114 and /dev/null differ diff --git a/.git_backup/objects/16/649be5b8a5831d7529e334785d545ad85dd030 b/.git_backup/objects/16/649be5b8a5831d7529e334785d545ad85dd030 deleted file mode 100644 index 6d5e7145..00000000 Binary files a/.git_backup/objects/16/649be5b8a5831d7529e334785d545ad85dd030 and /dev/null differ diff --git a/.git_backup/objects/16/6bb225b9b4cc403ae737fedc484c51ed337e24 b/.git_backup/objects/16/6bb225b9b4cc403ae737fedc484c51ed337e24 deleted file mode 100644 index c4ad1817..00000000 Binary files a/.git_backup/objects/16/6bb225b9b4cc403ae737fedc484c51ed337e24 and /dev/null differ diff --git a/.git_backup/objects/16/766a34a6e99e67562d6a5bfcd63e7dbb9e7c02 b/.git_backup/objects/16/766a34a6e99e67562d6a5bfcd63e7dbb9e7c02 deleted file mode 100644 index 1d862265..00000000 Binary files a/.git_backup/objects/16/766a34a6e99e67562d6a5bfcd63e7dbb9e7c02 and /dev/null differ diff --git a/.git_backup/objects/16/772d03c6d26856eef8a3d6bc16ca0d8b5690e8 b/.git_backup/objects/16/772d03c6d26856eef8a3d6bc16ca0d8b5690e8 deleted file mode 100644 index 18f8cd4f..00000000 Binary files a/.git_backup/objects/16/772d03c6d26856eef8a3d6bc16ca0d8b5690e8 and /dev/null differ diff --git a/.git_backup/objects/16/77a8b0be1ecc8e6958e192be592953c44bf9d1 b/.git_backup/objects/16/77a8b0be1ecc8e6958e192be592953c44bf9d1 deleted file mode 100644 index 858ba954..00000000 --- a/.git_backup/objects/16/77a8b0be1ecc8e6958e192be592953c44bf9d1 +++ /dev/null @@ -1 +0,0 @@ -x=PN1 WTpN⽍Qi:\xE__i ɒ cȀlRҳIB8pΛ 㭝~$HB{Sp)zâ CQJm{ wwѤ&peD5^uw_]dGsU;3Dgsbs5GDw/Yi1 \ No newline at end of file diff --git a/.git_backup/objects/16/79ced174f2955eb2059bed9661879e6a1667a2 b/.git_backup/objects/16/79ced174f2955eb2059bed9661879e6a1667a2 deleted file mode 100644 index f9f74c3b..00000000 Binary files a/.git_backup/objects/16/79ced174f2955eb2059bed9661879e6a1667a2 and /dev/null differ diff --git a/.git_backup/objects/16/7b58d09bc94c87221c29fdfe6c494cafa6a0df b/.git_backup/objects/16/7b58d09bc94c87221c29fdfe6c494cafa6a0df deleted file mode 100644 index ac342852..00000000 Binary files a/.git_backup/objects/16/7b58d09bc94c87221c29fdfe6c494cafa6a0df and /dev/null differ diff --git a/.git_backup/objects/16/80566c7351e5d77e6e3882f86156c8d0a579f6 b/.git_backup/objects/16/80566c7351e5d77e6e3882f86156c8d0a579f6 deleted file mode 100644 index f62e5146..00000000 Binary files a/.git_backup/objects/16/80566c7351e5d77e6e3882f86156c8d0a579f6 and /dev/null differ diff --git a/.git_backup/objects/16/847654c881ab880ba634023e24bc888ffe0919 b/.git_backup/objects/16/847654c881ab880ba634023e24bc888ffe0919 deleted file mode 100644 index c56e2eb6..00000000 Binary files a/.git_backup/objects/16/847654c881ab880ba634023e24bc888ffe0919 and /dev/null differ diff --git a/.git_backup/objects/16/88dacac269a894ea0dc7ece539a95c4353a8dd b/.git_backup/objects/16/88dacac269a894ea0dc7ece539a95c4353a8dd deleted file mode 100644 index bf133eac..00000000 Binary files a/.git_backup/objects/16/88dacac269a894ea0dc7ece539a95c4353a8dd and /dev/null differ diff --git a/.git_backup/objects/16/8d07390dfc366102b8197e4b271e493bd94d11 b/.git_backup/objects/16/8d07390dfc366102b8197e4b271e493bd94d11 deleted file mode 100644 index 9e374b67..00000000 Binary files a/.git_backup/objects/16/8d07390dfc366102b8197e4b271e493bd94d11 and /dev/null differ diff --git a/.git_backup/objects/16/933bf8afedcbe3e9d4fcc04e5f7246228c56fc b/.git_backup/objects/16/933bf8afedcbe3e9d4fcc04e5f7246228c56fc deleted file mode 100644 index 149181dc..00000000 --- a/.git_backup/objects/16/933bf8afedcbe3e9d4fcc04e5f7246228c56fc +++ /dev/null @@ -1,3 +0,0 @@ -xTn0_P.1jKHQ襧ܚ@ņ .ۗ~{ ꋝp3f7ww?dY&EPa% vqXV5u21¡]/RH ʴVzⰵq1΃U6uXI\pKy~RnuncNOrÕ7Nֽz?gDM |cc] ա6nuelO -HYM荊PƅJSP*Zx6.KCؒO~ٱg|i-t^̯ec28pUO M 6=h5Ji$?-!%&zE 46I$R~evt)=GI z^:59E9&oD'/hT -_Ũ\ڨ)ocNKHi:RfE\{Ra(Z$uG̝.0 e w1δ(RE]i3ujH;P鈦N㫹E^Li<,+'*3ʧIOQh>Z(@4VINtGY[9eh<84iex3 \ No newline at end of file diff --git a/.git_backup/objects/16/dd5e14581d8542aea26233246261879371900e b/.git_backup/objects/16/dd5e14581d8542aea26233246261879371900e deleted file mode 100644 index ac179b25..00000000 Binary files a/.git_backup/objects/16/dd5e14581d8542aea26233246261879371900e and /dev/null differ diff --git a/.git_backup/objects/16/de58743d1fd40074ef6a731974884ad3dde004 b/.git_backup/objects/16/de58743d1fd40074ef6a731974884ad3dde004 deleted file mode 100644 index 1a926661..00000000 Binary files a/.git_backup/objects/16/de58743d1fd40074ef6a731974884ad3dde004 and /dev/null differ diff --git a/.git_backup/objects/16/de9491f07cae84b0d5062a50a61c1e80f82d31 b/.git_backup/objects/16/de9491f07cae84b0d5062a50a61c1e80f82d31 deleted file mode 100644 index f6fff455..00000000 Binary files a/.git_backup/objects/16/de9491f07cae84b0d5062a50a61c1e80f82d31 and /dev/null differ diff --git a/.git_backup/objects/16/e2f7b0e723938a6106fcecdb1f77447c04c929 b/.git_backup/objects/16/e2f7b0e723938a6106fcecdb1f77447c04c929 deleted file mode 100644 index 52ed04b4..00000000 Binary files a/.git_backup/objects/16/e2f7b0e723938a6106fcecdb1f77447c04c929 and /dev/null differ diff --git a/.git_backup/objects/16/ec4a8c6831ce4fca8f57aadd41eaa5d021633d b/.git_backup/objects/16/ec4a8c6831ce4fca8f57aadd41eaa5d021633d deleted file mode 100644 index f9ddc5a3..00000000 Binary files a/.git_backup/objects/16/ec4a8c6831ce4fca8f57aadd41eaa5d021633d and /dev/null differ diff --git a/.git_backup/objects/16/ed2d872d1cadeb36fc9101cbf77397fbf4fd70 b/.git_backup/objects/16/ed2d872d1cadeb36fc9101cbf77397fbf4fd70 deleted file mode 100644 index 01c31fe3..00000000 Binary files a/.git_backup/objects/16/ed2d872d1cadeb36fc9101cbf77397fbf4fd70 and /dev/null differ diff --git a/.git_backup/objects/16/eefdfc1b96e8b8899cac3fe3fb68159d017d94 b/.git_backup/objects/16/eefdfc1b96e8b8899cac3fe3fb68159d017d94 deleted file mode 100644 index 87274cf5..00000000 Binary files a/.git_backup/objects/16/eefdfc1b96e8b8899cac3fe3fb68159d017d94 and /dev/null differ diff --git a/.git_backup/objects/16/f21cc39349c58749bae5c9c0d3a8720cc6cf8a b/.git_backup/objects/16/f21cc39349c58749bae5c9c0d3a8720cc6cf8a deleted file mode 100644 index 3758f92a..00000000 Binary files a/.git_backup/objects/16/f21cc39349c58749bae5c9c0d3a8720cc6cf8a and /dev/null differ diff --git a/.git_backup/objects/16/f2dd039ada5bee88de1c6bb595fb502d8bef1f b/.git_backup/objects/16/f2dd039ada5bee88de1c6bb595fb502d8bef1f deleted file mode 100644 index b826007e..00000000 Binary files a/.git_backup/objects/16/f2dd039ada5bee88de1c6bb595fb502d8bef1f and /dev/null differ diff --git a/.git_backup/objects/16/fbace8d28465fd83e7012bd8204e165f7f9196 b/.git_backup/objects/16/fbace8d28465fd83e7012bd8204e165f7f9196 deleted file mode 100644 index 019833e0..00000000 Binary files a/.git_backup/objects/16/fbace8d28465fd83e7012bd8204e165f7f9196 and /dev/null differ diff --git a/.git_backup/objects/17/0b6b5b7f95f1fe2736737e82df511088b42582 b/.git_backup/objects/17/0b6b5b7f95f1fe2736737e82df511088b42582 deleted file mode 100644 index a6e98fa5..00000000 Binary files a/.git_backup/objects/17/0b6b5b7f95f1fe2736737e82df511088b42582 and /dev/null differ diff --git a/.git_backup/objects/17/103bbec8c75b8034e833e29a16974327bd0d8f b/.git_backup/objects/17/103bbec8c75b8034e833e29a16974327bd0d8f deleted file mode 100644 index d1b2b0d4..00000000 Binary files a/.git_backup/objects/17/103bbec8c75b8034e833e29a16974327bd0d8f and /dev/null differ diff --git a/.git_backup/objects/17/15562c05c61636cdfef88145b8a4baac431807 b/.git_backup/objects/17/15562c05c61636cdfef88145b8a4baac431807 deleted file mode 100644 index e9b4d93a..00000000 Binary files a/.git_backup/objects/17/15562c05c61636cdfef88145b8a4baac431807 and /dev/null differ diff --git a/.git_backup/objects/17/17bfb9474963dce0700d05fc103cc18cde847a b/.git_backup/objects/17/17bfb9474963dce0700d05fc103cc18cde847a deleted file mode 100644 index 9173c427..00000000 Binary files a/.git_backup/objects/17/17bfb9474963dce0700d05fc103cc18cde847a and /dev/null differ diff --git a/.git_backup/objects/17/17ee22cdf77849e2e273566c877f95311e691b b/.git_backup/objects/17/17ee22cdf77849e2e273566c877f95311e691b deleted file mode 100644 index e3349bfa..00000000 Binary files a/.git_backup/objects/17/17ee22cdf77849e2e273566c877f95311e691b and /dev/null differ diff --git a/.git_backup/objects/17/1c5ea6763bf23165408d4291ed0f8b65c30961 b/.git_backup/objects/17/1c5ea6763bf23165408d4291ed0f8b65c30961 deleted file mode 100644 index 1035ee63..00000000 Binary files a/.git_backup/objects/17/1c5ea6763bf23165408d4291ed0f8b65c30961 and /dev/null differ diff --git a/.git_backup/objects/17/1e4b9b72800399ae4e219ec18eda236b05d92e b/.git_backup/objects/17/1e4b9b72800399ae4e219ec18eda236b05d92e deleted file mode 100644 index 71a7e36c..00000000 --- a/.git_backup/objects/17/1e4b9b72800399ae4e219ec18eda236b05d92e +++ /dev/null @@ -1,2 +0,0 @@ -xMQ;K@M3VNFDG'/TB$䲫^.v6'ZAK#fvfgov _XN#%2  B&9_NJR\%H]c,2뽱Ed1cpEhptpr!rK,uiMP"LR#cᷤ+J,NruuREbPpeWf vZSUYxl XULQfnbj 畈\=HSB`M( Fheѓ9FBb"J` e>U7BeZ}HڎuO]/Fղ++J4:lg~MqLS -vZu6\ \ No newline at end of file diff --git a/.git_backup/objects/17/1f2b3e58d2dac34c59f4a285f8be18c274c6a0 b/.git_backup/objects/17/1f2b3e58d2dac34c59f4a285f8be18c274c6a0 deleted file mode 100644 index 7a8c1d42..00000000 Binary files a/.git_backup/objects/17/1f2b3e58d2dac34c59f4a285f8be18c274c6a0 and /dev/null differ diff --git a/.git_backup/objects/17/2137ff3a5a237afa7b9cbf0915bde8df59f9bd b/.git_backup/objects/17/2137ff3a5a237afa7b9cbf0915bde8df59f9bd deleted file mode 100644 index 79598b95..00000000 Binary files a/.git_backup/objects/17/2137ff3a5a237afa7b9cbf0915bde8df59f9bd and /dev/null differ diff --git a/.git_backup/objects/17/2ed4c0200db675ec894b0d283bceb60dc6bbc8 b/.git_backup/objects/17/2ed4c0200db675ec894b0d283bceb60dc6bbc8 deleted file mode 100644 index 82859463..00000000 Binary files a/.git_backup/objects/17/2ed4c0200db675ec894b0d283bceb60dc6bbc8 and /dev/null differ diff --git a/.git_backup/objects/17/34ea99d76b5e8f75478c426783d2e0a7c50764 b/.git_backup/objects/17/34ea99d76b5e8f75478c426783d2e0a7c50764 deleted file mode 100644 index 9d77d929..00000000 Binary files a/.git_backup/objects/17/34ea99d76b5e8f75478c426783d2e0a7c50764 and /dev/null differ diff --git a/.git_backup/objects/17/35fbf436f2cc8462b626e30ecd292199824525 b/.git_backup/objects/17/35fbf436f2cc8462b626e30ecd292199824525 deleted file mode 100644 index 99333098..00000000 Binary files a/.git_backup/objects/17/35fbf436f2cc8462b626e30ecd292199824525 and /dev/null differ diff --git a/.git_backup/objects/17/3a0023a4f32d2e9eb2e186947a798df3ceab16 b/.git_backup/objects/17/3a0023a4f32d2e9eb2e186947a798df3ceab16 deleted file mode 100644 index 05224395..00000000 Binary files a/.git_backup/objects/17/3a0023a4f32d2e9eb2e186947a798df3ceab16 and /dev/null differ diff --git a/.git_backup/objects/17/3f188f4d4be7c70754e1c857681a34b4b17f13 b/.git_backup/objects/17/3f188f4d4be7c70754e1c857681a34b4b17f13 deleted file mode 100644 index cfe0728f..00000000 Binary files a/.git_backup/objects/17/3f188f4d4be7c70754e1c857681a34b4b17f13 and /dev/null differ diff --git a/.git_backup/objects/17/3f824c4bf7649f057f05f9d1c13dd537b82630 b/.git_backup/objects/17/3f824c4bf7649f057f05f9d1c13dd537b82630 deleted file mode 100644 index a92cda7a..00000000 Binary files a/.git_backup/objects/17/3f824c4bf7649f057f05f9d1c13dd537b82630 and /dev/null differ diff --git a/.git_backup/objects/17/409f2ee8df322a5ac115d1d0ff0c2d2aa11c4e b/.git_backup/objects/17/409f2ee8df322a5ac115d1d0ff0c2d2aa11c4e deleted file mode 100644 index 2c828fc6..00000000 Binary files a/.git_backup/objects/17/409f2ee8df322a5ac115d1d0ff0c2d2aa11c4e and /dev/null differ diff --git a/.git_backup/objects/17/429617c6c4853f105452adbaa047b6333391d2 b/.git_backup/objects/17/429617c6c4853f105452adbaa047b6333391d2 deleted file mode 100644 index a1bb02d6..00000000 Binary files a/.git_backup/objects/17/429617c6c4853f105452adbaa047b6333391d2 and /dev/null differ diff --git a/.git_backup/objects/17/4e05e3efd3e196c965fc665dd172d91ebdc992 b/.git_backup/objects/17/4e05e3efd3e196c965fc665dd172d91ebdc992 deleted file mode 100644 index 968567a6..00000000 Binary files a/.git_backup/objects/17/4e05e3efd3e196c965fc665dd172d91ebdc992 and /dev/null differ diff --git a/.git_backup/objects/17/53fb014a902bf99428d20a2a0d948f2b07a658 b/.git_backup/objects/17/53fb014a902bf99428d20a2a0d948f2b07a658 deleted file mode 100644 index 97f8741d..00000000 Binary files a/.git_backup/objects/17/53fb014a902bf99428d20a2a0d948f2b07a658 and /dev/null differ diff --git a/.git_backup/objects/17/5fd1ac293495aa4705e5fc02ec72788d9a9d73 b/.git_backup/objects/17/5fd1ac293495aa4705e5fc02ec72788d9a9d73 deleted file mode 100644 index 17ee46c1..00000000 Binary files a/.git_backup/objects/17/5fd1ac293495aa4705e5fc02ec72788d9a9d73 and /dev/null differ diff --git a/.git_backup/objects/17/601d30739e31a8ff242ee568fac863b1f96d2c b/.git_backup/objects/17/601d30739e31a8ff242ee568fac863b1f96d2c deleted file mode 100644 index 818e05a4..00000000 Binary files a/.git_backup/objects/17/601d30739e31a8ff242ee568fac863b1f96d2c and /dev/null differ diff --git a/.git_backup/objects/17/62c2cfc10ddce9f382b684c182523c71e4bffa b/.git_backup/objects/17/62c2cfc10ddce9f382b684c182523c71e4bffa deleted file mode 100644 index 36d7e4d3..00000000 Binary files a/.git_backup/objects/17/62c2cfc10ddce9f382b684c182523c71e4bffa and /dev/null differ diff --git a/.git_backup/objects/17/63866e0071a65fbd73e102d02c44b6240d17ed b/.git_backup/objects/17/63866e0071a65fbd73e102d02c44b6240d17ed deleted file mode 100644 index cb22a10a..00000000 Binary files a/.git_backup/objects/17/63866e0071a65fbd73e102d02c44b6240d17ed and /dev/null differ diff --git a/.git_backup/objects/17/654cb59991e52537f87d9d9a2b56396f9c5c7e b/.git_backup/objects/17/654cb59991e52537f87d9d9a2b56396f9c5c7e deleted file mode 100644 index 48c01903..00000000 --- a/.git_backup/objects/17/654cb59991e52537f87d9d9a2b56396f9c5c7e +++ /dev/null @@ -1,3 +0,0 @@ -xŒOHaEjAl1+`@=:^t =J! .e($>yT/yya}>\WW[gp,?v~&{x?rSxWoI*VѤ~f 7ԙCX4~-MޛW3KGg}n^Pn]{Dg~f3R zrPS-!e9iطpHX3,셮]K䐴W\4 \ No newline at end of file diff --git a/.git_backup/objects/18/87a607422edd499fdf24afe91a04294f1caf6f b/.git_backup/objects/18/87a607422edd499fdf24afe91a04294f1caf6f deleted file mode 100644 index 9e19b5a0..00000000 Binary files a/.git_backup/objects/18/87a607422edd499fdf24afe91a04294f1caf6f and /dev/null differ diff --git a/.git_backup/objects/18/8b6ee660fa6cca0d62afa3c7d5f108085837aa b/.git_backup/objects/18/8b6ee660fa6cca0d62afa3c7d5f108085837aa deleted file mode 100644 index f2a077f4..00000000 Binary files a/.git_backup/objects/18/8b6ee660fa6cca0d62afa3c7d5f108085837aa and /dev/null differ diff --git a/.git_backup/objects/18/8e13e4829591facb23ae0e2eda84b9807cb818 b/.git_backup/objects/18/8e13e4829591facb23ae0e2eda84b9807cb818 deleted file mode 100644 index addd062c..00000000 Binary files a/.git_backup/objects/18/8e13e4829591facb23ae0e2eda84b9807cb818 and /dev/null differ diff --git a/.git_backup/objects/18/8f44d0f350b8926d033e67a8afe116c0a2781d b/.git_backup/objects/18/8f44d0f350b8926d033e67a8afe116c0a2781d deleted file mode 100644 index 09ee16b1..00000000 Binary files a/.git_backup/objects/18/8f44d0f350b8926d033e67a8afe116c0a2781d and /dev/null differ diff --git a/.git_backup/objects/18/9e9578cc45484d507ba201f8409f5e41c1cd5c b/.git_backup/objects/18/9e9578cc45484d507ba201f8409f5e41c1cd5c deleted file mode 100644 index ed62044d..00000000 Binary files a/.git_backup/objects/18/9e9578cc45484d507ba201f8409f5e41c1cd5c and /dev/null differ diff --git a/.git_backup/objects/18/a3d4a7c580a70e19794925ff2544ef6220b8dd b/.git_backup/objects/18/a3d4a7c580a70e19794925ff2544ef6220b8dd deleted file mode 100644 index 387e0e0e..00000000 Binary files a/.git_backup/objects/18/a3d4a7c580a70e19794925ff2544ef6220b8dd and /dev/null differ diff --git a/.git_backup/objects/18/a5264b2a82c240d6189d9abff2c8ec7d758deb b/.git_backup/objects/18/a5264b2a82c240d6189d9abff2c8ec7d758deb deleted file mode 100644 index 95e2cb3a..00000000 Binary files a/.git_backup/objects/18/a5264b2a82c240d6189d9abff2c8ec7d758deb and /dev/null differ diff --git a/.git_backup/objects/18/a9382e17889a853fad5df23062c0f7fb70768a b/.git_backup/objects/18/a9382e17889a853fad5df23062c0f7fb70768a deleted file mode 100644 index 52772c10..00000000 Binary files a/.git_backup/objects/18/a9382e17889a853fad5df23062c0f7fb70768a and /dev/null differ diff --git a/.git_backup/objects/18/c1f90eddd23a948e98f9ec465eb0b2504e08c5 b/.git_backup/objects/18/c1f90eddd23a948e98f9ec465eb0b2504e08c5 deleted file mode 100644 index 2a515cc4..00000000 Binary files a/.git_backup/objects/18/c1f90eddd23a948e98f9ec465eb0b2504e08c5 and /dev/null differ diff --git a/.git_backup/objects/18/c754e4f6195917c4d185fda6e4f94922a115e0 b/.git_backup/objects/18/c754e4f6195917c4d185fda6e4f94922a115e0 deleted file mode 100644 index 9940f271..00000000 Binary files a/.git_backup/objects/18/c754e4f6195917c4d185fda6e4f94922a115e0 and /dev/null differ diff --git a/.git_backup/objects/18/ca01882959087c02b96d7655183f9cb7af9e98 b/.git_backup/objects/18/ca01882959087c02b96d7655183f9cb7af9e98 deleted file mode 100644 index e52cea19..00000000 Binary files a/.git_backup/objects/18/ca01882959087c02b96d7655183f9cb7af9e98 and /dev/null differ diff --git a/.git_backup/objects/18/cfb0d7dd260ca909e1fe83ae3fe7572cf6f35f b/.git_backup/objects/18/cfb0d7dd260ca909e1fe83ae3fe7572cf6f35f deleted file mode 100644 index 20f58060..00000000 Binary files a/.git_backup/objects/18/cfb0d7dd260ca909e1fe83ae3fe7572cf6f35f and /dev/null differ diff --git a/.git_backup/objects/18/e2c3d1a6b7af60c35a5895c0614d644d47d5c2 b/.git_backup/objects/18/e2c3d1a6b7af60c35a5895c0614d644d47d5c2 deleted file mode 100644 index ce422f8f..00000000 --- a/.git_backup/objects/18/e2c3d1a6b7af60c35a5895c0614d644d47d5c2 +++ /dev/null @@ -1,5 +0,0 @@ -xN1{S)T.UEDU Ryxgne{S_'YZ?3l7pm M.\,p}l)./pj!١ɤ[|EAYᮿM | GwCb#c; -V!NҦ2)֪ yftvA}2?sOs($9..Zb#L >bh9?)BlP9a Z41Bpo#lj-¨IBnuȝJl4:!Q'-v|JtwB?Y6#L 'Jh -,(4{;Ǡp@PX`Aa{ Κ*e`Åxed~ @"D%{Kj=Mr5=0;"z )"EuBb)dPPs5IMtV -MW]4];4$7]_.׫rM~i,rx1Θ*sfiN{R -ToQ&kZ-YwfŞ<__gOsF9q͌Jf3]#Gy;bleq?4/<6a@YA $)@j~śTi&, (Vr KyQ{g#QXY\,*J yLx2ǽg#wjGxufB J/Pe"rw&"Jݴqv ԏ qLh7H{Ӹ^]!mo0~B&􄨏Q;48V"(i<5i45 #>$!i $i3iЌHF@6J( KN=2r* -VV^–rbRg$|TWxMYZ3L]/,IyN,י(gq}lh|?`˘jStX(#L TMa1 \ No newline at end of file diff --git a/.git_backup/objects/19/0713b02042a781c5e2f3dc88a5a3b24d351a77 b/.git_backup/objects/19/0713b02042a781c5e2f3dc88a5a3b24d351a77 deleted file mode 100644 index 68f47e79..00000000 --- a/.git_backup/objects/19/0713b02042a781c5e2f3dc88a5a3b24d351a77 +++ /dev/null @@ -1 +0,0 @@ -x PLo<@+F=Jia@/ZZt!#\܆ZW[N`)Mͱ% \ No newline at end of file diff --git a/.git_backup/objects/19/0c0239cd7d7af82a6e0cbc8d68053fa2e3dfaf b/.git_backup/objects/19/0c0239cd7d7af82a6e0cbc8d68053fa2e3dfaf deleted file mode 100644 index 73ea8f36..00000000 Binary files a/.git_backup/objects/19/0c0239cd7d7af82a6e0cbc8d68053fa2e3dfaf and /dev/null differ diff --git a/.git_backup/objects/19/0f6a23909d8a4b6196345480f6f10949f4e154 b/.git_backup/objects/19/0f6a23909d8a4b6196345480f6f10949f4e154 deleted file mode 100644 index a38bfcba..00000000 Binary files a/.git_backup/objects/19/0f6a23909d8a4b6196345480f6f10949f4e154 and /dev/null differ diff --git a/.git_backup/objects/19/1d47b3dc10edf23d61370b9e87d8c84ba55d6d b/.git_backup/objects/19/1d47b3dc10edf23d61370b9e87d8c84ba55d6d deleted file mode 100644 index 598ec040..00000000 Binary files a/.git_backup/objects/19/1d47b3dc10edf23d61370b9e87d8c84ba55d6d and /dev/null differ diff --git a/.git_backup/objects/19/230a0a827d824b766c04e34e15ab0db6ae4869 b/.git_backup/objects/19/230a0a827d824b766c04e34e15ab0db6ae4869 deleted file mode 100644 index adefeb19..00000000 Binary files a/.git_backup/objects/19/230a0a827d824b766c04e34e15ab0db6ae4869 and /dev/null differ diff --git a/.git_backup/objects/19/25be91727559dfa6f3e535f3331139ebfc2d1c b/.git_backup/objects/19/25be91727559dfa6f3e535f3331139ebfc2d1c deleted file mode 100644 index a733fe19..00000000 Binary files a/.git_backup/objects/19/25be91727559dfa6f3e535f3331139ebfc2d1c and /dev/null differ diff --git a/.git_backup/objects/19/352cd610617819b1ce55e331c0823e31dc26d8 b/.git_backup/objects/19/352cd610617819b1ce55e331c0823e31dc26d8 deleted file mode 100644 index 7e767076..00000000 Binary files a/.git_backup/objects/19/352cd610617819b1ce55e331c0823e31dc26d8 and /dev/null differ diff --git a/.git_backup/objects/19/41e467b62828cfe4ffc09a34888d549c663cf0 b/.git_backup/objects/19/41e467b62828cfe4ffc09a34888d549c663cf0 deleted file mode 100644 index 43364026..00000000 Binary files a/.git_backup/objects/19/41e467b62828cfe4ffc09a34888d549c663cf0 and /dev/null differ diff --git a/.git_backup/objects/19/42d737780da6d1143ab63a4b1dba57a480e72d b/.git_backup/objects/19/42d737780da6d1143ab63a4b1dba57a480e72d deleted file mode 100644 index 4471097b..00000000 Binary files a/.git_backup/objects/19/42d737780da6d1143ab63a4b1dba57a480e72d and /dev/null differ diff --git a/.git_backup/objects/19/42e07d1b562ada12b283b7437f604191510bea b/.git_backup/objects/19/42e07d1b562ada12b283b7437f604191510bea deleted file mode 100644 index 9124abf1..00000000 Binary files a/.git_backup/objects/19/42e07d1b562ada12b283b7437f604191510bea and /dev/null differ diff --git a/.git_backup/objects/19/4564e761ddae165b39ef6598877e2e3820af0a b/.git_backup/objects/19/4564e761ddae165b39ef6598877e2e3820af0a deleted file mode 100644 index be82f0e0..00000000 --- a/.git_backup/objects/19/4564e761ddae165b39ef6598877e2e3820af0a +++ /dev/null @@ -1,2 +0,0 @@ -xUMK1=W m'/"K!v"ߛdй yg20a7K4 -bH7yDIJB9Q@)) "O!P0tWBK.4C2ٱ jI_aDMSg8 J(7 v+^ik \ No newline at end of file diff --git a/.git_backup/objects/19/492815cbb06f8c9e4e843b558df557cc179c8e b/.git_backup/objects/19/492815cbb06f8c9e4e843b558df557cc179c8e deleted file mode 100644 index 0c2dc5b0..00000000 Binary files a/.git_backup/objects/19/492815cbb06f8c9e4e843b558df557cc179c8e and /dev/null differ diff --git a/.git_backup/objects/19/4bbe4faf865083feca0652b3ca75d84bb7c985 b/.git_backup/objects/19/4bbe4faf865083feca0652b3ca75d84bb7c985 deleted file mode 100644 index d8104150..00000000 Binary files a/.git_backup/objects/19/4bbe4faf865083feca0652b3ca75d84bb7c985 and /dev/null differ diff --git a/.git_backup/objects/19/4ca4d7d4d4d22be5669041a25c3ca24ae6edcb b/.git_backup/objects/19/4ca4d7d4d4d22be5669041a25c3ca24ae6edcb deleted file mode 100644 index a58fd2cc..00000000 Binary files a/.git_backup/objects/19/4ca4d7d4d4d22be5669041a25c3ca24ae6edcb and /dev/null differ diff --git a/.git_backup/objects/19/5ef845cc7c07ed9e5bb2abc09ae305f41e438f b/.git_backup/objects/19/5ef845cc7c07ed9e5bb2abc09ae305f41e438f deleted file mode 100644 index 5e6b4b64..00000000 Binary files a/.git_backup/objects/19/5ef845cc7c07ed9e5bb2abc09ae305f41e438f and /dev/null differ diff --git a/.git_backup/objects/19/61a2d9d89f8c3cd9984bdf63387c9ed6df730f b/.git_backup/objects/19/61a2d9d89f8c3cd9984bdf63387c9ed6df730f deleted file mode 100644 index 8b36ac42..00000000 Binary files a/.git_backup/objects/19/61a2d9d89f8c3cd9984bdf63387c9ed6df730f and /dev/null differ diff --git a/.git_backup/objects/19/65555850fe503188cc1fdc3c1dde92052c5f37 b/.git_backup/objects/19/65555850fe503188cc1fdc3c1dde92052c5f37 deleted file mode 100644 index 47575455..00000000 Binary files a/.git_backup/objects/19/65555850fe503188cc1fdc3c1dde92052c5f37 and /dev/null differ diff --git a/.git_backup/objects/19/668900dea9249c1714b8838e44ac2070069138 b/.git_backup/objects/19/668900dea9249c1714b8838e44ac2070069138 deleted file mode 100644 index 4c9b2005..00000000 Binary files a/.git_backup/objects/19/668900dea9249c1714b8838e44ac2070069138 and /dev/null differ diff --git a/.git_backup/objects/19/6756cbc11bba2ddd07807d0daf1f1301ed4bec b/.git_backup/objects/19/6756cbc11bba2ddd07807d0daf1f1301ed4bec deleted file mode 100644 index 84840440..00000000 Binary files a/.git_backup/objects/19/6756cbc11bba2ddd07807d0daf1f1301ed4bec and /dev/null differ diff --git a/.git_backup/objects/19/6be8dd9c09f22a926d3a4ce277269ad8f5fdd2 b/.git_backup/objects/19/6be8dd9c09f22a926d3a4ce277269ad8f5fdd2 deleted file mode 100644 index 1964518e..00000000 Binary files a/.git_backup/objects/19/6be8dd9c09f22a926d3a4ce277269ad8f5fdd2 and /dev/null differ diff --git a/.git_backup/objects/19/71e44b14889570af360270f96a8f047331e0b4 b/.git_backup/objects/19/71e44b14889570af360270f96a8f047331e0b4 deleted file mode 100644 index 3168a827..00000000 Binary files a/.git_backup/objects/19/71e44b14889570af360270f96a8f047331e0b4 and /dev/null differ diff --git a/.git_backup/objects/19/7345b3ce6ace8367510c7f7bcbe7ffc4e75d3c b/.git_backup/objects/19/7345b3ce6ace8367510c7f7bcbe7ffc4e75d3c deleted file mode 100644 index b75e6167..00000000 Binary files a/.git_backup/objects/19/7345b3ce6ace8367510c7f7bcbe7ffc4e75d3c and /dev/null differ diff --git a/.git_backup/objects/19/8636058a27dd0059ef5d6213737efd0d99ea94 b/.git_backup/objects/19/8636058a27dd0059ef5d6213737efd0d99ea94 deleted file mode 100644 index 28d9ef00..00000000 --- a/.git_backup/objects/19/8636058a27dd0059ef5d6213737efd0d99ea94 +++ /dev/null @@ -1 +0,0 @@ -x͓j0 wSB 4V 0J-wvdෟmMzc_ѧ?Ҩ~:kD_}fzaswJ%fHm{Ol+Jt%+e `̱O~LJYt!,{}b0 "lp>Ačda!v cIR\Vŝ`U,0_ɹ9p9({gx̄-kqG<ܜ7 \ No newline at end of file diff --git a/.git_backup/objects/19/87d5f90385d36dbfed731ee60df9f6a34dab92 b/.git_backup/objects/19/87d5f90385d36dbfed731ee60df9f6a34dab92 deleted file mode 100644 index 5a38501e..00000000 --- a/.git_backup/objects/19/87d5f90385d36dbfed731ee60df9f6a34dab92 +++ /dev/null @@ -1,7 +0,0 @@ -xVn@,h%zQz"kmOݰ)Mx1fm^7iaEv~֙Pza50WO/B(`V3.,BP iV[Kn\ -r%+i5(pVjpb5CcPwKu)I2YKpr?dmڐP 늉oeֳiT2n_< -RI6R(UT -UјL_U\"lta.E jW0ˠcȶ$9P62}ImҒߢLsR+iQ&ww*_dz{@QƪYw3=9!zwԻ2NSNM d<&Ӽ(sO$ -4:{l`37߽'_BA{']$Xd6Q/7>ፓ]4[}}6FG#c>--ef{$SsioW:(R>tGwrk7tH^#tD8wQ tYVvs e.:*xz -(y --5 F=qtx}ۧ|aHRI%SIP" H!zA>cDfCV$r3P,-zpk~ +5qC#^ ɋbyBa y1[ڡC܍1qO>SϾЫDһ]{gMħkcn:_Z{~WS[6,"ې$WC-83Ɯ5T -6,to@N -Ԥ>xԩav]oVֵ3gG̥(ݦveFBH a㏆ܯL?\8kڭ(?ىKO]$Q \ No newline at end of file diff --git a/.git_backup/objects/19/b5137d3cee85577a5a4ae9a39b09097c478be2 b/.git_backup/objects/19/b5137d3cee85577a5a4ae9a39b09097c478be2 deleted file mode 100644 index 4a02fcd0..00000000 Binary files a/.git_backup/objects/19/b5137d3cee85577a5a4ae9a39b09097c478be2 and /dev/null differ diff --git a/.git_backup/objects/19/c2e68c0fa8c470cd48b9c3f6938f6e45746d99 b/.git_backup/objects/19/c2e68c0fa8c470cd48b9c3f6938f6e45746d99 deleted file mode 100644 index 86f75cb0..00000000 Binary files a/.git_backup/objects/19/c2e68c0fa8c470cd48b9c3f6938f6e45746d99 and /dev/null differ diff --git a/.git_backup/objects/19/c57ea956425be638c2af9a46ca476e8f3c24c5 b/.git_backup/objects/19/c57ea956425be638c2af9a46ca476e8f3c24c5 deleted file mode 100644 index 6a00223a..00000000 Binary files a/.git_backup/objects/19/c57ea956425be638c2af9a46ca476e8f3c24c5 and /dev/null differ diff --git a/.git_backup/objects/19/cb5745e09cfdadabbdb3b2892c3626d027d191 b/.git_backup/objects/19/cb5745e09cfdadabbdb3b2892c3626d027d191 deleted file mode 100644 index feff3227..00000000 Binary files a/.git_backup/objects/19/cb5745e09cfdadabbdb3b2892c3626d027d191 and /dev/null differ diff --git a/.git_backup/objects/19/cb84feb8cd411ff26a80d786d13ca0d57da165 b/.git_backup/objects/19/cb84feb8cd411ff26a80d786d13ca0d57da165 deleted file mode 100644 index bc7e5058..00000000 Binary files a/.git_backup/objects/19/cb84feb8cd411ff26a80d786d13ca0d57da165 and /dev/null differ diff --git a/.git_backup/objects/19/cbef6cf5a4240e8618d592245d7cd25649f5a4 b/.git_backup/objects/19/cbef6cf5a4240e8618d592245d7cd25649f5a4 deleted file mode 100644 index b82f5d95..00000000 Binary files a/.git_backup/objects/19/cbef6cf5a4240e8618d592245d7cd25649f5a4 and /dev/null differ diff --git a/.git_backup/objects/19/cca994dbba1721840a50608d322f2339992b69 b/.git_backup/objects/19/cca994dbba1721840a50608d322f2339992b69 deleted file mode 100644 index 4ae4f2e5..00000000 Binary files a/.git_backup/objects/19/cca994dbba1721840a50608d322f2339992b69 and /dev/null differ diff --git a/.git_backup/objects/19/ccbde3ea2d8307c6c55cb1415fe098424185ec b/.git_backup/objects/19/ccbde3ea2d8307c6c55cb1415fe098424185ec deleted file mode 100644 index 13a0f107..00000000 Binary files a/.git_backup/objects/19/ccbde3ea2d8307c6c55cb1415fe098424185ec and /dev/null differ diff --git a/.git_backup/objects/19/cfd02b646ccc6e32361b20b54a7983d4c1c328 b/.git_backup/objects/19/cfd02b646ccc6e32361b20b54a7983d4c1c328 deleted file mode 100644 index 979d7195..00000000 Binary files a/.git_backup/objects/19/cfd02b646ccc6e32361b20b54a7983d4c1c328 and /dev/null differ diff --git a/.git_backup/objects/19/d98687ae5ab343d05abe194aa660fdfbc4c309 b/.git_backup/objects/19/d98687ae5ab343d05abe194aa660fdfbc4c309 deleted file mode 100644 index 3e294c9e..00000000 Binary files a/.git_backup/objects/19/d98687ae5ab343d05abe194aa660fdfbc4c309 and /dev/null differ diff --git a/.git_backup/objects/19/db73e71dd594042ac485f4cd4ef1ac1a3e2392 b/.git_backup/objects/19/db73e71dd594042ac485f4cd4ef1ac1a3e2392 deleted file mode 100644 index da66da9f..00000000 Binary files a/.git_backup/objects/19/db73e71dd594042ac485f4cd4ef1ac1a3e2392 and /dev/null differ diff --git a/.git_backup/objects/19/e4aa97cc138e4bd39bebf6c49ff1955cb00437 b/.git_backup/objects/19/e4aa97cc138e4bd39bebf6c49ff1955cb00437 deleted file mode 100644 index fe82d208..00000000 Binary files a/.git_backup/objects/19/e4aa97cc138e4bd39bebf6c49ff1955cb00437 and /dev/null differ diff --git a/.git_backup/objects/19/f1328ef4d77f19260d074ee55d99ee94352fee b/.git_backup/objects/19/f1328ef4d77f19260d074ee55d99ee94352fee deleted file mode 100644 index 6e9f334d..00000000 Binary files a/.git_backup/objects/19/f1328ef4d77f19260d074ee55d99ee94352fee and /dev/null differ diff --git a/.git_backup/objects/19/f19813bf1275fd9e5c8b341dac2747693a9407 b/.git_backup/objects/19/f19813bf1275fd9e5c8b341dac2747693a9407 deleted file mode 100644 index c09032f2..00000000 Binary files a/.git_backup/objects/19/f19813bf1275fd9e5c8b341dac2747693a9407 and /dev/null differ diff --git a/.git_backup/objects/19/f28cd03e333f011ae4281f25e741cd8c72922f b/.git_backup/objects/19/f28cd03e333f011ae4281f25e741cd8c72922f deleted file mode 100644 index 8746f1ee..00000000 Binary files a/.git_backup/objects/19/f28cd03e333f011ae4281f25e741cd8c72922f and /dev/null differ diff --git a/.git_backup/objects/19/f7014f98741cd116bc49842854bdc9eea038f6 b/.git_backup/objects/19/f7014f98741cd116bc49842854bdc9eea038f6 deleted file mode 100644 index 7b27291f..00000000 Binary files a/.git_backup/objects/19/f7014f98741cd116bc49842854bdc9eea038f6 and /dev/null differ diff --git a/.git_backup/objects/1a/026fb483bf54e21c4e7d0854a360f6a408d144 b/.git_backup/objects/1a/026fb483bf54e21c4e7d0854a360f6a408d144 deleted file mode 100644 index 210dae5c..00000000 Binary files a/.git_backup/objects/1a/026fb483bf54e21c4e7d0854a360f6a408d144 and /dev/null differ diff --git a/.git_backup/objects/1a/045fa33f48781d6fc88ae830d8e6ec591f3dbc b/.git_backup/objects/1a/045fa33f48781d6fc88ae830d8e6ec591f3dbc deleted file mode 100644 index 93c19061..00000000 Binary files a/.git_backup/objects/1a/045fa33f48781d6fc88ae830d8e6ec591f3dbc and /dev/null differ diff --git a/.git_backup/objects/1a/05a211a01a5a585a1c8c3d305daab5381862c3 b/.git_backup/objects/1a/05a211a01a5a585a1c8c3d305daab5381862c3 deleted file mode 100644 index 56f9e83e..00000000 --- a/.git_backup/objects/1a/05a211a01a5a585a1c8c3d305daab5381862c3 +++ /dev/null @@ -1,2 +0,0 @@ -xuRn0 Y_AAu@oCÀ^vTd&&DߏC1,=||uDH w6pw@ <9 ;ȡs={ \psyUQ I uUDrBR ?9dW Ro<SŸ1f3ȡe$7r3gq'=.Ȝf{Vlv)\ Yb/TEӀP-Z5n+:3Ť֔9NU}}x[smaQz Йү6Yߥ;kǃ&]'ChQw J XydnZnȫ2Xz8t*TT&'F5E1K'j;MLV8I`:mOaS 5(o#,Cc mJ_ qHdCƩ # ]tuIWݹ0gf $ٻA-8oıV;p^ \ uhk$߆{Gq+|V)"s]^$;-sb'4ij$1(A_H"ne(ՅPYy! }LJ"\\cQ$-khL>?a2t$jN-aGEqiB mI&F|:F,6 QzWqpӺ_r076~5){k~6Ah H8[ M<[D)ʱB\K2[cG8xFZo0?& H=)>?zO \ No newline at end of file diff --git a/.git_backup/objects/1f/16d815bdd28074a122acf6c52f48a2d5c96312 b/.git_backup/objects/1f/16d815bdd28074a122acf6c52f48a2d5c96312 deleted file mode 100644 index b6f72768..00000000 Binary files a/.git_backup/objects/1f/16d815bdd28074a122acf6c52f48a2d5c96312 and /dev/null differ diff --git a/.git_backup/objects/1f/183bd9af390418ef179ac0b2da88d0f6544c42 b/.git_backup/objects/1f/183bd9af390418ef179ac0b2da88d0f6544c42 deleted file mode 100644 index b6df1b9b..00000000 Binary files a/.git_backup/objects/1f/183bd9af390418ef179ac0b2da88d0f6544c42 and /dev/null differ diff --git a/.git_backup/objects/1f/1f5601b19c7422246dceb2537358d87e7f71e9 b/.git_backup/objects/1f/1f5601b19c7422246dceb2537358d87e7f71e9 deleted file mode 100644 index f8247e38..00000000 Binary files a/.git_backup/objects/1f/1f5601b19c7422246dceb2537358d87e7f71e9 and /dev/null differ diff --git a/.git_backup/objects/1f/20ea6b9de165e2009c8aa4b6723b87e64e48d3 b/.git_backup/objects/1f/20ea6b9de165e2009c8aa4b6723b87e64e48d3 deleted file mode 100644 index f6e9349c..00000000 Binary files a/.git_backup/objects/1f/20ea6b9de165e2009c8aa4b6723b87e64e48d3 and /dev/null differ diff --git a/.git_backup/objects/1f/2826d550a133c5fbef11452886ee7cd1dd7a70 b/.git_backup/objects/1f/2826d550a133c5fbef11452886ee7cd1dd7a70 deleted file mode 100644 index 48f5f409..00000000 Binary files a/.git_backup/objects/1f/2826d550a133c5fbef11452886ee7cd1dd7a70 and /dev/null differ diff --git a/.git_backup/objects/1f/2877bb2bd520253502b1c05bb811bb0d7ef64c b/.git_backup/objects/1f/2877bb2bd520253502b1c05bb811bb0d7ef64c deleted file mode 100644 index 05276ca1..00000000 Binary files a/.git_backup/objects/1f/2877bb2bd520253502b1c05bb811bb0d7ef64c and /dev/null differ diff --git a/.git_backup/objects/1f/2beb478dc126b354e3b45feea45ad583ece90e b/.git_backup/objects/1f/2beb478dc126b354e3b45feea45ad583ece90e deleted file mode 100644 index d81d3634..00000000 Binary files a/.git_backup/objects/1f/2beb478dc126b354e3b45feea45ad583ece90e and /dev/null differ diff --git a/.git_backup/objects/1f/2d7d99983c60c6fd82d02b30dd831dc91f6709 b/.git_backup/objects/1f/2d7d99983c60c6fd82d02b30dd831dc91f6709 deleted file mode 100644 index 29fcc0ba..00000000 Binary files a/.git_backup/objects/1f/2d7d99983c60c6fd82d02b30dd831dc91f6709 and /dev/null differ diff --git a/.git_backup/objects/1f/2f10d3336707a3d95968ad91e9aada41e98da3 b/.git_backup/objects/1f/2f10d3336707a3d95968ad91e9aada41e98da3 deleted file mode 100644 index b5a2d25b..00000000 Binary files a/.git_backup/objects/1f/2f10d3336707a3d95968ad91e9aada41e98da3 and /dev/null differ diff --git a/.git_backup/objects/1f/33371579d9c8201ee18e9f10d2d284bac1025a b/.git_backup/objects/1f/33371579d9c8201ee18e9f10d2d284bac1025a deleted file mode 100644 index 73e32b61..00000000 Binary files a/.git_backup/objects/1f/33371579d9c8201ee18e9f10d2d284bac1025a and /dev/null differ diff --git a/.git_backup/objects/1f/39d81a17f5d03fe55e5ea82adb66541b36b203 b/.git_backup/objects/1f/39d81a17f5d03fe55e5ea82adb66541b36b203 deleted file mode 100644 index 2af712de..00000000 Binary files a/.git_backup/objects/1f/39d81a17f5d03fe55e5ea82adb66541b36b203 and /dev/null differ diff --git a/.git_backup/objects/1f/4037bb5c7ae255dd270c62535c84a9e90f459a b/.git_backup/objects/1f/4037bb5c7ae255dd270c62535c84a9e90f459a deleted file mode 100644 index 84bd5769..00000000 Binary files a/.git_backup/objects/1f/4037bb5c7ae255dd270c62535c84a9e90f459a and /dev/null differ diff --git a/.git_backup/objects/1f/481298f6f16027d8d806092e956a1d0c935794 b/.git_backup/objects/1f/481298f6f16027d8d806092e956a1d0c935794 deleted file mode 100644 index 1b0b9e4f..00000000 Binary files a/.git_backup/objects/1f/481298f6f16027d8d806092e956a1d0c935794 and /dev/null differ diff --git a/.git_backup/objects/1f/4c56f89e6b96dd7cfc83d387e5b73857645e84 b/.git_backup/objects/1f/4c56f89e6b96dd7cfc83d387e5b73857645e84 deleted file mode 100644 index 32a2150d..00000000 Binary files a/.git_backup/objects/1f/4c56f89e6b96dd7cfc83d387e5b73857645e84 and /dev/null differ diff --git a/.git_backup/objects/1f/5217afd0ce919a3a91029d89667afdb38b38a8 b/.git_backup/objects/1f/5217afd0ce919a3a91029d89667afdb38b38a8 deleted file mode 100644 index 2076d83f..00000000 Binary files a/.git_backup/objects/1f/5217afd0ce919a3a91029d89667afdb38b38a8 and /dev/null differ diff --git a/.git_backup/objects/1f/599596d3503902bf23ce8b7880f78cd7f20876 b/.git_backup/objects/1f/599596d3503902bf23ce8b7880f78cd7f20876 deleted file mode 100644 index 738e6e07..00000000 Binary files a/.git_backup/objects/1f/599596d3503902bf23ce8b7880f78cd7f20876 and /dev/null differ diff --git a/.git_backup/objects/1f/656b870387171cbd1ec810f9ed407bf91f87fb b/.git_backup/objects/1f/656b870387171cbd1ec810f9ed407bf91f87fb deleted file mode 100644 index 847f9c2c..00000000 Binary files a/.git_backup/objects/1f/656b870387171cbd1ec810f9ed407bf91f87fb and /dev/null differ diff --git a/.git_backup/objects/1f/6811c3af4000721a7e9ec03b732733671f8b76 b/.git_backup/objects/1f/6811c3af4000721a7e9ec03b732733671f8b76 deleted file mode 100644 index f3da2fc2..00000000 Binary files a/.git_backup/objects/1f/6811c3af4000721a7e9ec03b732733671f8b76 and /dev/null differ diff --git a/.git_backup/objects/1f/69d96524d0b50928c896c5c1f9fc9ef37e070b b/.git_backup/objects/1f/69d96524d0b50928c896c5c1f9fc9ef37e070b deleted file mode 100644 index f75b231e..00000000 Binary files a/.git_backup/objects/1f/69d96524d0b50928c896c5c1f9fc9ef37e070b and /dev/null differ diff --git a/.git_backup/objects/1f/706b00bff14aac9c0b7c9581bad69efc423cce b/.git_backup/objects/1f/706b00bff14aac9c0b7c9581bad69efc423cce deleted file mode 100644 index f1fce8b8..00000000 Binary files a/.git_backup/objects/1f/706b00bff14aac9c0b7c9581bad69efc423cce and /dev/null differ diff --git a/.git_backup/objects/1f/761844fc44f8228bb748235bfd30be6c389cd1 b/.git_backup/objects/1f/761844fc44f8228bb748235bfd30be6c389cd1 deleted file mode 100644 index 71e0d0de..00000000 Binary files a/.git_backup/objects/1f/761844fc44f8228bb748235bfd30be6c389cd1 and /dev/null differ diff --git a/.git_backup/objects/1f/76a7df1e996a5b5827e48725e54464e625c86c b/.git_backup/objects/1f/76a7df1e996a5b5827e48725e54464e625c86c deleted file mode 100644 index 0ee6d73a..00000000 Binary files a/.git_backup/objects/1f/76a7df1e996a5b5827e48725e54464e625c86c and /dev/null differ diff --git a/.git_backup/objects/1f/804097e862db899e8d57e0ac1885f12a055b0d b/.git_backup/objects/1f/804097e862db899e8d57e0ac1885f12a055b0d deleted file mode 100644 index 0fe69a6b..00000000 Binary files a/.git_backup/objects/1f/804097e862db899e8d57e0ac1885f12a055b0d and /dev/null differ diff --git a/.git_backup/objects/1f/84f1a1795ca62541897ce882d774d085d261c0 b/.git_backup/objects/1f/84f1a1795ca62541897ce882d774d085d261c0 deleted file mode 100644 index edd98c47..00000000 Binary files a/.git_backup/objects/1f/84f1a1795ca62541897ce882d774d085d261c0 and /dev/null differ diff --git a/.git_backup/objects/1f/8e8a815787cfdac8229381deb1aeb30b3aebfa b/.git_backup/objects/1f/8e8a815787cfdac8229381deb1aeb30b3aebfa deleted file mode 100644 index 6a548170..00000000 Binary files a/.git_backup/objects/1f/8e8a815787cfdac8229381deb1aeb30b3aebfa and /dev/null differ diff --git a/.git_backup/objects/1f/902ab6fd362a227d89ca3f705b10e3108ae09b b/.git_backup/objects/1f/902ab6fd362a227d89ca3f705b10e3108ae09b deleted file mode 100644 index d195c5a9..00000000 Binary files a/.git_backup/objects/1f/902ab6fd362a227d89ca3f705b10e3108ae09b and /dev/null differ diff --git a/.git_backup/objects/1f/9057296ba9475574a191cf231dc04ace3f910c b/.git_backup/objects/1f/9057296ba9475574a191cf231dc04ace3f910c deleted file mode 100644 index 0f7fec52..00000000 Binary files a/.git_backup/objects/1f/9057296ba9475574a191cf231dc04ace3f910c and /dev/null differ diff --git a/.git_backup/objects/1f/968cd093b68edec5f5a7c3841a594634dc2fb3 b/.git_backup/objects/1f/968cd093b68edec5f5a7c3841a594634dc2fb3 deleted file mode 100644 index b6a73cfd..00000000 Binary files a/.git_backup/objects/1f/968cd093b68edec5f5a7c3841a594634dc2fb3 and /dev/null differ diff --git a/.git_backup/objects/1f/96b1578b03e11c7ddb227ebf7388c97b8795f2 b/.git_backup/objects/1f/96b1578b03e11c7ddb227ebf7388c97b8795f2 deleted file mode 100644 index 70fc55a1..00000000 Binary files a/.git_backup/objects/1f/96b1578b03e11c7ddb227ebf7388c97b8795f2 and /dev/null differ diff --git a/.git_backup/objects/1f/9b227db7a76e70d262ef7b9a3e1fd5c2c574f1 b/.git_backup/objects/1f/9b227db7a76e70d262ef7b9a3e1fd5c2c574f1 deleted file mode 100644 index 0489e3b4..00000000 Binary files a/.git_backup/objects/1f/9b227db7a76e70d262ef7b9a3e1fd5c2c574f1 and /dev/null differ diff --git a/.git_backup/objects/1f/a672fa3d7fa3af1ef80a890db92cd8fe87ae64 b/.git_backup/objects/1f/a672fa3d7fa3af1ef80a890db92cd8fe87ae64 deleted file mode 100644 index 7d299ab9..00000000 Binary files a/.git_backup/objects/1f/a672fa3d7fa3af1ef80a890db92cd8fe87ae64 and /dev/null differ diff --git a/.git_backup/objects/1f/a7e857cab0404723679cda5d6f63752498d60f b/.git_backup/objects/1f/a7e857cab0404723679cda5d6f63752498d60f deleted file mode 100644 index a697be34..00000000 Binary files a/.git_backup/objects/1f/a7e857cab0404723679cda5d6f63752498d60f and /dev/null differ diff --git a/.git_backup/objects/1f/aae2cbab11abccc810b45365d468fa28f297e6 b/.git_backup/objects/1f/aae2cbab11abccc810b45365d468fa28f297e6 deleted file mode 100644 index 0c221f15..00000000 Binary files a/.git_backup/objects/1f/aae2cbab11abccc810b45365d468fa28f297e6 and /dev/null differ diff --git a/.git_backup/objects/1f/b28f949e3fa7f752680628dd84f4972a3704ad b/.git_backup/objects/1f/b28f949e3fa7f752680628dd84f4972a3704ad deleted file mode 100644 index f7255c9e..00000000 Binary files a/.git_backup/objects/1f/b28f949e3fa7f752680628dd84f4972a3704ad and /dev/null differ diff --git a/.git_backup/objects/1f/bce249af6d2d282dece8da3120225dc162af84 b/.git_backup/objects/1f/bce249af6d2d282dece8da3120225dc162af84 deleted file mode 100644 index df7761d8..00000000 Binary files a/.git_backup/objects/1f/bce249af6d2d282dece8da3120225dc162af84 and /dev/null differ diff --git a/.git_backup/objects/1f/c17f130f67517c2c24090852646c3aa1bfab3e b/.git_backup/objects/1f/c17f130f67517c2c24090852646c3aa1bfab3e deleted file mode 100644 index 1d554dcd..00000000 Binary files a/.git_backup/objects/1f/c17f130f67517c2c24090852646c3aa1bfab3e and /dev/null differ diff --git a/.git_backup/objects/1f/c5de0462cd9a09472cece4087cafe699da4fa7 b/.git_backup/objects/1f/c5de0462cd9a09472cece4087cafe699da4fa7 deleted file mode 100644 index 4324ab4a..00000000 Binary files a/.git_backup/objects/1f/c5de0462cd9a09472cece4087cafe699da4fa7 and /dev/null differ diff --git a/.git_backup/objects/1f/d33d496344964318ed5ebcde9af02bab549676 b/.git_backup/objects/1f/d33d496344964318ed5ebcde9af02bab549676 deleted file mode 100644 index 8ccaa1d2..00000000 Binary files a/.git_backup/objects/1f/d33d496344964318ed5ebcde9af02bab549676 and /dev/null differ diff --git a/.git_backup/objects/1f/da24b4e69ab7baa40245df22240e886f6aad02 b/.git_backup/objects/1f/da24b4e69ab7baa40245df22240e886f6aad02 deleted file mode 100644 index 9a6367a4..00000000 Binary files a/.git_backup/objects/1f/da24b4e69ab7baa40245df22240e886f6aad02 and /dev/null differ diff --git a/.git_backup/objects/1f/e3d225acb9bf37acffafc2198dc96c7c7fd313 b/.git_backup/objects/1f/e3d225acb9bf37acffafc2198dc96c7c7fd313 deleted file mode 100644 index eac56957..00000000 Binary files a/.git_backup/objects/1f/e3d225acb9bf37acffafc2198dc96c7c7fd313 and /dev/null differ diff --git a/.git_backup/objects/1f/e8a58ae1368cdca07ca7fc8ac3db4a8e3a7eee b/.git_backup/objects/1f/e8a58ae1368cdca07ca7fc8ac3db4a8e3a7eee deleted file mode 100644 index 65ede28d..00000000 Binary files a/.git_backup/objects/1f/e8a58ae1368cdca07ca7fc8ac3db4a8e3a7eee and /dev/null differ diff --git a/.git_backup/objects/1f/ec684939dbba9bf172ae4abec6f4030bb0f0eb b/.git_backup/objects/1f/ec684939dbba9bf172ae4abec6f4030bb0f0eb deleted file mode 100644 index 5d22396d..00000000 Binary files a/.git_backup/objects/1f/ec684939dbba9bf172ae4abec6f4030bb0f0eb and /dev/null differ diff --git a/.git_backup/objects/1f/f32a2896fb9c11558f35719854ae6ff8879941 b/.git_backup/objects/1f/f32a2896fb9c11558f35719854ae6ff8879941 deleted file mode 100644 index f5de555b..00000000 Binary files a/.git_backup/objects/1f/f32a2896fb9c11558f35719854ae6ff8879941 and /dev/null differ diff --git a/.git_backup/objects/1f/f5f7dc70b2f9b2ebc8ddc0e86a3f3e2f25c7d6 b/.git_backup/objects/1f/f5f7dc70b2f9b2ebc8ddc0e86a3f3e2f25c7d6 deleted file mode 100644 index 9f6c7dff..00000000 Binary files a/.git_backup/objects/1f/f5f7dc70b2f9b2ebc8ddc0e86a3f3e2f25c7d6 and /dev/null differ diff --git a/.git_backup/objects/1f/f622026be351c4678ba74b0d4156b1bcd14a7c b/.git_backup/objects/1f/f622026be351c4678ba74b0d4156b1bcd14a7c deleted file mode 100644 index 2f258fe2..00000000 --- a/.git_backup/objects/1f/f622026be351c4678ba74b0d4156b1bcd14a7c +++ /dev/null @@ -1,2 +0,0 @@ -x}ok0Z!l$],AVvk()$cXYEmJJ?0G)ӛчV[-V^4g!CV.Kx9ߕ.ÄOK$H1ń*H?S\{PPL,?>Mp]yxZvDqGq(ZaDNіwNURWJ\zo:R!f ydO'NW䔟]4E*gPf(D̈́aTIЬ U&1aAfkE|)gĆm_jX-7tzGL|8@Hkky||pD~~̮WtjbǾ?fD{Ypk$ žxH{L*.v%x}q7^ -g+I \ No newline at end of file diff --git a/.git_backup/objects/1f/f73f0134af56fdcd9cff27b0130ecb01d7a336 b/.git_backup/objects/1f/f73f0134af56fdcd9cff27b0130ecb01d7a336 deleted file mode 100644 index 08720f1b..00000000 Binary files a/.git_backup/objects/1f/f73f0134af56fdcd9cff27b0130ecb01d7a336 and /dev/null differ diff --git a/.git_backup/objects/1f/fa14e3f99e44c784a435732ea222d4689e816c b/.git_backup/objects/1f/fa14e3f99e44c784a435732ea222d4689e816c deleted file mode 100644 index 8ce298f0..00000000 --- a/.git_backup/objects/1f/fa14e3f99e44c784a435732ea222d4689e816c +++ /dev/null @@ -1,3 +0,0 @@ -xMQK0}ίl[YDET]`2akd$fҧph -r;SJ}xG>CbNV*$xOR*`'%^m Q/i^I-V%Ժ|% p]bOK[4  1Dc4^6JG~ 1;\q -DJ @zsc\Bζoi6e [ ٰ4`.W33"j,Ҍb| ,u>e9IKwhMh69Ҥh3#2G \ No newline at end of file diff --git a/.git_backup/objects/1f/fe2ffd56a18e7673fbfed552058d3ca0c78a22 b/.git_backup/objects/1f/fe2ffd56a18e7673fbfed552058d3ca0c78a22 deleted file mode 100644 index 5f427566..00000000 Binary files a/.git_backup/objects/1f/fe2ffd56a18e7673fbfed552058d3ca0c78a22 and /dev/null differ diff --git a/.git_backup/objects/20/017eca439a01656093618a896be765fbea1f13 b/.git_backup/objects/20/017eca439a01656093618a896be765fbea1f13 deleted file mode 100644 index 8c951d65..00000000 Binary files a/.git_backup/objects/20/017eca439a01656093618a896be765fbea1f13 and /dev/null differ diff --git a/.git_backup/objects/20/02c32a7ec786f38985a49244c9c89e756d8a78 b/.git_backup/objects/20/02c32a7ec786f38985a49244c9c89e756d8a78 deleted file mode 100644 index 28e7e787..00000000 Binary files a/.git_backup/objects/20/02c32a7ec786f38985a49244c9c89e756d8a78 and /dev/null differ diff --git a/.git_backup/objects/20/066302d7224bc06eecb793766561d8345ffcb1 b/.git_backup/objects/20/066302d7224bc06eecb793766561d8345ffcb1 deleted file mode 100644 index fbb33709..00000000 Binary files a/.git_backup/objects/20/066302d7224bc06eecb793766561d8345ffcb1 and /dev/null differ diff --git a/.git_backup/objects/20/06ffdbcf9e0348baffa8469c1b52df6cfcc983 b/.git_backup/objects/20/06ffdbcf9e0348baffa8469c1b52df6cfcc983 deleted file mode 100644 index efd25f59..00000000 Binary files a/.git_backup/objects/20/06ffdbcf9e0348baffa8469c1b52df6cfcc983 and /dev/null differ diff --git a/.git_backup/objects/20/0a71ff0c2b7e8cb9c2b6988b062ddbe8662242 b/.git_backup/objects/20/0a71ff0c2b7e8cb9c2b6988b062ddbe8662242 deleted file mode 100644 index 99efa704..00000000 Binary files a/.git_backup/objects/20/0a71ff0c2b7e8cb9c2b6988b062ddbe8662242 and /dev/null differ diff --git a/.git_backup/objects/20/0d1b50bfced75be6c07bbf9b14747279c2d386 b/.git_backup/objects/20/0d1b50bfced75be6c07bbf9b14747279c2d386 deleted file mode 100644 index f083618c..00000000 Binary files a/.git_backup/objects/20/0d1b50bfced75be6c07bbf9b14747279c2d386 and /dev/null differ diff --git a/.git_backup/objects/20/16680a1ef855c0e866d4a6fd53d4135515b12e b/.git_backup/objects/20/16680a1ef855c0e866d4a6fd53d4135515b12e deleted file mode 100644 index 66a1833e..00000000 Binary files a/.git_backup/objects/20/16680a1ef855c0e866d4a6fd53d4135515b12e and /dev/null differ diff --git a/.git_backup/objects/20/1b3c3283218f45d5cfa192a07c9e9d991eaaff b/.git_backup/objects/20/1b3c3283218f45d5cfa192a07c9e9d991eaaff deleted file mode 100644 index 164831f9..00000000 Binary files a/.git_backup/objects/20/1b3c3283218f45d5cfa192a07c9e9d991eaaff and /dev/null differ diff --git a/.git_backup/objects/20/1e177d8bb10ff09b0ae03d8e419282e490c5ab b/.git_backup/objects/20/1e177d8bb10ff09b0ae03d8e419282e490c5ab deleted file mode 100644 index dde9a601..00000000 Binary files a/.git_backup/objects/20/1e177d8bb10ff09b0ae03d8e419282e490c5ab and /dev/null differ diff --git a/.git_backup/objects/20/2720f9a27db7760a26a0841402690ec78b80d8 b/.git_backup/objects/20/2720f9a27db7760a26a0841402690ec78b80d8 deleted file mode 100644 index bd797881..00000000 Binary files a/.git_backup/objects/20/2720f9a27db7760a26a0841402690ec78b80d8 and /dev/null differ diff --git a/.git_backup/objects/20/2dea716c7058e30758822d0dc9472d15343864 b/.git_backup/objects/20/2dea716c7058e30758822d0dc9472d15343864 deleted file mode 100644 index a08ac0ac..00000000 Binary files a/.git_backup/objects/20/2dea716c7058e30758822d0dc9472d15343864 and /dev/null differ diff --git a/.git_backup/objects/20/2eb885b7173bbd4e9606c8ddeb7c486832afe7 b/.git_backup/objects/20/2eb885b7173bbd4e9606c8ddeb7c486832afe7 deleted file mode 100644 index 4a07680d..00000000 Binary files a/.git_backup/objects/20/2eb885b7173bbd4e9606c8ddeb7c486832afe7 and /dev/null differ diff --git a/.git_backup/objects/20/34c61f37c36798b524f96e577e7190d9a404b7 b/.git_backup/objects/20/34c61f37c36798b524f96e577e7190d9a404b7 deleted file mode 100644 index dbf8ecb5..00000000 Binary files a/.git_backup/objects/20/34c61f37c36798b524f96e577e7190d9a404b7 and /dev/null differ diff --git a/.git_backup/objects/20/37520dfe547c0dfbe2e8fa0582a65f37c88eec b/.git_backup/objects/20/37520dfe547c0dfbe2e8fa0582a65f37c88eec deleted file mode 100644 index d82d87ee..00000000 --- a/.git_backup/objects/20/37520dfe547c0dfbe2e8fa0582a65f37c88eec +++ /dev/null @@ -1,3 +0,0 @@ -x1k0;WO)19+pD9 ZP}PQ t轏{~}{wAt`:wF]%)xЂQz㲛1}Y7gWg`cbC7*Ŗ>|ٺyb|"E(۲YKvaq9n -^@3=IeK?K.o.~Rd\=_ ɛU - \ No newline at end of file diff --git a/.git_backup/objects/20/485aafd6f66b6c6e08c476bc0bfd0d0e8d223b b/.git_backup/objects/20/485aafd6f66b6c6e08c476bc0bfd0d0e8d223b deleted file mode 100644 index 81f4b542..00000000 Binary files a/.git_backup/objects/20/485aafd6f66b6c6e08c476bc0bfd0d0e8d223b and /dev/null differ diff --git a/.git_backup/objects/20/4efa0e5670fcd8e1e750dae7e7b34df513e81a b/.git_backup/objects/20/4efa0e5670fcd8e1e750dae7e7b34df513e81a deleted file mode 100644 index 75a6ef84..00000000 Binary files a/.git_backup/objects/20/4efa0e5670fcd8e1e750dae7e7b34df513e81a and /dev/null differ diff --git a/.git_backup/objects/20/50988f8ad61b9958ec89a343b8e274f16c3651 b/.git_backup/objects/20/50988f8ad61b9958ec89a343b8e274f16c3651 deleted file mode 100644 index a0c678e6..00000000 Binary files a/.git_backup/objects/20/50988f8ad61b9958ec89a343b8e274f16c3651 and /dev/null differ diff --git a/.git_backup/objects/20/5a28ae9faf2bca82a7b20e22afcf8ccdc86abd b/.git_backup/objects/20/5a28ae9faf2bca82a7b20e22afcf8ccdc86abd deleted file mode 100644 index 3e8e6130..00000000 Binary files a/.git_backup/objects/20/5a28ae9faf2bca82a7b20e22afcf8ccdc86abd and /dev/null differ diff --git a/.git_backup/objects/20/63ab028eb46ffe29dd0099d511010e6931a079 b/.git_backup/objects/20/63ab028eb46ffe29dd0099d511010e6931a079 deleted file mode 100644 index 5f4735eb..00000000 Binary files a/.git_backup/objects/20/63ab028eb46ffe29dd0099d511010e6931a079 and /dev/null differ diff --git a/.git_backup/objects/20/655174e92637dd498d281038fc123f11b25b6e b/.git_backup/objects/20/655174e92637dd498d281038fc123f11b25b6e deleted file mode 100644 index e7af9ade..00000000 Binary files a/.git_backup/objects/20/655174e92637dd498d281038fc123f11b25b6e and /dev/null differ diff --git a/.git_backup/objects/20/66d0662abd45a37b0adbc486d719fbed9f0c73 b/.git_backup/objects/20/66d0662abd45a37b0adbc486d719fbed9f0c73 deleted file mode 100644 index 0d7e0bd1..00000000 Binary files a/.git_backup/objects/20/66d0662abd45a37b0adbc486d719fbed9f0c73 and /dev/null differ diff --git a/.git_backup/objects/20/6f37f28315f5d32d9b54bf0d2ee6c7c8c50b03 b/.git_backup/objects/20/6f37f28315f5d32d9b54bf0d2ee6c7c8c50b03 deleted file mode 100644 index da7cabfd..00000000 Binary files a/.git_backup/objects/20/6f37f28315f5d32d9b54bf0d2ee6c7c8c50b03 and /dev/null differ diff --git a/.git_backup/objects/20/6f70a15bb1611016ba6d25dab19342807c8fbf b/.git_backup/objects/20/6f70a15bb1611016ba6d25dab19342807c8fbf deleted file mode 100644 index 46ad124c..00000000 Binary files a/.git_backup/objects/20/6f70a15bb1611016ba6d25dab19342807c8fbf and /dev/null differ diff --git a/.git_backup/objects/20/74154ef790c5c1f1b23c1405f379ab51054c27 b/.git_backup/objects/20/74154ef790c5c1f1b23c1405f379ab51054c27 deleted file mode 100644 index 76d878f0..00000000 Binary files a/.git_backup/objects/20/74154ef790c5c1f1b23c1405f379ab51054c27 and /dev/null differ diff --git a/.git_backup/objects/20/744ccd7b715a96b4e9ec3bc63ece3d0e504076 b/.git_backup/objects/20/744ccd7b715a96b4e9ec3bc63ece3d0e504076 deleted file mode 100644 index de732927..00000000 Binary files a/.git_backup/objects/20/744ccd7b715a96b4e9ec3bc63ece3d0e504076 and /dev/null differ diff --git a/.git_backup/objects/20/81e244b4e6c72a5423afd7a4a997d791557873 b/.git_backup/objects/20/81e244b4e6c72a5423afd7a4a997d791557873 deleted file mode 100644 index 0e16c52e..00000000 Binary files a/.git_backup/objects/20/81e244b4e6c72a5423afd7a4a997d791557873 and /dev/null differ diff --git a/.git_backup/objects/20/8f2436afd3b50ad7c4c292345ad55c473f0035 b/.git_backup/objects/20/8f2436afd3b50ad7c4c292345ad55c473f0035 deleted file mode 100644 index b633d058..00000000 Binary files a/.git_backup/objects/20/8f2436afd3b50ad7c4c292345ad55c473f0035 and /dev/null differ diff --git a/.git_backup/objects/20/8ffb58bcf7125d9ff2a0c07f9cdd1153739eb6 b/.git_backup/objects/20/8ffb58bcf7125d9ff2a0c07f9cdd1153739eb6 deleted file mode 100644 index 7369c5ed..00000000 Binary files a/.git_backup/objects/20/8ffb58bcf7125d9ff2a0c07f9cdd1153739eb6 and /dev/null differ diff --git a/.git_backup/objects/20/90b534faf3b514544244d70112af74769ee247 b/.git_backup/objects/20/90b534faf3b514544244d70112af74769ee247 deleted file mode 100644 index b6f1c1fe..00000000 Binary files a/.git_backup/objects/20/90b534faf3b514544244d70112af74769ee247 and /dev/null differ diff --git a/.git_backup/objects/20/94791ecdc609a12b4e639dcde735c4fea2be22 b/.git_backup/objects/20/94791ecdc609a12b4e639dcde735c4fea2be22 deleted file mode 100644 index b019774f..00000000 --- a/.git_backup/objects/20/94791ecdc609a12b4e639dcde735c4fea2be22 +++ /dev/null @@ -1 +0,0 @@ -x]0 V#.[n Ȁ-E%1LlOMg]B1&vȎe//z&)m˭'祆1jcp["ő ?</ \ No newline at end of file diff --git a/.git_backup/objects/20/988efb1bcc015f72ac68fce67e68e26472a9d2 b/.git_backup/objects/20/988efb1bcc015f72ac68fce67e68e26472a9d2 deleted file mode 100644 index 1373b353..00000000 Binary files a/.git_backup/objects/20/988efb1bcc015f72ac68fce67e68e26472a9d2 and /dev/null differ diff --git a/.git_backup/objects/20/9891ba8f0435121edd33a7d9eb1280f3a09e98 b/.git_backup/objects/20/9891ba8f0435121edd33a7d9eb1280f3a09e98 deleted file mode 100644 index 385d6dcc..00000000 Binary files a/.git_backup/objects/20/9891ba8f0435121edd33a7d9eb1280f3a09e98 and /dev/null differ diff --git a/.git_backup/objects/20/9da937de51994477f4c5c3ce84a41d3eff18a6 b/.git_backup/objects/20/9da937de51994477f4c5c3ce84a41d3eff18a6 deleted file mode 100644 index 4cc4b193..00000000 Binary files a/.git_backup/objects/20/9da937de51994477f4c5c3ce84a41d3eff18a6 and /dev/null differ diff --git a/.git_backup/objects/20/9dc18d3f0eb068ee90d1d114abc0036cea7e86 b/.git_backup/objects/20/9dc18d3f0eb068ee90d1d114abc0036cea7e86 deleted file mode 100644 index cf77cfa0..00000000 Binary files a/.git_backup/objects/20/9dc18d3f0eb068ee90d1d114abc0036cea7e86 and /dev/null differ diff --git a/.git_backup/objects/20/a17ed09272a09a5b3c0bfbd0e6c43f78db4c1e b/.git_backup/objects/20/a17ed09272a09a5b3c0bfbd0e6c43f78db4c1e deleted file mode 100644 index 53cebcf9..00000000 Binary files a/.git_backup/objects/20/a17ed09272a09a5b3c0bfbd0e6c43f78db4c1e and /dev/null differ diff --git a/.git_backup/objects/20/a189427978966f5586011f99857f18f9593a0b b/.git_backup/objects/20/a189427978966f5586011f99857f18f9593a0b deleted file mode 100644 index e2353b8d..00000000 Binary files a/.git_backup/objects/20/a189427978966f5586011f99857f18f9593a0b and /dev/null differ diff --git a/.git_backup/objects/20/a62a411a840af30d38e4ea6f3fda3b846ef890 b/.git_backup/objects/20/a62a411a840af30d38e4ea6f3fda3b846ef890 deleted file mode 100644 index a80c80c2..00000000 Binary files a/.git_backup/objects/20/a62a411a840af30d38e4ea6f3fda3b846ef890 and /dev/null differ diff --git a/.git_backup/objects/20/a739f64a63f6212ba56364c32869daf2f761c8 b/.git_backup/objects/20/a739f64a63f6212ba56364c32869daf2f761c8 deleted file mode 100644 index fda08eae..00000000 Binary files a/.git_backup/objects/20/a739f64a63f6212ba56364c32869daf2f761c8 and /dev/null differ diff --git a/.git_backup/objects/20/a8a75f5639af601c55721f840122f24eb3d663 b/.git_backup/objects/20/a8a75f5639af601c55721f840122f24eb3d663 deleted file mode 100644 index af4d1686..00000000 Binary files a/.git_backup/objects/20/a8a75f5639af601c55721f840122f24eb3d663 and /dev/null differ diff --git a/.git_backup/objects/20/b0f5bbb7118d238389ae62ee80b59e7a915bb0 b/.git_backup/objects/20/b0f5bbb7118d238389ae62ee80b59e7a915bb0 deleted file mode 100644 index 7fc62d36..00000000 Binary files a/.git_backup/objects/20/b0f5bbb7118d238389ae62ee80b59e7a915bb0 and /dev/null differ diff --git a/.git_backup/objects/20/ba37d7a5b902b9cfc96b5230215f0c34984d4a b/.git_backup/objects/20/ba37d7a5b902b9cfc96b5230215f0c34984d4a deleted file mode 100644 index 7d396a32..00000000 Binary files a/.git_backup/objects/20/ba37d7a5b902b9cfc96b5230215f0c34984d4a and /dev/null differ diff --git a/.git_backup/objects/20/bcb76e0453a30e4d1bed844b5661f35c5a0112 b/.git_backup/objects/20/bcb76e0453a30e4d1bed844b5661f35c5a0112 deleted file mode 100644 index 97a36b37..00000000 Binary files a/.git_backup/objects/20/bcb76e0453a30e4d1bed844b5661f35c5a0112 and /dev/null differ diff --git a/.git_backup/objects/20/be73429556664e2b1252eef4d9eb85d0e8690b b/.git_backup/objects/20/be73429556664e2b1252eef4d9eb85d0e8690b deleted file mode 100644 index 5f0ce307..00000000 Binary files a/.git_backup/objects/20/be73429556664e2b1252eef4d9eb85d0e8690b and /dev/null differ diff --git a/.git_backup/objects/20/c302da1959de718572990d7c1007128e2e3842 b/.git_backup/objects/20/c302da1959de718572990d7c1007128e2e3842 deleted file mode 100644 index eab447d9..00000000 Binary files a/.git_backup/objects/20/c302da1959de718572990d7c1007128e2e3842 and /dev/null differ diff --git a/.git_backup/objects/20/c77666c59aaff5b21e17722ba35805270f1fb9 b/.git_backup/objects/20/c77666c59aaff5b21e17722ba35805270f1fb9 deleted file mode 100644 index 0c8ad8da..00000000 Binary files a/.git_backup/objects/20/c77666c59aaff5b21e17722ba35805270f1fb9 and /dev/null differ diff --git a/.git_backup/objects/20/c9c84df491e4072ec4c5d2c931a7433d9fd394 b/.git_backup/objects/20/c9c84df491e4072ec4c5d2c931a7433d9fd394 deleted file mode 100644 index 42791236..00000000 Binary files a/.git_backup/objects/20/c9c84df491e4072ec4c5d2c931a7433d9fd394 and /dev/null differ diff --git a/.git_backup/objects/20/e035891a625f5c2eca29cd18141d513d8712f8 b/.git_backup/objects/20/e035891a625f5c2eca29cd18141d513d8712f8 deleted file mode 100644 index 10069b0a..00000000 Binary files a/.git_backup/objects/20/e035891a625f5c2eca29cd18141d513d8712f8 and /dev/null differ diff --git a/.git_backup/objects/20/e3d4dc5430be065c2821c03e3662c69b549ce3 b/.git_backup/objects/20/e3d4dc5430be065c2821c03e3662c69b549ce3 deleted file mode 100644 index 22e79cbc..00000000 Binary files a/.git_backup/objects/20/e3d4dc5430be065c2821c03e3662c69b549ce3 and /dev/null differ diff --git a/.git_backup/objects/20/e689e3e9ff93860cc412c1d58af249878829bb b/.git_backup/objects/20/e689e3e9ff93860cc412c1d58af249878829bb deleted file mode 100644 index eec0604d..00000000 Binary files a/.git_backup/objects/20/e689e3e9ff93860cc412c1d58af249878829bb and /dev/null differ diff --git a/.git_backup/objects/20/ec8c1ba0a50da6be9fce3686ac1950b1a55ab5 b/.git_backup/objects/20/ec8c1ba0a50da6be9fce3686ac1950b1a55ab5 deleted file mode 100644 index 79f12b24..00000000 --- a/.git_backup/objects/20/ec8c1ba0a50da6be9fce3686ac1950b1a55ab5 +++ /dev/null @@ -1,4 +0,0 @@ -xm -@ E]WdBt/ N΋t -~2@Nν' `؂p%,*ԐHS!)̻.m`cy(6)0"rW\ \ No newline at end of file diff --git a/.git_backup/objects/20/f9fabe4aee1d9cc58546e06d3e45501ff36ede b/.git_backup/objects/20/f9fabe4aee1d9cc58546e06d3e45501ff36ede deleted file mode 100644 index f41f78d8..00000000 Binary files a/.git_backup/objects/20/f9fabe4aee1d9cc58546e06d3e45501ff36ede and /dev/null differ diff --git a/.git_backup/objects/21/03e9300b1cb915439446618afd8bd1c277fad9 b/.git_backup/objects/21/03e9300b1cb915439446618afd8bd1c277fad9 deleted file mode 100644 index 2f47afd0..00000000 Binary files a/.git_backup/objects/21/03e9300b1cb915439446618afd8bd1c277fad9 and /dev/null differ diff --git a/.git_backup/objects/21/0bb80b7e7b64cb79f7e7cdf3e42819fe3471fe b/.git_backup/objects/21/0bb80b7e7b64cb79f7e7cdf3e42819fe3471fe deleted file mode 100644 index 82966c9a..00000000 --- a/.git_backup/objects/21/0bb80b7e7b64cb79f7e7cdf3e42819fe3471fe +++ /dev/null @@ -1,4 +0,0 @@ -xuRQ19bhQ胞 ADtw^2s춊l2}| G{y'@̀'j` ES\^XKb%lM:`*8dқw/O RGkC:t#&hѺT6i"Cdc -n`2]Cc6GYlT͌4&O[؃c}>o~[I?}Kn>Jr -%rWyã8(j{cnԮG$m !:yƢ],xGgryg[tE9Oa--'rkg)Xs^ƿOj`܋5c<=]#-l2o3%/uV -,n|aupÔh ?OR \ No newline at end of file diff --git a/.git_backup/objects/21/0bcd300b1b06b866905e51cc3e36bd0f4ee332 b/.git_backup/objects/21/0bcd300b1b06b866905e51cc3e36bd0f4ee332 deleted file mode 100644 index 3fc33c3b..00000000 Binary files a/.git_backup/objects/21/0bcd300b1b06b866905e51cc3e36bd0f4ee332 and /dev/null differ diff --git a/.git_backup/objects/21/0deb94b8b723376f45af0117fe614216c70c08 b/.git_backup/objects/21/0deb94b8b723376f45af0117fe614216c70c08 deleted file mode 100644 index 8a58040c..00000000 Binary files a/.git_backup/objects/21/0deb94b8b723376f45af0117fe614216c70c08 and /dev/null differ diff --git a/.git_backup/objects/21/0e86067566a806088640c26c4946282a0f24b3 b/.git_backup/objects/21/0e86067566a806088640c26c4946282a0f24b3 deleted file mode 100644 index 471f6785..00000000 Binary files a/.git_backup/objects/21/0e86067566a806088640c26c4946282a0f24b3 and /dev/null differ diff --git a/.git_backup/objects/21/14939ba11f2e5c24c91da9709c83f0286b5e0a b/.git_backup/objects/21/14939ba11f2e5c24c91da9709c83f0286b5e0a deleted file mode 100644 index e61d379a..00000000 Binary files a/.git_backup/objects/21/14939ba11f2e5c24c91da9709c83f0286b5e0a and /dev/null differ diff --git a/.git_backup/objects/21/1795c1bef96bb177045a51b8d421d45a83f857 b/.git_backup/objects/21/1795c1bef96bb177045a51b8d421d45a83f857 deleted file mode 100644 index 9b90dace..00000000 Binary files a/.git_backup/objects/21/1795c1bef96bb177045a51b8d421d45a83f857 and /dev/null differ diff --git a/.git_backup/objects/21/1d1835afcae058993949fe409f02a390446356 b/.git_backup/objects/21/1d1835afcae058993949fe409f02a390446356 deleted file mode 100644 index a5e07c1c..00000000 Binary files a/.git_backup/objects/21/1d1835afcae058993949fe409f02a390446356 and /dev/null differ diff --git a/.git_backup/objects/21/299d76eaf5a2ccb86d87a3104775fcb215fc56 b/.git_backup/objects/21/299d76eaf5a2ccb86d87a3104775fcb215fc56 deleted file mode 100644 index 2fa4285d..00000000 Binary files a/.git_backup/objects/21/299d76eaf5a2ccb86d87a3104775fcb215fc56 and /dev/null differ diff --git a/.git_backup/objects/21/2a2ec86ec8a6fd88ea88ffa5ca26e40b320b72 b/.git_backup/objects/21/2a2ec86ec8a6fd88ea88ffa5ca26e40b320b72 deleted file mode 100644 index ff60e123..00000000 Binary files a/.git_backup/objects/21/2a2ec86ec8a6fd88ea88ffa5ca26e40b320b72 and /dev/null differ diff --git a/.git_backup/objects/21/2d4b2e2afaed06110a1acff4fdb6bd6103b4ff b/.git_backup/objects/21/2d4b2e2afaed06110a1acff4fdb6bd6103b4ff deleted file mode 100644 index 07d13571..00000000 Binary files a/.git_backup/objects/21/2d4b2e2afaed06110a1acff4fdb6bd6103b4ff and /dev/null differ diff --git a/.git_backup/objects/21/3e39c9d58ecb872e87fb9a28ff3f02a96eca01 b/.git_backup/objects/21/3e39c9d58ecb872e87fb9a28ff3f02a96eca01 deleted file mode 100644 index f990ae82..00000000 Binary files a/.git_backup/objects/21/3e39c9d58ecb872e87fb9a28ff3f02a96eca01 and /dev/null differ diff --git a/.git_backup/objects/21/40970015d099763797d60a98a3a3b6f4b5f219 b/.git_backup/objects/21/40970015d099763797d60a98a3a3b6f4b5f219 deleted file mode 100644 index 11f66883..00000000 --- a/.git_backup/objects/21/40970015d099763797d60a98a3a3b6f4b5f219 +++ /dev/null @@ -1 +0,0 @@ -xn0 ;)K%@@첤 i෯hţ; Na-ުc [O]c!Et3%[Y91˂=M[dߚƄӌ+9z҅3$ W㏜qm~VF)=0o1C\h?GYu}JD_1x \ No newline at end of file diff --git a/.git_backup/objects/21/4a0cc144f9bfd3538681469ad0dffc0bf661cf b/.git_backup/objects/21/4a0cc144f9bfd3538681469ad0dffc0bf661cf deleted file mode 100644 index 350e859c..00000000 --- a/.git_backup/objects/21/4a0cc144f9bfd3538681469ad0dffc0bf661cf +++ /dev/null @@ -1,4 +0,0 @@ -xUQ1ބ8V8: G\u"]R]OYmxWA *{ky:*9$xl|_BϞoΪB~iΊwL~$3u8Z}B"C -p&ހM N}0XUj>' 7 -ol P`B -*ڈOnp!_ d#'Migװ 衷YMLpN:@эNvnJ)vdQ&\D)\X Ҿ܆ P3&f0r9Jz@e&x`aIJDA{Շv+_n~l_‰z rB~/mSMTD+I,4K,Ҩ8ݜ!r> \ No newline at end of file diff --git a/.git_backup/objects/21/4e6bf69807502d0ae45213f1a205921ac951db b/.git_backup/objects/21/4e6bf69807502d0ae45213f1a205921ac951db deleted file mode 100644 index eedfd9a4..00000000 Binary files a/.git_backup/objects/21/4e6bf69807502d0ae45213f1a205921ac951db and /dev/null differ diff --git a/.git_backup/objects/21/51c1ec7f284809c006c3be8c8375fff4847072 b/.git_backup/objects/21/51c1ec7f284809c006c3be8c8375fff4847072 deleted file mode 100644 index ddf95034..00000000 --- a/.git_backup/objects/21/51c1ec7f284809c006c3be8c8375fff4847072 +++ /dev/null @@ -1,9 +0,0 @@ -xWmo6kx- ې(Ӛ1IH*w$-4Ja>>;ӲK[IB×UC^H K!9tCZ/WOeYۋcXg±5gaJ`Cx[9[iDŴI/CFY%:x@ًۛ;B6tKRFo`^s 0Vʋ؈o2`wEAׂ Pu5@԰D`cN{ŏu|g cgeOYߺgXPH݀&ZNN~\+Q*.: -| -+}rC*-8:Pٟ -noW糨* *H;%1-f†:zW೨SԼna6TknEGbXmXR~_*&:tX.ނΜEeTO B:i9(Ғlck =;Xȳ_LB_ DĪW׃pєCӯFjLȏ? J$Sk|XUQd~n]f)o=jDf < -AD$n3f:ڍ<k)d/h -jr+2U|lS<X4){ll;<'ٹ#me*hk6&AC̩ECa̴avN}х`QXl9q]cv^`. {3ǜ c_g-i1'ε"W1)`))Ll4RrAgHM7Uvitda!} i-dU} 2>P Eiٌ//V+܏l!x%:wMe+g [zADy~Qd,;5 ƌ&iIND"eas[0`l'z _ۗ/CѾ5N\j=ݯ[ptaB;PbbnBkPxo˘rE$w"36*_r]1TEۅEKZ V՟ZzWZtQԕHϺĻE[rP 2> \ No newline at end of file diff --git a/.git_backup/objects/22/248d2655eeddea1165486f8cbb7bff9726b9ed b/.git_backup/objects/22/248d2655eeddea1165486f8cbb7bff9726b9ed deleted file mode 100644 index f9b181f6..00000000 Binary files a/.git_backup/objects/22/248d2655eeddea1165486f8cbb7bff9726b9ed and /dev/null differ diff --git a/.git_backup/objects/22/29e1845aa61a48241c7dc021aa0023a3938a76 b/.git_backup/objects/22/29e1845aa61a48241c7dc021aa0023a3938a76 deleted file mode 100644 index f6503c7e..00000000 Binary files a/.git_backup/objects/22/29e1845aa61a48241c7dc021aa0023a3938a76 and /dev/null differ diff --git a/.git_backup/objects/22/2e50abf54126efdc1fcac37e9732a73588aa23 b/.git_backup/objects/22/2e50abf54126efdc1fcac37e9732a73588aa23 deleted file mode 100644 index ee20e3c7..00000000 Binary files a/.git_backup/objects/22/2e50abf54126efdc1fcac37e9732a73588aa23 and /dev/null differ diff --git a/.git_backup/objects/22/34e5f0eb0138a327702bcc70094ad0e7ca0f4b b/.git_backup/objects/22/34e5f0eb0138a327702bcc70094ad0e7ca0f4b deleted file mode 100644 index 3edacbd2..00000000 Binary files a/.git_backup/objects/22/34e5f0eb0138a327702bcc70094ad0e7ca0f4b and /dev/null differ diff --git a/.git_backup/objects/22/38679318ac0efca12452acbe4d1124c28e10b4 b/.git_backup/objects/22/38679318ac0efca12452acbe4d1124c28e10b4 deleted file mode 100644 index 076148f4..00000000 Binary files a/.git_backup/objects/22/38679318ac0efca12452acbe4d1124c28e10b4 and /dev/null differ diff --git a/.git_backup/objects/22/3ed3959a27eb7ed3ad92d7964ac8248d624d78 b/.git_backup/objects/22/3ed3959a27eb7ed3ad92d7964ac8248d624d78 deleted file mode 100644 index 82894a41..00000000 Binary files a/.git_backup/objects/22/3ed3959a27eb7ed3ad92d7964ac8248d624d78 and /dev/null differ diff --git a/.git_backup/objects/22/40c8af302ba03c5d743ebc54ad77db5abc0783 b/.git_backup/objects/22/40c8af302ba03c5d743ebc54ad77db5abc0783 deleted file mode 100644 index 58021dfe..00000000 Binary files a/.git_backup/objects/22/40c8af302ba03c5d743ebc54ad77db5abc0783 and /dev/null differ diff --git a/.git_backup/objects/22/4344364678b389fb031e387913e0b5c5737265 b/.git_backup/objects/22/4344364678b389fb031e387913e0b5c5737265 deleted file mode 100644 index 8a03fd44..00000000 Binary files a/.git_backup/objects/22/4344364678b389fb031e387913e0b5c5737265 and /dev/null differ diff --git a/.git_backup/objects/22/4f33f231547932caaea0d18b8d5b8feb8b2c36 b/.git_backup/objects/22/4f33f231547932caaea0d18b8d5b8feb8b2c36 deleted file mode 100644 index bd5ee3e7..00000000 Binary files a/.git_backup/objects/22/4f33f231547932caaea0d18b8d5b8feb8b2c36 and /dev/null differ diff --git a/.git_backup/objects/22/608876481219c8181b4f41d57c8bce03fb972c b/.git_backup/objects/22/608876481219c8181b4f41d57c8bce03fb972c deleted file mode 100644 index 242ec149..00000000 Binary files a/.git_backup/objects/22/608876481219c8181b4f41d57c8bce03fb972c and /dev/null differ diff --git a/.git_backup/objects/22/620937ff23735ec3117002bf6da4c4d421fa11 b/.git_backup/objects/22/620937ff23735ec3117002bf6da4c4d421fa11 deleted file mode 100644 index 70815744..00000000 Binary files a/.git_backup/objects/22/620937ff23735ec3117002bf6da4c4d421fa11 and /dev/null differ diff --git a/.git_backup/objects/22/64a15181d35bbd4b18498539f7470b24ab0572 b/.git_backup/objects/22/64a15181d35bbd4b18498539f7470b24ab0572 deleted file mode 100644 index aaedc8bc..00000000 Binary files a/.git_backup/objects/22/64a15181d35bbd4b18498539f7470b24ab0572 and /dev/null differ diff --git a/.git_backup/objects/22/65dc7811ce7ca6fe281e09e8703d8158bcca73 b/.git_backup/objects/22/65dc7811ce7ca6fe281e09e8703d8158bcca73 deleted file mode 100644 index 3246dcc1..00000000 Binary files a/.git_backup/objects/22/65dc7811ce7ca6fe281e09e8703d8158bcca73 and /dev/null differ diff --git a/.git_backup/objects/22/6783ec29d56d0bd3745b070d8c4e673b698fdf b/.git_backup/objects/22/6783ec29d56d0bd3745b070d8c4e673b698fdf deleted file mode 100644 index d14fa039..00000000 Binary files a/.git_backup/objects/22/6783ec29d56d0bd3745b070d8c4e673b698fdf and /dev/null differ diff --git a/.git_backup/objects/22/6a4040c376a3605570616e91fd4855a907f2f9 b/.git_backup/objects/22/6a4040c376a3605570616e91fd4855a907f2f9 deleted file mode 100644 index 6513cfaf..00000000 Binary files a/.git_backup/objects/22/6a4040c376a3605570616e91fd4855a907f2f9 and /dev/null differ diff --git a/.git_backup/objects/22/6b4e80962affe7d7ecce1f2e13cc063a6363b0 b/.git_backup/objects/22/6b4e80962affe7d7ecce1f2e13cc063a6363b0 deleted file mode 100644 index 9046721f..00000000 Binary files a/.git_backup/objects/22/6b4e80962affe7d7ecce1f2e13cc063a6363b0 and /dev/null differ diff --git a/.git_backup/objects/22/6b8cf37d1a0bcd6847ecef505f9e20a640eba5 b/.git_backup/objects/22/6b8cf37d1a0bcd6847ecef505f9e20a640eba5 deleted file mode 100644 index 535e7e08..00000000 --- a/.git_backup/objects/22/6b8cf37d1a0bcd6847ecef505f9e20a640eba5 +++ /dev/null @@ -1 +0,0 @@ -x}j {)z0.!,^Zȡ^DEǥ5iS6AfFga wpJ WxAJ Sr.3hAoݹ$E.&dTC缥kJs(cS)^;2rc&CpS t̖o3o fKn[XmFƥf$yފWK/[ȡ$-veTAsjB)K9)`!J W(/QmiU΢`FɯG \ No newline at end of file diff --git a/.git_backup/objects/22/6fe84dc0d0c4eb78f9b3c603df20cef0fdfda4 b/.git_backup/objects/22/6fe84dc0d0c4eb78f9b3c603df20cef0fdfda4 deleted file mode 100644 index ab2126d6..00000000 Binary files a/.git_backup/objects/22/6fe84dc0d0c4eb78f9b3c603df20cef0fdfda4 and /dev/null differ diff --git a/.git_backup/objects/22/711763e22738b85ff2bd626d9429cba8e9f6ea b/.git_backup/objects/22/711763e22738b85ff2bd626d9429cba8e9f6ea deleted file mode 100644 index f197b22c..00000000 Binary files a/.git_backup/objects/22/711763e22738b85ff2bd626d9429cba8e9f6ea and /dev/null differ diff --git a/.git_backup/objects/22/7ef3c5576dd666e2eb76576eb260d5ba48cb0e b/.git_backup/objects/22/7ef3c5576dd666e2eb76576eb260d5ba48cb0e deleted file mode 100644 index df1f1d50..00000000 Binary files a/.git_backup/objects/22/7ef3c5576dd666e2eb76576eb260d5ba48cb0e and /dev/null differ diff --git a/.git_backup/objects/22/86c1425ce7ce807d719b3d35049140c4234abe b/.git_backup/objects/22/86c1425ce7ce807d719b3d35049140c4234abe deleted file mode 100644 index 3199f7b4..00000000 Binary files a/.git_backup/objects/22/86c1425ce7ce807d719b3d35049140c4234abe and /dev/null differ diff --git a/.git_backup/objects/22/8a14c18c8794296a2802c236abfa36367bf293 b/.git_backup/objects/22/8a14c18c8794296a2802c236abfa36367bf293 deleted file mode 100644 index 2c608d15..00000000 Binary files a/.git_backup/objects/22/8a14c18c8794296a2802c236abfa36367bf293 and /dev/null differ diff --git a/.git_backup/objects/22/8ef84cc18d6fa92e612cf3471d42c1f91edd5f b/.git_backup/objects/22/8ef84cc18d6fa92e612cf3471d42c1f91edd5f deleted file mode 100644 index 6f9f1e3b..00000000 Binary files a/.git_backup/objects/22/8ef84cc18d6fa92e612cf3471d42c1f91edd5f and /dev/null differ diff --git a/.git_backup/objects/22/97e57b28c9dc849dfd72901ab4e751178aeca2 b/.git_backup/objects/22/97e57b28c9dc849dfd72901ab4e751178aeca2 deleted file mode 100644 index 5ee36b6b..00000000 Binary files a/.git_backup/objects/22/97e57b28c9dc849dfd72901ab4e751178aeca2 and /dev/null differ diff --git a/.git_backup/objects/22/a7d233b16bd14b6850faa351678337cee2e642 b/.git_backup/objects/22/a7d233b16bd14b6850faa351678337cee2e642 deleted file mode 100644 index add1923e..00000000 Binary files a/.git_backup/objects/22/a7d233b16bd14b6850faa351678337cee2e642 and /dev/null differ diff --git a/.git_backup/objects/22/aee09419791adf98d363cbfd5b905a1d7afd53 b/.git_backup/objects/22/aee09419791adf98d363cbfd5b905a1d7afd53 deleted file mode 100644 index c54a47d7..00000000 Binary files a/.git_backup/objects/22/aee09419791adf98d363cbfd5b905a1d7afd53 and /dev/null differ diff --git a/.git_backup/objects/22/b278f7b5748d7c2f6b36a747f0cb0b519cc66a b/.git_backup/objects/22/b278f7b5748d7c2f6b36a747f0cb0b519cc66a deleted file mode 100644 index 7a29c10c..00000000 Binary files a/.git_backup/objects/22/b278f7b5748d7c2f6b36a747f0cb0b519cc66a and /dev/null differ diff --git a/.git_backup/objects/22/b95809020c8025606dd64b674dc0c9ece69808 b/.git_backup/objects/22/b95809020c8025606dd64b674dc0c9ece69808 deleted file mode 100644 index 3382b9b1..00000000 Binary files a/.git_backup/objects/22/b95809020c8025606dd64b674dc0c9ece69808 and /dev/null differ diff --git a/.git_backup/objects/22/be887cd1f296eff9257ff04bb6e26cac5510dd b/.git_backup/objects/22/be887cd1f296eff9257ff04bb6e26cac5510dd deleted file mode 100644 index e86140d7..00000000 Binary files a/.git_backup/objects/22/be887cd1f296eff9257ff04bb6e26cac5510dd and /dev/null differ diff --git a/.git_backup/objects/22/c03998d981760cda0471559a1a187672ffbaa6 b/.git_backup/objects/22/c03998d981760cda0471559a1a187672ffbaa6 deleted file mode 100644 index 4895995e..00000000 Binary files a/.git_backup/objects/22/c03998d981760cda0471559a1a187672ffbaa6 and /dev/null differ diff --git a/.git_backup/objects/22/c47593d4698743bc60ad98e60e45e3c48da7b1 b/.git_backup/objects/22/c47593d4698743bc60ad98e60e45e3c48da7b1 deleted file mode 100644 index a06342f7..00000000 Binary files a/.git_backup/objects/22/c47593d4698743bc60ad98e60e45e3c48da7b1 and /dev/null differ diff --git a/.git_backup/objects/22/cb12949606ba6776ce0da24ed1090ad9502e1e b/.git_backup/objects/22/cb12949606ba6776ce0da24ed1090ad9502e1e deleted file mode 100644 index 089db7f9..00000000 Binary files a/.git_backup/objects/22/cb12949606ba6776ce0da24ed1090ad9502e1e and /dev/null differ diff --git a/.git_backup/objects/22/ce8c625a453c7f96c1c3fbcdb4e3d122f2be67 b/.git_backup/objects/22/ce8c625a453c7f96c1c3fbcdb4e3d122f2be67 deleted file mode 100644 index 1ec2411c..00000000 Binary files a/.git_backup/objects/22/ce8c625a453c7f96c1c3fbcdb4e3d122f2be67 and /dev/null differ diff --git a/.git_backup/objects/22/db3c1d7cf2a260b73f9653500a2a513a93baaa b/.git_backup/objects/22/db3c1d7cf2a260b73f9653500a2a513a93baaa deleted file mode 100644 index 0ff7659f..00000000 Binary files a/.git_backup/objects/22/db3c1d7cf2a260b73f9653500a2a513a93baaa and /dev/null differ diff --git a/.git_backup/objects/22/e5b41eaaa9e3e4afc53bf8a9cc89afb828ad40 b/.git_backup/objects/22/e5b41eaaa9e3e4afc53bf8a9cc89afb828ad40 deleted file mode 100644 index 438d2b01..00000000 Binary files a/.git_backup/objects/22/e5b41eaaa9e3e4afc53bf8a9cc89afb828ad40 and /dev/null differ diff --git a/.git_backup/objects/22/e6395a1fe9911e392998cbfb64b971ad2f2800 b/.git_backup/objects/22/e6395a1fe9911e392998cbfb64b971ad2f2800 deleted file mode 100644 index 58f23812..00000000 Binary files a/.git_backup/objects/22/e6395a1fe9911e392998cbfb64b971ad2f2800 and /dev/null differ diff --git a/.git_backup/objects/22/ebcb7bdbb3558693b5a1fa1a805c10fc00fe8b b/.git_backup/objects/22/ebcb7bdbb3558693b5a1fa1a805c10fc00fe8b deleted file mode 100644 index c4b59a36..00000000 Binary files a/.git_backup/objects/22/ebcb7bdbb3558693b5a1fa1a805c10fc00fe8b and /dev/null differ diff --git a/.git_backup/objects/22/f4d716ac9764ee18005b9b852946d614152375 b/.git_backup/objects/22/f4d716ac9764ee18005b9b852946d614152375 deleted file mode 100644 index db1ccf78..00000000 Binary files a/.git_backup/objects/22/f4d716ac9764ee18005b9b852946d614152375 and /dev/null differ diff --git a/.git_backup/objects/22/f7b6471d64117afd37bfa7b800a1f07fc73135 b/.git_backup/objects/22/f7b6471d64117afd37bfa7b800a1f07fc73135 deleted file mode 100644 index 9ae2c5cd..00000000 Binary files a/.git_backup/objects/22/f7b6471d64117afd37bfa7b800a1f07fc73135 and /dev/null differ diff --git a/.git_backup/objects/22/fa9f09e0ffeffe2c82ad327f808b4c989d79c3 b/.git_backup/objects/22/fa9f09e0ffeffe2c82ad327f808b4c989d79c3 deleted file mode 100644 index f6da8706..00000000 Binary files a/.git_backup/objects/22/fa9f09e0ffeffe2c82ad327f808b4c989d79c3 and /dev/null differ diff --git a/.git_backup/objects/22/fdce865a3c3aef46d5aaaa19ab33907ca07da1 b/.git_backup/objects/22/fdce865a3c3aef46d5aaaa19ab33907ca07da1 deleted file mode 100644 index 5eb02c31..00000000 --- a/.git_backup/objects/22/fdce865a3c3aef46d5aaaa19ab33907ca07da1 +++ /dev/null @@ -1,4 +0,0 @@ -xUR0ܯ%I QBohW!։'Q c -yIJ=o޼f^jCJcVއTv&V9]FB뻬>t .\("߆HEҖfÿ*% Xdj[s_, Зq*'-'D7;.c?P^ԧsa17rHBh1* +/FV'LSz\趠bR ].1u.v$ -֢.$*<ܰ>+3wjYs1&U׏۬/orp˔:k)^Mӻި"9omuΒ ':2zg:1sh -{>Cd:6a Ї6Dm$st;s!=7!9_ق+J@KUyy{vT\nDfCסy\6^ \ No newline at end of file diff --git a/.git_backup/objects/22/ff714e226f5f28d0dd3041c7a462db40c05716 b/.git_backup/objects/22/ff714e226f5f28d0dd3041c7a462db40c05716 deleted file mode 100644 index 4c9fb95f..00000000 Binary files a/.git_backup/objects/22/ff714e226f5f28d0dd3041c7a462db40c05716 and /dev/null differ diff --git a/.git_backup/objects/23/0331870b2fa16aff71dd352c24e9f2752a9704 b/.git_backup/objects/23/0331870b2fa16aff71dd352c24e9f2752a9704 deleted file mode 100644 index 867b4718..00000000 Binary files a/.git_backup/objects/23/0331870b2fa16aff71dd352c24e9f2752a9704 and /dev/null differ diff --git a/.git_backup/objects/23/056900c0bbf4a732c071f449dbfb49b59b8029 b/.git_backup/objects/23/056900c0bbf4a732c071f449dbfb49b59b8029 deleted file mode 100644 index 31e08855..00000000 Binary files a/.git_backup/objects/23/056900c0bbf4a732c071f449dbfb49b59b8029 and /dev/null differ diff --git a/.git_backup/objects/23/05edc1e132782f9b49dcc3d7f8c2c705a78268 b/.git_backup/objects/23/05edc1e132782f9b49dcc3d7f8c2c705a78268 deleted file mode 100644 index 38a551af..00000000 Binary files a/.git_backup/objects/23/05edc1e132782f9b49dcc3d7f8c2c705a78268 and /dev/null differ diff --git a/.git_backup/objects/23/06fc69f04aee5c9de690c6c1e493d02a1f56b0 b/.git_backup/objects/23/06fc69f04aee5c9de690c6c1e493d02a1f56b0 deleted file mode 100644 index 14e46563..00000000 Binary files a/.git_backup/objects/23/06fc69f04aee5c9de690c6c1e493d02a1f56b0 and /dev/null differ diff --git a/.git_backup/objects/23/115bfac4bb7f661551f192d9e0ec6ce5fc699f b/.git_backup/objects/23/115bfac4bb7f661551f192d9e0ec6ce5fc699f deleted file mode 100644 index 8395765b..00000000 Binary files a/.git_backup/objects/23/115bfac4bb7f661551f192d9e0ec6ce5fc699f and /dev/null differ diff --git a/.git_backup/objects/23/11a2fb623b7d34bb8782dbf7dfc93c8b17dae0 b/.git_backup/objects/23/11a2fb623b7d34bb8782dbf7dfc93c8b17dae0 deleted file mode 100644 index 5fbc8949..00000000 Binary files a/.git_backup/objects/23/11a2fb623b7d34bb8782dbf7dfc93c8b17dae0 and /dev/null differ diff --git a/.git_backup/objects/23/153789b660d566525e4904b3675d27e6dea4a6 b/.git_backup/objects/23/153789b660d566525e4904b3675d27e6dea4a6 deleted file mode 100644 index 346a2d17..00000000 Binary files a/.git_backup/objects/23/153789b660d566525e4904b3675d27e6dea4a6 and /dev/null differ diff --git a/.git_backup/objects/23/1b7c2a871cbfb1e1087edd44af07ea2ee18c0c b/.git_backup/objects/23/1b7c2a871cbfb1e1087edd44af07ea2ee18c0c deleted file mode 100644 index 3269e9c8..00000000 Binary files a/.git_backup/objects/23/1b7c2a871cbfb1e1087edd44af07ea2ee18c0c and /dev/null differ diff --git a/.git_backup/objects/23/22e0812d1afd4aeb516dbcfe9395e9f916c550 b/.git_backup/objects/23/22e0812d1afd4aeb516dbcfe9395e9f916c550 deleted file mode 100644 index df5cc1e6..00000000 Binary files a/.git_backup/objects/23/22e0812d1afd4aeb516dbcfe9395e9f916c550 and /dev/null differ diff --git a/.git_backup/objects/23/23b681aa70903fb8b9a7be16578fcbf0a0152a b/.git_backup/objects/23/23b681aa70903fb8b9a7be16578fcbf0a0152a deleted file mode 100644 index 27d7c357..00000000 Binary files a/.git_backup/objects/23/23b681aa70903fb8b9a7be16578fcbf0a0152a and /dev/null differ diff --git a/.git_backup/objects/23/23e597b3d8e1320cccfd0ad050c770ae76e71f b/.git_backup/objects/23/23e597b3d8e1320cccfd0ad050c770ae76e71f deleted file mode 100644 index d028a7ed..00000000 Binary files a/.git_backup/objects/23/23e597b3d8e1320cccfd0ad050c770ae76e71f and /dev/null differ diff --git a/.git_backup/objects/23/265a03d7c64127bda66430336a44594d38c825 b/.git_backup/objects/23/265a03d7c64127bda66430336a44594d38c825 deleted file mode 100644 index 7a512106..00000000 Binary files a/.git_backup/objects/23/265a03d7c64127bda66430336a44594d38c825 and /dev/null differ diff --git a/.git_backup/objects/23/2a051c774105176c28c9718c2cd46f1a1ee1af b/.git_backup/objects/23/2a051c774105176c28c9718c2cd46f1a1ee1af deleted file mode 100644 index 14ee5702..00000000 Binary files a/.git_backup/objects/23/2a051c774105176c28c9718c2cd46f1a1ee1af and /dev/null differ diff --git a/.git_backup/objects/23/2b0512ee5b2363a59aba430c5352f06c3f0b92 b/.git_backup/objects/23/2b0512ee5b2363a59aba430c5352f06c3f0b92 deleted file mode 100644 index dd3f9fe2..00000000 Binary files a/.git_backup/objects/23/2b0512ee5b2363a59aba430c5352f06c3f0b92 and /dev/null differ diff --git a/.git_backup/objects/23/2f04b3a2046208a68d9ef67f244d8d1b83b8b0 b/.git_backup/objects/23/2f04b3a2046208a68d9ef67f244d8d1b83b8b0 deleted file mode 100644 index f8c87e1a..00000000 Binary files a/.git_backup/objects/23/2f04b3a2046208a68d9ef67f244d8d1b83b8b0 and /dev/null differ diff --git a/.git_backup/objects/23/303c48d9b23b7ac5e1dc02c0dc20bb118cc701 b/.git_backup/objects/23/303c48d9b23b7ac5e1dc02c0dc20bb118cc701 deleted file mode 100644 index c9bdfab6..00000000 Binary files a/.git_backup/objects/23/303c48d9b23b7ac5e1dc02c0dc20bb118cc701 and /dev/null differ diff --git a/.git_backup/objects/23/33b688d241f0e29e2b05721765c242f3488579 b/.git_backup/objects/23/33b688d241f0e29e2b05721765c242f3488579 deleted file mode 100644 index 8a98c6a4..00000000 Binary files a/.git_backup/objects/23/33b688d241f0e29e2b05721765c242f3488579 and /dev/null differ diff --git a/.git_backup/objects/23/3dbdd435b595c076ef264570bf0c5e39a75ade b/.git_backup/objects/23/3dbdd435b595c076ef264570bf0c5e39a75ade deleted file mode 100644 index c6139f47..00000000 Binary files a/.git_backup/objects/23/3dbdd435b595c076ef264570bf0c5e39a75ade and /dev/null differ diff --git a/.git_backup/objects/23/40c06e4ff2d9a4648f0a27af68bc56deab56cb b/.git_backup/objects/23/40c06e4ff2d9a4648f0a27af68bc56deab56cb deleted file mode 100644 index 7aeae760..00000000 Binary files a/.git_backup/objects/23/40c06e4ff2d9a4648f0a27af68bc56deab56cb and /dev/null differ diff --git a/.git_backup/objects/23/4219f68df916d7c5c7b40bec2b37551551bffd b/.git_backup/objects/23/4219f68df916d7c5c7b40bec2b37551551bffd deleted file mode 100644 index 6b50b660..00000000 Binary files a/.git_backup/objects/23/4219f68df916d7c5c7b40bec2b37551551bffd and /dev/null differ diff --git a/.git_backup/objects/23/4306a4ef5503f7049c17af7e7869dd9c601f7a b/.git_backup/objects/23/4306a4ef5503f7049c17af7e7869dd9c601f7a deleted file mode 100644 index 623ee66a..00000000 Binary files a/.git_backup/objects/23/4306a4ef5503f7049c17af7e7869dd9c601f7a and /dev/null differ diff --git a/.git_backup/objects/23/456d1cccaad13dd517a3193076841a052e39f5 b/.git_backup/objects/23/456d1cccaad13dd517a3193076841a052e39f5 deleted file mode 100644 index ecab8d50..00000000 Binary files a/.git_backup/objects/23/456d1cccaad13dd517a3193076841a052e39f5 and /dev/null differ diff --git a/.git_backup/objects/23/4b45db5b56855ea561a860f39d03adc993c3db b/.git_backup/objects/23/4b45db5b56855ea561a860f39d03adc993c3db deleted file mode 100644 index c506a0e2..00000000 Binary files a/.git_backup/objects/23/4b45db5b56855ea561a860f39d03adc993c3db and /dev/null differ diff --git a/.git_backup/objects/23/4c730a636b14b60affd3dbd22ca0d91d891c1c b/.git_backup/objects/23/4c730a636b14b60affd3dbd22ca0d91d891c1c deleted file mode 100644 index 1ae93edb..00000000 Binary files a/.git_backup/objects/23/4c730a636b14b60affd3dbd22ca0d91d891c1c and /dev/null differ diff --git a/.git_backup/objects/23/52814b6bd62f393d993a0b90d36069d417bf83 b/.git_backup/objects/23/52814b6bd62f393d993a0b90d36069d417bf83 deleted file mode 100644 index 6da5e837..00000000 Binary files a/.git_backup/objects/23/52814b6bd62f393d993a0b90d36069d417bf83 and /dev/null differ diff --git a/.git_backup/objects/23/54f0300dbfe598ce860fda1747279de56afee6 b/.git_backup/objects/23/54f0300dbfe598ce860fda1747279de56afee6 deleted file mode 100644 index 3626fa2d..00000000 Binary files a/.git_backup/objects/23/54f0300dbfe598ce860fda1747279de56afee6 and /dev/null differ diff --git a/.git_backup/objects/23/6294cc5840a94aa3ed7e107fb5991ea1686d74 b/.git_backup/objects/23/6294cc5840a94aa3ed7e107fb5991ea1686d74 deleted file mode 100644 index 586bd5c0..00000000 Binary files a/.git_backup/objects/23/6294cc5840a94aa3ed7e107fb5991ea1686d74 and /dev/null differ diff --git a/.git_backup/objects/23/62b556bd15a7b61c7ecccea6dcd19c691ab829 b/.git_backup/objects/23/62b556bd15a7b61c7ecccea6dcd19c691ab829 deleted file mode 100644 index 6ce43f1c..00000000 Binary files a/.git_backup/objects/23/62b556bd15a7b61c7ecccea6dcd19c691ab829 and /dev/null differ diff --git a/.git_backup/objects/23/78b11e95a42de489495962117bd927d9788996 b/.git_backup/objects/23/78b11e95a42de489495962117bd927d9788996 deleted file mode 100644 index 916a8625..00000000 Binary files a/.git_backup/objects/23/78b11e95a42de489495962117bd927d9788996 and /dev/null differ diff --git a/.git_backup/objects/23/8ae3b291e439d285f6112c79b89c5fbeb336bb b/.git_backup/objects/23/8ae3b291e439d285f6112c79b89c5fbeb336bb deleted file mode 100644 index 0d8c3496..00000000 Binary files a/.git_backup/objects/23/8ae3b291e439d285f6112c79b89c5fbeb336bb and /dev/null differ diff --git a/.git_backup/objects/23/8dc5c4e4039b81c290ea3af0a7b5d51dd6e872 b/.git_backup/objects/23/8dc5c4e4039b81c290ea3af0a7b5d51dd6e872 deleted file mode 100644 index fdf0430c..00000000 Binary files a/.git_backup/objects/23/8dc5c4e4039b81c290ea3af0a7b5d51dd6e872 and /dev/null differ diff --git a/.git_backup/objects/23/91ef620aea61fa6d28f01cce17633c9d5ad5aa b/.git_backup/objects/23/91ef620aea61fa6d28f01cce17633c9d5ad5aa deleted file mode 100644 index deb2ede9..00000000 Binary files a/.git_backup/objects/23/91ef620aea61fa6d28f01cce17633c9d5ad5aa and /dev/null differ diff --git a/.git_backup/objects/23/93011de272ba2b94e483c8334856568442dd21 b/.git_backup/objects/23/93011de272ba2b94e483c8334856568442dd21 deleted file mode 100644 index 716666fb..00000000 Binary files a/.git_backup/objects/23/93011de272ba2b94e483c8334856568442dd21 and /dev/null differ diff --git a/.git_backup/objects/23/95843739684affa732e151016a205452339a4e b/.git_backup/objects/23/95843739684affa732e151016a205452339a4e deleted file mode 100644 index 6ba0574d..00000000 Binary files a/.git_backup/objects/23/95843739684affa732e151016a205452339a4e and /dev/null differ diff --git a/.git_backup/objects/23/9b2bee375c47483b924ee89045f04ec1c4ddd9 b/.git_backup/objects/23/9b2bee375c47483b924ee89045f04ec1c4ddd9 deleted file mode 100644 index e9aa1db0..00000000 Binary files a/.git_backup/objects/23/9b2bee375c47483b924ee89045f04ec1c4ddd9 and /dev/null differ diff --git a/.git_backup/objects/23/a486b47e185581309e7fd3164c73aa36894812 b/.git_backup/objects/23/a486b47e185581309e7fd3164c73aa36894812 deleted file mode 100644 index 7fc574b0..00000000 Binary files a/.git_backup/objects/23/a486b47e185581309e7fd3164c73aa36894812 and /dev/null differ diff --git a/.git_backup/objects/23/a801235eb431f209621c600a7510886c7eabef b/.git_backup/objects/23/a801235eb431f209621c600a7510886c7eabef deleted file mode 100644 index 2c7b9e4d..00000000 Binary files a/.git_backup/objects/23/a801235eb431f209621c600a7510886c7eabef and /dev/null differ diff --git a/.git_backup/objects/23/aed8caa0f5252d25fd68d563cba08eea14bd27 b/.git_backup/objects/23/aed8caa0f5252d25fd68d563cba08eea14bd27 deleted file mode 100644 index bcfb2266..00000000 Binary files a/.git_backup/objects/23/aed8caa0f5252d25fd68d563cba08eea14bd27 and /dev/null differ diff --git a/.git_backup/objects/23/b23a1bf09c0d14b1c7bf9d1ff0411d8fb36a58 b/.git_backup/objects/23/b23a1bf09c0d14b1c7bf9d1ff0411d8fb36a58 deleted file mode 100644 index 7a93d240..00000000 Binary files a/.git_backup/objects/23/b23a1bf09c0d14b1c7bf9d1ff0411d8fb36a58 and /dev/null differ diff --git a/.git_backup/objects/23/b70edd72b07f479d582ba476623f2d001e2d01 b/.git_backup/objects/23/b70edd72b07f479d582ba476623f2d001e2d01 deleted file mode 100644 index 2dc5bcca..00000000 Binary files a/.git_backup/objects/23/b70edd72b07f479d582ba476623f2d001e2d01 and /dev/null differ diff --git a/.git_backup/objects/23/b88fb6ab0d33eb0d65103bad06c963ceeb7d25 b/.git_backup/objects/23/b88fb6ab0d33eb0d65103bad06c963ceeb7d25 deleted file mode 100644 index 0e63d9c3..00000000 Binary files a/.git_backup/objects/23/b88fb6ab0d33eb0d65103bad06c963ceeb7d25 and /dev/null differ diff --git a/.git_backup/objects/23/b945a8f1712cb8b69f688b515ad24e08822255 b/.git_backup/objects/23/b945a8f1712cb8b69f688b515ad24e08822255 deleted file mode 100644 index 7345e2c6..00000000 Binary files a/.git_backup/objects/23/b945a8f1712cb8b69f688b515ad24e08822255 and /dev/null differ diff --git a/.git_backup/objects/23/bb5176de9d33d0e62c41e34ed6c2dc5734f7e5 b/.git_backup/objects/23/bb5176de9d33d0e62c41e34ed6c2dc5734f7e5 deleted file mode 100644 index 1be4837f..00000000 Binary files a/.git_backup/objects/23/bb5176de9d33d0e62c41e34ed6c2dc5734f7e5 and /dev/null differ diff --git a/.git_backup/objects/23/bd0b406c724cf289abec1a49db3849353a662b b/.git_backup/objects/23/bd0b406c724cf289abec1a49db3849353a662b deleted file mode 100644 index af8f0217..00000000 Binary files a/.git_backup/objects/23/bd0b406c724cf289abec1a49db3849353a662b and /dev/null differ diff --git a/.git_backup/objects/23/bd23a9e23718fd357b37c2d0c9594ca7f5f1b9 b/.git_backup/objects/23/bd23a9e23718fd357b37c2d0c9594ca7f5f1b9 deleted file mode 100644 index ae907709..00000000 Binary files a/.git_backup/objects/23/bd23a9e23718fd357b37c2d0c9594ca7f5f1b9 and /dev/null differ diff --git a/.git_backup/objects/23/cf810c82759d211c228c554a7b145ccb604920 b/.git_backup/objects/23/cf810c82759d211c228c554a7b145ccb604920 deleted file mode 100644 index 247daf15..00000000 Binary files a/.git_backup/objects/23/cf810c82759d211c228c554a7b145ccb604920 and /dev/null differ diff --git a/.git_backup/objects/23/d2bee612243c9435100bf162877cc95c185e52 b/.git_backup/objects/23/d2bee612243c9435100bf162877cc95c185e52 deleted file mode 100644 index 563c1404..00000000 Binary files a/.git_backup/objects/23/d2bee612243c9435100bf162877cc95c185e52 and /dev/null differ diff --git a/.git_backup/objects/23/d5248c541923ef1a6875d5e7fd40592590533c b/.git_backup/objects/23/d5248c541923ef1a6875d5e7fd40592590533c deleted file mode 100644 index 6d4279af..00000000 Binary files a/.git_backup/objects/23/d5248c541923ef1a6875d5e7fd40592590533c and /dev/null differ diff --git a/.git_backup/objects/23/d6dcf543195c5d4edf9ebfa3d8416977e04e91 b/.git_backup/objects/23/d6dcf543195c5d4edf9ebfa3d8416977e04e91 deleted file mode 100644 index b7a78b47..00000000 Binary files a/.git_backup/objects/23/d6dcf543195c5d4edf9ebfa3d8416977e04e91 and /dev/null differ diff --git a/.git_backup/objects/23/da3b30967fcc95d70883f70be9ef6e39d577fa b/.git_backup/objects/23/da3b30967fcc95d70883f70be9ef6e39d577fa deleted file mode 100644 index 165e0788..00000000 Binary files a/.git_backup/objects/23/da3b30967fcc95d70883f70be9ef6e39d577fa and /dev/null differ diff --git a/.git_backup/objects/23/ddff9061f41bbdd436911167e69421504099ca b/.git_backup/objects/23/ddff9061f41bbdd436911167e69421504099ca deleted file mode 100644 index 4b19748e..00000000 Binary files a/.git_backup/objects/23/ddff9061f41bbdd436911167e69421504099ca and /dev/null differ diff --git a/.git_backup/objects/23/e2476b6d3b8e243075950e57c0b2f47c779bef b/.git_backup/objects/23/e2476b6d3b8e243075950e57c0b2f47c779bef deleted file mode 100644 index 6d1923c5..00000000 Binary files a/.git_backup/objects/23/e2476b6d3b8e243075950e57c0b2f47c779bef and /dev/null differ diff --git a/.git_backup/objects/23/e7659a74e37ed2f62995afcd062f3ecd1b54c1 b/.git_backup/objects/23/e7659a74e37ed2f62995afcd062f3ecd1b54c1 deleted file mode 100644 index aa112011..00000000 Binary files a/.git_backup/objects/23/e7659a74e37ed2f62995afcd062f3ecd1b54c1 and /dev/null differ diff --git a/.git_backup/objects/23/ea04ab976d68e108d083587e6afbed4ceb672b b/.git_backup/objects/23/ea04ab976d68e108d083587e6afbed4ceb672b deleted file mode 100644 index 96cf0acb..00000000 Binary files a/.git_backup/objects/23/ea04ab976d68e108d083587e6afbed4ceb672b and /dev/null differ diff --git a/.git_backup/objects/23/ec1feb0fa4e71ebed871f479c30a82407ec67b b/.git_backup/objects/23/ec1feb0fa4e71ebed871f479c30a82407ec67b deleted file mode 100644 index e4e1f298..00000000 Binary files a/.git_backup/objects/23/ec1feb0fa4e71ebed871f479c30a82407ec67b and /dev/null differ diff --git a/.git_backup/objects/23/f7192724540ba8c325426c62ded0429b6cbd60 b/.git_backup/objects/23/f7192724540ba8c325426c62ded0429b6cbd60 deleted file mode 100644 index af6044a3..00000000 Binary files a/.git_backup/objects/23/f7192724540ba8c325426c62ded0429b6cbd60 and /dev/null differ diff --git a/.git_backup/objects/24/02eeb020d34ad8b82e287e32545423911ff66c b/.git_backup/objects/24/02eeb020d34ad8b82e287e32545423911ff66c deleted file mode 100644 index 574444a0..00000000 Binary files a/.git_backup/objects/24/02eeb020d34ad8b82e287e32545423911ff66c and /dev/null differ diff --git a/.git_backup/objects/24/065113452322faae729590ce502e1137cac3f9 b/.git_backup/objects/24/065113452322faae729590ce502e1137cac3f9 deleted file mode 100644 index 776ee074..00000000 --- a/.git_backup/objects/24/065113452322faae729590ce502e1137cac3f9 +++ /dev/null @@ -1,7 +0,0 @@ -xUoE]d'nHې@hb ]GUThӴEBRde>"gJ…#7W N>sCBI9ncyvޛ7oiQ۸GY ߮eXp Z?9@ -Ґ,̀ 9<<,+\%xK?;=jH -oXkgp߃f? 'V5oufm(wށ~]xoGVm*ô}DCq[$9I\!;PxDӿ@- (`5)fEcblaGjrIE2$Pj omJJTHU _cX&KI9xF'nRܥJ+/4< -*$R*B1C J@}e>#B?T w-;i xz[8Y{ؑ֞ouIJ 92%g -h8,l -n(yK\eԥ!K(Z0khq`qLSZS&$i(j@EWFq!pknvI0v)[PuoX 𚖨OQga'hГ\Qpd;A9I8d.4X\[rg:ųz3zҘN9\ h6c@E42;h{y`?`0Wu0 X)?d ';GQ #EH p{eIEyqi_;ҎN/83~:B -n(>&LӶk/؋6.]H[k#1"vCH(<z(8cߣ}Z.tpM(5҉˟?±qoFry'#1b*~yx"b7!#mK!q*E>WBt%)??@k$ 'Zd&%O濬ɋxac`p_=k:1{ys0N,=TIG}P=*Cݷ˸.VgޭcIJP"ȣa$Х}b~2pH$zF:ޕ72FR̋გ>Urqab!r? 1ޚD8N? Tbλd}SJk[iܼu[}2lT \ No newline at end of file diff --git a/.git_backup/objects/24/57470615e719300e11fb55cce299a3efb8562e b/.git_backup/objects/24/57470615e719300e11fb55cce299a3efb8562e deleted file mode 100644 index 5309f526..00000000 Binary files a/.git_backup/objects/24/57470615e719300e11fb55cce299a3efb8562e and /dev/null differ diff --git a/.git_backup/objects/24/57e8719df43385d8a08240d7c8113c376ea342 b/.git_backup/objects/24/57e8719df43385d8a08240d7c8113c376ea342 deleted file mode 100644 index 82857d0d..00000000 Binary files a/.git_backup/objects/24/57e8719df43385d8a08240d7c8113c376ea342 and /dev/null differ diff --git a/.git_backup/objects/24/5ac7649e9632d2efe93e878f9a477adf45de58 b/.git_backup/objects/24/5ac7649e9632d2efe93e878f9a477adf45de58 deleted file mode 100644 index 7ecbedc0..00000000 --- a/.git_backup/objects/24/5ac7649e9632d2efe93e878f9a477adf45de58 +++ /dev/null @@ -1 +0,0 @@ -xAK0)҂D2&=xQ$җVl2w{{Oub\^k4λi|"glrzΧY!X[A3qzv}`MK?9&QKPٷ4x,J(cB7\Xib9C)΄ Hs%Ǘ^s.3qi{j!l} \ No newline at end of file diff --git a/.git_backup/objects/24/5c041ba99c8785d9e7793da58f5d72d48eeee7 b/.git_backup/objects/24/5c041ba99c8785d9e7793da58f5d72d48eeee7 deleted file mode 100644 index 57a16342..00000000 Binary files a/.git_backup/objects/24/5c041ba99c8785d9e7793da58f5d72d48eeee7 and /dev/null differ diff --git a/.git_backup/objects/24/5cd1ccda984c70cdaa7f28ab88ca0352d1d5b4 b/.git_backup/objects/24/5cd1ccda984c70cdaa7f28ab88ca0352d1d5b4 deleted file mode 100644 index 896e9e3c..00000000 Binary files a/.git_backup/objects/24/5cd1ccda984c70cdaa7f28ab88ca0352d1d5b4 and /dev/null differ diff --git a/.git_backup/objects/24/60121bad641de57d3b0ffb45d5230854c74c31 b/.git_backup/objects/24/60121bad641de57d3b0ffb45d5230854c74c31 deleted file mode 100644 index 339b79b7..00000000 Binary files a/.git_backup/objects/24/60121bad641de57d3b0ffb45d5230854c74c31 and /dev/null differ diff --git a/.git_backup/objects/24/6078e65aa7fbc64a302221f4651977a1905cd5 b/.git_backup/objects/24/6078e65aa7fbc64a302221f4651977a1905cd5 deleted file mode 100644 index 9b376f3b..00000000 --- a/.git_backup/objects/24/6078e65aa7fbc64a302221f4651977a1905cd5 +++ /dev/null @@ -1,3 +0,0 @@ -xVMO0sŨe4iH'n-IllG;h(lv{{/ !M k^SG-t~5ف7޷h4-TO aϤ #nCi_o b:]5E١\ \ No newline at end of file diff --git a/.git_backup/objects/24/7ab0d606a820a14e336e681632596f0361e890 b/.git_backup/objects/24/7ab0d606a820a14e336e681632596f0361e890 deleted file mode 100644 index f3e4d34c..00000000 Binary files a/.git_backup/objects/24/7ab0d606a820a14e336e681632596f0361e890 and /dev/null differ diff --git a/.git_backup/objects/24/82ce10f2629b5edc8bdc7d468accbea4caf72d b/.git_backup/objects/24/82ce10f2629b5edc8bdc7d468accbea4caf72d deleted file mode 100644 index 60d159ca..00000000 Binary files a/.git_backup/objects/24/82ce10f2629b5edc8bdc7d468accbea4caf72d and /dev/null differ diff --git a/.git_backup/objects/24/90d5e5b63359a7f826922dc69c0015cb9a5b2e b/.git_backup/objects/24/90d5e5b63359a7f826922dc69c0015cb9a5b2e deleted file mode 100644 index 8318f1cb..00000000 Binary files a/.git_backup/objects/24/90d5e5b63359a7f826922dc69c0015cb9a5b2e and /dev/null differ diff --git a/.git_backup/objects/24/9c55f6cd0f617bc0450186844624ba1f8d6ac8 b/.git_backup/objects/24/9c55f6cd0f617bc0450186844624ba1f8d6ac8 deleted file mode 100644 index 61b3c2ee..00000000 Binary files a/.git_backup/objects/24/9c55f6cd0f617bc0450186844624ba1f8d6ac8 and /dev/null differ diff --git a/.git_backup/objects/24/9c69b7bfd8db8ac82ace08409ad50e720a515e b/.git_backup/objects/24/9c69b7bfd8db8ac82ace08409ad50e720a515e deleted file mode 100644 index 0839ff2c..00000000 Binary files a/.git_backup/objects/24/9c69b7bfd8db8ac82ace08409ad50e720a515e and /dev/null differ diff --git a/.git_backup/objects/24/9ce2b802da14a8fe26659f946bd9d9d06f51e5 b/.git_backup/objects/24/9ce2b802da14a8fe26659f946bd9d9d06f51e5 deleted file mode 100644 index 56d0df5a..00000000 Binary files a/.git_backup/objects/24/9ce2b802da14a8fe26659f946bd9d9d06f51e5 and /dev/null differ diff --git a/.git_backup/objects/24/a510e5128454e86c2675ce3187b68aa17091e4 b/.git_backup/objects/24/a510e5128454e86c2675ce3187b68aa17091e4 deleted file mode 100644 index c079e6c0..00000000 Binary files a/.git_backup/objects/24/a510e5128454e86c2675ce3187b68aa17091e4 and /dev/null differ diff --git a/.git_backup/objects/24/a97e2b0e1fa2666ab6b136d74660529cf7af94 b/.git_backup/objects/24/a97e2b0e1fa2666ab6b136d74660529cf7af94 deleted file mode 100644 index 65017400..00000000 Binary files a/.git_backup/objects/24/a97e2b0e1fa2666ab6b136d74660529cf7af94 and /dev/null differ diff --git a/.git_backup/objects/24/ab3888412d08b54543ed22910c67ce9bdf328f b/.git_backup/objects/24/ab3888412d08b54543ed22910c67ce9bdf328f deleted file mode 100644 index 25281711..00000000 Binary files a/.git_backup/objects/24/ab3888412d08b54543ed22910c67ce9bdf328f and /dev/null differ diff --git a/.git_backup/objects/24/bdf477f7c7f656912e71ebf1254d5dbb4b6635 b/.git_backup/objects/24/bdf477f7c7f656912e71ebf1254d5dbb4b6635 deleted file mode 100644 index 65c5fa64..00000000 Binary files a/.git_backup/objects/24/bdf477f7c7f656912e71ebf1254d5dbb4b6635 and /dev/null differ diff --git a/.git_backup/objects/24/c0d619e2b1ab1ea7b573312a94de15deeab8c3 b/.git_backup/objects/24/c0d619e2b1ab1ea7b573312a94de15deeab8c3 deleted file mode 100644 index 3f60e71c..00000000 Binary files a/.git_backup/objects/24/c0d619e2b1ab1ea7b573312a94de15deeab8c3 and /dev/null differ diff --git a/.git_backup/objects/24/c43444b6751343d2915843d03e55753d4d7359 b/.git_backup/objects/24/c43444b6751343d2915843d03e55753d4d7359 deleted file mode 100644 index 483ec3fa..00000000 Binary files a/.git_backup/objects/24/c43444b6751343d2915843d03e55753d4d7359 and /dev/null differ diff --git a/.git_backup/objects/24/c818338e842c4644779937a9726c5496fdfd6b b/.git_backup/objects/24/c818338e842c4644779937a9726c5496fdfd6b deleted file mode 100644 index 8b703824..00000000 --- a/.git_backup/objects/24/c818338e842c4644779937a9726c5496fdfd6b +++ /dev/null @@ -1 +0,0 @@ -x PLo<pZEİQV¶O3UI E,>B2-6Ѻv77XJSs,? \ No newline at end of file diff --git a/.git_backup/objects/24/ce15ab7ead32f98c7ac3edcd34bb2010ff4326 b/.git_backup/objects/24/ce15ab7ead32f98c7ac3edcd34bb2010ff4326 deleted file mode 100644 index 0b412dbf..00000000 Binary files a/.git_backup/objects/24/ce15ab7ead32f98c7ac3edcd34bb2010ff4326 and /dev/null differ diff --git a/.git_backup/objects/24/d19bbdadf1baf0b06237bfc9ff2248f8b966f9 b/.git_backup/objects/24/d19bbdadf1baf0b06237bfc9ff2248f8b966f9 deleted file mode 100644 index a6403a05..00000000 Binary files a/.git_backup/objects/24/d19bbdadf1baf0b06237bfc9ff2248f8b966f9 and /dev/null differ diff --git a/.git_backup/objects/24/d6a5dd31fe33b03f90ed0f9ee465253686900c b/.git_backup/objects/24/d6a5dd31fe33b03f90ed0f9ee465253686900c deleted file mode 100644 index f8dc41ef..00000000 Binary files a/.git_backup/objects/24/d6a5dd31fe33b03f90ed0f9ee465253686900c and /dev/null differ diff --git a/.git_backup/objects/24/e6bb487618c5b86a77687454792bf7eb4856ae b/.git_backup/objects/24/e6bb487618c5b86a77687454792bf7eb4856ae deleted file mode 100644 index 759faa83..00000000 Binary files a/.git_backup/objects/24/e6bb487618c5b86a77687454792bf7eb4856ae and /dev/null differ diff --git a/.git_backup/objects/24/e715eb270fa0775f7770991ac718739c956542 b/.git_backup/objects/24/e715eb270fa0775f7770991ac718739c956542 deleted file mode 100644 index f474643c..00000000 Binary files a/.git_backup/objects/24/e715eb270fa0775f7770991ac718739c956542 and /dev/null differ diff --git a/.git_backup/objects/24/ee6afb7c25456e775dd53b55c6d8ac85e9028c b/.git_backup/objects/24/ee6afb7c25456e775dd53b55c6d8ac85e9028c deleted file mode 100644 index ba2263dd..00000000 Binary files a/.git_backup/objects/24/ee6afb7c25456e775dd53b55c6d8ac85e9028c and /dev/null differ diff --git a/.git_backup/objects/24/f79e60287950d10920550bee03bd3691e9034f b/.git_backup/objects/24/f79e60287950d10920550bee03bd3691e9034f deleted file mode 100644 index b0789bec..00000000 --- a/.git_backup/objects/24/f79e60287950d10920550bee03bd3691e9034f +++ /dev/null @@ -1,3 +0,0 @@ -xRj@sb*JM&h -dbnȮ}7I6/ݙ9s̙- g/kZ!%@r 6 ayS w$$yM OtW9PzUtLdsVKWVtcI5~kWt -N˖WN{[YY"z \ No newline at end of file diff --git a/.git_backup/objects/24/f98508f181e4567a10617bfcdb1adf000498f2 b/.git_backup/objects/24/f98508f181e4567a10617bfcdb1adf000498f2 deleted file mode 100644 index 5afd8372..00000000 Binary files a/.git_backup/objects/24/f98508f181e4567a10617bfcdb1adf000498f2 and /dev/null differ diff --git a/.git_backup/objects/24/f9dc2d696f90d93db22bbb656d34df2ec0764b b/.git_backup/objects/24/f9dc2d696f90d93db22bbb656d34df2ec0764b deleted file mode 100644 index 13566551..00000000 Binary files a/.git_backup/objects/24/f9dc2d696f90d93db22bbb656d34df2ec0764b and /dev/null differ diff --git a/.git_backup/objects/25/033f7ceb1400162ab4d3f5fc51dfa03736b82c b/.git_backup/objects/25/033f7ceb1400162ab4d3f5fc51dfa03736b82c deleted file mode 100644 index 7d578228..00000000 Binary files a/.git_backup/objects/25/033f7ceb1400162ab4d3f5fc51dfa03736b82c and /dev/null differ diff --git a/.git_backup/objects/25/0583385f7ae199bdec9be0cd186f4f7aa66a43 b/.git_backup/objects/25/0583385f7ae199bdec9be0cd186f4f7aa66a43 deleted file mode 100644 index 1032c91d..00000000 Binary files a/.git_backup/objects/25/0583385f7ae199bdec9be0cd186f4f7aa66a43 and /dev/null differ diff --git a/.git_backup/objects/25/08bf354ac2264d37807fc87b526c235a09f228 b/.git_backup/objects/25/08bf354ac2264d37807fc87b526c235a09f228 deleted file mode 100644 index 139d934a..00000000 Binary files a/.git_backup/objects/25/08bf354ac2264d37807fc87b526c235a09f228 and /dev/null differ diff --git a/.git_backup/objects/25/14c6a91dfe4ac5b3710ad9d27fe61e80deee62 b/.git_backup/objects/25/14c6a91dfe4ac5b3710ad9d27fe61e80deee62 deleted file mode 100644 index 510fb7de..00000000 Binary files a/.git_backup/objects/25/14c6a91dfe4ac5b3710ad9d27fe61e80deee62 and /dev/null differ diff --git a/.git_backup/objects/25/1925ced5208b4aaf09d9aab305eb44c7102818 b/.git_backup/objects/25/1925ced5208b4aaf09d9aab305eb44c7102818 deleted file mode 100644 index 97ca9546..00000000 --- a/.git_backup/objects/25/1925ced5208b4aaf09d9aab305eb44c7102818 +++ /dev/null @@ -1,4 +0,0 @@ -xmSMS0ٿb+4 C;Bs0L %W+kM8ICo+*X./>SJe!k7R'穉 X :CAZl..6a HOϡrJ߅%,oѧ2KmzG}5Wʲkg7FvǸ?._lo2/n ,Tf#O7:4@;kccIF9Τ<+ȗxDolje -!1(_–:H7OnNv L *[ #&_ӥďJxVk(qm-<齈)&S|A,oSj]WY1JiǠ5LIiX]&h,aO15*i+!տya^|Scxd1~NRAaBIJXŪX_"vk40"#] A) (\'L3(aw', ֒U=v#au2'`9si͔q \ No newline at end of file diff --git a/.git_backup/objects/25/60cdaed6a481d7c04b9ee74cf4577f95321388 b/.git_backup/objects/25/60cdaed6a481d7c04b9ee74cf4577f95321388 deleted file mode 100644 index cb93decc..00000000 Binary files a/.git_backup/objects/25/60cdaed6a481d7c04b9ee74cf4577f95321388 and /dev/null differ diff --git a/.git_backup/objects/25/62b5456493b2914c2a1d2a73fb1855eddaaf8d b/.git_backup/objects/25/62b5456493b2914c2a1d2a73fb1855eddaaf8d deleted file mode 100644 index 0c7056bf..00000000 Binary files a/.git_backup/objects/25/62b5456493b2914c2a1d2a73fb1855eddaaf8d and /dev/null differ diff --git a/.git_backup/objects/25/667f00e42b5206896d3d8ab9c76930e518a075 b/.git_backup/objects/25/667f00e42b5206896d3d8ab9c76930e518a075 deleted file mode 100644 index 3299528d..00000000 Binary files a/.git_backup/objects/25/667f00e42b5206896d3d8ab9c76930e518a075 and /dev/null differ diff --git a/.git_backup/objects/25/7b5ef8a66a2db1da6c8e50863677106f21afb2 b/.git_backup/objects/25/7b5ef8a66a2db1da6c8e50863677106f21afb2 deleted file mode 100644 index e74890f6..00000000 Binary files a/.git_backup/objects/25/7b5ef8a66a2db1da6c8e50863677106f21afb2 and /dev/null differ diff --git a/.git_backup/objects/25/7da53178388f2d381babfa776b7c6c31736edd b/.git_backup/objects/25/7da53178388f2d381babfa776b7c6c31736edd deleted file mode 100644 index c40fe40f..00000000 Binary files a/.git_backup/objects/25/7da53178388f2d381babfa776b7c6c31736edd and /dev/null differ diff --git a/.git_backup/objects/25/7f55c05a3aa45b337b044a546f37f42e0d7f3c b/.git_backup/objects/25/7f55c05a3aa45b337b044a546f37f42e0d7f3c deleted file mode 100644 index c65e035d..00000000 Binary files a/.git_backup/objects/25/7f55c05a3aa45b337b044a546f37f42e0d7f3c and /dev/null differ diff --git a/.git_backup/objects/25/81653c3dc16d2eb998480944088a486215bcea b/.git_backup/objects/25/81653c3dc16d2eb998480944088a486215bcea deleted file mode 100644 index df4cff45..00000000 Binary files a/.git_backup/objects/25/81653c3dc16d2eb998480944088a486215bcea and /dev/null differ diff --git a/.git_backup/objects/25/8ee0902074ce3c954a939bf12886a87db17121 b/.git_backup/objects/25/8ee0902074ce3c954a939bf12886a87db17121 deleted file mode 100644 index b874e472..00000000 Binary files a/.git_backup/objects/25/8ee0902074ce3c954a939bf12886a87db17121 and /dev/null differ diff --git a/.git_backup/objects/25/92a0263c58508dda0352f534a56c5b94d0dfee b/.git_backup/objects/25/92a0263c58508dda0352f534a56c5b94d0dfee deleted file mode 100644 index 17ede921..00000000 Binary files a/.git_backup/objects/25/92a0263c58508dda0352f534a56c5b94d0dfee and /dev/null differ diff --git a/.git_backup/objects/25/92fdbb2d361ae926d619d1c0907beef574e2f7 b/.git_backup/objects/25/92fdbb2d361ae926d619d1c0907beef574e2f7 deleted file mode 100644 index c39301d4..00000000 Binary files a/.git_backup/objects/25/92fdbb2d361ae926d619d1c0907beef574e2f7 and /dev/null differ diff --git a/.git_backup/objects/25/95c91b3ae52d5db6a305031dccf66248055470 b/.git_backup/objects/25/95c91b3ae52d5db6a305031dccf66248055470 deleted file mode 100644 index 531cf8aa..00000000 --- a/.git_backup/objects/25/95c91b3ae52d5db6a305031dccf66248055470 +++ /dev/null @@ -1,2 +0,0 @@ -xuRn0gž%H2iQzRuUN'$ ;M넆?ٚʤ0shCPՑk7Nc;ey:ʻ>DV\ԉNEu1P1 \ No newline at end of file diff --git a/.git_backup/objects/25/9b15ba194db7c02fbcbf170d522230b4418933 b/.git_backup/objects/25/9b15ba194db7c02fbcbf170d522230b4418933 deleted file mode 100644 index c9ee8bdf..00000000 Binary files a/.git_backup/objects/25/9b15ba194db7c02fbcbf170d522230b4418933 and /dev/null differ diff --git a/.git_backup/objects/25/9c454da94ed4f9cd455f5c61caf688c2cc6ef8 b/.git_backup/objects/25/9c454da94ed4f9cd455f5c61caf688c2cc6ef8 deleted file mode 100644 index 44b42c1a..00000000 Binary files a/.git_backup/objects/25/9c454da94ed4f9cd455f5c61caf688c2cc6ef8 and /dev/null differ diff --git a/.git_backup/objects/25/a33e3aea90dbc51e55bb2ee7f69a00de947a59 b/.git_backup/objects/25/a33e3aea90dbc51e55bb2ee7f69a00de947a59 deleted file mode 100644 index 631edc8e..00000000 --- a/.git_backup/objects/25/a33e3aea90dbc51e55bb2ee7f69a00de947a59 +++ /dev/null @@ -1,2 +0,0 @@ -xM -0]7"!ai L7֕h潏16d 0qK7_ZxB M0wOQU)%Mr>nn[O.e_ H/!PM,vZ` \ No newline at end of file diff --git a/.git_backup/objects/25/a4f6994363a4b70326f414d3ab04d12a82c0fb b/.git_backup/objects/25/a4f6994363a4b70326f414d3ab04d12a82c0fb deleted file mode 100644 index 5b40a853..00000000 Binary files a/.git_backup/objects/25/a4f6994363a4b70326f414d3ab04d12a82c0fb and /dev/null differ diff --git a/.git_backup/objects/25/a57d24e04ef974fbd644249e8114cbe40588c9 b/.git_backup/objects/25/a57d24e04ef974fbd644249e8114cbe40588c9 deleted file mode 100644 index 43980a89..00000000 Binary files a/.git_backup/objects/25/a57d24e04ef974fbd644249e8114cbe40588c9 and /dev/null differ diff --git a/.git_backup/objects/25/a909748facbaaaff87c57f307cff833cfe49e2 b/.git_backup/objects/25/a909748facbaaaff87c57f307cff833cfe49e2 deleted file mode 100644 index 648e3eb8..00000000 --- a/.git_backup/objects/25/a909748facbaaaff87c57f307cff833cfe49e2 +++ /dev/null @@ -1,4 +0,0 @@ -xUSn16ل҆ qPU!B X+Ex&?lG(\+#O{SΜxjixvQK^j_!? Zh@QP "hDYDc5YmJL󒰅yL\Q2QFF.ؓZxKO #T1&rbKlQ!/%n!)=&%H}G{rA/N}r:*j#@YNOr' 5 -kkJRA͝anZRȍ"i7;k \ No newline at end of file diff --git a/.git_backup/objects/25/d643ae87fb32641839c11580811fdd955f45e5 b/.git_backup/objects/25/d643ae87fb32641839c11580811fdd955f45e5 deleted file mode 100644 index 67f539de..00000000 Binary files a/.git_backup/objects/25/d643ae87fb32641839c11580811fdd955f45e5 and /dev/null differ diff --git a/.git_backup/objects/25/d7280f109f89cb95ddaf0f5356f77ca9ab0417 b/.git_backup/objects/25/d7280f109f89cb95ddaf0f5356f77ca9ab0417 deleted file mode 100644 index 5f3a7b1d..00000000 Binary files a/.git_backup/objects/25/d7280f109f89cb95ddaf0f5356f77ca9ab0417 and /dev/null differ diff --git a/.git_backup/objects/25/d787738e145f7f5411e49b5e57c120743173e7 b/.git_backup/objects/25/d787738e145f7f5411e49b5e57c120743173e7 deleted file mode 100644 index f643ff65..00000000 Binary files a/.git_backup/objects/25/d787738e145f7f5411e49b5e57c120743173e7 and /dev/null differ diff --git a/.git_backup/objects/25/da473c196855ad59a6d2d785ef1ddef49795be b/.git_backup/objects/25/da473c196855ad59a6d2d785ef1ddef49795be deleted file mode 100644 index ff46de81..00000000 Binary files a/.git_backup/objects/25/da473c196855ad59a6d2d785ef1ddef49795be and /dev/null differ diff --git a/.git_backup/objects/25/daf6137fa87d0e4afbaa4f3b017f203bc1df05 b/.git_backup/objects/25/daf6137fa87d0e4afbaa4f3b017f203bc1df05 deleted file mode 100644 index ffda3b54..00000000 Binary files a/.git_backup/objects/25/daf6137fa87d0e4afbaa4f3b017f203bc1df05 and /dev/null differ diff --git a/.git_backup/objects/25/e2fdde602d935537ed5ab7daac140dd9752ca6 b/.git_backup/objects/25/e2fdde602d935537ed5ab7daac140dd9752ca6 deleted file mode 100644 index f7afd170..00000000 --- a/.git_backup/objects/25/e2fdde602d935537ed5ab7daac140dd9752ca6 +++ /dev/null @@ -1,3 +0,0 @@ -xR]K0>vP n"Rc0a -Hm{ζNUM=s* -(+-V%ئr JYUk.3U+a%jnu_ED̖^L0d`ZZᕴ,UA r&ޠ6 +M!Dp:JpM\6^n"H n ɱZ"zoIҒ!m1^с[  E 7vLqGk\o|63BEq$@>*|73L!'"y}Zh_֛!mYU6_HOTRE[[Kw Eࢎd/mbbR;79 [q \ No newline at end of file diff --git a/.git_backup/objects/25/e3889c69c220f38260d25f91e72698b4ad240b b/.git_backup/objects/25/e3889c69c220f38260d25f91e72698b4ad240b deleted file mode 100644 index c07e29fb..00000000 Binary files a/.git_backup/objects/25/e3889c69c220f38260d25f91e72698b4ad240b and /dev/null differ diff --git a/.git_backup/objects/25/e55d0258d2bf0b98621b1e31a23549ae9c7b9a b/.git_backup/objects/25/e55d0258d2bf0b98621b1e31a23549ae9c7b9a deleted file mode 100644 index 29c7b35f..00000000 Binary files a/.git_backup/objects/25/e55d0258d2bf0b98621b1e31a23549ae9c7b9a and /dev/null differ diff --git a/.git_backup/objects/25/e7e1816562cfe0507491109236e9b7074953f0 b/.git_backup/objects/25/e7e1816562cfe0507491109236e9b7074953f0 deleted file mode 100644 index 3ebcc61f..00000000 --- a/.git_backup/objects/25/e7e1816562cfe0507491109236e9b7074953f0 +++ /dev/null @@ -1 +0,0 @@ -xj0 Fwm;r-s2C"Su8nh}5u( t띑蓵>4 Be(Bt ;S) e,Ž"H Um$_Rz2 d`.;jv).tOmf8N{"o0Yfa5ǽ'Z4 wC;mfXp;6xɱϗՖBbvRW[ J \ No newline at end of file diff --git a/.git_backup/objects/25/e7ea199e56cae161c45ac7d6445dd23c6e84fa b/.git_backup/objects/25/e7ea199e56cae161c45ac7d6445dd23c6e84fa deleted file mode 100644 index 168ade82..00000000 Binary files a/.git_backup/objects/25/e7ea199e56cae161c45ac7d6445dd23c6e84fa and /dev/null differ diff --git a/.git_backup/objects/25/f48c9f857338a578fa911ebfbe2855fb12db05 b/.git_backup/objects/25/f48c9f857338a578fa911ebfbe2855fb12db05 deleted file mode 100644 index caa7745a..00000000 Binary files a/.git_backup/objects/25/f48c9f857338a578fa911ebfbe2855fb12db05 and /dev/null differ diff --git a/.git_backup/objects/25/f5604dbdfaf99e5171c2c8f3424227ad308503 b/.git_backup/objects/25/f5604dbdfaf99e5171c2c8f3424227ad308503 deleted file mode 100644 index a9103e94..00000000 Binary files a/.git_backup/objects/25/f5604dbdfaf99e5171c2c8f3424227ad308503 and /dev/null differ diff --git a/.git_backup/objects/26/00d58b641cacbf28cc7fb6527bb2e236a67c95 b/.git_backup/objects/26/00d58b641cacbf28cc7fb6527bb2e236a67c95 deleted file mode 100644 index c17c283d..00000000 Binary files a/.git_backup/objects/26/00d58b641cacbf28cc7fb6527bb2e236a67c95 and /dev/null differ diff --git a/.git_backup/objects/26/0dbeef06866746ecc129bd03654ad6dbbe7c2b b/.git_backup/objects/26/0dbeef06866746ecc129bd03654ad6dbbe7c2b deleted file mode 100644 index 1c0280c7..00000000 Binary files a/.git_backup/objects/26/0dbeef06866746ecc129bd03654ad6dbbe7c2b and /dev/null differ diff --git a/.git_backup/objects/26/0f7368123a490dd65605d582cbd501f51f79ce b/.git_backup/objects/26/0f7368123a490dd65605d582cbd501f51f79ce deleted file mode 100644 index f4dc851b..00000000 Binary files a/.git_backup/objects/26/0f7368123a490dd65605d582cbd501f51f79ce and /dev/null differ diff --git a/.git_backup/objects/26/10b7777207f8fffc000c25da51831352b485e0 b/.git_backup/objects/26/10b7777207f8fffc000c25da51831352b485e0 deleted file mode 100644 index b9690f92..00000000 Binary files a/.git_backup/objects/26/10b7777207f8fffc000c25da51831352b485e0 and /dev/null differ diff --git a/.git_backup/objects/26/212b8c74b2a4b01d314ca7223c3102285bfb01 b/.git_backup/objects/26/212b8c74b2a4b01d314ca7223c3102285bfb01 deleted file mode 100644 index 033e8274..00000000 Binary files a/.git_backup/objects/26/212b8c74b2a4b01d314ca7223c3102285bfb01 and /dev/null differ diff --git a/.git_backup/objects/26/24a4b9b1146808f0f4c8869adda0ab8c79c08b b/.git_backup/objects/26/24a4b9b1146808f0f4c8869adda0ab8c79c08b deleted file mode 100644 index 6700f3a1..00000000 Binary files a/.git_backup/objects/26/24a4b9b1146808f0f4c8869adda0ab8c79c08b and /dev/null differ diff --git a/.git_backup/objects/26/2e6911233f0b956ae4694f0f5d9fa8e63cb1c0 b/.git_backup/objects/26/2e6911233f0b956ae4694f0f5d9fa8e63cb1c0 deleted file mode 100644 index 0f14b205..00000000 Binary files a/.git_backup/objects/26/2e6911233f0b956ae4694f0f5d9fa8e63cb1c0 and /dev/null differ diff --git a/.git_backup/objects/26/39f20546a9bc911dcf91a629bfcf35d3c0a74e b/.git_backup/objects/26/39f20546a9bc911dcf91a629bfcf35d3c0a74e deleted file mode 100644 index 8f4467ef..00000000 Binary files a/.git_backup/objects/26/39f20546a9bc911dcf91a629bfcf35d3c0a74e and /dev/null differ diff --git a/.git_backup/objects/26/41900c012e64cf0305797e41bd9a02845a42f0 b/.git_backup/objects/26/41900c012e64cf0305797e41bd9a02845a42f0 deleted file mode 100644 index 704192fb..00000000 --- a/.git_backup/objects/26/41900c012e64cf0305797e41bd9a02845a42f0 +++ /dev/null @@ -1 +0,0 @@ -x0 `{ހ,E'30tލ[ӿ_[*]۲l8;霰(:,LӲ.nb(X;B*ŭ__1:ɞZ4b&VfJdhqGUဘi~ti$㥿YΖoq*0$0xB \ No newline at end of file diff --git a/.git_backup/objects/26/44f072091c0b14d548f5141d03e8e204ecd48b b/.git_backup/objects/26/44f072091c0b14d548f5141d03e8e204ecd48b deleted file mode 100644 index 32bc4091..00000000 Binary files a/.git_backup/objects/26/44f072091c0b14d548f5141d03e8e204ecd48b and /dev/null differ diff --git a/.git_backup/objects/26/451b3c9f81ac471377016294e61861902c653d b/.git_backup/objects/26/451b3c9f81ac471377016294e61861902c653d deleted file mode 100644 index 0e13b47e..00000000 Binary files a/.git_backup/objects/26/451b3c9f81ac471377016294e61861902c653d and /dev/null differ diff --git a/.git_backup/objects/26/4d1f8c16b8bb135df2a9c6e0bb4c61ed07e08a b/.git_backup/objects/26/4d1f8c16b8bb135df2a9c6e0bb4c61ed07e08a deleted file mode 100644 index 7d6497d3..00000000 Binary files a/.git_backup/objects/26/4d1f8c16b8bb135df2a9c6e0bb4c61ed07e08a and /dev/null differ diff --git a/.git_backup/objects/26/4d564dbda676b52f446c0d25433a15939a78a3 b/.git_backup/objects/26/4d564dbda676b52f446c0d25433a15939a78a3 deleted file mode 100644 index b6129ff4..00000000 Binary files a/.git_backup/objects/26/4d564dbda676b52f446c0d25433a15939a78a3 and /dev/null differ diff --git a/.git_backup/objects/26/5015b1b763b4f0afe9657a57c23e1abd75c32e b/.git_backup/objects/26/5015b1b763b4f0afe9657a57c23e1abd75c32e deleted file mode 100644 index 68626913..00000000 Binary files a/.git_backup/objects/26/5015b1b763b4f0afe9657a57c23e1abd75c32e and /dev/null differ diff --git a/.git_backup/objects/26/5421e8702e0beb6475c8f6e870eda503227923 b/.git_backup/objects/26/5421e8702e0beb6475c8f6e870eda503227923 deleted file mode 100644 index 783c03d1..00000000 Binary files a/.git_backup/objects/26/5421e8702e0beb6475c8f6e870eda503227923 and /dev/null differ diff --git a/.git_backup/objects/26/572758d8bcaf4cf1ccd9caccf1c2ed2df1b30a b/.git_backup/objects/26/572758d8bcaf4cf1ccd9caccf1c2ed2df1b30a deleted file mode 100644 index f7e42386..00000000 Binary files a/.git_backup/objects/26/572758d8bcaf4cf1ccd9caccf1c2ed2df1b30a and /dev/null differ diff --git a/.git_backup/objects/26/5b24a9d6392e005eaab65cd44a87dc53e04060 b/.git_backup/objects/26/5b24a9d6392e005eaab65cd44a87dc53e04060 deleted file mode 100644 index cc9ecbfc..00000000 --- a/.git_backup/objects/26/5b24a9d6392e005eaab65cd44a87dc53e04060 +++ /dev/null @@ -1,5 +0,0 @@ -xV[FA}X(">հ%muA3!FymB{3G/q-iAҙs|gV]~vvKИ̶.мm* UUjoZ]x++"/MR6NMTUJ(?ׇf֖Iap)Ծ)ϗs>Y` /R9)mgF缏0=^棅MX@ Fn - K=>R8qz)}&Q4#\e͈CJ 1% -3Nc.@JL2г)f9Gp B$xY̢$I~g.Ϧ Zt;Eѩ-r IEMӍVzm&]鲄hM5Qb2H۔*L SH\i]S43\n<"9c, WmYt:IA(Ǻ%!r*݇ K>v)iJI,V2񷔓)QtNЫ!?xlf+w nfcSJz"yνp%b?qRP~"c0Tb('9?$,@:m3ߚ.ym@ZΤB5RNcsa9+UGK7ݬ8PHLsvݒ/DkeG$D*G#6`be^0Zfk-U1䰰UE :a BOQˆn Ih b&.dh4[])6`ٝ)ܰx^7) k=BC"2C[m% -,=Zl 0ф hN -`$[zqRDJ+X</`(1 : :C`k7q7:;j \ No newline at end of file diff --git a/.git_backup/objects/26/6e7839ef2d017c523a1be4ff9a34639024c881 b/.git_backup/objects/26/6e7839ef2d017c523a1be4ff9a34639024c881 deleted file mode 100644 index 02737b70..00000000 --- a/.git_backup/objects/26/6e7839ef2d017c523a1be4ff9a34639024c881 +++ /dev/null @@ -1,5 +0,0 @@ -xURMo1n6nOH9 Q !D8TTUQ# -J+gwҸGd{r̍v9Ԗf<3oFq5(En}|Aw+q;wuP!*B -ɧpW{tGUGHf_}ĻGz"&.'}T @ Ph8 /$#n-t`<\*i)ϕffUX\ v4K?Ot~+ v %1g3M/RY<ؽe)PeR Z)I9[jE6:0 `OE \ No newline at end of file diff --git a/.git_backup/objects/26/6fee6e3ed5c4334dbdaa83ecc1d6dbb63667df b/.git_backup/objects/26/6fee6e3ed5c4334dbdaa83ecc1d6dbb63667df deleted file mode 100644 index 3c3a7f0f..00000000 Binary files a/.git_backup/objects/26/6fee6e3ed5c4334dbdaa83ecc1d6dbb63667df and /dev/null differ diff --git a/.git_backup/objects/26/749f318eee571685cd446da7570c0f1e6ed616 b/.git_backup/objects/26/749f318eee571685cd446da7570c0f1e6ed616 deleted file mode 100644 index 6312a22d..00000000 Binary files a/.git_backup/objects/26/749f318eee571685cd446da7570c0f1e6ed616 and /dev/null differ diff --git a/.git_backup/objects/26/77530455b0767925270d37fad8d641f1d10104 b/.git_backup/objects/26/77530455b0767925270d37fad8d641f1d10104 deleted file mode 100644 index 23d04230..00000000 Binary files a/.git_backup/objects/26/77530455b0767925270d37fad8d641f1d10104 and /dev/null differ diff --git a/.git_backup/objects/26/792b687a1c51e805ec76b32fb7eea4fcecc130 b/.git_backup/objects/26/792b687a1c51e805ec76b32fb7eea4fcecc130 deleted file mode 100644 index 6b20563e..00000000 --- a/.git_backup/objects/26/792b687a1c51e805ec76b32fb7eea4fcecc130 +++ /dev/null @@ -1,3 +0,0 @@ -xUQ0sbaDXi 4 @H' -)rcmҽ/A;) -Fh|UCr,EO3kD))vWYMvq'd\`vͮ9gjmu#)xSC " ]W/`Ѝe@Up"!h/,/_'nș2B/a..LGP| #pmJ@A; nM\JAi--ԭ;' c_W6ܬ8MKJ7TYmzUYmY,ӲT.tH[+ &|ٓU§M>`ߢB/jgLqg*x7^>ðzz:q[)-lm" \ No newline at end of file diff --git a/.git_backup/objects/26/79c20cd0b3bf9544998cf03baddd5b5e0368a1 b/.git_backup/objects/26/79c20cd0b3bf9544998cf03baddd5b5e0368a1 deleted file mode 100644 index dbb24062..00000000 Binary files a/.git_backup/objects/26/79c20cd0b3bf9544998cf03baddd5b5e0368a1 and /dev/null differ diff --git a/.git_backup/objects/26/7fa676bcc4975dbfa93bee3373d842adbe50d9 b/.git_backup/objects/26/7fa676bcc4975dbfa93bee3373d842adbe50d9 deleted file mode 100644 index 9a03a13e..00000000 Binary files a/.git_backup/objects/26/7fa676bcc4975dbfa93bee3373d842adbe50d9 and /dev/null differ diff --git a/.git_backup/objects/26/84a5cfb52d75725e3f2201dff6eca154acbef1 b/.git_backup/objects/26/84a5cfb52d75725e3f2201dff6eca154acbef1 deleted file mode 100644 index 0d20e233..00000000 Binary files a/.git_backup/objects/26/84a5cfb52d75725e3f2201dff6eca154acbef1 and /dev/null differ diff --git a/.git_backup/objects/26/84e5dd6445b62a82a43bb04f54d6ca708bde6f b/.git_backup/objects/26/84e5dd6445b62a82a43bb04f54d6ca708bde6f deleted file mode 100644 index 085761c7..00000000 Binary files a/.git_backup/objects/26/84e5dd6445b62a82a43bb04f54d6ca708bde6f and /dev/null differ diff --git a/.git_backup/objects/26/85c243083b9ed774d0bfd1dc9d14f440627fbe b/.git_backup/objects/26/85c243083b9ed774d0bfd1dc9d14f440627fbe deleted file mode 100644 index 3715a6c9..00000000 Binary files a/.git_backup/objects/26/85c243083b9ed774d0bfd1dc9d14f440627fbe and /dev/null differ diff --git a/.git_backup/objects/26/931606bbaf62a8c2c505085a30288332922a1a b/.git_backup/objects/26/931606bbaf62a8c2c505085a30288332922a1a deleted file mode 100644 index 13e0b8fa..00000000 Binary files a/.git_backup/objects/26/931606bbaf62a8c2c505085a30288332922a1a and /dev/null differ diff --git a/.git_backup/objects/26/9896e131ece6499952873565abc4f2018e9719 b/.git_backup/objects/26/9896e131ece6499952873565abc4f2018e9719 deleted file mode 100644 index 9bc2faf6..00000000 Binary files a/.git_backup/objects/26/9896e131ece6499952873565abc4f2018e9719 and /dev/null differ diff --git a/.git_backup/objects/26/9c4f7614b5081e64cdbafc5b295a1dd96c79c4 b/.git_backup/objects/26/9c4f7614b5081e64cdbafc5b295a1dd96c79c4 deleted file mode 100644 index f5754a4c..00000000 Binary files a/.git_backup/objects/26/9c4f7614b5081e64cdbafc5b295a1dd96c79c4 and /dev/null differ diff --git a/.git_backup/objects/26/a8c56b99658864ee0951379b23c605be3c835b b/.git_backup/objects/26/a8c56b99658864ee0951379b23c605be3c835b deleted file mode 100644 index a44c894e..00000000 Binary files a/.git_backup/objects/26/a8c56b99658864ee0951379b23c605be3c835b and /dev/null differ diff --git a/.git_backup/objects/26/ae18466740b230f9b964ebb4c72c54f13c73ee b/.git_backup/objects/26/ae18466740b230f9b964ebb4c72c54f13c73ee deleted file mode 100644 index 6857e9a1..00000000 Binary files a/.git_backup/objects/26/ae18466740b230f9b964ebb4c72c54f13c73ee and /dev/null differ diff --git a/.git_backup/objects/26/baa7acad33599da82700ca5bd4d10c8810779b b/.git_backup/objects/26/baa7acad33599da82700ca5bd4d10c8810779b deleted file mode 100644 index 40605a90..00000000 Binary files a/.git_backup/objects/26/baa7acad33599da82700ca5bd4d10c8810779b and /dev/null differ diff --git a/.git_backup/objects/26/be80314dd5fad38923508759f3d2b23d73d80e b/.git_backup/objects/26/be80314dd5fad38923508759f3d2b23d73d80e deleted file mode 100644 index 63ea6391..00000000 Binary files a/.git_backup/objects/26/be80314dd5fad38923508759f3d2b23d73d80e and /dev/null differ diff --git a/.git_backup/objects/26/c19f8cb41271d0012f75743201cab06e127e08 b/.git_backup/objects/26/c19f8cb41271d0012f75743201cab06e127e08 deleted file mode 100644 index e9e23649..00000000 Binary files a/.git_backup/objects/26/c19f8cb41271d0012f75743201cab06e127e08 and /dev/null differ diff --git a/.git_backup/objects/26/c1acf795f64e9419c8d123937ed855bd665425 b/.git_backup/objects/26/c1acf795f64e9419c8d123937ed855bd665425 deleted file mode 100644 index 55d25f15..00000000 Binary files a/.git_backup/objects/26/c1acf795f64e9419c8d123937ed855bd665425 and /dev/null differ diff --git a/.git_backup/objects/26/c7a7829361f509728fc4c53146377437588dde b/.git_backup/objects/26/c7a7829361f509728fc4c53146377437588dde deleted file mode 100644 index 8233acf1..00000000 Binary files a/.git_backup/objects/26/c7a7829361f509728fc4c53146377437588dde and /dev/null differ diff --git a/.git_backup/objects/26/d6ffd3d65e0194982791e8c0ca97f1a5ea7277 b/.git_backup/objects/26/d6ffd3d65e0194982791e8c0ca97f1a5ea7277 deleted file mode 100644 index 919f5f3b..00000000 Binary files a/.git_backup/objects/26/d6ffd3d65e0194982791e8c0ca97f1a5ea7277 and /dev/null differ diff --git a/.git_backup/objects/26/dbf13dd7e7b1ee46c58130d8818d95bc6c2a85 b/.git_backup/objects/26/dbf13dd7e7b1ee46c58130d8818d95bc6c2a85 deleted file mode 100644 index 316f6e5a..00000000 --- a/.git_backup/objects/26/dbf13dd7e7b1ee46c58130d8818d95bc6c2a85 +++ /dev/null @@ -1,2 +0,0 @@ -xm -0 }Sb]brD~z_.CW -t9y/zϝ}'U)]'*N)p~MT%["c2teUHQ*-jd2?%?'>!/0q; B } 2%k\®\( -3ͦJz]\ 7Nuj! Y9Ռl&l.|zF3|Z2 \ No newline at end of file diff --git a/.git_backup/objects/26/eabd4e541ad18a9373b033147bbe002c893ae5 b/.git_backup/objects/26/eabd4e541ad18a9373b033147bbe002c893ae5 deleted file mode 100644 index 482688f0..00000000 --- a/.git_backup/objects/26/eabd4e541ad18a9373b033147bbe002c893ae5 +++ /dev/null @@ -1,2 +0,0 @@ -xuj0D{W(> -B/ڻf&Wm Eٝy]{ EFxq!Uh1E)~MA/ 6~cn9ƵKP!$PjCre((2e~6 ^ |"qH6_cJr%EJIVҏ;89h$"9N7M8Hlf~.__Xd]TȪa,?j=M [=qP:&mp@fPqBY3<9@ `n -$(vR.YIC9~<C6.I4D'v{QrriOz]\;Qr5[̀MY'7fqOqe,3%5 }ܲḆH:ǁAe^W(Mivb8o*7PHt1l`G>F%"7:hԅUVpOd =ͺ4!Sw#e -<«Ocɓv'aԕ{p0?}ީ\JJUQ`2fh9J9'W -n_OyEJD)xn9pR,3tS!X[TN +z8a;dXk\Z(V.S)6$\AsXK4}SLu n;"NEv#])/?ӮNi6s4e\GXx&HԦ5\)hH6#JVz; q9NWa*SPyRLtkB -]@91uh =?.^Mp:#~'*>GEO@Zh$~Kq.'3l "C3;TR -\ -ŦV$'f?;.'}4CWd4[lH_BzFʘ'ŵk9ppO;PB9O;$:,3\+Q<a! {*f \ No newline at end of file diff --git a/.git_backup/objects/27/17547e89b0763e36170b794980cd77a4f1d2d2 b/.git_backup/objects/27/17547e89b0763e36170b794980cd77a4f1d2d2 deleted file mode 100644 index cae855a1..00000000 Binary files a/.git_backup/objects/27/17547e89b0763e36170b794980cd77a4f1d2d2 and /dev/null differ diff --git a/.git_backup/objects/27/1770cba0c8634db8c91ff3be3e88835cd1934a b/.git_backup/objects/27/1770cba0c8634db8c91ff3be3e88835cd1934a deleted file mode 100644 index 5f3d17d1..00000000 Binary files a/.git_backup/objects/27/1770cba0c8634db8c91ff3be3e88835cd1934a and /dev/null differ diff --git a/.git_backup/objects/27/227380dbfaa211df8f92f5730a65c03ab1536a b/.git_backup/objects/27/227380dbfaa211df8f92f5730a65c03ab1536a deleted file mode 100644 index 17fd6272..00000000 Binary files a/.git_backup/objects/27/227380dbfaa211df8f92f5730a65c03ab1536a and /dev/null differ diff --git a/.git_backup/objects/27/2531b638f243068e0dca0dc8ee1db7d749f56e b/.git_backup/objects/27/2531b638f243068e0dca0dc8ee1db7d749f56e deleted file mode 100644 index 00c4bdb1..00000000 Binary files a/.git_backup/objects/27/2531b638f243068e0dca0dc8ee1db7d749f56e and /dev/null differ diff --git a/.git_backup/objects/27/2bc17c693fed171e24324de2a02287d94e12a2 b/.git_backup/objects/27/2bc17c693fed171e24324de2a02287d94e12a2 deleted file mode 100644 index de3b87e3..00000000 Binary files a/.git_backup/objects/27/2bc17c693fed171e24324de2a02287d94e12a2 and /dev/null differ diff --git a/.git_backup/objects/27/31d45afb4ea5a8274ca8a185c47bc3c34a505c b/.git_backup/objects/27/31d45afb4ea5a8274ca8a185c47bc3c34a505c deleted file mode 100644 index 21e1277e..00000000 Binary files a/.git_backup/objects/27/31d45afb4ea5a8274ca8a185c47bc3c34a505c and /dev/null differ diff --git a/.git_backup/objects/27/3583ba20e7e91cb329503b0e448dc964a88243 b/.git_backup/objects/27/3583ba20e7e91cb329503b0e448dc964a88243 deleted file mode 100644 index 32beae3f..00000000 --- a/.git_backup/objects/27/3583ba20e7e91cb329503b0e448dc964a88243 +++ /dev/null @@ -1 +0,0 @@ -x]n w@\o6 {WUdӢR-t? }|le"xjvXc:=FJof_`\Y7Y: @o)Sҧ~tR= ߭OڱGƌveSsxGĦI{S&<^m6QGO@ Yy #Rd޻=TjFNՋ2;K۩i dMGM - -s'c6B#( '4 \2?,!LC+2:/BB m䲚ɍib.tIm1JM:_^4]8[>CaϪs|;;VdtSr{ɣype6Kkk a`hꏳX?iFH)=\/4d ׼PuaAWl*إ4xΚXVt5mqdd[.)e# \ No newline at end of file diff --git a/.git_backup/objects/27/b37a4ca3c8e665a04e0521bbd72f2d5fea7ddc b/.git_backup/objects/27/b37a4ca3c8e665a04e0521bbd72f2d5fea7ddc deleted file mode 100644 index 27d23bc7..00000000 Binary files a/.git_backup/objects/27/b37a4ca3c8e665a04e0521bbd72f2d5fea7ddc and /dev/null differ diff --git a/.git_backup/objects/27/b522a7d5e24eafdf29dd541ebbca69ce4db7b8 b/.git_backup/objects/27/b522a7d5e24eafdf29dd541ebbca69ce4db7b8 deleted file mode 100644 index a068c11e..00000000 Binary files a/.git_backup/objects/27/b522a7d5e24eafdf29dd541ebbca69ce4db7b8 and /dev/null differ diff --git a/.git_backup/objects/27/b68b26dd814c2045a5c21108a0f55f87885ccd b/.git_backup/objects/27/b68b26dd814c2045a5c21108a0f55f87885ccd deleted file mode 100644 index 4f3eb5d7..00000000 Binary files a/.git_backup/objects/27/b68b26dd814c2045a5c21108a0f55f87885ccd and /dev/null differ diff --git a/.git_backup/objects/27/b68ff0f60447e6695d786de9a72ecbb59f7884 b/.git_backup/objects/27/b68ff0f60447e6695d786de9a72ecbb59f7884 deleted file mode 100644 index 3d4bfa16..00000000 Binary files a/.git_backup/objects/27/b68ff0f60447e6695d786de9a72ecbb59f7884 and /dev/null differ diff --git a/.git_backup/objects/27/b898782fbefa4775a6448b523518b1886fea95 b/.git_backup/objects/27/b898782fbefa4775a6448b523518b1886fea95 deleted file mode 100644 index 09f5f958..00000000 Binary files a/.git_backup/objects/27/b898782fbefa4775a6448b523518b1886fea95 and /dev/null differ diff --git a/.git_backup/objects/27/c3824e226c317eabe30e9098b81096af49ea71 b/.git_backup/objects/27/c3824e226c317eabe30e9098b81096af49ea71 deleted file mode 100644 index bc67d439..00000000 Binary files a/.git_backup/objects/27/c3824e226c317eabe30e9098b81096af49ea71 and /dev/null differ diff --git a/.git_backup/objects/27/c69f0d1eaf3e223d599e91f969d52a821426fe b/.git_backup/objects/27/c69f0d1eaf3e223d599e91f969d52a821426fe deleted file mode 100644 index fcf5b06a..00000000 --- a/.git_backup/objects/27/c69f0d1eaf3e223d599e91f969d52a821426fe +++ /dev/null @@ -1,7 +0,0 @@ -x}TMo0 ٿۀ -dnǡC.%Aߏ,Yb#^7,os=*K;V[pz-[ٌ+ijG%Xg֏&۫Q⊷d.GʣU`PO|^ZT~tvMĘVS9ObqdžܵڮA&7.{Ww#lvT!{cx(x  t*-( -d(Mlږ -ٺ54k -jrQqNO 0:vtl;p-H׷pq.b;U|sN9]|T&PVVRM9hAb9vlj \bsoGlK}pd4 -*z G *C { taKHaAEYJ!s4}Dç;Sn,Jb rkswA>G"3Mq9JԾڤ`6Bga5|W匴Ia *pT[=rRx -j)#4mזpKDKp3M{deh$Fm3+3Lq^hFAZ4ګ̎ \ No newline at end of file diff --git a/.git_backup/objects/27/c8fa3d5b6999c77dad7aece312a5d6cf12ab48 b/.git_backup/objects/27/c8fa3d5b6999c77dad7aece312a5d6cf12ab48 deleted file mode 100644 index 76a21ada..00000000 Binary files a/.git_backup/objects/27/c8fa3d5b6999c77dad7aece312a5d6cf12ab48 and /dev/null differ diff --git a/.git_backup/objects/27/d293d4365a8490626abdd4b3abd61aa5ff9b82 b/.git_backup/objects/27/d293d4365a8490626abdd4b3abd61aa5ff9b82 deleted file mode 100644 index ced5db8b..00000000 --- a/.git_backup/objects/27/d293d4365a8490626abdd4b3abd61aa5ff9b82 +++ /dev/null @@ -1,3 +0,0 @@ -xuOMK1~B  U$"^B0]dk'+^ɳсy3^LU3 #X/+7?U+$":i#:I@d(#Dړ1wԐ<6&^T -n@H]ka⎗V.[Z1U`C؃c{WynQKኪ)^ + 8&6^-ql܂C؉1)bІ p5PCf{;т$aUU]Ku# -oie \ No newline at end of file diff --git a/.git_backup/objects/27/d2a915ecfeab3b5408d2dea557b33214dfad09 b/.git_backup/objects/27/d2a915ecfeab3b5408d2dea557b33214dfad09 deleted file mode 100644 index 5a79927c..00000000 Binary files a/.git_backup/objects/27/d2a915ecfeab3b5408d2dea557b33214dfad09 and /dev/null differ diff --git a/.git_backup/objects/27/d5a4892c7004eb748c8b10c2b1b676151f456e b/.git_backup/objects/27/d5a4892c7004eb748c8b10c2b1b676151f456e deleted file mode 100644 index 4b7b3305..00000000 Binary files a/.git_backup/objects/27/d5a4892c7004eb748c8b10c2b1b676151f456e and /dev/null differ diff --git a/.git_backup/objects/27/dd65d3d73acfad51521d5226aa7a61b479032e b/.git_backup/objects/27/dd65d3d73acfad51521d5226aa7a61b479032e deleted file mode 100644 index e4eb867a..00000000 Binary files a/.git_backup/objects/27/dd65d3d73acfad51521d5226aa7a61b479032e and /dev/null differ diff --git a/.git_backup/objects/27/ddbb82f49a9383b4864c5404c2c5d7d7030cef b/.git_backup/objects/27/ddbb82f49a9383b4864c5404c2c5d7d7030cef deleted file mode 100644 index 9c2ebff7..00000000 Binary files a/.git_backup/objects/27/ddbb82f49a9383b4864c5404c2c5d7d7030cef and /dev/null differ diff --git a/.git_backup/objects/27/de456f16ab549627b284a39e2265cbdb4ad8e9 b/.git_backup/objects/27/de456f16ab549627b284a39e2265cbdb4ad8e9 deleted file mode 100644 index 455b631a..00000000 Binary files a/.git_backup/objects/27/de456f16ab549627b284a39e2265cbdb4ad8e9 and /dev/null differ diff --git a/.git_backup/objects/27/df519d266a3f175b3b229c4ecd53af174f2ce2 b/.git_backup/objects/27/df519d266a3f175b3b229c4ecd53af174f2ce2 deleted file mode 100644 index 8cd22cb9..00000000 Binary files a/.git_backup/objects/27/df519d266a3f175b3b229c4ecd53af174f2ce2 and /dev/null differ diff --git a/.git_backup/objects/27/e1b9b93f3f4d03bb10ff298b4510a6c93c366d b/.git_backup/objects/27/e1b9b93f3f4d03bb10ff298b4510a6c93c366d deleted file mode 100644 index e2bd5e5d..00000000 Binary files a/.git_backup/objects/27/e1b9b93f3f4d03bb10ff298b4510a6c93c366d and /dev/null differ diff --git a/.git_backup/objects/27/e8f231bf8deeec38c69ba0fd90a92ab0a504be b/.git_backup/objects/27/e8f231bf8deeec38c69ba0fd90a92ab0a504be deleted file mode 100644 index d3b4bcbd..00000000 Binary files a/.git_backup/objects/27/e8f231bf8deeec38c69ba0fd90a92ab0a504be and /dev/null differ diff --git a/.git_backup/objects/27/ea5cdb9e6d7b84e50b821de26abc69b179b338 b/.git_backup/objects/27/ea5cdb9e6d7b84e50b821de26abc69b179b338 deleted file mode 100644 index 6b2e233f..00000000 Binary files a/.git_backup/objects/27/ea5cdb9e6d7b84e50b821de26abc69b179b338 and /dev/null differ diff --git a/.git_backup/objects/27/ea63c870ae9afb43d11e0299de94819e3c999a b/.git_backup/objects/27/ea63c870ae9afb43d11e0299de94819e3c999a deleted file mode 100644 index 53cef6b2..00000000 Binary files a/.git_backup/objects/27/ea63c870ae9afb43d11e0299de94819e3c999a and /dev/null differ diff --git a/.git_backup/objects/27/f52fd276505c93c69b36f1ab6df4e6259a5473 b/.git_backup/objects/27/f52fd276505c93c69b36f1ab6df4e6259a5473 deleted file mode 100644 index 714932da..00000000 Binary files a/.git_backup/objects/27/f52fd276505c93c69b36f1ab6df4e6259a5473 and /dev/null differ diff --git a/.git_backup/objects/27/f8e5f98a611e50f274209baebb567721f2da7d b/.git_backup/objects/27/f8e5f98a611e50f274209baebb567721f2da7d deleted file mode 100644 index 689b0d4b..00000000 Binary files a/.git_backup/objects/27/f8e5f98a611e50f274209baebb567721f2da7d and /dev/null differ diff --git a/.git_backup/objects/28/062a0611733cec2fadf32eeaf9c224f7ee6ac8 b/.git_backup/objects/28/062a0611733cec2fadf32eeaf9c224f7ee6ac8 deleted file mode 100644 index 81706592..00000000 Binary files a/.git_backup/objects/28/062a0611733cec2fadf32eeaf9c224f7ee6ac8 and /dev/null differ diff --git a/.git_backup/objects/28/0e4b4cef90b98421bef60cc77cecd66deb127c b/.git_backup/objects/28/0e4b4cef90b98421bef60cc77cecd66deb127c deleted file mode 100644 index 783c99bd..00000000 Binary files a/.git_backup/objects/28/0e4b4cef90b98421bef60cc77cecd66deb127c and /dev/null differ diff --git a/.git_backup/objects/28/23281ce959b005f59fd48d67eca6187a106220 b/.git_backup/objects/28/23281ce959b005f59fd48d67eca6187a106220 deleted file mode 100644 index 4ecf11d6..00000000 Binary files a/.git_backup/objects/28/23281ce959b005f59fd48d67eca6187a106220 and /dev/null differ diff --git a/.git_backup/objects/28/26c71d4fec840dcdcdaf7b65823f67b829b600 b/.git_backup/objects/28/26c71d4fec840dcdcdaf7b65823f67b829b600 deleted file mode 100644 index 76c93547..00000000 Binary files a/.git_backup/objects/28/26c71d4fec840dcdcdaf7b65823f67b829b600 and /dev/null differ diff --git a/.git_backup/objects/28/2b8de2b8a2b57d3a01893b4a3f94dc078d29e0 b/.git_backup/objects/28/2b8de2b8a2b57d3a01893b4a3f94dc078d29e0 deleted file mode 100644 index 44e0013a..00000000 Binary files a/.git_backup/objects/28/2b8de2b8a2b57d3a01893b4a3f94dc078d29e0 and /dev/null differ diff --git a/.git_backup/objects/28/3558fe1674562a3b307280e74faac3074d46f4 b/.git_backup/objects/28/3558fe1674562a3b307280e74faac3074d46f4 deleted file mode 100644 index a1621968..00000000 Binary files a/.git_backup/objects/28/3558fe1674562a3b307280e74faac3074d46f4 and /dev/null differ diff --git a/.git_backup/objects/28/368b6048e5936cb016cd00b91d5b04f302ad77 b/.git_backup/objects/28/368b6048e5936cb016cd00b91d5b04f302ad77 deleted file mode 100644 index 1ac2bec4..00000000 Binary files a/.git_backup/objects/28/368b6048e5936cb016cd00b91d5b04f302ad77 and /dev/null differ diff --git a/.git_backup/objects/28/415057d10b3fe8fa0cedf654e9712a6aebbe3c b/.git_backup/objects/28/415057d10b3fe8fa0cedf654e9712a6aebbe3c deleted file mode 100644 index f9fe4e4d..00000000 Binary files a/.git_backup/objects/28/415057d10b3fe8fa0cedf654e9712a6aebbe3c and /dev/null differ diff --git a/.git_backup/objects/28/41866b951c399024b743a15df484310ff51477 b/.git_backup/objects/28/41866b951c399024b743a15df484310ff51477 deleted file mode 100644 index 4e16dbef..00000000 Binary files a/.git_backup/objects/28/41866b951c399024b743a15df484310ff51477 and /dev/null differ diff --git a/.git_backup/objects/28/43cbd506c872ca0074c65d580a5cf3fa4dc0c2 b/.git_backup/objects/28/43cbd506c872ca0074c65d580a5cf3fa4dc0c2 deleted file mode 100644 index a1f70813..00000000 Binary files a/.git_backup/objects/28/43cbd506c872ca0074c65d580a5cf3fa4dc0c2 and /dev/null differ diff --git a/.git_backup/objects/28/44ec9b06557719b4911492c0958ded4ff19eab b/.git_backup/objects/28/44ec9b06557719b4911492c0958ded4ff19eab deleted file mode 100644 index b4e3c3b6..00000000 --- a/.git_backup/objects/28/44ec9b06557719b4911492c0958ded4ff19eab +++ /dev/null @@ -1,5 +0,0 @@ -x] -!;] -LX^$EWkW=]5sqs19 -{Ǥ4xcT)kFiە -}lH9,8z4 qKQ>{k8c \ No newline at end of file diff --git a/.git_backup/objects/28/4ad354ed3ad54546dc6c057fd19d277e3403a1 b/.git_backup/objects/28/4ad354ed3ad54546dc6c057fd19d277e3403a1 deleted file mode 100644 index da1fa69b..00000000 Binary files a/.git_backup/objects/28/4ad354ed3ad54546dc6c057fd19d277e3403a1 and /dev/null differ diff --git a/.git_backup/objects/28/53e0d7d747d6c3288b88732191d861e6eecd97 b/.git_backup/objects/28/53e0d7d747d6c3288b88732191d861e6eecd97 deleted file mode 100644 index 6cdf64f9..00000000 --- a/.git_backup/objects/28/53e0d7d747d6c3288b88732191d861e6eecd97 +++ /dev/null @@ -1 +0,0 @@ -x}P0O1Qx&_*6 ۻJ#ȗSfg6ΨRu}4JGvγf]x ht p5dc4ktd*=^1W RJts u3}"'$Ϊ̩ՍλIL) &ͷ1dZ;NVz1 \ No newline at end of file diff --git a/.git_backup/objects/28/54dbc8b1e53f298ac3b135eac1f06e73940152 b/.git_backup/objects/28/54dbc8b1e53f298ac3b135eac1f06e73940152 deleted file mode 100644 index 10baf4a8..00000000 --- a/.git_backup/objects/28/54dbc8b1e53f298ac3b135eac1f06e73940152 +++ /dev/null @@ -1,5 +0,0 @@ -xn1 2R؀+t6-].*@I -y2'K3viv< -c($(R,-yΙɹ֌jX婱}aY*saTI^|(ﯕGB<:e;oC]L ]x7jO#HD HD HD HD HD ӿ/%$ \ No newline at end of file diff --git a/.git_backup/objects/28/5a208c4dfeeac619980b34d170f3a5d7af0e66 b/.git_backup/objects/28/5a208c4dfeeac619980b34d170f3a5d7af0e66 deleted file mode 100644 index 1df37ea4..00000000 Binary files a/.git_backup/objects/28/5a208c4dfeeac619980b34d170f3a5d7af0e66 and /dev/null differ diff --git a/.git_backup/objects/28/5da7f78ffbbf2155fd2e4e648f19a1d3a42ac3 b/.git_backup/objects/28/5da7f78ffbbf2155fd2e4e648f19a1d3a42ac3 deleted file mode 100644 index d3a5abf9..00000000 Binary files a/.git_backup/objects/28/5da7f78ffbbf2155fd2e4e648f19a1d3a42ac3 and /dev/null differ diff --git a/.git_backup/objects/28/618dc52379eafc72a5a1005a679d418d879692 b/.git_backup/objects/28/618dc52379eafc72a5a1005a679d418d879692 deleted file mode 100644 index ea4b3694..00000000 Binary files a/.git_backup/objects/28/618dc52379eafc72a5a1005a679d418d879692 and /dev/null differ diff --git a/.git_backup/objects/28/62a91f508ea225ea9829d4843f330473977134 b/.git_backup/objects/28/62a91f508ea225ea9829d4843f330473977134 deleted file mode 100644 index ea354bb4..00000000 Binary files a/.git_backup/objects/28/62a91f508ea225ea9829d4843f330473977134 and /dev/null differ diff --git a/.git_backup/objects/28/6522f6b946d2c363f8b5f4e63b73a08c81cc8c b/.git_backup/objects/28/6522f6b946d2c363f8b5f4e63b73a08c81cc8c deleted file mode 100644 index 3f926f45..00000000 Binary files a/.git_backup/objects/28/6522f6b946d2c363f8b5f4e63b73a08c81cc8c and /dev/null differ diff --git a/.git_backup/objects/28/67f59120bc8f31fa48b3929f441ba2ccd6ad54 b/.git_backup/objects/28/67f59120bc8f31fa48b3929f441ba2ccd6ad54 deleted file mode 100644 index 528999b7..00000000 Binary files a/.git_backup/objects/28/67f59120bc8f31fa48b3929f441ba2ccd6ad54 and /dev/null differ diff --git a/.git_backup/objects/28/69302fbe88171f2875aa75ef93679bdf097f16 b/.git_backup/objects/28/69302fbe88171f2875aa75ef93679bdf097f16 deleted file mode 100644 index 263107ec..00000000 Binary files a/.git_backup/objects/28/69302fbe88171f2875aa75ef93679bdf097f16 and /dev/null differ diff --git a/.git_backup/objects/28/6d13216eb3b14bf9fec1fceebf2fe731472d39 b/.git_backup/objects/28/6d13216eb3b14bf9fec1fceebf2fe731472d39 deleted file mode 100644 index 69321ed9..00000000 Binary files a/.git_backup/objects/28/6d13216eb3b14bf9fec1fceebf2fe731472d39 and /dev/null differ diff --git a/.git_backup/objects/28/71fe0b763798f20a83f6321962ba7a7e477b91 b/.git_backup/objects/28/71fe0b763798f20a83f6321962ba7a7e477b91 deleted file mode 100644 index 1f7b918b..00000000 Binary files a/.git_backup/objects/28/71fe0b763798f20a83f6321962ba7a7e477b91 and /dev/null differ diff --git a/.git_backup/objects/28/73f6883c12879fa47601a87a0e2449a666d42a b/.git_backup/objects/28/73f6883c12879fa47601a87a0e2449a666d42a deleted file mode 100644 index 81e47e94..00000000 Binary files a/.git_backup/objects/28/73f6883c12879fa47601a87a0e2449a666d42a and /dev/null differ diff --git a/.git_backup/objects/28/769e4f12be554f63a094730cef3c75fb46c35a b/.git_backup/objects/28/769e4f12be554f63a094730cef3c75fb46c35a deleted file mode 100644 index 935ad9cc..00000000 Binary files a/.git_backup/objects/28/769e4f12be554f63a094730cef3c75fb46c35a and /dev/null differ diff --git a/.git_backup/objects/28/76c39631e8c14d083cc4d7a61becc5789075aa b/.git_backup/objects/28/76c39631e8c14d083cc4d7a61becc5789075aa deleted file mode 100644 index fecb3a75..00000000 Binary files a/.git_backup/objects/28/76c39631e8c14d083cc4d7a61becc5789075aa and /dev/null differ diff --git a/.git_backup/objects/28/7f1439266639f9564149d6e162feaba3fbed86 b/.git_backup/objects/28/7f1439266639f9564149d6e162feaba3fbed86 deleted file mode 100644 index d6984ea5..00000000 Binary files a/.git_backup/objects/28/7f1439266639f9564149d6e162feaba3fbed86 and /dev/null differ diff --git a/.git_backup/objects/28/7ff3a587bce0c7885bda6076b0636a2296abc6 b/.git_backup/objects/28/7ff3a587bce0c7885bda6076b0636a2296abc6 deleted file mode 100644 index 1d3d98b6..00000000 Binary files a/.git_backup/objects/28/7ff3a587bce0c7885bda6076b0636a2296abc6 and /dev/null differ diff --git a/.git_backup/objects/28/86055862c65c7159287191b3eaa54f4ab3913f b/.git_backup/objects/28/86055862c65c7159287191b3eaa54f4ab3913f deleted file mode 100644 index 8b4a09c3..00000000 Binary files a/.git_backup/objects/28/86055862c65c7159287191b3eaa54f4ab3913f and /dev/null differ diff --git a/.git_backup/objects/28/894a59b08b90a5f028e3c1eaef44513a1fcbcc b/.git_backup/objects/28/894a59b08b90a5f028e3c1eaef44513a1fcbcc deleted file mode 100644 index ab1a23c7..00000000 Binary files a/.git_backup/objects/28/894a59b08b90a5f028e3c1eaef44513a1fcbcc and /dev/null differ diff --git a/.git_backup/objects/28/89cc786dd71583ca345ad206553907af3a13fa b/.git_backup/objects/28/89cc786dd71583ca345ad206553907af3a13fa deleted file mode 100644 index da906150..00000000 Binary files a/.git_backup/objects/28/89cc786dd71583ca345ad206553907af3a13fa and /dev/null differ diff --git a/.git_backup/objects/28/976cb44f3b2247a20a030c1db9d164e2003dcd b/.git_backup/objects/28/976cb44f3b2247a20a030c1db9d164e2003dcd deleted file mode 100644 index c8876bf3..00000000 Binary files a/.git_backup/objects/28/976cb44f3b2247a20a030c1db9d164e2003dcd and /dev/null differ diff --git a/.git_backup/objects/28/99422fedc4a19280a17bf6b471fa4fd301ff6e b/.git_backup/objects/28/99422fedc4a19280a17bf6b471fa4fd301ff6e deleted file mode 100644 index 22253af5..00000000 Binary files a/.git_backup/objects/28/99422fedc4a19280a17bf6b471fa4fd301ff6e and /dev/null differ diff --git a/.git_backup/objects/28/9e4cfe9397d260675fd7f3b2a66639fb9282d5 b/.git_backup/objects/28/9e4cfe9397d260675fd7f3b2a66639fb9282d5 deleted file mode 100644 index aa929c5f..00000000 Binary files a/.git_backup/objects/28/9e4cfe9397d260675fd7f3b2a66639fb9282d5 and /dev/null differ diff --git a/.git_backup/objects/28/a4d6daeab3bfe9cdde242afd55caad8790eb02 b/.git_backup/objects/28/a4d6daeab3bfe9cdde242afd55caad8790eb02 deleted file mode 100644 index fc88afe6..00000000 Binary files a/.git_backup/objects/28/a4d6daeab3bfe9cdde242afd55caad8790eb02 and /dev/null differ diff --git a/.git_backup/objects/28/aba7c9ce0b3579721f1ffbceff1251b5fac47f b/.git_backup/objects/28/aba7c9ce0b3579721f1ffbceff1251b5fac47f deleted file mode 100644 index 1d5df25d..00000000 Binary files a/.git_backup/objects/28/aba7c9ce0b3579721f1ffbceff1251b5fac47f and /dev/null differ diff --git a/.git_backup/objects/28/acabe9f1a2633cda987bed4705275802dccb40 b/.git_backup/objects/28/acabe9f1a2633cda987bed4705275802dccb40 deleted file mode 100644 index b2656990..00000000 --- a/.git_backup/objects/28/acabe9f1a2633cda987bed4705275802dccb40 +++ /dev/null @@ -1,3 +0,0 @@ -x5Rn1Ig2MYT,XE4DKBg%$8Pز= -_gGfNJ;IjWW\{̈́>9 REGȟp3ܼ`P$#󡢊iϤ蝧>%T,J{_D_od1%\QU茝)VmhzUǚփl@Is[%2DD -=;&;y@ 99sEi2 3hP53^:T5(C)W2%&]fSp>94ʧIYyKj'@=H]>7ZY#X5>HA pecIvyTM #.Jy^ alCkcz~͔L<δ(Mȇ?T}L`ud']B(Sm,fbݲo3.LGBW`CE"֗.6XwEaq[槝8-Kk ې@ms[ݶS@N.y/䝂|{dYmTy] Qޢ)m(E4XB? \ No newline at end of file diff --git a/.git_backup/objects/28/b21c5f06b5a96a43d1f16dd69c04739eb87d49 b/.git_backup/objects/28/b21c5f06b5a96a43d1f16dd69c04739eb87d49 deleted file mode 100644 index 32cd4068..00000000 Binary files a/.git_backup/objects/28/b21c5f06b5a96a43d1f16dd69c04739eb87d49 and /dev/null differ diff --git a/.git_backup/objects/28/b32ab2e0b9053f39a91d9f28b6072e41423954 b/.git_backup/objects/28/b32ab2e0b9053f39a91d9f28b6072e41423954 deleted file mode 100644 index d0cb9d94..00000000 Binary files a/.git_backup/objects/28/b32ab2e0b9053f39a91d9f28b6072e41423954 and /dev/null differ diff --git a/.git_backup/objects/28/b5c896396b06fb2970c40a2fca889038bfa107 b/.git_backup/objects/28/b5c896396b06fb2970c40a2fca889038bfa107 deleted file mode 100644 index 48c0b4a1..00000000 Binary files a/.git_backup/objects/28/b5c896396b06fb2970c40a2fca889038bfa107 and /dev/null differ diff --git a/.git_backup/objects/28/baee78dc61c4e8c9f5628b2c9655fca6d2030f b/.git_backup/objects/28/baee78dc61c4e8c9f5628b2c9655fca6d2030f deleted file mode 100644 index 2f82b7cc..00000000 Binary files a/.git_backup/objects/28/baee78dc61c4e8c9f5628b2c9655fca6d2030f and /dev/null differ diff --git a/.git_backup/objects/28/cb24ba55eeb1b9d4820c6e9eb3cee8e61f9e1f b/.git_backup/objects/28/cb24ba55eeb1b9d4820c6e9eb3cee8e61f9e1f deleted file mode 100644 index 44b18b5b..00000000 Binary files a/.git_backup/objects/28/cb24ba55eeb1b9d4820c6e9eb3cee8e61f9e1f and /dev/null differ diff --git a/.git_backup/objects/28/cb66714d675d49473c027ca8be940013415578 b/.git_backup/objects/28/cb66714d675d49473c027ca8be940013415578 deleted file mode 100644 index ba1421d4..00000000 Binary files a/.git_backup/objects/28/cb66714d675d49473c027ca8be940013415578 and /dev/null differ diff --git a/.git_backup/objects/28/cb91b191af31059c9c385cd20d617d892df19b b/.git_backup/objects/28/cb91b191af31059c9c385cd20d617d892df19b deleted file mode 100644 index 778b2957..00000000 Binary files a/.git_backup/objects/28/cb91b191af31059c9c385cd20d617d892df19b and /dev/null differ diff --git a/.git_backup/objects/28/dc0020e9ebd04590d0a46a47df7bd6d2b9d30d b/.git_backup/objects/28/dc0020e9ebd04590d0a46a47df7bd6d2b9d30d deleted file mode 100644 index cc493bdb..00000000 Binary files a/.git_backup/objects/28/dc0020e9ebd04590d0a46a47df7bd6d2b9d30d and /dev/null differ diff --git a/.git_backup/objects/28/dcf859dddf2218aaa3b0d9c0ac1aafcfa812c4 b/.git_backup/objects/28/dcf859dddf2218aaa3b0d9c0ac1aafcfa812c4 deleted file mode 100644 index a1e091d2..00000000 Binary files a/.git_backup/objects/28/dcf859dddf2218aaa3b0d9c0ac1aafcfa812c4 and /dev/null differ diff --git a/.git_backup/objects/28/e342771bbc611f49a615a853cff6ba89c01da1 b/.git_backup/objects/28/e342771bbc611f49a615a853cff6ba89c01da1 deleted file mode 100644 index fad12787..00000000 Binary files a/.git_backup/objects/28/e342771bbc611f49a615a853cff6ba89c01da1 and /dev/null differ diff --git a/.git_backup/objects/28/e5a4449622c3f740bfe19b99b6766bb4fb90ad b/.git_backup/objects/28/e5a4449622c3f740bfe19b99b6766bb4fb90ad deleted file mode 100644 index d1bb8e76..00000000 Binary files a/.git_backup/objects/28/e5a4449622c3f740bfe19b99b6766bb4fb90ad and /dev/null differ diff --git a/.git_backup/objects/28/e887eea4c7bed259a42f8ed35708f60256b7d8 b/.git_backup/objects/28/e887eea4c7bed259a42f8ed35708f60256b7d8 deleted file mode 100644 index 4928508d..00000000 --- a/.git_backup/objects/28/e887eea4c7bed259a42f8ed35708f60256b7d8 +++ /dev/null @@ -1 +0,0 @@ -xej0 wS:9lrha)I`euBC>Bogwu{v\;3UƏX1t/UU vq|R*L Vo&4 fF J^/tMaJD$MgᴶnCk|LL:8&w]b&e/G bwB$cCIm7; \ No newline at end of file diff --git a/.git_backup/objects/28/ea96003443d12ed0cc932c60b309329826f031 b/.git_backup/objects/28/ea96003443d12ed0cc932c60b309329826f031 deleted file mode 100644 index 2344ed2a..00000000 Binary files a/.git_backup/objects/28/ea96003443d12ed0cc932c60b309329826f031 and /dev/null differ diff --git a/.git_backup/objects/28/ee790ab9a16ca57b508adba155422456a3c4ce b/.git_backup/objects/28/ee790ab9a16ca57b508adba155422456a3c4ce deleted file mode 100644 index b5a1626f..00000000 Binary files a/.git_backup/objects/28/ee790ab9a16ca57b508adba155422456a3c4ce and /dev/null differ diff --git a/.git_backup/objects/28/f3e466caef5f4bb3bcac0825c806b2f3de7bbf b/.git_backup/objects/28/f3e466caef5f4bb3bcac0825c806b2f3de7bbf deleted file mode 100644 index 6b980829..00000000 Binary files a/.git_backup/objects/28/f3e466caef5f4bb3bcac0825c806b2f3de7bbf and /dev/null differ diff --git a/.git_backup/objects/28/f7f8c77c18386bc9dbcd948688713fed80d3cc b/.git_backup/objects/28/f7f8c77c18386bc9dbcd948688713fed80d3cc deleted file mode 100644 index b2350f1d..00000000 Binary files a/.git_backup/objects/28/f7f8c77c18386bc9dbcd948688713fed80d3cc and /dev/null differ diff --git a/.git_backup/objects/29/02ca614c4c8229f31ba72cdb1ff58f7f8ce486 b/.git_backup/objects/29/02ca614c4c8229f31ba72cdb1ff58f7f8ce486 deleted file mode 100644 index 21450cf5..00000000 Binary files a/.git_backup/objects/29/02ca614c4c8229f31ba72cdb1ff58f7f8ce486 and /dev/null differ diff --git a/.git_backup/objects/29/04b6a844ddcd88430e4e3363976ef903b71466 b/.git_backup/objects/29/04b6a844ddcd88430e4e3363976ef903b71466 deleted file mode 100644 index a8842aa7..00000000 Binary files a/.git_backup/objects/29/04b6a844ddcd88430e4e3363976ef903b71466 and /dev/null differ diff --git a/.git_backup/objects/29/0967dd6d57adef52a4999e92aafceac5760cd7 b/.git_backup/objects/29/0967dd6d57adef52a4999e92aafceac5760cd7 deleted file mode 100644 index 79b7464b..00000000 Binary files a/.git_backup/objects/29/0967dd6d57adef52a4999e92aafceac5760cd7 and /dev/null differ diff --git a/.git_backup/objects/29/0e063a59be7bbf753603dc2ad37e7167127cd9 b/.git_backup/objects/29/0e063a59be7bbf753603dc2ad37e7167127cd9 deleted file mode 100644 index 0031fde4..00000000 Binary files a/.git_backup/objects/29/0e063a59be7bbf753603dc2ad37e7167127cd9 and /dev/null differ diff --git a/.git_backup/objects/29/1857c25c83f91a151c1d7760e8e5e09c1ee238 b/.git_backup/objects/29/1857c25c83f91a151c1d7760e8e5e09c1ee238 deleted file mode 100644 index f560110e..00000000 Binary files a/.git_backup/objects/29/1857c25c83f91a151c1d7760e8e5e09c1ee238 and /dev/null differ diff --git a/.git_backup/objects/29/1865ba676d5147c53d127c2c31c8cf8c4693f1 b/.git_backup/objects/29/1865ba676d5147c53d127c2c31c8cf8c4693f1 deleted file mode 100644 index ebf57583..00000000 Binary files a/.git_backup/objects/29/1865ba676d5147c53d127c2c31c8cf8c4693f1 and /dev/null differ diff --git a/.git_backup/objects/29/1cdae8908fbc0fbca28a159ed9d875a588c7df b/.git_backup/objects/29/1cdae8908fbc0fbca28a159ed9d875a588c7df deleted file mode 100644 index 063bae9b..00000000 Binary files a/.git_backup/objects/29/1cdae8908fbc0fbca28a159ed9d875a588c7df and /dev/null differ diff --git a/.git_backup/objects/29/1d11c1f5e1c99560e3bef4721d4febd24cde88 b/.git_backup/objects/29/1d11c1f5e1c99560e3bef4721d4febd24cde88 deleted file mode 100644 index 9a1440dd..00000000 Binary files a/.git_backup/objects/29/1d11c1f5e1c99560e3bef4721d4febd24cde88 and /dev/null differ diff --git a/.git_backup/objects/29/2a614b4420bc99d61b9c1de2fd02c6b04c7a74 b/.git_backup/objects/29/2a614b4420bc99d61b9c1de2fd02c6b04c7a74 deleted file mode 100644 index 0d7d0387..00000000 Binary files a/.git_backup/objects/29/2a614b4420bc99d61b9c1de2fd02c6b04c7a74 and /dev/null differ diff --git a/.git_backup/objects/29/2aba966b3ed6354ac52ed3fb4c336925ead2ab b/.git_backup/objects/29/2aba966b3ed6354ac52ed3fb4c336925ead2ab deleted file mode 100644 index 44905500..00000000 Binary files a/.git_backup/objects/29/2aba966b3ed6354ac52ed3fb4c336925ead2ab and /dev/null differ diff --git a/.git_backup/objects/29/2c8e05a8fa15966e49b06a32cc3d899c5b31e2 b/.git_backup/objects/29/2c8e05a8fa15966e49b06a32cc3d899c5b31e2 deleted file mode 100644 index f189e70b..00000000 Binary files a/.git_backup/objects/29/2c8e05a8fa15966e49b06a32cc3d899c5b31e2 and /dev/null differ diff --git a/.git_backup/objects/29/2d1e2489bfdf6be53b6402282bffb994f9c67d b/.git_backup/objects/29/2d1e2489bfdf6be53b6402282bffb994f9c67d deleted file mode 100644 index 949845c0..00000000 Binary files a/.git_backup/objects/29/2d1e2489bfdf6be53b6402282bffb994f9c67d and /dev/null differ diff --git a/.git_backup/objects/29/3633fddd184bfcbdde86488fb70d7cb8ed18af b/.git_backup/objects/29/3633fddd184bfcbdde86488fb70d7cb8ed18af deleted file mode 100644 index 85c51400..00000000 Binary files a/.git_backup/objects/29/3633fddd184bfcbdde86488fb70d7cb8ed18af and /dev/null differ diff --git a/.git_backup/objects/29/3f387719e8bdcacb075e0de5737894e5dafed3 b/.git_backup/objects/29/3f387719e8bdcacb075e0de5737894e5dafed3 deleted file mode 100644 index 5a7e9170..00000000 Binary files a/.git_backup/objects/29/3f387719e8bdcacb075e0de5737894e5dafed3 and /dev/null differ diff --git a/.git_backup/objects/29/3fff12a4596fbfa7d83cd9419e018e5665d26c b/.git_backup/objects/29/3fff12a4596fbfa7d83cd9419e018e5665d26c deleted file mode 100644 index 4fef146e..00000000 Binary files a/.git_backup/objects/29/3fff12a4596fbfa7d83cd9419e018e5665d26c and /dev/null differ diff --git a/.git_backup/objects/29/468894f828128f4c36660167dd1f9e68e584be b/.git_backup/objects/29/468894f828128f4c36660167dd1f9e68e584be deleted file mode 100644 index 5952bac4..00000000 Binary files a/.git_backup/objects/29/468894f828128f4c36660167dd1f9e68e584be and /dev/null differ diff --git a/.git_backup/objects/29/4f8e7a1d72cdcce808112274c7081a48dfe2c1 b/.git_backup/objects/29/4f8e7a1d72cdcce808112274c7081a48dfe2c1 deleted file mode 100644 index 93d5b7e4..00000000 Binary files a/.git_backup/objects/29/4f8e7a1d72cdcce808112274c7081a48dfe2c1 and /dev/null differ diff --git a/.git_backup/objects/29/52457732b173890ec8b52933d6d1d1a8e3ce24 b/.git_backup/objects/29/52457732b173890ec8b52933d6d1d1a8e3ce24 deleted file mode 100644 index 5e46e719..00000000 Binary files a/.git_backup/objects/29/52457732b173890ec8b52933d6d1d1a8e3ce24 and /dev/null differ diff --git a/.git_backup/objects/29/56614e4b5883e9685d74ee3dfe309d028f0269 b/.git_backup/objects/29/56614e4b5883e9685d74ee3dfe309d028f0269 deleted file mode 100644 index 445f4de5..00000000 Binary files a/.git_backup/objects/29/56614e4b5883e9685d74ee3dfe309d028f0269 and /dev/null differ diff --git a/.git_backup/objects/29/592736238451f5e93e6ad6fd82efb174648519 b/.git_backup/objects/29/592736238451f5e93e6ad6fd82efb174648519 deleted file mode 100644 index 8ef557c8..00000000 Binary files a/.git_backup/objects/29/592736238451f5e93e6ad6fd82efb174648519 and /dev/null differ diff --git a/.git_backup/objects/29/5dc928ba71fc00caa52708ac70097abe6dc3e4 b/.git_backup/objects/29/5dc928ba71fc00caa52708ac70097abe6dc3e4 deleted file mode 100644 index edf271b1..00000000 --- a/.git_backup/objects/29/5dc928ba71fc00caa52708ac70097abe6dc3e4 +++ /dev/null @@ -1,3 +0,0 @@ -xTMo0 ٿkQH2c@kCneia(6%MRۧCa",^黓 -µNBJ@ɏ?]93Pq=_>FFA,76;+Vke1 ;A+q#TJHѡrjn/fSXj =z. Щ 1m=<8*owMXZ=J)0:7mPUءp¦j"YAC[h60Wg|ˮu̢X5T1Lj 9 !wj]Gn 4^GՄŇ!•=`/or>GIfvUubz3 p,Dy~X̞ \ No newline at end of file diff --git a/.git_backup/objects/29/5f08679c3eb95187c0d580dcb7a13f76261e92 b/.git_backup/objects/29/5f08679c3eb95187c0d580dcb7a13f76261e92 deleted file mode 100644 index b6a8fd27..00000000 --- a/.git_backup/objects/29/5f08679c3eb95187c0d580dcb7a13f76261e92 +++ /dev/null @@ -1 +0,0 @@ -xuRj0ݳbp/64r,%]({,(8%$ $KὙx?=<>nia2+Qo U} ̹43zrkB"}Y>uRN ;kܫF)T޽)؃MfzD<4OdRUU/< CxvdH 4I`Ҟ2aD_'kݭ~x]t&W3ɣ68t:~}L۶=:N{}S[.x^>[GtBjo6?Y\Dѽ!Ao(fЃ 9e@?MЗQb0E<\aw.ѩDKpЯh&T86ElkP~@p WvXXM \ No newline at end of file diff --git a/.git_backup/objects/29/603e3cc79cc00be161c04cd0e7c4f551c6302e b/.git_backup/objects/29/603e3cc79cc00be161c04cd0e7c4f551c6302e deleted file mode 100644 index 40daf1eb..00000000 Binary files a/.git_backup/objects/29/603e3cc79cc00be161c04cd0e7c4f551c6302e and /dev/null differ diff --git a/.git_backup/objects/29/639055e45fde79a5d49fffd4f85d73bee99be4 b/.git_backup/objects/29/639055e45fde79a5d49fffd4f85d73bee99be4 deleted file mode 100644 index d52e06f4..00000000 --- a/.git_backup/objects/29/639055e45fde79a5d49fffd4f85d73bee99be4 +++ /dev/null @@ -1,5 +0,0 @@ -xuSKo9ݞN (rX }Z1HZ!Y, -+gk$i$q?=I& 3o=izf jUlUӭ[2CK?D%E8`aۨ%x=>6n3D&߰JF=6}Fl۵P6nS8C9-Hr_G,e,2DY&4=\{&6}\c%G>.sz nl,a25i^WNCZJۼx6 8ԩ R= -N37IHOB[_AU;H2]xjӺ)(9t(ml°sXGbN;ðD;ZYڄ*~96Vz6cO模y{C^蠇O\!cƤjt>qr`7oCa҄~LomuLD*R딺DxϮ/'~ch^#wǀ;:%ܶKJ)EPyk 97̻ЎV¤t-#?D7뒅x:"p -Ʈ K?>]mN0m KP9v2ӂ9|]B ULw(|_>3A@CTTY%Ro'oJ:Wʑow* 0~T<]&=)D)CGZ/v#Bйޣwl/=!"2#T<͂B - '<( \ No newline at end of file diff --git a/.git_backup/objects/29/6598b6279d659f8e0c61272b65553ee2233f40 b/.git_backup/objects/29/6598b6279d659f8e0c61272b65553ee2233f40 deleted file mode 100644 index 3c5302e9..00000000 Binary files a/.git_backup/objects/29/6598b6279d659f8e0c61272b65553ee2233f40 and /dev/null differ diff --git a/.git_backup/objects/29/7006b75f25724db98e06470c033b898615e598 b/.git_backup/objects/29/7006b75f25724db98e06470c033b898615e598 deleted file mode 100644 index df399399..00000000 Binary files a/.git_backup/objects/29/7006b75f25724db98e06470c033b898615e598 and /dev/null differ diff --git a/.git_backup/objects/29/72ecf091e04f753e5c8a60dba9da9948c621fd b/.git_backup/objects/29/72ecf091e04f753e5c8a60dba9da9948c621fd deleted file mode 100644 index af1b92d3..00000000 Binary files a/.git_backup/objects/29/72ecf091e04f753e5c8a60dba9da9948c621fd and /dev/null differ diff --git a/.git_backup/objects/29/7552bc7c6db5ce802071474338ad41b8cb8155 b/.git_backup/objects/29/7552bc7c6db5ce802071474338ad41b8cb8155 deleted file mode 100644 index 1038c022..00000000 Binary files a/.git_backup/objects/29/7552bc7c6db5ce802071474338ad41b8cb8155 and /dev/null differ diff --git a/.git_backup/objects/29/7769149e5f04619838bf3c94f5d6550584b603 b/.git_backup/objects/29/7769149e5f04619838bf3c94f5d6550584b603 deleted file mode 100644 index 7297820f..00000000 Binary files a/.git_backup/objects/29/7769149e5f04619838bf3c94f5d6550584b603 and /dev/null differ diff --git a/.git_backup/objects/29/7d20c695687a39ad22249cda18b0f13f7bef30 b/.git_backup/objects/29/7d20c695687a39ad22249cda18b0f13f7bef30 deleted file mode 100644 index 486ea738..00000000 Binary files a/.git_backup/objects/29/7d20c695687a39ad22249cda18b0f13f7bef30 and /dev/null differ diff --git a/.git_backup/objects/29/83c65b9c8e848619fef3b8dbce3d5f62c7a85b b/.git_backup/objects/29/83c65b9c8e848619fef3b8dbce3d5f62c7a85b deleted file mode 100644 index e66bb94c..00000000 Binary files a/.git_backup/objects/29/83c65b9c8e848619fef3b8dbce3d5f62c7a85b and /dev/null differ diff --git a/.git_backup/objects/29/8a639b51a5dea6daceba6e3cb63a6c76e939ef b/.git_backup/objects/29/8a639b51a5dea6daceba6e3cb63a6c76e939ef deleted file mode 100644 index db0fc782..00000000 Binary files a/.git_backup/objects/29/8a639b51a5dea6daceba6e3cb63a6c76e939ef and /dev/null differ diff --git a/.git_backup/objects/29/8a845e67923597023156d5a6d20ad0f8250c93 b/.git_backup/objects/29/8a845e67923597023156d5a6d20ad0f8250c93 deleted file mode 100644 index a7755063..00000000 Binary files a/.git_backup/objects/29/8a845e67923597023156d5a6d20ad0f8250c93 and /dev/null differ diff --git a/.git_backup/objects/29/908537fbe590328ac586e05f90f3cc24cab9ab b/.git_backup/objects/29/908537fbe590328ac586e05f90f3cc24cab9ab deleted file mode 100644 index 32f15f84..00000000 Binary files a/.git_backup/objects/29/908537fbe590328ac586e05f90f3cc24cab9ab and /dev/null differ diff --git a/.git_backup/objects/29/9144db1d536814b58aca284a6d3fc06ae9be58 b/.git_backup/objects/29/9144db1d536814b58aca284a6d3fc06ae9be58 deleted file mode 100644 index f82d0201..00000000 Binary files a/.git_backup/objects/29/9144db1d536814b58aca284a6d3fc06ae9be58 and /dev/null differ diff --git a/.git_backup/objects/29/9b6bb524e31d6b5f581b5f6d56254c32a0b39e b/.git_backup/objects/29/9b6bb524e31d6b5f581b5f6d56254c32a0b39e deleted file mode 100644 index cd21250c..00000000 Binary files a/.git_backup/objects/29/9b6bb524e31d6b5f581b5f6d56254c32a0b39e and /dev/null differ diff --git a/.git_backup/objects/29/9fed30ab486fa7d3a647c078588edfe5a07a63 b/.git_backup/objects/29/9fed30ab486fa7d3a647c078588edfe5a07a63 deleted file mode 100644 index 0dec28a6..00000000 Binary files a/.git_backup/objects/29/9fed30ab486fa7d3a647c078588edfe5a07a63 and /dev/null differ diff --git a/.git_backup/objects/29/a0805bceb987faeb03b116d8fc4e8daa295039 b/.git_backup/objects/29/a0805bceb987faeb03b116d8fc4e8daa295039 deleted file mode 100644 index be62b957..00000000 --- a/.git_backup/objects/29/a0805bceb987faeb03b116d8fc4e8daa295039 +++ /dev/null @@ -1,4 +0,0 @@ -xVo0޳0&HMLr!6Nh(KayIwٺo ma{gX2]䰕TLyU"lQ9c4\Uw+j 19HL N;L4AѴ3R:H:cͻԍ>tBxd~:EL -*(#\\d4 -M -: ;*vu+P}mTZB*͜RsH/4 5B 5nzwQ{=J؃QaQ4Ycfh:M?ȍ,uב]@j^(uQk5_5ntC󭲋J]]-A\Tօ!$p*]{Nv+՟q%e%H-XxvB@WhFcCi 8-uJgHêL}qS7Gai @S6]3.mj٣TN'IVխ ɕ(/֟gGzp~`Si%MgxLޕu=Y^G.}=S{ʍۅ|TCނSO5t‹ҭz/{Jޟ-1qqZJV de=9?gfA~Om \ No newline at end of file diff --git a/.git_backup/objects/29/a5f3d1eac375e894451124f14c132dcc7e3133 b/.git_backup/objects/29/a5f3d1eac375e894451124f14c132dcc7e3133 deleted file mode 100644 index ff710499..00000000 Binary files a/.git_backup/objects/29/a5f3d1eac375e894451124f14c132dcc7e3133 and /dev/null differ diff --git a/.git_backup/objects/29/aa387e2b04565b61c8b4e77868d453b8714f22 b/.git_backup/objects/29/aa387e2b04565b61c8b4e77868d453b8714f22 deleted file mode 100644 index a0d34c6a..00000000 Binary files a/.git_backup/objects/29/aa387e2b04565b61c8b4e77868d453b8714f22 and /dev/null differ diff --git a/.git_backup/objects/29/ac0b3580e3da272edee763f4e143601677fddb b/.git_backup/objects/29/ac0b3580e3da272edee763f4e143601677fddb deleted file mode 100644 index 2cf67ab8..00000000 Binary files a/.git_backup/objects/29/ac0b3580e3da272edee763f4e143601677fddb and /dev/null differ diff --git a/.git_backup/objects/29/ade0ecebe6e59dd03526e2f8bff1cf7d1cfb39 b/.git_backup/objects/29/ade0ecebe6e59dd03526e2f8bff1cf7d1cfb39 deleted file mode 100644 index 5189dad1..00000000 Binary files a/.git_backup/objects/29/ade0ecebe6e59dd03526e2f8bff1cf7d1cfb39 and /dev/null differ diff --git a/.git_backup/objects/29/bebfc0472cbe8a658d1f2c4be021c4efa1b583 b/.git_backup/objects/29/bebfc0472cbe8a658d1f2c4be021c4efa1b583 deleted file mode 100644 index f0c09f97..00000000 --- a/.git_backup/objects/29/bebfc0472cbe8a658d1f2c4be021c4efa1b583 +++ /dev/null @@ -1 +0,0 @@ -xSn@Yǎ i8p@KBNBae)rԍ[ B #osʉ37N̬C3c7QV==dGbNs~O<Q$dL4o>x (e>0ْіl_1J~ 밓>ԝ.ϊѻ;:*%$J E5Xf.XŖ\5@xp˃*/?nEp^'33M^,%[t?q<Md*DR-()}S#1DKE4ZnT>=\eh]聦h9}\ssپb vWBOvk] _䅜eB t/ v^ \ No newline at end of file diff --git a/.git_backup/objects/29/c5a6a2f04d66091721f661787f1044def31848 b/.git_backup/objects/29/c5a6a2f04d66091721f661787f1044def31848 deleted file mode 100644 index 01abd174..00000000 Binary files a/.git_backup/objects/29/c5a6a2f04d66091721f661787f1044def31848 and /dev/null differ diff --git a/.git_backup/objects/29/cbf91ef79b89971e51db9ddfc3720d8b4db82a b/.git_backup/objects/29/cbf91ef79b89971e51db9ddfc3720d8b4db82a deleted file mode 100644 index dda519e7..00000000 Binary files a/.git_backup/objects/29/cbf91ef79b89971e51db9ddfc3720d8b4db82a and /dev/null differ diff --git a/.git_backup/objects/29/ccd34853da15003d0c83c76ab7338743c9a35c b/.git_backup/objects/29/ccd34853da15003d0c83c76ab7338743c9a35c deleted file mode 100644 index 3851136d..00000000 --- a/.git_backup/objects/29/ccd34853da15003d0c83c76ab7338743c9a35c +++ /dev/null @@ -1,5 +0,0 @@ -xMTAkAئ?xS$(^DTbchdvK -PT)l[kiPm/Ӏ?'&4M';3}7;vXW^ݞ(zt6yCS-W32/Q9& BeD?&wjVA"Et,tT3/jXv-h&P.rY< -l̗(rZ:QL 2lhqS"uq;YLރ5ٶ;}šWɚ}k~[lX=5k~%¦.-`xE<ˌi -Y R/ȴ\.g`9b/wqPl#Ky{-(+ڣA- sdiQjRB7PA!}OiH>&H6%a퐗kAC%S։q+@]+&gS 0C׸pm H6pp!~8x:" I.p5'N! uMN'8광!3'{ v -V$AtІ0ȠpVydfc1uOλX 8;jf{M/O?̝Uxkeusÿ~UW:V3h_*=;VV׭X]]1ktkLѭ1(E'c*>!ύ( \ No newline at end of file diff --git a/.git_backup/objects/29/d65b3ad115d49f1fb800e24cefd9e9a07efad8 b/.git_backup/objects/29/d65b3ad115d49f1fb800e24cefd9e9a07efad8 deleted file mode 100644 index 8cff15d2..00000000 Binary files a/.git_backup/objects/29/d65b3ad115d49f1fb800e24cefd9e9a07efad8 and /dev/null differ diff --git a/.git_backup/objects/29/df0443eef9f3ed43192a850a65a2849a8b8fd8 b/.git_backup/objects/29/df0443eef9f3ed43192a850a65a2849a8b8fd8 deleted file mode 100644 index 7cb85772..00000000 Binary files a/.git_backup/objects/29/df0443eef9f3ed43192a850a65a2849a8b8fd8 and /dev/null differ diff --git a/.git_backup/objects/29/f44b86a81ad00a319130aa3bfaebe7f379d7be b/.git_backup/objects/29/f44b86a81ad00a319130aa3bfaebe7f379d7be deleted file mode 100644 index 0287b6a8..00000000 --- a/.git_backup/objects/29/f44b86a81ad00a319130aa3bfaebe7f379d7be +++ /dev/null @@ -1,2 +0,0 @@ -xE= -@W;ZDPPD+FMI$ <6bn!7T6't}!?5|YxsC5v7Qpd)Cð$H'akSYKՆdb)>(FIQxAJ[%*8F8њVÓwnk=|Ko \ No newline at end of file diff --git a/.git_backup/objects/2a/17a2a8fb002493fff38c7ed059668867768a7e b/.git_backup/objects/2a/17a2a8fb002493fff38c7ed059668867768a7e deleted file mode 100644 index 15169d3e..00000000 Binary files a/.git_backup/objects/2a/17a2a8fb002493fff38c7ed059668867768a7e and /dev/null differ diff --git a/.git_backup/objects/2a/207f8227db83975ff607c1288826336d1b632b b/.git_backup/objects/2a/207f8227db83975ff607c1288826336d1b632b deleted file mode 100644 index 133f661b..00000000 Binary files a/.git_backup/objects/2a/207f8227db83975ff607c1288826336d1b632b and /dev/null differ diff --git a/.git_backup/objects/2a/23289cdf61b87d5b2fe4232289b396ac08cb84 b/.git_backup/objects/2a/23289cdf61b87d5b2fe4232289b396ac08cb84 deleted file mode 100644 index 9333dd14..00000000 Binary files a/.git_backup/objects/2a/23289cdf61b87d5b2fe4232289b396ac08cb84 and /dev/null differ diff --git a/.git_backup/objects/2a/26607c42de1bd55d09508825535f244eb3dd35 b/.git_backup/objects/2a/26607c42de1bd55d09508825535f244eb3dd35 deleted file mode 100644 index 26d4dc13..00000000 Binary files a/.git_backup/objects/2a/26607c42de1bd55d09508825535f244eb3dd35 and /dev/null differ diff --git a/.git_backup/objects/2a/2671374efc40d9264bd0f5078cdd9565d0bbab b/.git_backup/objects/2a/2671374efc40d9264bd0f5078cdd9565d0bbab deleted file mode 100644 index f95822c7..00000000 Binary files a/.git_backup/objects/2a/2671374efc40d9264bd0f5078cdd9565d0bbab and /dev/null differ diff --git a/.git_backup/objects/2a/2c7cb85c456c78f548b915cefd857aa93cf5e0 b/.git_backup/objects/2a/2c7cb85c456c78f548b915cefd857aa93cf5e0 deleted file mode 100644 index 14b98fcb..00000000 Binary files a/.git_backup/objects/2a/2c7cb85c456c78f548b915cefd857aa93cf5e0 and /dev/null differ diff --git a/.git_backup/objects/2a/2e74de2cfaa6cd9f5a58f843a75868a024c15c b/.git_backup/objects/2a/2e74de2cfaa6cd9f5a58f843a75868a024c15c deleted file mode 100644 index d5e5a50d..00000000 Binary files a/.git_backup/objects/2a/2e74de2cfaa6cd9f5a58f843a75868a024c15c and /dev/null differ diff --git a/.git_backup/objects/2a/324ebf77d9d1de0df291b5542874dd095cd572 b/.git_backup/objects/2a/324ebf77d9d1de0df291b5542874dd095cd572 deleted file mode 100644 index a0d3f1bb..00000000 Binary files a/.git_backup/objects/2a/324ebf77d9d1de0df291b5542874dd095cd572 and /dev/null differ diff --git a/.git_backup/objects/2a/36dc0abb80524b18d0cebec0483eeb372f03ff b/.git_backup/objects/2a/36dc0abb80524b18d0cebec0483eeb372f03ff deleted file mode 100644 index df10a2cd..00000000 Binary files a/.git_backup/objects/2a/36dc0abb80524b18d0cebec0483eeb372f03ff and /dev/null differ diff --git a/.git_backup/objects/2a/3d7328aa662864f855172ca4747bd7935ec44e b/.git_backup/objects/2a/3d7328aa662864f855172ca4747bd7935ec44e deleted file mode 100644 index 4784ce43..00000000 Binary files a/.git_backup/objects/2a/3d7328aa662864f855172ca4747bd7935ec44e and /dev/null differ diff --git a/.git_backup/objects/2a/3dadf18caa3dc96a25af884803b92307ed993f b/.git_backup/objects/2a/3dadf18caa3dc96a25af884803b92307ed993f deleted file mode 100644 index 7dd3890b..00000000 Binary files a/.git_backup/objects/2a/3dadf18caa3dc96a25af884803b92307ed993f and /dev/null differ diff --git a/.git_backup/objects/2a/3e7d298f393ed8532e4f11913635efc94cb329 b/.git_backup/objects/2a/3e7d298f393ed8532e4f11913635efc94cb329 deleted file mode 100644 index 8ad4bb74..00000000 Binary files a/.git_backup/objects/2a/3e7d298f393ed8532e4f11913635efc94cb329 and /dev/null differ diff --git a/.git_backup/objects/2a/4df88f3b5159253a993a6baa74934e258812b0 b/.git_backup/objects/2a/4df88f3b5159253a993a6baa74934e258812b0 deleted file mode 100644 index 79ec8213..00000000 Binary files a/.git_backup/objects/2a/4df88f3b5159253a993a6baa74934e258812b0 and /dev/null differ diff --git a/.git_backup/objects/2a/5051b2982bb8b41ba6290e06afc1b134c268bb b/.git_backup/objects/2a/5051b2982bb8b41ba6290e06afc1b134c268bb deleted file mode 100644 index dc0ddc7a..00000000 Binary files a/.git_backup/objects/2a/5051b2982bb8b41ba6290e06afc1b134c268bb and /dev/null differ diff --git a/.git_backup/objects/2a/61fddb6e899f712b7935a1ff20285bd3d97a53 b/.git_backup/objects/2a/61fddb6e899f712b7935a1ff20285bd3d97a53 deleted file mode 100644 index d8b8ce73..00000000 Binary files a/.git_backup/objects/2a/61fddb6e899f712b7935a1ff20285bd3d97a53 and /dev/null differ diff --git a/.git_backup/objects/2a/63c8d7bcb1a79ba4e092436df5757c1ef94d67 b/.git_backup/objects/2a/63c8d7bcb1a79ba4e092436df5757c1ef94d67 deleted file mode 100644 index 5ab6a556..00000000 Binary files a/.git_backup/objects/2a/63c8d7bcb1a79ba4e092436df5757c1ef94d67 and /dev/null differ diff --git a/.git_backup/objects/2a/68383481a21851125635df590accfae2247e4c b/.git_backup/objects/2a/68383481a21851125635df590accfae2247e4c deleted file mode 100644 index bbbbb1bb..00000000 Binary files a/.git_backup/objects/2a/68383481a21851125635df590accfae2247e4c and /dev/null differ diff --git a/.git_backup/objects/2a/6b4f8117f496ae689c725e81bfef2084fa36dc b/.git_backup/objects/2a/6b4f8117f496ae689c725e81bfef2084fa36dc deleted file mode 100644 index e555ff3f..00000000 Binary files a/.git_backup/objects/2a/6b4f8117f496ae689c725e81bfef2084fa36dc and /dev/null differ diff --git a/.git_backup/objects/2a/76eb92120e714199a31b82d941df713fb4088f b/.git_backup/objects/2a/76eb92120e714199a31b82d941df713fb4088f deleted file mode 100644 index 2f06981b..00000000 Binary files a/.git_backup/objects/2a/76eb92120e714199a31b82d941df713fb4088f and /dev/null differ diff --git a/.git_backup/objects/2a/81dab012155a1ef7248893e09e504af2d36c5e b/.git_backup/objects/2a/81dab012155a1ef7248893e09e504af2d36c5e deleted file mode 100644 index 1e840fd4..00000000 Binary files a/.git_backup/objects/2a/81dab012155a1ef7248893e09e504af2d36c5e and /dev/null differ diff --git a/.git_backup/objects/2a/8d125f99694dceb65bf6827e1a430cb99c2a70 b/.git_backup/objects/2a/8d125f99694dceb65bf6827e1a430cb99c2a70 deleted file mode 100644 index f625c562..00000000 Binary files a/.git_backup/objects/2a/8d125f99694dceb65bf6827e1a430cb99c2a70 and /dev/null differ diff --git a/.git_backup/objects/2a/965f595ff0756002e2a2c79da551fa8c8fff25 b/.git_backup/objects/2a/965f595ff0756002e2a2c79da551fa8c8fff25 deleted file mode 100644 index ac506a76..00000000 Binary files a/.git_backup/objects/2a/965f595ff0756002e2a2c79da551fa8c8fff25 and /dev/null differ diff --git a/.git_backup/objects/2a/9727de695e5587a786f1906e03419682542942 b/.git_backup/objects/2a/9727de695e5587a786f1906e03419682542942 deleted file mode 100644 index e4dc9cda..00000000 Binary files a/.git_backup/objects/2a/9727de695e5587a786f1906e03419682542942 and /dev/null differ diff --git a/.git_backup/objects/2a/98f48917f8f275e541eeac5ef1fe741c40bb0b b/.git_backup/objects/2a/98f48917f8f275e541eeac5ef1fe741c40bb0b deleted file mode 100644 index 2a3b1065..00000000 Binary files a/.git_backup/objects/2a/98f48917f8f275e541eeac5ef1fe741c40bb0b and /dev/null differ diff --git a/.git_backup/objects/2a/9b58d1bf322938e9344d0cbacfaa79674fcf0e b/.git_backup/objects/2a/9b58d1bf322938e9344d0cbacfaa79674fcf0e deleted file mode 100644 index 99875f0e..00000000 --- a/.git_backup/objects/2a/9b58d1bf322938e9344d0cbacfaa79674fcf0e +++ /dev/null @@ -1,2 +0,0 @@ -xR;k0_qxAjCl]d(ތ1J}KV$_Jڴj=/ٲ+i 3ssg!OY~h93}XTn`[ܖVnSFH'w`WzO{wi; 򐆶]NXK{<=6E6&ͧpgZ?>b[!*kdw|o:]1d?)u&NI-+܎L¢6#\ vDА.܇;fE4|䚀gJUV$PIQUB(2"c&d,/y-GՉl=ʇzU"$Xa^iCt}|] -` uUEV8?JqɒRl UYdJW"f5lįi"5ku" -sO!gy<*x+ڐF6ˊbJ݈ 71p6lӲmDMFARܮvFk -Cx Ğd4PэbZd}}GD<1*F @$ hPg,Q?JΓ\wTma,aScBU\Q {trTQu\JO~Q=6ǘF \ No newline at end of file diff --git a/.git_backup/objects/2b/8cde820a30fc01849dfcc618af9fb2e1821568 b/.git_backup/objects/2b/8cde820a30fc01849dfcc618af9fb2e1821568 deleted file mode 100644 index 970dde5a..00000000 Binary files a/.git_backup/objects/2b/8cde820a30fc01849dfcc618af9fb2e1821568 and /dev/null differ diff --git a/.git_backup/objects/2b/9ab34e0afacda4c632d678dc0fdd859329c738 b/.git_backup/objects/2b/9ab34e0afacda4c632d678dc0fdd859329c738 deleted file mode 100644 index dc475744..00000000 --- a/.git_backup/objects/2b/9ab34e0afacda4c632d678dc0fdd859329c738 +++ /dev/null @@ -1,2 +0,0 @@ -xTKo03baCE؆ _1n-0Þ ְzxv-hۡ9lb]oB:ɽ$dR9h3Yѡ9:Jx_~!腠;6aD@dYUqcCB,3Mx:Hld4x((,l $Z] sc]mO7 :b_ -4)MCWc`1.%}ތ9w80SCT¾@*T61SWuSge' )rW!V& e^{~.U'􁻔-*U{ΉX>q%7p@q]oΆ!ۿT& ^y+;;et-Ǎ>h'q(OgzNSBtJ \ No newline at end of file diff --git a/.git_backup/objects/2b/a4f95d9382828a3658a9a9834afd1118f729c0 b/.git_backup/objects/2b/a4f95d9382828a3658a9a9834afd1118f729c0 deleted file mode 100644 index bc0cd277..00000000 Binary files a/.git_backup/objects/2b/a4f95d9382828a3658a9a9834afd1118f729c0 and /dev/null differ diff --git a/.git_backup/objects/2b/a60999aa36d9284467687dc180a52495c94f83 b/.git_backup/objects/2b/a60999aa36d9284467687dc180a52495c94f83 deleted file mode 100644 index be8a4f90..00000000 Binary files a/.git_backup/objects/2b/a60999aa36d9284467687dc180a52495c94f83 and /dev/null differ diff --git a/.git_backup/objects/2b/aeaae00ca593c169dbdeca9738208c12d0059b b/.git_backup/objects/2b/aeaae00ca593c169dbdeca9738208c12d0059b deleted file mode 100644 index c4423b71..00000000 Binary files a/.git_backup/objects/2b/aeaae00ca593c169dbdeca9738208c12d0059b and /dev/null differ diff --git a/.git_backup/objects/2b/b14efad1ce709498262abf18a77d8b65689581 b/.git_backup/objects/2b/b14efad1ce709498262abf18a77d8b65689581 deleted file mode 100644 index 4c97daf9..00000000 Binary files a/.git_backup/objects/2b/b14efad1ce709498262abf18a77d8b65689581 and /dev/null differ diff --git a/.git_backup/objects/2b/b9ba2a397be96cea63fa26309088f632e04f7d b/.git_backup/objects/2b/b9ba2a397be96cea63fa26309088f632e04f7d deleted file mode 100644 index ea1ff712..00000000 Binary files a/.git_backup/objects/2b/b9ba2a397be96cea63fa26309088f632e04f7d and /dev/null differ diff --git a/.git_backup/objects/2b/bca9b91695c61e352d626ee85225288e9999fe b/.git_backup/objects/2b/bca9b91695c61e352d626ee85225288e9999fe deleted file mode 100644 index c88a9dca..00000000 Binary files a/.git_backup/objects/2b/bca9b91695c61e352d626ee85225288e9999fe and /dev/null differ diff --git a/.git_backup/objects/2b/bd10251b96bd880628b5e476d430fab3d92fa9 b/.git_backup/objects/2b/bd10251b96bd880628b5e476d430fab3d92fa9 deleted file mode 100644 index 0246fcd4..00000000 Binary files a/.git_backup/objects/2b/bd10251b96bd880628b5e476d430fab3d92fa9 and /dev/null differ diff --git a/.git_backup/objects/2b/c49dcf706f7ebb389e7aaf71ea44b17c1ae005 b/.git_backup/objects/2b/c49dcf706f7ebb389e7aaf71ea44b17c1ae005 deleted file mode 100644 index 10fd0584..00000000 Binary files a/.git_backup/objects/2b/c49dcf706f7ebb389e7aaf71ea44b17c1ae005 and /dev/null differ diff --git a/.git_backup/objects/2b/c6a8f98b2ff89f1347f33cc6ea265da801dfc0 b/.git_backup/objects/2b/c6a8f98b2ff89f1347f33cc6ea265da801dfc0 deleted file mode 100644 index 18e63ad9..00000000 Binary files a/.git_backup/objects/2b/c6a8f98b2ff89f1347f33cc6ea265da801dfc0 and /dev/null differ diff --git a/.git_backup/objects/2b/cc933c7e2d27c66dca7e13908563cf8503986f b/.git_backup/objects/2b/cc933c7e2d27c66dca7e13908563cf8503986f deleted file mode 100644 index 9e264874..00000000 Binary files a/.git_backup/objects/2b/cc933c7e2d27c66dca7e13908563cf8503986f and /dev/null differ diff --git a/.git_backup/objects/2b/d0a7724f4375a5272cb7c101be5b6a582dc031 b/.git_backup/objects/2b/d0a7724f4375a5272cb7c101be5b6a582dc031 deleted file mode 100644 index 8bccb38b..00000000 Binary files a/.git_backup/objects/2b/d0a7724f4375a5272cb7c101be5b6a582dc031 and /dev/null differ diff --git a/.git_backup/objects/2b/d0d11888163361292b5eddd1d9062a26f81a6b b/.git_backup/objects/2b/d0d11888163361292b5eddd1d9062a26f81a6b deleted file mode 100644 index a4e5af44..00000000 Binary files a/.git_backup/objects/2b/d0d11888163361292b5eddd1d9062a26f81a6b and /dev/null differ diff --git a/.git_backup/objects/2b/d11bfc245bec7e2e1bb38908edb9d9287cb0da b/.git_backup/objects/2b/d11bfc245bec7e2e1bb38908edb9d9287cb0da deleted file mode 100644 index a3172a10..00000000 Binary files a/.git_backup/objects/2b/d11bfc245bec7e2e1bb38908edb9d9287cb0da and /dev/null differ diff --git a/.git_backup/objects/2b/d1cb3da0f5a11024f1609b09ae68645e6ae75c b/.git_backup/objects/2b/d1cb3da0f5a11024f1609b09ae68645e6ae75c deleted file mode 100644 index dcb17810..00000000 Binary files a/.git_backup/objects/2b/d1cb3da0f5a11024f1609b09ae68645e6ae75c and /dev/null differ diff --git a/.git_backup/objects/2b/d70ec48bb34a3860f2d1cc89dee0a4cd553b47 b/.git_backup/objects/2b/d70ec48bb34a3860f2d1cc89dee0a4cd553b47 deleted file mode 100644 index 4f2097a8..00000000 Binary files a/.git_backup/objects/2b/d70ec48bb34a3860f2d1cc89dee0a4cd553b47 and /dev/null differ diff --git a/.git_backup/objects/2b/d7ba13e5bac5832ad4d8bc302f57913f653325 b/.git_backup/objects/2b/d7ba13e5bac5832ad4d8bc302f57913f653325 deleted file mode 100644 index fd1e28db..00000000 Binary files a/.git_backup/objects/2b/d7ba13e5bac5832ad4d8bc302f57913f653325 and /dev/null differ diff --git a/.git_backup/objects/2b/deb4da5f70fafc4295beca62f7dd354ba78ec0 b/.git_backup/objects/2b/deb4da5f70fafc4295beca62f7dd354ba78ec0 deleted file mode 100644 index d734aa00..00000000 Binary files a/.git_backup/objects/2b/deb4da5f70fafc4295beca62f7dd354ba78ec0 and /dev/null differ diff --git a/.git_backup/objects/2b/e2b4e31292d8364b404f16ef4c654f9d89681a b/.git_backup/objects/2b/e2b4e31292d8364b404f16ef4c654f9d89681a deleted file mode 100644 index e7fe1306..00000000 Binary files a/.git_backup/objects/2b/e2b4e31292d8364b404f16ef4c654f9d89681a and /dev/null differ diff --git a/.git_backup/objects/2b/e42fa436e706be28a0c449550349764af40b71 b/.git_backup/objects/2b/e42fa436e706be28a0c449550349764af40b71 deleted file mode 100644 index 475b87e4..00000000 Binary files a/.git_backup/objects/2b/e42fa436e706be28a0c449550349764af40b71 and /dev/null differ diff --git a/.git_backup/objects/2b/f200b0c73d36837a71af24dffdfac953186646 b/.git_backup/objects/2b/f200b0c73d36837a71af24dffdfac953186646 deleted file mode 100644 index c3f6d716..00000000 Binary files a/.git_backup/objects/2b/f200b0c73d36837a71af24dffdfac953186646 and /dev/null differ diff --git a/.git_backup/objects/2b/f24a507c4b16fc2fe05be94c8706333829152b b/.git_backup/objects/2b/f24a507c4b16fc2fe05be94c8706333829152b deleted file mode 100644 index b5791e9c..00000000 Binary files a/.git_backup/objects/2b/f24a507c4b16fc2fe05be94c8706333829152b and /dev/null differ diff --git a/.git_backup/objects/2b/f476a02d8a6ed90c663a6090d969b68b7fb342 b/.git_backup/objects/2b/f476a02d8a6ed90c663a6090d969b68b7fb342 deleted file mode 100644 index baf4179d..00000000 Binary files a/.git_backup/objects/2b/f476a02d8a6ed90c663a6090d969b68b7fb342 and /dev/null differ diff --git a/.git_backup/objects/2b/fb3f1436085b12e4d75c6187115fd0d84b5779 b/.git_backup/objects/2b/fb3f1436085b12e4d75c6187115fd0d84b5779 deleted file mode 100644 index 50d4940a..00000000 --- a/.git_backup/objects/2b/fb3f1436085b12e4d75c6187115fd0d84b5779 +++ /dev/null @@ -1,2 +0,0 @@ -xRM0ٿbl/FR(cBƉ}UI;jl$?yf4'NAxe OS7a .dxBHX^W%6*Ƥt\5rcju?37d'4v4" 䅕œ`*$9n/!+„TfaM[~Шg'=VUeDM`i NƑ^bY^Mu8m[!HPH3:l+E*&XO:箏UU[+l8 -t6br)⤱i5, ȬyB͂agLٞF(Gi 4QK2:ޤ4VEʝ(urhc:jxFL=fnƇ&)!oBGlFa;lrޮ$ wPVx=PjK3ۗnAT -"Ͳ9 ]9/;C] \ No newline at end of file diff --git a/.git_backup/objects/2b/fd85134fd9965db82b293eaebd54b10d668514 b/.git_backup/objects/2b/fd85134fd9965db82b293eaebd54b10d668514 deleted file mode 100644 index 12d5dbf0..00000000 Binary files a/.git_backup/objects/2b/fd85134fd9965db82b293eaebd54b10d668514 and /dev/null differ diff --git a/.git_backup/objects/2c/0134c0e16a723407fef9622af2b3840e3834d9 b/.git_backup/objects/2c/0134c0e16a723407fef9622af2b3840e3834d9 deleted file mode 100644 index 76d9a5f8..00000000 Binary files a/.git_backup/objects/2c/0134c0e16a723407fef9622af2b3840e3834d9 and /dev/null differ diff --git a/.git_backup/objects/2c/02bfad166895bf5edf8dbcdd29dd812a87890d b/.git_backup/objects/2c/02bfad166895bf5edf8dbcdd29dd812a87890d deleted file mode 100644 index 98fb0bcd..00000000 Binary files a/.git_backup/objects/2c/02bfad166895bf5edf8dbcdd29dd812a87890d and /dev/null differ diff --git a/.git_backup/objects/2c/035fcf4ea64cde23cfcdcd713d5d632811e92a b/.git_backup/objects/2c/035fcf4ea64cde23cfcdcd713d5d632811e92a deleted file mode 100644 index 8f6001e0..00000000 Binary files a/.git_backup/objects/2c/035fcf4ea64cde23cfcdcd713d5d632811e92a and /dev/null differ diff --git a/.git_backup/objects/2c/06185a0b587d51f00502007073824bebd8f8d2 b/.git_backup/objects/2c/06185a0b587d51f00502007073824bebd8f8d2 deleted file mode 100644 index 91f17e05..00000000 Binary files a/.git_backup/objects/2c/06185a0b587d51f00502007073824bebd8f8d2 and /dev/null differ diff --git a/.git_backup/objects/2c/0a74328cd4659725bda74a24dfc0b0235d1f22 b/.git_backup/objects/2c/0a74328cd4659725bda74a24dfc0b0235d1f22 deleted file mode 100644 index 29c9464d..00000000 Binary files a/.git_backup/objects/2c/0a74328cd4659725bda74a24dfc0b0235d1f22 and /dev/null differ diff --git a/.git_backup/objects/2c/17901fa4fcec51ebf70246fc49304c3f1298c1 b/.git_backup/objects/2c/17901fa4fcec51ebf70246fc49304c3f1298c1 deleted file mode 100644 index bdfc20c0..00000000 Binary files a/.git_backup/objects/2c/17901fa4fcec51ebf70246fc49304c3f1298c1 and /dev/null differ diff --git a/.git_backup/objects/2c/1a3abbe5ee143931b63d0abdd266e9107235b9 b/.git_backup/objects/2c/1a3abbe5ee143931b63d0abdd266e9107235b9 deleted file mode 100644 index 34ab40a5..00000000 Binary files a/.git_backup/objects/2c/1a3abbe5ee143931b63d0abdd266e9107235b9 and /dev/null differ diff --git a/.git_backup/objects/2c/21854408f94aea8f9a0fd86a562e6e0f59b012 b/.git_backup/objects/2c/21854408f94aea8f9a0fd86a562e6e0f59b012 deleted file mode 100644 index de07e1cd..00000000 Binary files a/.git_backup/objects/2c/21854408f94aea8f9a0fd86a562e6e0f59b012 and /dev/null differ diff --git a/.git_backup/objects/2c/25baea54a9b5b146ebf849acd641efba6d34e6 b/.git_backup/objects/2c/25baea54a9b5b146ebf849acd641efba6d34e6 deleted file mode 100644 index e8083d19..00000000 Binary files a/.git_backup/objects/2c/25baea54a9b5b146ebf849acd641efba6d34e6 and /dev/null differ diff --git a/.git_backup/objects/2c/2c3435bc1f1789bda2d45a3d62f122e6c3916e b/.git_backup/objects/2c/2c3435bc1f1789bda2d45a3d62f122e6c3916e deleted file mode 100644 index 438aa9c2..00000000 Binary files a/.git_backup/objects/2c/2c3435bc1f1789bda2d45a3d62f122e6c3916e and /dev/null differ diff --git a/.git_backup/objects/2c/347d965bbf7353a6a4e81ca955341f8041b6de b/.git_backup/objects/2c/347d965bbf7353a6a4e81ca955341f8041b6de deleted file mode 100644 index bff30b5e..00000000 --- a/.git_backup/objects/2c/347d965bbf7353a6a4e81ca955341f8041b6de +++ /dev/null @@ -1,2 +0,0 @@ -xSn@heؒ$BiO(|AnYqӓ1/|;ޠӨYUFrnߌf5tll<Ђ'H/Qh:CkH\j{OhYX!~(#TdYRaF}ۼk$u~Q?UO]QjoK.b! -[|Gn/a-5SXtp$PJh0 A$fT !VG7@28Zyo &tb8\:@m@6ZNTlhXNJ#xfo>#R ިs|`$Yn:3pevjp2;kϔUٍLI:DwXޜ_lsv~G<j_LhoJ2N&45=օ\?k[4V88JDa$R`ms!4m7{>gýB^?T<ɚQ<<;YyRe_yH}'Ah墖45KJr X(xЃEWTꕒ.!˚aL25#E Ӻ V0.Θ% ̳.w{'|("MU\pe[ 2 \ No newline at end of file diff --git a/.git_backup/objects/2c/426462bd34e00f9a0b04e01fb124784c2afb7b b/.git_backup/objects/2c/426462bd34e00f9a0b04e01fb124784c2afb7b deleted file mode 100644 index 8474b577..00000000 Binary files a/.git_backup/objects/2c/426462bd34e00f9a0b04e01fb124784c2afb7b and /dev/null differ diff --git a/.git_backup/objects/2c/46ed2dd5a6f346831236245a96cc3f58fb22d5 b/.git_backup/objects/2c/46ed2dd5a6f346831236245a96cc3f58fb22d5 deleted file mode 100644 index b18c0965..00000000 Binary files a/.git_backup/objects/2c/46ed2dd5a6f346831236245a96cc3f58fb22d5 and /dev/null differ diff --git a/.git_backup/objects/2c/4d55099f0e84e03615c483d537bc797c022e42 b/.git_backup/objects/2c/4d55099f0e84e03615c483d537bc797c022e42 deleted file mode 100644 index eeb88e8d..00000000 Binary files a/.git_backup/objects/2c/4d55099f0e84e03615c483d537bc797c022e42 and /dev/null differ diff --git a/.git_backup/objects/2c/516003bbfefa8e4c305c39e83a63554a89e75f b/.git_backup/objects/2c/516003bbfefa8e4c305c39e83a63554a89e75f deleted file mode 100644 index eba16a04..00000000 Binary files a/.git_backup/objects/2c/516003bbfefa8e4c305c39e83a63554a89e75f and /dev/null differ diff --git a/.git_backup/objects/2c/5863547d12cccb7306fc1dfd0114050ea4f7c5 b/.git_backup/objects/2c/5863547d12cccb7306fc1dfd0114050ea4f7c5 deleted file mode 100644 index 8790c895..00000000 --- a/.git_backup/objects/2c/5863547d12cccb7306fc1dfd0114050ea4f7c5 +++ /dev/null @@ -1,3 +0,0 @@ -xSo0w$>a\+۲MU/qBJco4v&u?_wignx]Mkny\|cDe"z@a$Vh *XJ3 $) ]a! |޹`Ղ˞Fu -汸!ʬ\!&BaC -HጄL0a 1\Vj+ͫcvy; kzC?0Pө5Pfؑ}J-28_IDڥz˸!4{'-?*TK@WrGO-s5ZZpjݨ)R*ryi1.R2B\Aݶ~&q>EЍwYҊJpԑ68= &/$ϲXN;#Et J5k3~~“Ct^:Cjѯjg!F u]Y;{ ؇iWk^ t5VӇc66`Oՠ`! CkjaaaimXM:eڿ;5\q^9rQc/[Ƽ]5^Fy(+ ݢ|37O/2_ht,8x5yGK \ No newline at end of file diff --git a/.git_backup/objects/2c/5973749df1658ef4acf72163567205c87704d3 b/.git_backup/objects/2c/5973749df1658ef4acf72163567205c87704d3 deleted file mode 100644 index 1f4197fc..00000000 Binary files a/.git_backup/objects/2c/5973749df1658ef4acf72163567205c87704d3 and /dev/null differ diff --git a/.git_backup/objects/2c/5c9776244701d37ad565270f88990eea00f649 b/.git_backup/objects/2c/5c9776244701d37ad565270f88990eea00f649 deleted file mode 100644 index d102240e..00000000 Binary files a/.git_backup/objects/2c/5c9776244701d37ad565270f88990eea00f649 and /dev/null differ diff --git a/.git_backup/objects/2c/60d333620763c2e83e973f3655017f81943a84 b/.git_backup/objects/2c/60d333620763c2e83e973f3655017f81943a84 deleted file mode 100644 index 0ce9af7b..00000000 Binary files a/.git_backup/objects/2c/60d333620763c2e83e973f3655017f81943a84 and /dev/null differ diff --git a/.git_backup/objects/2c/6198fa675fe81ec38dc3b2a4596df16d002c3f b/.git_backup/objects/2c/6198fa675fe81ec38dc3b2a4596df16d002c3f deleted file mode 100644 index a71cd148..00000000 Binary files a/.git_backup/objects/2c/6198fa675fe81ec38dc3b2a4596df16d002c3f and /dev/null differ diff --git a/.git_backup/objects/2c/6d6469b1f96af0febd8d5e8f2e3c51fc117047 b/.git_backup/objects/2c/6d6469b1f96af0febd8d5e8f2e3c51fc117047 deleted file mode 100644 index 31f0d6b0..00000000 Binary files a/.git_backup/objects/2c/6d6469b1f96af0febd8d5e8f2e3c51fc117047 and /dev/null differ diff --git a/.git_backup/objects/2c/6e7439ee0efdeae200bb6906266b2ba8bd1aba b/.git_backup/objects/2c/6e7439ee0efdeae200bb6906266b2ba8bd1aba deleted file mode 100644 index 0180484f..00000000 Binary files a/.git_backup/objects/2c/6e7439ee0efdeae200bb6906266b2ba8bd1aba and /dev/null differ diff --git a/.git_backup/objects/2c/71e371634cf239ffca29e986eae2f7dc239f4f b/.git_backup/objects/2c/71e371634cf239ffca29e986eae2f7dc239f4f deleted file mode 100644 index 277d1f7c..00000000 Binary files a/.git_backup/objects/2c/71e371634cf239ffca29e986eae2f7dc239f4f and /dev/null differ diff --git a/.git_backup/objects/2c/7826eeacdb456e5290cafba343703c7596d191 b/.git_backup/objects/2c/7826eeacdb456e5290cafba343703c7596d191 deleted file mode 100644 index 856da669..00000000 --- a/.git_backup/objects/2c/7826eeacdb456e5290cafba343703c7596d191 +++ /dev/null @@ -1,2 +0,0 @@ -xM -0 s*i1dW]Њ.ܶ[]cG*' \ No newline at end of file diff --git a/.git_backup/objects/2c/859681b05e4e3f8026d3d1d6e8e01f4962a998 b/.git_backup/objects/2c/859681b05e4e3f8026d3d1d6e8e01f4962a998 deleted file mode 100644 index a896eed8..00000000 --- a/.git_backup/objects/2c/859681b05e4e3f8026d3d1d6e8e01f4962a998 +++ /dev/null @@ -1,4 +0,0 @@ -xUSJBQlV  PXi"Jo̙ 9׹=޸'Qzqs]b*M7TӒ -#ke֯y"Nhj+OVcZl-\6'•FKQm JR ^.C /ќr" -i͗0w]FE9 qJ\.nC\ƨҋkND\z" $ z,0l5S,%Y%!'g114XI5CqaUx3oY$"V\U8$v,I=m%?/m1Zf~ w.y W/oaQR -/yvW/LSYۗ /=\cYNV4KHlHNiY'0w3oC@lq ]?jQ-"Le[6vLMYYJNHFp@ _-Է{x[ME܇a^,DIszĹq |OpQXYE; \ No newline at end of file diff --git a/.git_backup/objects/2c/f10909f5cd5ee27d7cc23cbce3e47a51665212 b/.git_backup/objects/2c/f10909f5cd5ee27d7cc23cbce3e47a51665212 deleted file mode 100644 index 8552f16b..00000000 --- a/.git_backup/objects/2c/f10909f5cd5ee27d7cc23cbce3e47a51665212 +++ /dev/null @@ -1 +0,0 @@ -xmRMO1b0놘` eQtwh춵,{g#v:oޛk.uۋ*DemEm*q^~Bձ/䉠p eB{(qPay}Tufҷv_Y G6i S]npA<xle1hc`9w輥'ŭCV+VhX} Ǹ+:jKQ1=!/ *uῲ.f̤DFͣXȂI:זW|Ear'l*7RB`!x2l<%dz(,@:\y%M{@ Cf}pѼ \ No newline at end of file diff --git a/.git_backup/objects/2c/f3d959acb48c91559d3ef8b6e1511ac156bb1b b/.git_backup/objects/2c/f3d959acb48c91559d3ef8b6e1511ac156bb1b deleted file mode 100644 index c65ef081..00000000 Binary files a/.git_backup/objects/2c/f3d959acb48c91559d3ef8b6e1511ac156bb1b and /dev/null differ diff --git a/.git_backup/objects/2d/0499d9070d782bb0bdc3a2087143002e0136fe b/.git_backup/objects/2d/0499d9070d782bb0bdc3a2087143002e0136fe deleted file mode 100644 index 2cef8d99..00000000 Binary files a/.git_backup/objects/2d/0499d9070d782bb0bdc3a2087143002e0136fe and /dev/null differ diff --git a/.git_backup/objects/2d/05176d20f5f76fb0414fbd860524e81648ad98 b/.git_backup/objects/2d/05176d20f5f76fb0414fbd860524e81648ad98 deleted file mode 100644 index 5e13e7bf..00000000 Binary files a/.git_backup/objects/2d/05176d20f5f76fb0414fbd860524e81648ad98 and /dev/null differ diff --git a/.git_backup/objects/2d/0540c9fbef00892f17b3cfbd6e0851d1fe6aeb b/.git_backup/objects/2d/0540c9fbef00892f17b3cfbd6e0851d1fe6aeb deleted file mode 100644 index b458fd39..00000000 Binary files a/.git_backup/objects/2d/0540c9fbef00892f17b3cfbd6e0851d1fe6aeb and /dev/null differ diff --git a/.git_backup/objects/2d/13142457df95d6005cff2aee5ab842103ea65a b/.git_backup/objects/2d/13142457df95d6005cff2aee5ab842103ea65a deleted file mode 100644 index 9429be9c..00000000 Binary files a/.git_backup/objects/2d/13142457df95d6005cff2aee5ab842103ea65a and /dev/null differ diff --git a/.git_backup/objects/2d/133bec4b3e6ccab74ef0d5ab8eb30d0c05e0d3 b/.git_backup/objects/2d/133bec4b3e6ccab74ef0d5ab8eb30d0c05e0d3 deleted file mode 100644 index 6815013f..00000000 Binary files a/.git_backup/objects/2d/133bec4b3e6ccab74ef0d5ab8eb30d0c05e0d3 and /dev/null differ diff --git a/.git_backup/objects/2d/1da3ae3d6f9c6f92a8ddf01c2ff51ae28e4de2 b/.git_backup/objects/2d/1da3ae3d6f9c6f92a8ddf01c2ff51ae28e4de2 deleted file mode 100644 index 057f154d..00000000 --- a/.git_backup/objects/2d/1da3ae3d6f9c6f92a8ddf01c2ff51ae28e4de2 +++ /dev/null @@ -1,3 +0,0 @@ -xKqܾhA('XBin9#;]A 2.AI'ŕt DY[Ō& - -VD~ezܧRxǫ]xY>n_ϫr֗f|G^/Q.ډ3|OO|h7ӓΛ!@Q/U3{"gZT͖GՋ+z.{}jN͛϶'i'ҡ:4\^U7a!mKc_7I2uLrv5v ƆBS7Ӵzм%_6V}nR-FO ҙu&sc 渎Dc0ք1:7*+s%9Y܇HρNͼWC6DvDDD6EvEEE6FvF^+ x 4NV x$ҙWZCzCCCCCJ^iiw G \ No newline at end of file diff --git a/.git_backup/objects/2d/251166f1f75a9de09e272126731537a20b0e8c b/.git_backup/objects/2d/251166f1f75a9de09e272126731537a20b0e8c deleted file mode 100644 index d9fba65f..00000000 --- a/.git_backup/objects/2d/251166f1f75a9de09e272126731537a20b0e8c +++ /dev/null @@ -1,4 +0,0 @@ -xJ@])kQ{ԎmiJ+؅*h7BeVr3wBf1sǴ%`XF O&:L:lj)*2y;SN"$FhESaH֒}AW3A"jL NgkʱȘAB)W\k2bAv --9Up.3.]j -GcL?Rc"KTkB#clj׆i)+ЕHn(Yڏ@v3c;q'$ v2/C!X - ` 0 EKOV- 6trUH~ґ7/ھD 7[ \ No newline at end of file diff --git a/.git_backup/objects/2d/262a3306222bd79f682b09763b0bd2b90ba8fe b/.git_backup/objects/2d/262a3306222bd79f682b09763b0bd2b90ba8fe deleted file mode 100644 index 1ae0d10c..00000000 Binary files a/.git_backup/objects/2d/262a3306222bd79f682b09763b0bd2b90ba8fe and /dev/null differ diff --git a/.git_backup/objects/2d/292c2f062cd80cd108aac503eae7b635ceec8d b/.git_backup/objects/2d/292c2f062cd80cd108aac503eae7b635ceec8d deleted file mode 100644 index 664dbff8..00000000 Binary files a/.git_backup/objects/2d/292c2f062cd80cd108aac503eae7b635ceec8d and /dev/null differ diff --git a/.git_backup/objects/2d/3481893a2a03772ebd71d4dce476e9f504f1ad b/.git_backup/objects/2d/3481893a2a03772ebd71d4dce476e9f504f1ad deleted file mode 100644 index 37af37d0..00000000 Binary files a/.git_backup/objects/2d/3481893a2a03772ebd71d4dce476e9f504f1ad and /dev/null differ diff --git a/.git_backup/objects/2d/3623de23e505124cc4f9d5290095dede694e19 b/.git_backup/objects/2d/3623de23e505124cc4f9d5290095dede694e19 deleted file mode 100644 index ada2056a..00000000 Binary files a/.git_backup/objects/2d/3623de23e505124cc4f9d5290095dede694e19 and /dev/null differ diff --git a/.git_backup/objects/2d/372721d217c632f4f809edc9dd2bc56a969e6f b/.git_backup/objects/2d/372721d217c632f4f809edc9dd2bc56a969e6f deleted file mode 100644 index 4b8a19e8..00000000 Binary files a/.git_backup/objects/2d/372721d217c632f4f809edc9dd2bc56a969e6f and /dev/null differ diff --git a/.git_backup/objects/2d/418fcbcc395771ddbb5de27704c5338d12463e b/.git_backup/objects/2d/418fcbcc395771ddbb5de27704c5338d12463e deleted file mode 100644 index cbf308da..00000000 Binary files a/.git_backup/objects/2d/418fcbcc395771ddbb5de27704c5338d12463e and /dev/null differ diff --git a/.git_backup/objects/2d/44d7b5fe857e7ad8875d67c74db4653b7fd7aa b/.git_backup/objects/2d/44d7b5fe857e7ad8875d67c74db4653b7fd7aa deleted file mode 100644 index 8ae5a6fd..00000000 Binary files a/.git_backup/objects/2d/44d7b5fe857e7ad8875d67c74db4653b7fd7aa and /dev/null differ diff --git a/.git_backup/objects/2d/48f9be067e988a32348523e8f3ad574c9b781c b/.git_backup/objects/2d/48f9be067e988a32348523e8f3ad574c9b781c deleted file mode 100644 index a4b53c5a..00000000 Binary files a/.git_backup/objects/2d/48f9be067e988a32348523e8f3ad574c9b781c and /dev/null differ diff --git a/.git_backup/objects/2d/4a92a0b54e189af692c85071c9ed473d4bbecd b/.git_backup/objects/2d/4a92a0b54e189af692c85071c9ed473d4bbecd deleted file mode 100644 index f659cd54..00000000 Binary files a/.git_backup/objects/2d/4a92a0b54e189af692c85071c9ed473d4bbecd and /dev/null differ diff --git a/.git_backup/objects/2d/4dc3a3dbd46a8522f7ccd398aaeb5adc5370dd b/.git_backup/objects/2d/4dc3a3dbd46a8522f7ccd398aaeb5adc5370dd deleted file mode 100644 index b660800e..00000000 Binary files a/.git_backup/objects/2d/4dc3a3dbd46a8522f7ccd398aaeb5adc5370dd and /dev/null differ diff --git a/.git_backup/objects/2d/4eea22db22512462368a32047b1bba5f081d94 b/.git_backup/objects/2d/4eea22db22512462368a32047b1bba5f081d94 deleted file mode 100644 index 7adbef72..00000000 Binary files a/.git_backup/objects/2d/4eea22db22512462368a32047b1bba5f081d94 and /dev/null differ diff --git a/.git_backup/objects/2d/509199f3cb71bbc40ca004d3ac986769f72a24 b/.git_backup/objects/2d/509199f3cb71bbc40ca004d3ac986769f72a24 deleted file mode 100644 index f68c5517..00000000 Binary files a/.git_backup/objects/2d/509199f3cb71bbc40ca004d3ac986769f72a24 and /dev/null differ diff --git a/.git_backup/objects/2d/50fbc4a414619bbf4d5fd7be1b761b7b2cf384 b/.git_backup/objects/2d/50fbc4a414619bbf4d5fd7be1b761b7b2cf384 deleted file mode 100644 index f2f2b951..00000000 Binary files a/.git_backup/objects/2d/50fbc4a414619bbf4d5fd7be1b761b7b2cf384 and /dev/null differ diff --git a/.git_backup/objects/2d/56904077406d08c36f2947faafb862b09c6dde b/.git_backup/objects/2d/56904077406d08c36f2947faafb862b09c6dde deleted file mode 100644 index 2df72e3b..00000000 Binary files a/.git_backup/objects/2d/56904077406d08c36f2947faafb862b09c6dde and /dev/null differ diff --git a/.git_backup/objects/2d/56bb066e49bbf08dc2565c53f11348b62f8ef6 b/.git_backup/objects/2d/56bb066e49bbf08dc2565c53f11348b62f8ef6 deleted file mode 100644 index a9beefbd..00000000 Binary files a/.git_backup/objects/2d/56bb066e49bbf08dc2565c53f11348b62f8ef6 and /dev/null differ diff --git a/.git_backup/objects/2d/5a2ed7ba744f0eb6cd561d98c667b09cff4cc0 b/.git_backup/objects/2d/5a2ed7ba744f0eb6cd561d98c667b09cff4cc0 deleted file mode 100644 index 821f4dc8..00000000 Binary files a/.git_backup/objects/2d/5a2ed7ba744f0eb6cd561d98c667b09cff4cc0 and /dev/null differ diff --git a/.git_backup/objects/2d/5f3202d4151e16c0e68ee8efbb20b936d911a4 b/.git_backup/objects/2d/5f3202d4151e16c0e68ee8efbb20b936d911a4 deleted file mode 100644 index ebb88ab0..00000000 Binary files a/.git_backup/objects/2d/5f3202d4151e16c0e68ee8efbb20b936d911a4 and /dev/null differ diff --git a/.git_backup/objects/2d/60164ccf0751c8745fd688d3dbf17b570c1339 b/.git_backup/objects/2d/60164ccf0751c8745fd688d3dbf17b570c1339 deleted file mode 100644 index 14d9bfb6..00000000 Binary files a/.git_backup/objects/2d/60164ccf0751c8745fd688d3dbf17b570c1339 and /dev/null differ diff --git a/.git_backup/objects/2d/6296c933ceb09f4867c70d3725673eb7821a1b b/.git_backup/objects/2d/6296c933ceb09f4867c70d3725673eb7821a1b deleted file mode 100644 index 2246ea1a..00000000 Binary files a/.git_backup/objects/2d/6296c933ceb09f4867c70d3725673eb7821a1b and /dev/null differ diff --git a/.git_backup/objects/2d/65f7cf5dc4b392ca2708c5469bede1c0152c11 b/.git_backup/objects/2d/65f7cf5dc4b392ca2708c5469bede1c0152c11 deleted file mode 100644 index a8f3cb69..00000000 Binary files a/.git_backup/objects/2d/65f7cf5dc4b392ca2708c5469bede1c0152c11 and /dev/null differ diff --git a/.git_backup/objects/2d/74cb178cbdca9b0b93b400a2206c311a38afb1 b/.git_backup/objects/2d/74cb178cbdca9b0b93b400a2206c311a38afb1 deleted file mode 100644 index f1856124..00000000 Binary files a/.git_backup/objects/2d/74cb178cbdca9b0b93b400a2206c311a38afb1 and /dev/null differ diff --git a/.git_backup/objects/2d/767b4f1e79ed65f8e7e4444c472cd42da1cc5f b/.git_backup/objects/2d/767b4f1e79ed65f8e7e4444c472cd42da1cc5f deleted file mode 100644 index 6cf40f6a..00000000 Binary files a/.git_backup/objects/2d/767b4f1e79ed65f8e7e4444c472cd42da1cc5f and /dev/null differ diff --git a/.git_backup/objects/2d/7da0afb7f7d08ceb20679f685b4405e0b79597 b/.git_backup/objects/2d/7da0afb7f7d08ceb20679f685b4405e0b79597 deleted file mode 100644 index 6f67cf8f..00000000 Binary files a/.git_backup/objects/2d/7da0afb7f7d08ceb20679f685b4405e0b79597 and /dev/null differ diff --git a/.git_backup/objects/2d/83967dd9182a7cd6c56074d1386e71fd134c64 b/.git_backup/objects/2d/83967dd9182a7cd6c56074d1386e71fd134c64 deleted file mode 100644 index 66142a89..00000000 Binary files a/.git_backup/objects/2d/83967dd9182a7cd6c56074d1386e71fd134c64 and /dev/null differ diff --git a/.git_backup/objects/2d/8795b45f27630f941cdabd8467490c38e5ed85 b/.git_backup/objects/2d/8795b45f27630f941cdabd8467490c38e5ed85 deleted file mode 100644 index dcc6391e..00000000 Binary files a/.git_backup/objects/2d/8795b45f27630f941cdabd8467490c38e5ed85 and /dev/null differ diff --git a/.git_backup/objects/2d/921c4a8512effa230d37c8696a6043f6f3bc74 b/.git_backup/objects/2d/921c4a8512effa230d37c8696a6043f6f3bc74 deleted file mode 100644 index f430f454..00000000 Binary files a/.git_backup/objects/2d/921c4a8512effa230d37c8696a6043f6f3bc74 and /dev/null differ diff --git a/.git_backup/objects/2d/92237a79cb1aed73f21a0a0bb7f42f851e9332 b/.git_backup/objects/2d/92237a79cb1aed73f21a0a0bb7f42f851e9332 deleted file mode 100644 index 98fbe06a..00000000 Binary files a/.git_backup/objects/2d/92237a79cb1aed73f21a0a0bb7f42f851e9332 and /dev/null differ diff --git a/.git_backup/objects/2d/9a0fb7d58e80a464e6b86f941c1612655004c1 b/.git_backup/objects/2d/9a0fb7d58e80a464e6b86f941c1612655004c1 deleted file mode 100644 index c3eb204e..00000000 Binary files a/.git_backup/objects/2d/9a0fb7d58e80a464e6b86f941c1612655004c1 and /dev/null differ diff --git a/.git_backup/objects/2d/a4a78991f5a8db93347234593af7ba1552baf4 b/.git_backup/objects/2d/a4a78991f5a8db93347234593af7ba1552baf4 deleted file mode 100644 index 07d03a6b..00000000 --- a/.git_backup/objects/2d/a4a78991f5a8db93347234593af7ba1552baf4 +++ /dev/null @@ -1,7 +0,0 @@ -xV[o03∽ \J./S`R -Ssl &IUcgkXL?]DU -FTI(*ke+ eQTYE%jlL~wAB $]I&pڎ!6bХ>{Ml -5x:REzygڦ<ѠiL6?9!Mߍ؃Wbi4{N:D1:? #{$ TIHH53}0[sn+BFCRͯ){DD?X,}-s|{M̏ lF h|,x&l,܎=jrbŜ'-vwuN[dy#) -sf-KnsJ+uh_}Z:=1I&>rۿCj!] \ No newline at end of file diff --git a/.git_backup/objects/2d/a724a1f2b60b9df551a593325f3992f058a2ef b/.git_backup/objects/2d/a724a1f2b60b9df551a593325f3992f058a2ef deleted file mode 100644 index f9355460..00000000 Binary files a/.git_backup/objects/2d/a724a1f2b60b9df551a593325f3992f058a2ef and /dev/null differ diff --git a/.git_backup/objects/2d/ae597f884dcf86ec01319d8d4ea78645d250aa b/.git_backup/objects/2d/ae597f884dcf86ec01319d8d4ea78645d250aa deleted file mode 100644 index 68c46740..00000000 Binary files a/.git_backup/objects/2d/ae597f884dcf86ec01319d8d4ea78645d250aa and /dev/null differ diff --git a/.git_backup/objects/2d/b04b1800b84c4fa7440515ecb795bb0cca1d9a b/.git_backup/objects/2d/b04b1800b84c4fa7440515ecb795bb0cca1d9a deleted file mode 100644 index ad7cb35d..00000000 Binary files a/.git_backup/objects/2d/b04b1800b84c4fa7440515ecb795bb0cca1d9a and /dev/null differ diff --git a/.git_backup/objects/2d/b941e51189fcd48d1a1c19440ca240b7d64b4b b/.git_backup/objects/2d/b941e51189fcd48d1a1c19440ca240b7d64b4b deleted file mode 100644 index 794b56b6..00000000 Binary files a/.git_backup/objects/2d/b941e51189fcd48d1a1c19440ca240b7d64b4b and /dev/null differ diff --git a/.git_backup/objects/2d/b9e5d7457c21d36adea875b1d544ae261905c2 b/.git_backup/objects/2d/b9e5d7457c21d36adea875b1d544ae261905c2 deleted file mode 100644 index f26c4a44..00000000 Binary files a/.git_backup/objects/2d/b9e5d7457c21d36adea875b1d544ae261905c2 and /dev/null differ diff --git a/.git_backup/objects/2d/bd4f636669118c9933834940e82a1a4255e97f b/.git_backup/objects/2d/bd4f636669118c9933834940e82a1a4255e97f deleted file mode 100644 index 3f763072..00000000 Binary files a/.git_backup/objects/2d/bd4f636669118c9933834940e82a1a4255e97f and /dev/null differ diff --git a/.git_backup/objects/2d/bf53d9e603fc1d3698d401d6fcc66980ba356d b/.git_backup/objects/2d/bf53d9e603fc1d3698d401d6fcc66980ba356d deleted file mode 100644 index 850cb4a8..00000000 Binary files a/.git_backup/objects/2d/bf53d9e603fc1d3698d401d6fcc66980ba356d and /dev/null differ diff --git a/.git_backup/objects/2d/c80992b765ca7de802b10c1bef0dc30a44e618 b/.git_backup/objects/2d/c80992b765ca7de802b10c1bef0dc30a44e618 deleted file mode 100644 index d5e3b741..00000000 Binary files a/.git_backup/objects/2d/c80992b765ca7de802b10c1bef0dc30a44e618 and /dev/null differ diff --git a/.git_backup/objects/2d/d2f1feadd703799e630cb4dcb784b1457084d2 b/.git_backup/objects/2d/d2f1feadd703799e630cb4dcb784b1457084d2 deleted file mode 100644 index 173986e0..00000000 Binary files a/.git_backup/objects/2d/d2f1feadd703799e630cb4dcb784b1457084d2 and /dev/null differ diff --git a/.git_backup/objects/2d/d479abe480ba54412aa3b642d11ace544bc5da b/.git_backup/objects/2d/d479abe480ba54412aa3b642d11ace544bc5da deleted file mode 100644 index 94a3bc90..00000000 Binary files a/.git_backup/objects/2d/d479abe480ba54412aa3b642d11ace544bc5da and /dev/null differ diff --git a/.git_backup/objects/2d/dd1dc4ed302c0529b950eb2824424fde3d5d9a b/.git_backup/objects/2d/dd1dc4ed302c0529b950eb2824424fde3d5d9a deleted file mode 100644 index 2a057184..00000000 Binary files a/.git_backup/objects/2d/dd1dc4ed302c0529b950eb2824424fde3d5d9a and /dev/null differ diff --git a/.git_backup/objects/2d/e430305612c2c575097e304a785a25767b84a9 b/.git_backup/objects/2d/e430305612c2c575097e304a785a25767b84a9 deleted file mode 100644 index e38474c2..00000000 Binary files a/.git_backup/objects/2d/e430305612c2c575097e304a785a25767b84a9 and /dev/null differ diff --git a/.git_backup/objects/2d/e4b233d67cc710f558db18e3c3f936d43057ce b/.git_backup/objects/2d/e4b233d67cc710f558db18e3c3f936d43057ce deleted file mode 100644 index 9f7bb7f9..00000000 --- a/.git_backup/objects/2d/e4b233d67cc710f558db18e3c3f936d43057ce +++ /dev/null @@ -1,4 +0,0 @@ -xUS_E;;wp1ƈKo1 Bċ us;3e? -w~ ?Ǽo>Y{MtMuUWՓJL}rM?*FOq 'Vd1EݫǡUT=J\п[<'d7GҔ)*eâ@jT~Qye.f0 -)jzgwS9/LP.4PKE -L)MtCC#C/=+sM~&<2XWy7|"u_S<% ؉{~>M,kL*1EB$a8N]̙bPvjUt&e0(56hv.hS6{^Z@ ΄b\"s>5F#zϊA;z4h sP]T Tr3evrkn\Ou!(]`sQ6HH;X*q` ێ]4=?}tĀCRaeŴ2Yʽ hʋڲl (LHPM9;ewLr ;Dm$R=n{C~ۦCQZG[]҅Ի,̔6"Ho] ]W'#ʷu'^aL[SV: Ĺ((QxZmPM11;\PZ \ No newline at end of file diff --git a/.git_backup/objects/2d/e77df42a3ccaae2a9af4015918da755de19f96 b/.git_backup/objects/2d/e77df42a3ccaae2a9af4015918da755de19f96 deleted file mode 100644 index 9ecd2fa7..00000000 Binary files a/.git_backup/objects/2d/e77df42a3ccaae2a9af4015918da755de19f96 and /dev/null differ diff --git a/.git_backup/objects/2d/e7b262c3533144b42fbd956da9eaf80e08cdeb b/.git_backup/objects/2d/e7b262c3533144b42fbd956da9eaf80e08cdeb deleted file mode 100644 index 4d1c7ade..00000000 Binary files a/.git_backup/objects/2d/e7b262c3533144b42fbd956da9eaf80e08cdeb and /dev/null differ diff --git a/.git_backup/objects/2d/ea9362228e5d0dbda03de8ce1a4330b59cd390 b/.git_backup/objects/2d/ea9362228e5d0dbda03de8ce1a4330b59cd390 deleted file mode 100644 index d512a653..00000000 Binary files a/.git_backup/objects/2d/ea9362228e5d0dbda03de8ce1a4330b59cd390 and /dev/null differ diff --git a/.git_backup/objects/2d/fd8fed82f0efa6ec1f571bf71fab80131f5eb7 b/.git_backup/objects/2d/fd8fed82f0efa6ec1f571bf71fab80131f5eb7 deleted file mode 100644 index d6b5331d..00000000 Binary files a/.git_backup/objects/2d/fd8fed82f0efa6ec1f571bf71fab80131f5eb7 and /dev/null differ diff --git a/.git_backup/objects/2d/feab42299f60049c5f172ee88da761a5ea78ca b/.git_backup/objects/2d/feab42299f60049c5f172ee88da761a5ea78ca deleted file mode 100644 index 38f4e79f..00000000 Binary files a/.git_backup/objects/2d/feab42299f60049c5f172ee88da761a5ea78ca and /dev/null differ diff --git a/.git_backup/objects/2d/ffc54a05698b3b03c78658a3a029d55a982edd b/.git_backup/objects/2d/ffc54a05698b3b03c78658a3a029d55a982edd deleted file mode 100644 index ad13d69f..00000000 Binary files a/.git_backup/objects/2d/ffc54a05698b3b03c78658a3a029d55a982edd and /dev/null differ diff --git a/.git_backup/objects/2e/04f5266dc1e9c5a15f130af5f9c596f8bd7ef9 b/.git_backup/objects/2e/04f5266dc1e9c5a15f130af5f9c596f8bd7ef9 deleted file mode 100644 index d00bf389..00000000 Binary files a/.git_backup/objects/2e/04f5266dc1e9c5a15f130af5f9c596f8bd7ef9 and /dev/null differ diff --git a/.git_backup/objects/2e/0a06ea972d824564e23bcfc1555bf13850d9be b/.git_backup/objects/2e/0a06ea972d824564e23bcfc1555bf13850d9be deleted file mode 100644 index dc41fcff..00000000 Binary files a/.git_backup/objects/2e/0a06ea972d824564e23bcfc1555bf13850d9be and /dev/null differ diff --git a/.git_backup/objects/2e/1a15b1234bca21b4d2f7b961af62cfd213ebd4 b/.git_backup/objects/2e/1a15b1234bca21b4d2f7b961af62cfd213ebd4 deleted file mode 100644 index b47d841e..00000000 Binary files a/.git_backup/objects/2e/1a15b1234bca21b4d2f7b961af62cfd213ebd4 and /dev/null differ diff --git a/.git_backup/objects/2e/20f1dbf9776ebe0c5d354295ff108e299f3d09 b/.git_backup/objects/2e/20f1dbf9776ebe0c5d354295ff108e299f3d09 deleted file mode 100644 index a47cce8e..00000000 Binary files a/.git_backup/objects/2e/20f1dbf9776ebe0c5d354295ff108e299f3d09 and /dev/null differ diff --git a/.git_backup/objects/2e/27e726e0b6dd51baf2dab050df73438f6a27f4 b/.git_backup/objects/2e/27e726e0b6dd51baf2dab050df73438f6a27f4 deleted file mode 100644 index 38b33412..00000000 Binary files a/.git_backup/objects/2e/27e726e0b6dd51baf2dab050df73438f6a27f4 and /dev/null differ diff --git a/.git_backup/objects/2e/30bf161a9dd280aa2ddad212bfc3a8e375e0c2 b/.git_backup/objects/2e/30bf161a9dd280aa2ddad212bfc3a8e375e0c2 deleted file mode 100644 index bd4bbbe9..00000000 Binary files a/.git_backup/objects/2e/30bf161a9dd280aa2ddad212bfc3a8e375e0c2 and /dev/null differ diff --git a/.git_backup/objects/2e/3c80869d9c1a70ee003d054a53f49c3f53a556 b/.git_backup/objects/2e/3c80869d9c1a70ee003d054a53f49c3f53a556 deleted file mode 100644 index 88fad7b6..00000000 Binary files a/.git_backup/objects/2e/3c80869d9c1a70ee003d054a53f49c3f53a556 and /dev/null differ diff --git a/.git_backup/objects/2e/3fbd17dddeed73d311566a930f52899e3b9db6 b/.git_backup/objects/2e/3fbd17dddeed73d311566a930f52899e3b9db6 deleted file mode 100644 index dd88e721..00000000 Binary files a/.git_backup/objects/2e/3fbd17dddeed73d311566a930f52899e3b9db6 and /dev/null differ diff --git a/.git_backup/objects/2e/4646a6544e828ac2bdf4cf482d22bd3d071361 b/.git_backup/objects/2e/4646a6544e828ac2bdf4cf482d22bd3d071361 deleted file mode 100644 index b41b085c..00000000 Binary files a/.git_backup/objects/2e/4646a6544e828ac2bdf4cf482d22bd3d071361 and /dev/null differ diff --git a/.git_backup/objects/2e/4c9d993461a1a79b523ef792727408d51b3224 b/.git_backup/objects/2e/4c9d993461a1a79b523ef792727408d51b3224 deleted file mode 100644 index 89555f2c..00000000 Binary files a/.git_backup/objects/2e/4c9d993461a1a79b523ef792727408d51b3224 and /dev/null differ diff --git a/.git_backup/objects/2e/536118e1047e92f1feafa2be357eae18c8ea24 b/.git_backup/objects/2e/536118e1047e92f1feafa2be357eae18c8ea24 deleted file mode 100644 index b4d62c1e..00000000 --- a/.git_backup/objects/2e/536118e1047e92f1feafa2be357eae18c8ea24 +++ /dev/null @@ -1,2 +0,0 @@ -xXKoFYbдXiEދr3 eMdԒ.c9샤ĖDޔ -.OŶCڌFj MjKE4ڐZ,EYeȑ꼨BiV_d>'6rYFl5e^~]b_J_e4"㘮ls.s4_buv=FC^h%&,.K KJwVJN(M5ޖb{{GTUCFSj1qd;5(h<&V{>~ٟ㳯H;wEmK+@}'͆A]f{^˝ ΧHN'ה(cMci<&U5l;8j:u8XADK1UyB珈dg&a Y0uB=='XWsEdo'ɿc5B%vˣwN 6`ƧЯ۲\V[}lZyҡ&Kg;%"9 ,8; R>Bg]V¼vtra>|?;9A^( -{k"EdwQNҗL>][tx? D8Q:q}DC`nhifiipz[Յv(I(PlJxJO"7e<<-\/,`g2زw9f~>4j0_tF]n%`$gaAMppeλ˲jZFbV58#*#ʮ۶4ET@~!L[s+r71W͝ltv9=(i 1%֒'znؾ~x(bvl;#&=:`a[/<sx ZwvU^>L>,ob`0Dj~(V!#چ(sc"bC0k~,kko*$hO&Pa|n^2#s+ )L AH. n4$jV|d*N Lٟ!7[S|T)]tCE< w*78\%NFSx \ No newline at end of file diff --git a/.git_backup/objects/2e/6b7fa0518dbacad5706838d7ca29e3717a3aa5 b/.git_backup/objects/2e/6b7fa0518dbacad5706838d7ca29e3717a3aa5 deleted file mode 100644 index e3c54c84..00000000 Binary files a/.git_backup/objects/2e/6b7fa0518dbacad5706838d7ca29e3717a3aa5 and /dev/null differ diff --git a/.git_backup/objects/2e/75f044cb8c0fa87730a5df6f05cd9d40678bb4 b/.git_backup/objects/2e/75f044cb8c0fa87730a5df6f05cd9d40678bb4 deleted file mode 100644 index 4f113c19..00000000 Binary files a/.git_backup/objects/2e/75f044cb8c0fa87730a5df6f05cd9d40678bb4 and /dev/null differ diff --git a/.git_backup/objects/2e/7d505901682cd93055a27a40303883dedc3718 b/.git_backup/objects/2e/7d505901682cd93055a27a40303883dedc3718 deleted file mode 100644 index 6192d84f..00000000 Binary files a/.git_backup/objects/2e/7d505901682cd93055a27a40303883dedc3718 and /dev/null differ diff --git a/.git_backup/objects/2e/803a365ce85e1aa3d5523f8fd4504d480a37d4 b/.git_backup/objects/2e/803a365ce85e1aa3d5523f8fd4504d480a37d4 deleted file mode 100644 index 468296cd..00000000 Binary files a/.git_backup/objects/2e/803a365ce85e1aa3d5523f8fd4504d480a37d4 and /dev/null differ diff --git a/.git_backup/objects/2e/8379e1eaca1822f3524d69fe735715fd2cf559 b/.git_backup/objects/2e/8379e1eaca1822f3524d69fe735715fd2cf559 deleted file mode 100644 index 767d6bcf..00000000 --- a/.git_backup/objects/2e/8379e1eaca1822f3524d69fe735715fd2cf559 +++ /dev/null @@ -1,4 +0,0 @@ -xSKkAnvDA. 19 vctFAb"Cr$ /ј7OV$!A6EU}5]7SD/'"ch vWM0p!.EWg6wx5Wya kE>K'6aڜΑʑmGf{{g:" - [>ҁh?7_#bs.ᄉ!z̠:]N-DZmt ):ЃGu jqٰ#r:OtH9=IZշdBJ -U̐5LQ8-e$+Ia'FF\TDju"ZuT""TDWwYT3gc[vj㇍oyxshҜ w2"dWNo q&W0 pƹ;33ӷ3EzR?к|znнPsOd%p!zNY7Kd? U -WlKٵ1 3)2gXW0#Tq\#;e}"H4RjKsJrnG\OJ!=y+G=11/[ \ No newline at end of file diff --git a/.git_backup/objects/2e/8659d8a715c3fac2d67b1a5f5368e7ef21e293 b/.git_backup/objects/2e/8659d8a715c3fac2d67b1a5f5368e7ef21e293 deleted file mode 100644 index 47f69490..00000000 Binary files a/.git_backup/objects/2e/8659d8a715c3fac2d67b1a5f5368e7ef21e293 and /dev/null differ diff --git a/.git_backup/objects/2e/88b58cfc5fc1bb4e78aa03dcea226b3f2dfa1c b/.git_backup/objects/2e/88b58cfc5fc1bb4e78aa03dcea226b3f2dfa1c deleted file mode 100644 index 2a01546d..00000000 Binary files a/.git_backup/objects/2e/88b58cfc5fc1bb4e78aa03dcea226b3f2dfa1c and /dev/null differ diff --git a/.git_backup/objects/2e/8b458558af3c5d70a00fbbb2d78021c625c956 b/.git_backup/objects/2e/8b458558af3c5d70a00fbbb2d78021c625c956 deleted file mode 100644 index de165402..00000000 Binary files a/.git_backup/objects/2e/8b458558af3c5d70a00fbbb2d78021c625c956 and /dev/null differ diff --git a/.git_backup/objects/2e/8ef506140af7bf49b9b08707be23d3854adee2 b/.git_backup/objects/2e/8ef506140af7bf49b9b08707be23d3854adee2 deleted file mode 100644 index 010822eb..00000000 --- a/.git_backup/objects/2e/8ef506140af7bf49b9b08707be23d3854adee2 +++ /dev/null @@ -1,3 +0,0 @@ -xUKo@_1BEP QdY\*KBhm6))E;mRڤU,˚3y[-EjZ.i@$svTp${TX[}Y۸![ADWq#(վ2AeWTf~5>L]]8!Ђˀs:qD[ʟ$W=)J?ruBEj8Js-tT[kJج!1*^c bp$Wzҝ;4 -sx i'Ν6j–]O$վ.J*T7 -u9bM^$G齤wP 8j)6,.~YcW[p20_7,$!|t?;w.Ӊ1kc"?V(! D_$ -+`䈕bs2JUc`b4I؝J(7[@1p !CaI~Tm3\f,EwIQsxBVN3FUV iZ+=!P^p$,_ X2"t5Y>fa_L8c V^ö!'ϙlJ UuylÜCDo;C_b؁1hhvn)G t ەpc&M?hg  8(3p^Nx I - A.@ݼptMCΎH3 5r%)hFڦ4 RF -+C ZQd9@wY0Z tX*+q^8IgN؟ۺ&,sL -fJ,r8$GQJd.6&wL[bʼn}w -F}\xB {^ tЇo;i982خ#)bƢþAr^#E9Gy#T!}?f$I qNݧn] 2.TUQO%I :!q/8f(srV| HK;".a`#08znt+I>k:x6};֧=ڡ5w!O\ VPl -^{ 53[![i`Ә2|=ׄhp&0iژdOj#0uhؘ>q.Y86H%G1-Z4,+Qr'L<´ \ No newline at end of file diff --git a/.git_backup/objects/2f/1c3bc5e3095c95b24dc473ee4b9aafb2b7d54e b/.git_backup/objects/2f/1c3bc5e3095c95b24dc473ee4b9aafb2b7d54e deleted file mode 100644 index 578fc9b4..00000000 Binary files a/.git_backup/objects/2f/1c3bc5e3095c95b24dc473ee4b9aafb2b7d54e and /dev/null differ diff --git a/.git_backup/objects/2f/28c33a3bbc65aa6a56ac1c66254e0a936141a3 b/.git_backup/objects/2f/28c33a3bbc65aa6a56ac1c66254e0a936141a3 deleted file mode 100644 index f812d96f..00000000 Binary files a/.git_backup/objects/2f/28c33a3bbc65aa6a56ac1c66254e0a936141a3 and /dev/null differ diff --git a/.git_backup/objects/2f/297688208e3bd3063b1b57440fd790752d9614 b/.git_backup/objects/2f/297688208e3bd3063b1b57440fd790752d9614 deleted file mode 100644 index 9c8c1fa4..00000000 Binary files a/.git_backup/objects/2f/297688208e3bd3063b1b57440fd790752d9614 and /dev/null differ diff --git a/.git_backup/objects/2f/2b8826c50754f496e0ef09c9367173679f41de b/.git_backup/objects/2f/2b8826c50754f496e0ef09c9367173679f41de deleted file mode 100644 index e9f397bb..00000000 Binary files a/.git_backup/objects/2f/2b8826c50754f496e0ef09c9367173679f41de and /dev/null differ diff --git a/.git_backup/objects/2f/368c5b4be97e500bddeeca25e9859f1a78c606 b/.git_backup/objects/2f/368c5b4be97e500bddeeca25e9859f1a78c606 deleted file mode 100644 index f1f097b7..00000000 Binary files a/.git_backup/objects/2f/368c5b4be97e500bddeeca25e9859f1a78c606 and /dev/null differ diff --git a/.git_backup/objects/2f/3c14df31f0fff85f59231622814484a2b23571 b/.git_backup/objects/2f/3c14df31f0fff85f59231622814484a2b23571 deleted file mode 100644 index 08ce182a..00000000 Binary files a/.git_backup/objects/2f/3c14df31f0fff85f59231622814484a2b23571 and /dev/null differ diff --git a/.git_backup/objects/2f/3edbac918bdae0c9cf5e82da80867b832f4512 b/.git_backup/objects/2f/3edbac918bdae0c9cf5e82da80867b832f4512 deleted file mode 100644 index ae2d79d3..00000000 Binary files a/.git_backup/objects/2f/3edbac918bdae0c9cf5e82da80867b832f4512 and /dev/null differ diff --git a/.git_backup/objects/2f/4524aacc261af226ebfdd4bc4b0b78a94073f9 b/.git_backup/objects/2f/4524aacc261af226ebfdd4bc4b0b78a94073f9 deleted file mode 100644 index 53649384..00000000 Binary files a/.git_backup/objects/2f/4524aacc261af226ebfdd4bc4b0b78a94073f9 and /dev/null differ diff --git a/.git_backup/objects/2f/53bdda09e92da38e31cac1a6d415f4670137f7 b/.git_backup/objects/2f/53bdda09e92da38e31cac1a6d415f4670137f7 deleted file mode 100644 index 12d086ad..00000000 Binary files a/.git_backup/objects/2f/53bdda09e92da38e31cac1a6d415f4670137f7 and /dev/null differ diff --git a/.git_backup/objects/2f/54bebfdb27d54f436378e4ab6d6c8f2426dd90 b/.git_backup/objects/2f/54bebfdb27d54f436378e4ab6d6c8f2426dd90 deleted file mode 100644 index cb196447..00000000 Binary files a/.git_backup/objects/2f/54bebfdb27d54f436378e4ab6d6c8f2426dd90 and /dev/null differ diff --git a/.git_backup/objects/2f/59dc4c701b0576d6479724931e3708d6cd195f b/.git_backup/objects/2f/59dc4c701b0576d6479724931e3708d6cd195f deleted file mode 100644 index b1a2d49d..00000000 Binary files a/.git_backup/objects/2f/59dc4c701b0576d6479724931e3708d6cd195f and /dev/null differ diff --git a/.git_backup/objects/2f/5d8ac53fa942723f36dcef5981ce86147a2bf5 b/.git_backup/objects/2f/5d8ac53fa942723f36dcef5981ce86147a2bf5 deleted file mode 100644 index 503f5cfe..00000000 Binary files a/.git_backup/objects/2f/5d8ac53fa942723f36dcef5981ce86147a2bf5 and /dev/null differ diff --git a/.git_backup/objects/2f/5e299b5347b7d8ca10841107e5df8199be5cbd b/.git_backup/objects/2f/5e299b5347b7d8ca10841107e5df8199be5cbd deleted file mode 100644 index 437c3d44..00000000 Binary files a/.git_backup/objects/2f/5e299b5347b7d8ca10841107e5df8199be5cbd and /dev/null differ diff --git a/.git_backup/objects/2f/606ad248dafad54dc6e3990699e638c6aa7ac4 b/.git_backup/objects/2f/606ad248dafad54dc6e3990699e638c6aa7ac4 deleted file mode 100644 index 8a84613b..00000000 --- a/.git_backup/objects/2f/606ad248dafad54dc6e3990699e638c6aa7ac4 +++ /dev/null @@ -1,2 +0,0 @@ -xMPn1IlH)8! -*?JdxBlvZ+ xSˑWqb[73GY$xߣ1!?:5$O/cRNi`<$պd̺*: 7.yIy Rh?a݂]YΚm5fWbqZmwQq7D>|yPWTbqJ6x hUj?qoңU4U2xzUMY<ѳWL^JZ+ C -]^ ˨}, #uz* x׵&UxY޶+&aJ3vx{Ȯ>]LtabѼey - ڪ_ $_2RҢRjlv!~\.qFE9\onfĶ*svׂśekS8z1^}Jܳ4Y~ 2jӨiFU$ÝDQgzt$1ሪP% PJaaO|F߸*ߑ,f9YHP -'<ע+aL/BQ diff --git a/.git_backup/objects/2f/d1862073f55d5551fc2c1bc1e9eaaed0c0e877 b/.git_backup/objects/2f/d1862073f55d5551fc2c1bc1e9eaaed0c0e877 deleted file mode 100644 index b0003443..00000000 Binary files a/.git_backup/objects/2f/d1862073f55d5551fc2c1bc1e9eaaed0c0e877 and /dev/null differ diff --git a/.git_backup/objects/2f/dd2f052169a66d4d0a90cbf58d0c9c02134557 b/.git_backup/objects/2f/dd2f052169a66d4d0a90cbf58d0c9c02134557 deleted file mode 100644 index d21e904f..00000000 Binary files a/.git_backup/objects/2f/dd2f052169a66d4d0a90cbf58d0c9c02134557 and /dev/null differ diff --git a/.git_backup/objects/2f/e8c24fbb93049db64369e78bec90e5db08eb56 b/.git_backup/objects/2f/e8c24fbb93049db64369e78bec90e5db08eb56 deleted file mode 100644 index 3d35c97b..00000000 Binary files a/.git_backup/objects/2f/e8c24fbb93049db64369e78bec90e5db08eb56 and /dev/null differ diff --git a/.git_backup/objects/2f/ee7d7ef6b40a80e913ecb461a55ec7fb80fdb4 b/.git_backup/objects/2f/ee7d7ef6b40a80e913ecb461a55ec7fb80fdb4 deleted file mode 100644 index 3f1d92bc..00000000 Binary files a/.git_backup/objects/2f/ee7d7ef6b40a80e913ecb461a55ec7fb80fdb4 and /dev/null differ diff --git a/.git_backup/objects/2f/f991b62b67ea99b92fdf94e060f46672e369dd b/.git_backup/objects/2f/f991b62b67ea99b92fdf94e060f46672e369dd deleted file mode 100644 index 31ec8f2b..00000000 Binary files a/.git_backup/objects/2f/f991b62b67ea99b92fdf94e060f46672e369dd and /dev/null differ diff --git a/.git_backup/objects/30/02c82022f7e9a4ff1ad545ea617106a13b24e0 b/.git_backup/objects/30/02c82022f7e9a4ff1ad545ea617106a13b24e0 deleted file mode 100644 index 0d097955..00000000 Binary files a/.git_backup/objects/30/02c82022f7e9a4ff1ad545ea617106a13b24e0 and /dev/null differ diff --git a/.git_backup/objects/30/0bc9bee7f4f4635e956af657481b7473ebb1f2 b/.git_backup/objects/30/0bc9bee7f4f4635e956af657481b7473ebb1f2 deleted file mode 100644 index d809cc85..00000000 Binary files a/.git_backup/objects/30/0bc9bee7f4f4635e956af657481b7473ebb1f2 and /dev/null differ diff --git a/.git_backup/objects/30/0d8878ba95a032da2526f9da817146dc9b219f b/.git_backup/objects/30/0d8878ba95a032da2526f9da817146dc9b219f deleted file mode 100644 index 34d3c2cb..00000000 Binary files a/.git_backup/objects/30/0d8878ba95a032da2526f9da817146dc9b219f and /dev/null differ diff --git a/.git_backup/objects/30/0faeccf39a7473cc62530b02d56e479e23363c b/.git_backup/objects/30/0faeccf39a7473cc62530b02d56e479e23363c deleted file mode 100644 index 99c9bd6e..00000000 --- a/.git_backup/objects/30/0faeccf39a7473cc62530b02d56e479e23363c +++ /dev/null @@ -1 +0,0 @@ -x}Pn0 쬯&)({A|lZuc%$۝cQmMs>rk/W_H%/7Tcn`۝@K/Po|m3l=y~K U5 \ No newline at end of file diff --git a/.git_backup/objects/30/82de00c2e0bfe89d4ac5e093d9e5921aa63610 b/.git_backup/objects/30/82de00c2e0bfe89d4ac5e093d9e5921aa63610 deleted file mode 100644 index 27ccaca9..00000000 Binary files a/.git_backup/objects/30/82de00c2e0bfe89d4ac5e093d9e5921aa63610 and /dev/null differ diff --git a/.git_backup/objects/30/838890a2699c292feb67f1192ef8e8f8f913bd b/.git_backup/objects/30/838890a2699c292feb67f1192ef8e8f8f913bd deleted file mode 100644 index 745605e7..00000000 --- a/.git_backup/objects/30/838890a2699c292feb67f1192ef8e8f8f913bd +++ /dev/null @@ -1,2 +0,0 @@ -xmAk0wίx`àm l#g(MILn+bn|ֺ-܏n gIMM鴣k MV(/rb%v-~9qW\kYMb鄚ٟ\RU4>ZB!F[gh> -jNq$bZf B 4^8zѕŷ2ٯWrgQ[gY?6r \ No newline at end of file diff --git a/.git_backup/objects/30/870b522ff0ba186ad20dd38af0add9f830daba b/.git_backup/objects/30/870b522ff0ba186ad20dd38af0add9f830daba deleted file mode 100644 index b2d3e174..00000000 Binary files a/.git_backup/objects/30/870b522ff0ba186ad20dd38af0add9f830daba and /dev/null differ diff --git a/.git_backup/objects/30/873a588bbbf6df755cd0d42e519f756b3696da b/.git_backup/objects/30/873a588bbbf6df755cd0d42e519f756b3696da deleted file mode 100644 index da3608e4..00000000 Binary files a/.git_backup/objects/30/873a588bbbf6df755cd0d42e519f756b3696da and /dev/null differ diff --git a/.git_backup/objects/30/8b35490d48637fd95b6fe361367643739a6545 b/.git_backup/objects/30/8b35490d48637fd95b6fe361367643739a6545 deleted file mode 100644 index 3cdbe6ed..00000000 Binary files a/.git_backup/objects/30/8b35490d48637fd95b6fe361367643739a6545 and /dev/null differ diff --git a/.git_backup/objects/30/8c232c0e6e1c727b00df0aabfdb63e5600f38b b/.git_backup/objects/30/8c232c0e6e1c727b00df0aabfdb63e5600f38b deleted file mode 100644 index 218a5348..00000000 Binary files a/.git_backup/objects/30/8c232c0e6e1c727b00df0aabfdb63e5600f38b and /dev/null differ diff --git a/.git_backup/objects/30/8f2954ee2058796fb03ecc58fc2abda85d4ffb b/.git_backup/objects/30/8f2954ee2058796fb03ecc58fc2abda85d4ffb deleted file mode 100644 index b4d7edd2..00000000 Binary files a/.git_backup/objects/30/8f2954ee2058796fb03ecc58fc2abda85d4ffb and /dev/null differ diff --git a/.git_backup/objects/30/9b101bdf863d3cf17b26e9ab0c29340eb5f20f b/.git_backup/objects/30/9b101bdf863d3cf17b26e9ab0c29340eb5f20f deleted file mode 100644 index 07a62911..00000000 Binary files a/.git_backup/objects/30/9b101bdf863d3cf17b26e9ab0c29340eb5f20f and /dev/null differ diff --git a/.git_backup/objects/30/a02ebf68a10dd0b13038415fb9274245ec084c b/.git_backup/objects/30/a02ebf68a10dd0b13038415fb9274245ec084c deleted file mode 100644 index e216d570..00000000 Binary files a/.git_backup/objects/30/a02ebf68a10dd0b13038415fb9274245ec084c and /dev/null differ diff --git a/.git_backup/objects/30/a3e43742f40ff6e4b29ffc77de371275687106 b/.git_backup/objects/30/a3e43742f40ff6e4b29ffc77de371275687106 deleted file mode 100644 index 17f239e0..00000000 Binary files a/.git_backup/objects/30/a3e43742f40ff6e4b29ffc77de371275687106 and /dev/null differ diff --git a/.git_backup/objects/30/a9d925ed7e5a309f0ff538de34c9c2f39139f7 b/.git_backup/objects/30/a9d925ed7e5a309f0ff538de34c9c2f39139f7 deleted file mode 100644 index 12bf95c4..00000000 Binary files a/.git_backup/objects/30/a9d925ed7e5a309f0ff538de34c9c2f39139f7 and /dev/null differ diff --git a/.git_backup/objects/30/b78b36c7ade9a171e049a827672f7499dabba0 b/.git_backup/objects/30/b78b36c7ade9a171e049a827672f7499dabba0 deleted file mode 100644 index b46de515..00000000 Binary files a/.git_backup/objects/30/b78b36c7ade9a171e049a827672f7499dabba0 and /dev/null differ diff --git a/.git_backup/objects/30/bd603b9feef6a87514028a7be589deeda44495 b/.git_backup/objects/30/bd603b9feef6a87514028a7be589deeda44495 deleted file mode 100644 index 99491d98..00000000 Binary files a/.git_backup/objects/30/bd603b9feef6a87514028a7be589deeda44495 and /dev/null differ diff --git a/.git_backup/objects/30/c441dc28ee327076a850b1d3c88a9a2c8f04f0 b/.git_backup/objects/30/c441dc28ee327076a850b1d3c88a9a2c8f04f0 deleted file mode 100644 index f666da9d..00000000 Binary files a/.git_backup/objects/30/c441dc28ee327076a850b1d3c88a9a2c8f04f0 and /dev/null differ diff --git a/.git_backup/objects/30/c4a33da7655b5f41bbbeb983430ab70aa9414b b/.git_backup/objects/30/c4a33da7655b5f41bbbeb983430ab70aa9414b deleted file mode 100644 index 276e0c1e..00000000 Binary files a/.git_backup/objects/30/c4a33da7655b5f41bbbeb983430ab70aa9414b and /dev/null differ diff --git a/.git_backup/objects/30/c7360ff08b2c021b8b0bd38721f71de9a13fa5 b/.git_backup/objects/30/c7360ff08b2c021b8b0bd38721f71de9a13fa5 deleted file mode 100644 index 91480f2a..00000000 Binary files a/.git_backup/objects/30/c7360ff08b2c021b8b0bd38721f71de9a13fa5 and /dev/null differ diff --git a/.git_backup/objects/30/c8c8ad5378be4508bd785da8b7cef38adbd13e b/.git_backup/objects/30/c8c8ad5378be4508bd785da8b7cef38adbd13e deleted file mode 100644 index e56aacae..00000000 Binary files a/.git_backup/objects/30/c8c8ad5378be4508bd785da8b7cef38adbd13e and /dev/null differ diff --git a/.git_backup/objects/30/cc47335bf4c68b3ab6f0e976ebfdb28b3fb718 b/.git_backup/objects/30/cc47335bf4c68b3ab6f0e976ebfdb28b3fb718 deleted file mode 100644 index 224d4ba4..00000000 Binary files a/.git_backup/objects/30/cc47335bf4c68b3ab6f0e976ebfdb28b3fb718 and /dev/null differ diff --git a/.git_backup/objects/30/de03071a4b3337c3eef2f6c370607520c4198a b/.git_backup/objects/30/de03071a4b3337c3eef2f6c370607520c4198a deleted file mode 100644 index 8c9bec93..00000000 Binary files a/.git_backup/objects/30/de03071a4b3337c3eef2f6c370607520c4198a and /dev/null differ diff --git a/.git_backup/objects/30/df798ab62771b0e00908e43f4e3f4fd2d8a4bf b/.git_backup/objects/30/df798ab62771b0e00908e43f4e3f4fd2d8a4bf deleted file mode 100644 index fe0aac1c..00000000 Binary files a/.git_backup/objects/30/df798ab62771b0e00908e43f4e3f4fd2d8a4bf and /dev/null differ diff --git a/.git_backup/objects/30/df92c0bf8f960cd0eafc05f48ee1a8b0bc23da b/.git_backup/objects/30/df92c0bf8f960cd0eafc05f48ee1a8b0bc23da deleted file mode 100644 index b2f14d59..00000000 Binary files a/.git_backup/objects/30/df92c0bf8f960cd0eafc05f48ee1a8b0bc23da and /dev/null differ diff --git a/.git_backup/objects/30/e5748af86745d302740ee4fc023e44767eee36 b/.git_backup/objects/30/e5748af86745d302740ee4fc023e44767eee36 deleted file mode 100644 index 499b9778..00000000 Binary files a/.git_backup/objects/30/e5748af86745d302740ee4fc023e44767eee36 and /dev/null differ diff --git a/.git_backup/objects/30/ef464cb969de9db3c5446d15a8ea5998ac2e9e b/.git_backup/objects/30/ef464cb969de9db3c5446d15a8ea5998ac2e9e deleted file mode 100644 index bbefb731..00000000 Binary files a/.git_backup/objects/30/ef464cb969de9db3c5446d15a8ea5998ac2e9e and /dev/null differ diff --git a/.git_backup/objects/30/f0dbf91b078ef670868d5e7321f956a6a7a506 b/.git_backup/objects/30/f0dbf91b078ef670868d5e7321f956a6a7a506 deleted file mode 100644 index 6058c178..00000000 --- a/.git_backup/objects/30/f0dbf91b078ef670868d5e7321f956a6a7a506 +++ /dev/null @@ -1,2 +0,0 @@ -xmK -0E- 㧳F,R(j\@ZB)I{Á;ǀ[Kф1VIxS5-)7R!.xjrhE=#M!D?{{w~S^9ǟdI*DrILLGCHZj \ No newline at end of file diff --git a/.git_backup/objects/30/f0e9cae83a10ccccff5edcaacd98c2846bd957 b/.git_backup/objects/30/f0e9cae83a10ccccff5edcaacd98c2846bd957 deleted file mode 100644 index 3d2fe831..00000000 Binary files a/.git_backup/objects/30/f0e9cae83a10ccccff5edcaacd98c2846bd957 and /dev/null differ diff --git a/.git_backup/objects/30/f8bf247bc7cb0ffa2ee228631ff5f736f4256a b/.git_backup/objects/30/f8bf247bc7cb0ffa2ee228631ff5f736f4256a deleted file mode 100644 index cc3986f8..00000000 Binary files a/.git_backup/objects/30/f8bf247bc7cb0ffa2ee228631ff5f736f4256a and /dev/null differ diff --git a/.git_backup/objects/30/ff0e86e7a87aa20df07f4f3d6466369a27915b b/.git_backup/objects/30/ff0e86e7a87aa20df07f4f3d6466369a27915b deleted file mode 100644 index ba5654ec..00000000 Binary files a/.git_backup/objects/30/ff0e86e7a87aa20df07f4f3d6466369a27915b and /dev/null differ diff --git a/.git_backup/objects/31/05888ec149d10cad51c11d332779e94b548661 b/.git_backup/objects/31/05888ec149d10cad51c11d332779e94b548661 deleted file mode 100644 index ccd5c2c3..00000000 Binary files a/.git_backup/objects/31/05888ec149d10cad51c11d332779e94b548661 and /dev/null differ diff --git a/.git_backup/objects/31/06712e1099345b48dc4e4125d5e739c24b5341 b/.git_backup/objects/31/06712e1099345b48dc4e4125d5e739c24b5341 deleted file mode 100644 index bf0ecb24..00000000 Binary files a/.git_backup/objects/31/06712e1099345b48dc4e4125d5e739c24b5341 and /dev/null differ diff --git a/.git_backup/objects/31/06ec967bcb3de1dde21e7f27c5e56d421168b7 b/.git_backup/objects/31/06ec967bcb3de1dde21e7f27c5e56d421168b7 deleted file mode 100644 index 57af6d16..00000000 Binary files a/.git_backup/objects/31/06ec967bcb3de1dde21e7f27c5e56d421168b7 and /dev/null differ diff --git a/.git_backup/objects/31/0cff675a67cf508173f21b3c1e93dbb1cbf27f b/.git_backup/objects/31/0cff675a67cf508173f21b3c1e93dbb1cbf27f deleted file mode 100644 index 93ba49d1..00000000 Binary files a/.git_backup/objects/31/0cff675a67cf508173f21b3c1e93dbb1cbf27f and /dev/null differ diff --git a/.git_backup/objects/31/12397f6005d1d8a071413d2622d760456d95e3 b/.git_backup/objects/31/12397f6005d1d8a071413d2622d760456d95e3 deleted file mode 100644 index c437c3c8..00000000 Binary files a/.git_backup/objects/31/12397f6005d1d8a071413d2622d760456d95e3 and /dev/null differ diff --git a/.git_backup/objects/31/13d4cab0fa9ba7cf76eee47a227ca775960428 b/.git_backup/objects/31/13d4cab0fa9ba7cf76eee47a227ca775960428 deleted file mode 100644 index 5b525d3b..00000000 Binary files a/.git_backup/objects/31/13d4cab0fa9ba7cf76eee47a227ca775960428 and /dev/null differ diff --git a/.git_backup/objects/31/1a10f624798539ec3b047adb010fa86dfff194 b/.git_backup/objects/31/1a10f624798539ec3b047adb010fa86dfff194 deleted file mode 100644 index ea88f022..00000000 Binary files a/.git_backup/objects/31/1a10f624798539ec3b047adb010fa86dfff194 and /dev/null differ diff --git a/.git_backup/objects/31/1a9b1662a5022f231000ce89f3d72a760c791e b/.git_backup/objects/31/1a9b1662a5022f231000ce89f3d72a760c791e deleted file mode 100644 index e97b42e9..00000000 Binary files a/.git_backup/objects/31/1a9b1662a5022f231000ce89f3d72a760c791e and /dev/null differ diff --git a/.git_backup/objects/31/221b2ad7e4fe25cd8010fb1aadb4ddffd43c8f b/.git_backup/objects/31/221b2ad7e4fe25cd8010fb1aadb4ddffd43c8f deleted file mode 100644 index ad4291b2..00000000 Binary files a/.git_backup/objects/31/221b2ad7e4fe25cd8010fb1aadb4ddffd43c8f and /dev/null differ diff --git a/.git_backup/objects/31/23f75a93f2b178a2b5fe90d4bb8d3cca9e6d49 b/.git_backup/objects/31/23f75a93f2b178a2b5fe90d4bb8d3cca9e6d49 deleted file mode 100644 index 8a380f5f..00000000 Binary files a/.git_backup/objects/31/23f75a93f2b178a2b5fe90d4bb8d3cca9e6d49 and /dev/null differ diff --git a/.git_backup/objects/31/2585e2c0dfe0e6e65297b6755042122f74a428 b/.git_backup/objects/31/2585e2c0dfe0e6e65297b6755042122f74a428 deleted file mode 100644 index 00aa4feb..00000000 Binary files a/.git_backup/objects/31/2585e2c0dfe0e6e65297b6755042122f74a428 and /dev/null differ diff --git a/.git_backup/objects/31/2a456c5dbd04c8258482ac2a69033354d2d02e b/.git_backup/objects/31/2a456c5dbd04c8258482ac2a69033354d2d02e deleted file mode 100644 index 040e8e13..00000000 Binary files a/.git_backup/objects/31/2a456c5dbd04c8258482ac2a69033354d2d02e and /dev/null differ diff --git a/.git_backup/objects/31/2d0683de0e0dd7c00f067f23e1f1f075c74e0a b/.git_backup/objects/31/2d0683de0e0dd7c00f067f23e1f1f075c74e0a deleted file mode 100644 index 2c264ced..00000000 Binary files a/.git_backup/objects/31/2d0683de0e0dd7c00f067f23e1f1f075c74e0a and /dev/null differ diff --git a/.git_backup/objects/31/2e3620f9478e23bba623c119bf655a4c982137 b/.git_backup/objects/31/2e3620f9478e23bba623c119bf655a4c982137 deleted file mode 100644 index c1c9cc45..00000000 Binary files a/.git_backup/objects/31/2e3620f9478e23bba623c119bf655a4c982137 and /dev/null differ diff --git a/.git_backup/objects/31/336772df2a47811be89f07b8ce831f84813409 b/.git_backup/objects/31/336772df2a47811be89f07b8ce831f84813409 deleted file mode 100644 index 389c2fe8..00000000 Binary files a/.git_backup/objects/31/336772df2a47811be89f07b8ce831f84813409 and /dev/null differ diff --git a/.git_backup/objects/31/37b0a955ad8160951cb72281126e82e7a2938a b/.git_backup/objects/31/37b0a955ad8160951cb72281126e82e7a2938a deleted file mode 100644 index f635c16c..00000000 Binary files a/.git_backup/objects/31/37b0a955ad8160951cb72281126e82e7a2938a and /dev/null differ diff --git a/.git_backup/objects/31/386e4e342ae3676a5468cfff5035686821fd52 b/.git_backup/objects/31/386e4e342ae3676a5468cfff5035686821fd52 deleted file mode 100644 index ece2fe69..00000000 Binary files a/.git_backup/objects/31/386e4e342ae3676a5468cfff5035686821fd52 and /dev/null differ diff --git a/.git_backup/objects/31/3912aeaccbb2bc6141f6e47fe1943bc2efb5fa b/.git_backup/objects/31/3912aeaccbb2bc6141f6e47fe1943bc2efb5fa deleted file mode 100644 index 5857bb8a..00000000 Binary files a/.git_backup/objects/31/3912aeaccbb2bc6141f6e47fe1943bc2efb5fa and /dev/null differ diff --git a/.git_backup/objects/31/40f8f69bcebeddb36c5aa2c29ccec2e808936b b/.git_backup/objects/31/40f8f69bcebeddb36c5aa2c29ccec2e808936b deleted file mode 100644 index 96781f1f..00000000 Binary files a/.git_backup/objects/31/40f8f69bcebeddb36c5aa2c29ccec2e808936b and /dev/null differ diff --git a/.git_backup/objects/31/423ed6f8ff278737f6ea963e624f21794f767b b/.git_backup/objects/31/423ed6f8ff278737f6ea963e624f21794f767b deleted file mode 100644 index 7b44f85c..00000000 Binary files a/.git_backup/objects/31/423ed6f8ff278737f6ea963e624f21794f767b and /dev/null differ diff --git a/.git_backup/objects/31/4613866de53e1457f6cbf2fb617be7e4955edf b/.git_backup/objects/31/4613866de53e1457f6cbf2fb617be7e4955edf deleted file mode 100644 index 3a46d591..00000000 --- a/.git_backup/objects/31/4613866de53e1457f6cbf2fb617be7e4955edf +++ /dev/null @@ -1,3 +0,0 @@ -x]Luf yȤ LK"hR0Gx#o (jscX&eZ ȭSc"{a8W3IkfcJ/R9޿.ꪋgsyo O5M?cwC^}ཫr3VtV|&Oͼ"HeuWs5L_ `d#i:*mMEzwGL̉{|{clnyYMn[jJuI(W-H2'y25r\%M*I$iK5}G$:C+3Vfnܕ;.;`f%f4ia`GK&c̞-:kHWYhU͑2J[qIr$ϓb/Ԃ_W},:< 5{YLacSzhhYxH=Sk)Xj>ƘN@֍ׁT |]<.$-UOͦ &Qy"7du9aX5W2͡1ݚ''N:tT^tߖɎԠW׮O wDǍ|pR#7H=ɽy)R-.JϲJUl3- ȜI!B 27drqΑc,i"D&̔c\9&̖c|9&̘cȜ9&F82sd9&̞c9d#N$ N$ HD @RI t H 9Hf#-H^8dI $9Hv AdI#IN%49m8d -I+$YHt!Bd I If#mN7!H;!H?$H"9DYDyD鴙DR#H69҉#HF9R#NU$NW$NY$Hn"Eҋ oK-ddeG -~ \ No newline at end of file diff --git a/.git_backup/objects/31/51ec926f0199d18873d0497b530d2d04562ff2 b/.git_backup/objects/31/51ec926f0199d18873d0497b530d2d04562ff2 deleted file mode 100644 index deff9f11..00000000 Binary files a/.git_backup/objects/31/51ec926f0199d18873d0497b530d2d04562ff2 and /dev/null differ diff --git a/.git_backup/objects/31/559ef0b21ab0f3239017c3cb97a8d4fd7951be b/.git_backup/objects/31/559ef0b21ab0f3239017c3cb97a8d4fd7951be deleted file mode 100644 index 818ad5a4..00000000 Binary files a/.git_backup/objects/31/559ef0b21ab0f3239017c3cb97a8d4fd7951be and /dev/null differ diff --git a/.git_backup/objects/31/55bc51017cd81732df899ab643399b139c0fb9 b/.git_backup/objects/31/55bc51017cd81732df899ab643399b139c0fb9 deleted file mode 100644 index 58ed5f22..00000000 Binary files a/.git_backup/objects/31/55bc51017cd81732df899ab643399b139c0fb9 and /dev/null differ diff --git a/.git_backup/objects/31/564e681f45f2b10299effa616841910eff28f7 b/.git_backup/objects/31/564e681f45f2b10299effa616841910eff28f7 deleted file mode 100644 index ab05ef08..00000000 Binary files a/.git_backup/objects/31/564e681f45f2b10299effa616841910eff28f7 and /dev/null differ diff --git a/.git_backup/objects/31/5a28a2340674c9e76953c473d1fcb7d35b096e b/.git_backup/objects/31/5a28a2340674c9e76953c473d1fcb7d35b096e deleted file mode 100644 index 014a5fd3..00000000 Binary files a/.git_backup/objects/31/5a28a2340674c9e76953c473d1fcb7d35b096e and /dev/null differ diff --git a/.git_backup/objects/31/5a6f98429a76a691a2855f6c4b06dc15acc0f2 b/.git_backup/objects/31/5a6f98429a76a691a2855f6c4b06dc15acc0f2 deleted file mode 100644 index 75b14651..00000000 Binary files a/.git_backup/objects/31/5a6f98429a76a691a2855f6c4b06dc15acc0f2 and /dev/null differ diff --git a/.git_backup/objects/31/5b4c45aef1f241d025900544133c085fe4f69d b/.git_backup/objects/31/5b4c45aef1f241d025900544133c085fe4f69d deleted file mode 100644 index 011f79a6..00000000 Binary files a/.git_backup/objects/31/5b4c45aef1f241d025900544133c085fe4f69d and /dev/null differ diff --git a/.git_backup/objects/31/6280b7e480d707f2e32ea7f0d697edfdf4457b b/.git_backup/objects/31/6280b7e480d707f2e32ea7f0d697edfdf4457b deleted file mode 100644 index eff600c9..00000000 Binary files a/.git_backup/objects/31/6280b7e480d707f2e32ea7f0d697edfdf4457b and /dev/null differ diff --git a/.git_backup/objects/31/660af36f78e4df17ba86095c1cc7a28ce2cefb b/.git_backup/objects/31/660af36f78e4df17ba86095c1cc7a28ce2cefb deleted file mode 100644 index 02fc6bd6..00000000 Binary files a/.git_backup/objects/31/660af36f78e4df17ba86095c1cc7a28ce2cefb and /dev/null differ diff --git a/.git_backup/objects/31/67f4659391cb889c1d41022d5ac9575d275bbd b/.git_backup/objects/31/67f4659391cb889c1d41022d5ac9575d275bbd deleted file mode 100644 index 3e19d7f5..00000000 Binary files a/.git_backup/objects/31/67f4659391cb889c1d41022d5ac9575d275bbd and /dev/null differ diff --git a/.git_backup/objects/31/6c208a1421bf3dbfdeb3b394d2773353597dea b/.git_backup/objects/31/6c208a1421bf3dbfdeb3b394d2773353597dea deleted file mode 100644 index 2373c419..00000000 Binary files a/.git_backup/objects/31/6c208a1421bf3dbfdeb3b394d2773353597dea and /dev/null differ diff --git a/.git_backup/objects/31/6d85586d01cae85d38f00131b65a5f18e2e3ec b/.git_backup/objects/31/6d85586d01cae85d38f00131b65a5f18e2e3ec deleted file mode 100644 index 0a0d77b8..00000000 Binary files a/.git_backup/objects/31/6d85586d01cae85d38f00131b65a5f18e2e3ec and /dev/null differ diff --git a/.git_backup/objects/31/6f8894c5ecc88468cfa0908c277f730e3163e8 b/.git_backup/objects/31/6f8894c5ecc88468cfa0908c277f730e3163e8 deleted file mode 100644 index 58c53665..00000000 Binary files a/.git_backup/objects/31/6f8894c5ecc88468cfa0908c277f730e3163e8 and /dev/null differ diff --git a/.git_backup/objects/31/7be69151ac36393a0f919297c2a50786b5e1f0 b/.git_backup/objects/31/7be69151ac36393a0f919297c2a50786b5e1f0 deleted file mode 100644 index cf0a4725..00000000 Binary files a/.git_backup/objects/31/7be69151ac36393a0f919297c2a50786b5e1f0 and /dev/null differ diff --git a/.git_backup/objects/31/7c126b7b6b782ba08a2c1ed33eae83c0f271ff b/.git_backup/objects/31/7c126b7b6b782ba08a2c1ed33eae83c0f271ff deleted file mode 100644 index 9b7c6b85..00000000 Binary files a/.git_backup/objects/31/7c126b7b6b782ba08a2c1ed33eae83c0f271ff and /dev/null differ diff --git a/.git_backup/objects/31/8363beb1938214db5178234944d535795326af b/.git_backup/objects/31/8363beb1938214db5178234944d535795326af deleted file mode 100644 index 59c604a9..00000000 Binary files a/.git_backup/objects/31/8363beb1938214db5178234944d535795326af and /dev/null differ diff --git a/.git_backup/objects/31/83914f6000af40f62c7ebc0fc65af87fe31699 b/.git_backup/objects/31/83914f6000af40f62c7ebc0fc65af87fe31699 deleted file mode 100644 index 73608bcb..00000000 Binary files a/.git_backup/objects/31/83914f6000af40f62c7ebc0fc65af87fe31699 and /dev/null differ diff --git a/.git_backup/objects/31/88108d6ba511bf92edd4d5ee9ca8b41311547b b/.git_backup/objects/31/88108d6ba511bf92edd4d5ee9ca8b41311547b deleted file mode 100644 index 28f28335..00000000 Binary files a/.git_backup/objects/31/88108d6ba511bf92edd4d5ee9ca8b41311547b and /dev/null differ diff --git a/.git_backup/objects/31/8c4a8e4003bcff00f9a21e294e7815f170235b b/.git_backup/objects/31/8c4a8e4003bcff00f9a21e294e7815f170235b deleted file mode 100644 index 291dd5af..00000000 Binary files a/.git_backup/objects/31/8c4a8e4003bcff00f9a21e294e7815f170235b and /dev/null differ diff --git a/.git_backup/objects/31/8c52d36ab6c6a37bfe711b81d5b00a9ab57f8d b/.git_backup/objects/31/8c52d36ab6c6a37bfe711b81d5b00a9ab57f8d deleted file mode 100644 index ce041fb4..00000000 Binary files a/.git_backup/objects/31/8c52d36ab6c6a37bfe711b81d5b00a9ab57f8d and /dev/null differ diff --git a/.git_backup/objects/31/92f3771e9e2fea7207069ea4cb1859b177f2f6 b/.git_backup/objects/31/92f3771e9e2fea7207069ea4cb1859b177f2f6 deleted file mode 100644 index 53451ee6..00000000 --- a/.git_backup/objects/31/92f3771e9e2fea7207069ea4cb1859b177f2f6 +++ /dev/null @@ -1 +0,0 @@ -xmn F)XBMՙL2UwF!^\اqi >snMHlB%P8yQAn) ةY Ja$[zAZT =!dP#MPNXr\T8r`/e^k`)D5;GM2fg+_JnKXl;OAh!U B1Ns 9TnVjB1,UyZ7BT Vs @` \ No newline at end of file diff --git a/.git_backup/objects/31/93b618f5ac23f3f8e818565f2c8175735b86bc b/.git_backup/objects/31/93b618f5ac23f3f8e818565f2c8175735b86bc deleted file mode 100644 index 39c3846e..00000000 Binary files a/.git_backup/objects/31/93b618f5ac23f3f8e818565f2c8175735b86bc and /dev/null differ diff --git a/.git_backup/objects/31/9b5089a6a71e39f2280b4eb96d7da53a22b9ec b/.git_backup/objects/31/9b5089a6a71e39f2280b4eb96d7da53a22b9ec deleted file mode 100644 index 087b6a8e..00000000 Binary files a/.git_backup/objects/31/9b5089a6a71e39f2280b4eb96d7da53a22b9ec and /dev/null differ diff --git a/.git_backup/objects/31/9c1c15232436a45beb7d4d666c0b2185e7fc4a b/.git_backup/objects/31/9c1c15232436a45beb7d4d666c0b2185e7fc4a deleted file mode 100644 index 8b4c6315..00000000 Binary files a/.git_backup/objects/31/9c1c15232436a45beb7d4d666c0b2185e7fc4a and /dev/null differ diff --git a/.git_backup/objects/31/9db817c1ed3d35de1c08cadea002bf0eac3b0d b/.git_backup/objects/31/9db817c1ed3d35de1c08cadea002bf0eac3b0d deleted file mode 100644 index 14354938..00000000 Binary files a/.git_backup/objects/31/9db817c1ed3d35de1c08cadea002bf0eac3b0d and /dev/null differ diff --git a/.git_backup/objects/31/a1b1d35f7049548cd9bc5eb8ec5a13eef285e0 b/.git_backup/objects/31/a1b1d35f7049548cd9bc5eb8ec5a13eef285e0 deleted file mode 100644 index 64c74028..00000000 Binary files a/.git_backup/objects/31/a1b1d35f7049548cd9bc5eb8ec5a13eef285e0 and /dev/null differ diff --git a/.git_backup/objects/31/a7dc6abef3182f49eadf4dd88b6f57dde895d4 b/.git_backup/objects/31/a7dc6abef3182f49eadf4dd88b6f57dde895d4 deleted file mode 100644 index ffa69ed4..00000000 Binary files a/.git_backup/objects/31/a7dc6abef3182f49eadf4dd88b6f57dde895d4 and /dev/null differ diff --git a/.git_backup/objects/31/a836b2c2079ff64a5018f1a911437dbb431bce b/.git_backup/objects/31/a836b2c2079ff64a5018f1a911437dbb431bce deleted file mode 100644 index 5618e823..00000000 Binary files a/.git_backup/objects/31/a836b2c2079ff64a5018f1a911437dbb431bce and /dev/null differ diff --git a/.git_backup/objects/31/cc8231c4a730f42e6a5eedc4d83d18dd3042cf b/.git_backup/objects/31/cc8231c4a730f42e6a5eedc4d83d18dd3042cf deleted file mode 100644 index 4f75cc25..00000000 Binary files a/.git_backup/objects/31/cc8231c4a730f42e6a5eedc4d83d18dd3042cf and /dev/null differ diff --git a/.git_backup/objects/31/d1106a077c9d9442e5b9420339b943607cb3b1 b/.git_backup/objects/31/d1106a077c9d9442e5b9420339b943607cb3b1 deleted file mode 100644 index 5469240a..00000000 Binary files a/.git_backup/objects/31/d1106a077c9d9442e5b9420339b943607cb3b1 and /dev/null differ diff --git a/.git_backup/objects/31/d2cdc76b3e0e445a957254cc0045c6e1373d31 b/.git_backup/objects/31/d2cdc76b3e0e445a957254cc0045c6e1373d31 deleted file mode 100644 index 7612baf8..00000000 Binary files a/.git_backup/objects/31/d2cdc76b3e0e445a957254cc0045c6e1373d31 and /dev/null differ diff --git a/.git_backup/objects/31/d43a5ac686e8c3b1c47acfb0144859b0981adc b/.git_backup/objects/31/d43a5ac686e8c3b1c47acfb0144859b0981adc deleted file mode 100644 index aad03366..00000000 Binary files a/.git_backup/objects/31/d43a5ac686e8c3b1c47acfb0144859b0981adc and /dev/null differ diff --git a/.git_backup/objects/31/daf21520cf3230d88fa8e1b10bfee467cc1943 b/.git_backup/objects/31/daf21520cf3230d88fa8e1b10bfee467cc1943 deleted file mode 100644 index 2765833b..00000000 Binary files a/.git_backup/objects/31/daf21520cf3230d88fa8e1b10bfee467cc1943 and /dev/null differ diff --git a/.git_backup/objects/31/dc36d15a68b7595d068ccf895787b3ec017633 b/.git_backup/objects/31/dc36d15a68b7595d068ccf895787b3ec017633 deleted file mode 100644 index 0f2948e4..00000000 Binary files a/.git_backup/objects/31/dc36d15a68b7595d068ccf895787b3ec017633 and /dev/null differ diff --git a/.git_backup/objects/31/e56b9ae4297a01b270dac7ae51311c7fe10164 b/.git_backup/objects/31/e56b9ae4297a01b270dac7ae51311c7fe10164 deleted file mode 100644 index ede8de19..00000000 Binary files a/.git_backup/objects/31/e56b9ae4297a01b270dac7ae51311c7fe10164 and /dev/null differ diff --git a/.git_backup/objects/31/e8a4873b0ad4bef50c0157682b1e2c5912cb61 b/.git_backup/objects/31/e8a4873b0ad4bef50c0157682b1e2c5912cb61 deleted file mode 100644 index cefb048a..00000000 Binary files a/.git_backup/objects/31/e8a4873b0ad4bef50c0157682b1e2c5912cb61 and /dev/null differ diff --git a/.git_backup/objects/31/ec8c497299e540e51ffb6e5a2a2a1dff7159b6 b/.git_backup/objects/31/ec8c497299e540e51ffb6e5a2a2a1dff7159b6 deleted file mode 100644 index fb3e1029..00000000 --- a/.git_backup/objects/31/ec8c497299e540e51ffb6e5a2a2a1dff7159b6 +++ /dev/null @@ -1,2 +0,0 @@ -xOk0{֧5v9l!@[豗]Kv$-~qPFc?lkks37M S{(;ҐArtƭPfӳIx1 ?({ x1`$*.2$J'\i VX|sޫLeT |kKOd-ri g9>l:N. 5r-Hs-8eLYDĶօdqŧrr9GSTItI6wRz\ n>,Ou]p5F$v=~ң( LΧKm~BI:Q \ No newline at end of file diff --git a/.git_backup/objects/32/1b2bdc76f115b33f312e2a97588caf189a6604 b/.git_backup/objects/32/1b2bdc76f115b33f312e2a97588caf189a6604 deleted file mode 100644 index fbb07d5f..00000000 Binary files a/.git_backup/objects/32/1b2bdc76f115b33f312e2a97588caf189a6604 and /dev/null differ diff --git a/.git_backup/objects/32/1de3a0fc54af61ca985bd01b5f7b4279623031 b/.git_backup/objects/32/1de3a0fc54af61ca985bd01b5f7b4279623031 deleted file mode 100644 index 503d2ff5..00000000 Binary files a/.git_backup/objects/32/1de3a0fc54af61ca985bd01b5f7b4279623031 and /dev/null differ diff --git a/.git_backup/objects/32/1e1a1db6c9183a42e02b3dc388ad2200357649 b/.git_backup/objects/32/1e1a1db6c9183a42e02b3dc388ad2200357649 deleted file mode 100644 index de1b7f74..00000000 Binary files a/.git_backup/objects/32/1e1a1db6c9183a42e02b3dc388ad2200357649 and /dev/null differ diff --git a/.git_backup/objects/32/2728cd92cd867f2c0990d6f21a8e9d249f7520 b/.git_backup/objects/32/2728cd92cd867f2c0990d6f21a8e9d249f7520 deleted file mode 100644 index 25d11b28..00000000 Binary files a/.git_backup/objects/32/2728cd92cd867f2c0990d6f21a8e9d249f7520 and /dev/null differ diff --git a/.git_backup/objects/32/31e38b985af1ab7c992c6e621036819cc81093 b/.git_backup/objects/32/31e38b985af1ab7c992c6e621036819cc81093 deleted file mode 100644 index c52f7bae..00000000 --- a/.git_backup/objects/32/31e38b985af1ab7c992c6e621036819cc81093 +++ /dev/null @@ -1,3 +0,0 @@ -xK0}_qtD0 :Knߛv%OXN wv%/^si]!yUwDuJI9dM::^ -)ӆq0~&Qtߎw! F`\ĘtdV(uGqg$KA6rD* 'Wv3]LElUH})Ngy¤;S ҕF{Ѥ>XcDA3δVdݴ+PH[2?`:F\]C5.Ђ[o -,eUket $NײG \ No newline at end of file diff --git a/.git_backup/objects/32/32c80e2003489921578f7acbabc73fb9148205 b/.git_backup/objects/32/32c80e2003489921578f7acbabc73fb9148205 deleted file mode 100644 index ef631342..00000000 Binary files a/.git_backup/objects/32/32c80e2003489921578f7acbabc73fb9148205 and /dev/null differ diff --git a/.git_backup/objects/32/34e5f3b56279a05ea048fc3dad1176557b270d b/.git_backup/objects/32/34e5f3b56279a05ea048fc3dad1176557b270d deleted file mode 100644 index 112f5cea..00000000 Binary files a/.git_backup/objects/32/34e5f3b56279a05ea048fc3dad1176557b270d and /dev/null differ diff --git a/.git_backup/objects/32/37cf78c87afef352a0e1472ff00c69493bcf64 b/.git_backup/objects/32/37cf78c87afef352a0e1472ff00c69493bcf64 deleted file mode 100644 index 700afec2..00000000 Binary files a/.git_backup/objects/32/37cf78c87afef352a0e1472ff00c69493bcf64 and /dev/null differ diff --git a/.git_backup/objects/32/3b11bd1f36545a0ffe7d526f0caefd96b98391 b/.git_backup/objects/32/3b11bd1f36545a0ffe7d526f0caefd96b98391 deleted file mode 100644 index 75678422..00000000 Binary files a/.git_backup/objects/32/3b11bd1f36545a0ffe7d526f0caefd96b98391 and /dev/null differ diff --git a/.git_backup/objects/32/4564c541b7bc6306259bec6bf09669a2fe89fc b/.git_backup/objects/32/4564c541b7bc6306259bec6bf09669a2fe89fc deleted file mode 100644 index 868a0fe9..00000000 Binary files a/.git_backup/objects/32/4564c541b7bc6306259bec6bf09669a2fe89fc and /dev/null differ diff --git a/.git_backup/objects/32/4c5d1bb94b3f52f2b3aef6cac27af01aef90cc b/.git_backup/objects/32/4c5d1bb94b3f52f2b3aef6cac27af01aef90cc deleted file mode 100644 index 62970215..00000000 Binary files a/.git_backup/objects/32/4c5d1bb94b3f52f2b3aef6cac27af01aef90cc and /dev/null differ diff --git a/.git_backup/objects/32/4f9727e62f069bc589da364054d45b4869cdbc b/.git_backup/objects/32/4f9727e62f069bc589da364054d45b4869cdbc deleted file mode 100644 index 6ba54ee5..00000000 Binary files a/.git_backup/objects/32/4f9727e62f069bc589da364054d45b4869cdbc and /dev/null differ diff --git a/.git_backup/objects/32/5c9499c40cd466dc97272eba39093fd694bfec b/.git_backup/objects/32/5c9499c40cd466dc97272eba39093fd694bfec deleted file mode 100644 index 7481a80c..00000000 Binary files a/.git_backup/objects/32/5c9499c40cd466dc97272eba39093fd694bfec and /dev/null differ diff --git a/.git_backup/objects/32/66561882a0916c2c4d1fcfdb4a265160dc3efa b/.git_backup/objects/32/66561882a0916c2c4d1fcfdb4a265160dc3efa deleted file mode 100644 index c013011f..00000000 Binary files a/.git_backup/objects/32/66561882a0916c2c4d1fcfdb4a265160dc3efa and /dev/null differ diff --git a/.git_backup/objects/32/67a9faed299bccf74c2d0a6582841ca35b8b3d b/.git_backup/objects/32/67a9faed299bccf74c2d0a6582841ca35b8b3d deleted file mode 100644 index cda6ced1..00000000 Binary files a/.git_backup/objects/32/67a9faed299bccf74c2d0a6582841ca35b8b3d and /dev/null differ diff --git a/.git_backup/objects/32/7cc5ac225729a1e4f95d803c2f9c59ac65e3ac b/.git_backup/objects/32/7cc5ac225729a1e4f95d803c2f9c59ac65e3ac deleted file mode 100644 index 0703eb5a..00000000 Binary files a/.git_backup/objects/32/7cc5ac225729a1e4f95d803c2f9c59ac65e3ac and /dev/null differ diff --git a/.git_backup/objects/32/84243ddac48f285c38113c74d7f5a51153949d b/.git_backup/objects/32/84243ddac48f285c38113c74d7f5a51153949d deleted file mode 100644 index 5eb42b9c..00000000 Binary files a/.git_backup/objects/32/84243ddac48f285c38113c74d7f5a51153949d and /dev/null differ diff --git a/.git_backup/objects/32/90bd4c7fa148dff57d9949b26ceabd05b11f84 b/.git_backup/objects/32/90bd4c7fa148dff57d9949b26ceabd05b11f84 deleted file mode 100644 index da87a64d..00000000 Binary files a/.git_backup/objects/32/90bd4c7fa148dff57d9949b26ceabd05b11f84 and /dev/null differ diff --git a/.git_backup/objects/32/919a723fd3adb777b342fd42877bbcafcfd134 b/.git_backup/objects/32/919a723fd3adb777b342fd42877bbcafcfd134 deleted file mode 100644 index 6859fe80..00000000 --- a/.git_backup/objects/32/919a723fd3adb777b342fd42877bbcafcfd134 +++ /dev/null @@ -1 +0,0 @@ -xn {SpÑ"=OXۨ6u޾9DOľ{<ao\;f|5gy-RկqC C 0#T ^/sV?|,P'-rۓBO ev+Ge \ No newline at end of file diff --git a/.git_backup/objects/32/93576e012a1c931b5e89ebc065c67b65941084 b/.git_backup/objects/32/93576e012a1c931b5e89ebc065c67b65941084 deleted file mode 100644 index 27313826..00000000 Binary files a/.git_backup/objects/32/93576e012a1c931b5e89ebc065c67b65941084 and /dev/null differ diff --git a/.git_backup/objects/32/96d85c6a181541107a2476b98322fa2c9da697 b/.git_backup/objects/32/96d85c6a181541107a2476b98322fa2c9da697 deleted file mode 100644 index 1d590888..00000000 Binary files a/.git_backup/objects/32/96d85c6a181541107a2476b98322fa2c9da697 and /dev/null differ diff --git a/.git_backup/objects/32/96eff80a4ebce385b5ea9bec5d9475310f79fb b/.git_backup/objects/32/96eff80a4ebce385b5ea9bec5d9475310f79fb deleted file mode 100644 index e7513f74..00000000 Binary files a/.git_backup/objects/32/96eff80a4ebce385b5ea9bec5d9475310f79fb and /dev/null differ diff --git a/.git_backup/objects/32/9d6cdccf60345886b578dd03d4a6cacadc4f90 b/.git_backup/objects/32/9d6cdccf60345886b578dd03d4a6cacadc4f90 deleted file mode 100644 index caa5cdf8..00000000 Binary files a/.git_backup/objects/32/9d6cdccf60345886b578dd03d4a6cacadc4f90 and /dev/null differ diff --git a/.git_backup/objects/32/a0892dab97c68d2654615af00f5dab336b734f b/.git_backup/objects/32/a0892dab97c68d2654615af00f5dab336b734f deleted file mode 100644 index 3bedf56c..00000000 --- a/.git_backup/objects/32/a0892dab97c68d2654615af00f5dab336b734f +++ /dev/null @@ -1,2 +0,0 @@ -x]R10i4t@v(:*tNqXH)N.G37+Y:1$wm|z{{$"z6@o]WO[~7C sD0w&u5-f1֚1:?mgvtY۞s;%nس}fYn 3Z3 }R#0y cxg| Bb&C\ tUi$}GWNLW"9|!5MoK#ˉWg|9^"e\G2("Zdi&"lS)^pAҪ5qO""<i*ctK'R,*ĝŔچSm! OT,5ӫB3 -2^;h^<̓|r6]W1x>v'2ԮJjo*Wgs}?W`XCox XǾBܣ?c \ No newline at end of file diff --git a/.git_backup/objects/32/a161db469b547d32133596a7dda9db35915d02 b/.git_backup/objects/32/a161db469b547d32133596a7dda9db35915d02 deleted file mode 100644 index c10744d6..00000000 Binary files a/.git_backup/objects/32/a161db469b547d32133596a7dda9db35915d02 and /dev/null differ diff --git a/.git_backup/objects/32/a4770f40bf4adf42ad973dfa5b4db929e53f57 b/.git_backup/objects/32/a4770f40bf4adf42ad973dfa5b4db929e53f57 deleted file mode 100644 index b8e1381c..00000000 Binary files a/.git_backup/objects/32/a4770f40bf4adf42ad973dfa5b4db929e53f57 and /dev/null differ diff --git a/.git_backup/objects/32/a8118452ec52804ef1531b3e9a23b2acffed92 b/.git_backup/objects/32/a8118452ec52804ef1531b3e9a23b2acffed92 deleted file mode 100644 index 75949121..00000000 Binary files a/.git_backup/objects/32/a8118452ec52804ef1531b3e9a23b2acffed92 and /dev/null differ diff --git a/.git_backup/objects/32/aeff8f26504259e4e5de9314f34e0da8a9806b b/.git_backup/objects/32/aeff8f26504259e4e5de9314f34e0da8a9806b deleted file mode 100644 index 6c9a0808..00000000 Binary files a/.git_backup/objects/32/aeff8f26504259e4e5de9314f34e0da8a9806b and /dev/null differ diff --git a/.git_backup/objects/32/b15f67dcbb98c5436a06e47c2d17fc4c717e0f b/.git_backup/objects/32/b15f67dcbb98c5436a06e47c2d17fc4c717e0f deleted file mode 100644 index 97557ff3..00000000 --- a/.git_backup/objects/32/b15f67dcbb98c5436a06e47c2d17fc4c717e0f +++ /dev/null @@ -1,3 +0,0 @@ -xMJ@wAO hKh["&,,{wGd7ʵi| _#9g ߙI3˶7wd¼&)& -aXD -5XF*b ~Fd^g쌹vIqbH)Uє2O%Jᔎ/)Zw{덑vq`n1ط|^[#Sȑ3ra8%E--=u;|%2pC(+ z[h \ No newline at end of file diff --git a/.git_backup/objects/32/b2899a306dde401fa2e3952d06f5f4d9952bed b/.git_backup/objects/32/b2899a306dde401fa2e3952d06f5f4d9952bed deleted file mode 100644 index eb14212e..00000000 Binary files a/.git_backup/objects/32/b2899a306dde401fa2e3952d06f5f4d9952bed and /dev/null differ diff --git a/.git_backup/objects/32/b61edb2adaf68f427172c3d2ed77c72b056aa6 b/.git_backup/objects/32/b61edb2adaf68f427172c3d2ed77c72b056aa6 deleted file mode 100644 index 43aaf971..00000000 Binary files a/.git_backup/objects/32/b61edb2adaf68f427172c3d2ed77c72b056aa6 and /dev/null differ diff --git a/.git_backup/objects/32/bbe09d925679579c1ec015b435870d1282e6b3 b/.git_backup/objects/32/bbe09d925679579c1ec015b435870d1282e6b3 deleted file mode 100644 index 4bbe0bb6..00000000 --- a/.git_backup/objects/32/bbe09d925679579c1ec015b435870d1282e6b3 +++ /dev/null @@ -1 +0,0 @@ -xMj0{S,Eajץi![Kh V$>}贚0WOңq@H/c3-k3g%7"?h]R$(4Fo)9; ZxuIdPZЙyF2%]$mj$_ Ma 'lp>Y9_zk/అ<۬z.֥CV[Ug;"[gwA; SW$E)c1XtkAsk.7b_$Xsm@rؠ_އ;_3XWB1lViXD6~5%/E DKH+3vaIC \ No newline at end of file diff --git a/.git_backup/objects/33/f0565c0b23b883dff633ceb6b5354c9cffee50 b/.git_backup/objects/33/f0565c0b23b883dff633ceb6b5354c9cffee50 deleted file mode 100644 index 6ee1fd9e..00000000 Binary files a/.git_backup/objects/33/f0565c0b23b883dff633ceb6b5354c9cffee50 and /dev/null differ diff --git a/.git_backup/objects/33/f394d265d5da17dd5b3c2467e2e4e71af1395d b/.git_backup/objects/33/f394d265d5da17dd5b3c2467e2e4e71af1395d deleted file mode 100644 index 364dadd6..00000000 Binary files a/.git_backup/objects/33/f394d265d5da17dd5b3c2467e2e4e71af1395d and /dev/null differ diff --git a/.git_backup/objects/33/f7ce62da80d6f243ad7d2c9a10587152f6f398 b/.git_backup/objects/33/f7ce62da80d6f243ad7d2c9a10587152f6f398 deleted file mode 100644 index ff5156e6..00000000 Binary files a/.git_backup/objects/33/f7ce62da80d6f243ad7d2c9a10587152f6f398 and /dev/null differ diff --git a/.git_backup/objects/33/f9924f689192173ba36eb6050a4cd947fbd13c b/.git_backup/objects/33/f9924f689192173ba36eb6050a4cd947fbd13c deleted file mode 100644 index 8d1a6810..00000000 Binary files a/.git_backup/objects/33/f9924f689192173ba36eb6050a4cd947fbd13c and /dev/null differ diff --git a/.git_backup/objects/33/ffe02c463df342d4a8f5bdc739ddad9bd9f302 b/.git_backup/objects/33/ffe02c463df342d4a8f5bdc739ddad9bd9f302 deleted file mode 100644 index 78d9f610..00000000 Binary files a/.git_backup/objects/33/ffe02c463df342d4a8f5bdc739ddad9bd9f302 and /dev/null differ diff --git a/.git_backup/objects/34/03e40299482aeecfa36dd0a3b4640867888196 b/.git_backup/objects/34/03e40299482aeecfa36dd0a3b4640867888196 deleted file mode 100644 index a66739ee..00000000 Binary files a/.git_backup/objects/34/03e40299482aeecfa36dd0a3b4640867888196 and /dev/null differ diff --git a/.git_backup/objects/34/088f2c2bb14c9f9bbfb03d2b14c6d133df90f3 b/.git_backup/objects/34/088f2c2bb14c9f9bbfb03d2b14c6d133df90f3 deleted file mode 100644 index 85100f4b..00000000 Binary files a/.git_backup/objects/34/088f2c2bb14c9f9bbfb03d2b14c6d133df90f3 and /dev/null differ diff --git a/.git_backup/objects/34/0fcf72d312b66c0914ba65406cbcae19a96306 b/.git_backup/objects/34/0fcf72d312b66c0914ba65406cbcae19a96306 deleted file mode 100644 index 97a403af..00000000 Binary files a/.git_backup/objects/34/0fcf72d312b66c0914ba65406cbcae19a96306 and /dev/null differ diff --git a/.git_backup/objects/34/111180518d08810f0d94562ab14cbb66e02473 b/.git_backup/objects/34/111180518d08810f0d94562ab14cbb66e02473 deleted file mode 100644 index ee8f888d..00000000 Binary files a/.git_backup/objects/34/111180518d08810f0d94562ab14cbb66e02473 and /dev/null differ diff --git a/.git_backup/objects/34/199c2a984bc83e65afe549981c5f771632be7e b/.git_backup/objects/34/199c2a984bc83e65afe549981c5f771632be7e deleted file mode 100644 index 3378e156..00000000 Binary files a/.git_backup/objects/34/199c2a984bc83e65afe549981c5f771632be7e and /dev/null differ diff --git a/.git_backup/objects/34/1b0cc32d712fe7696459ddbadf9c7079d255b4 b/.git_backup/objects/34/1b0cc32d712fe7696459ddbadf9c7079d255b4 deleted file mode 100644 index 0958c2ea..00000000 Binary files a/.git_backup/objects/34/1b0cc32d712fe7696459ddbadf9c7079d255b4 and /dev/null differ diff --git a/.git_backup/objects/34/2a5124bea8bc2823d849503fdc6bf263af41ce b/.git_backup/objects/34/2a5124bea8bc2823d849503fdc6bf263af41ce deleted file mode 100644 index 36521710..00000000 Binary files a/.git_backup/objects/34/2a5124bea8bc2823d849503fdc6bf263af41ce and /dev/null differ diff --git a/.git_backup/objects/34/39e1519920f2772c36a07b3e8c9058649cbd72 b/.git_backup/objects/34/39e1519920f2772c36a07b3e8c9058649cbd72 deleted file mode 100644 index 70f137da..00000000 Binary files a/.git_backup/objects/34/39e1519920f2772c36a07b3e8c9058649cbd72 and /dev/null differ diff --git a/.git_backup/objects/34/3a9fc06a6ed29722eb414e76866370c93ebc8b b/.git_backup/objects/34/3a9fc06a6ed29722eb414e76866370c93ebc8b deleted file mode 100644 index 34bf832d..00000000 Binary files a/.git_backup/objects/34/3a9fc06a6ed29722eb414e76866370c93ebc8b and /dev/null differ diff --git a/.git_backup/objects/34/3b63227d2185863cd720bf449de000bbc794d0 b/.git_backup/objects/34/3b63227d2185863cd720bf449de000bbc794d0 deleted file mode 100644 index 57a83600..00000000 Binary files a/.git_backup/objects/34/3b63227d2185863cd720bf449de000bbc794d0 and /dev/null differ diff --git a/.git_backup/objects/34/3dabbad98f93f4db102afd705155e8ea6c0357 b/.git_backup/objects/34/3dabbad98f93f4db102afd705155e8ea6c0357 deleted file mode 100644 index c2a2ca8d..00000000 Binary files a/.git_backup/objects/34/3dabbad98f93f4db102afd705155e8ea6c0357 and /dev/null differ diff --git a/.git_backup/objects/34/5277d45370fe1442f6cf010528a3eefce07f29 b/.git_backup/objects/34/5277d45370fe1442f6cf010528a3eefce07f29 deleted file mode 100644 index 71647701..00000000 Binary files a/.git_backup/objects/34/5277d45370fe1442f6cf010528a3eefce07f29 and /dev/null differ diff --git a/.git_backup/objects/34/54684d09f84c281a0cdca0f418346ea15c671d b/.git_backup/objects/34/54684d09f84c281a0cdca0f418346ea15c671d deleted file mode 100644 index 984af025..00000000 Binary files a/.git_backup/objects/34/54684d09f84c281a0cdca0f418346ea15c671d and /dev/null differ diff --git a/.git_backup/objects/34/570d7471ef9c477064de4ee8ced73ba361edbe b/.git_backup/objects/34/570d7471ef9c477064de4ee8ced73ba361edbe deleted file mode 100644 index 8c680d65..00000000 Binary files a/.git_backup/objects/34/570d7471ef9c477064de4ee8ced73ba361edbe and /dev/null differ diff --git a/.git_backup/objects/34/58095f54ede1322eb2ab9e34288da87db54ca1 b/.git_backup/objects/34/58095f54ede1322eb2ab9e34288da87db54ca1 deleted file mode 100644 index 2a2b13e0..00000000 Binary files a/.git_backup/objects/34/58095f54ede1322eb2ab9e34288da87db54ca1 and /dev/null differ diff --git a/.git_backup/objects/34/5c91824cb84f5fb9e5c5945f26f62e52310e49 b/.git_backup/objects/34/5c91824cb84f5fb9e5c5945f26f62e52310e49 deleted file mode 100644 index ed609a23..00000000 Binary files a/.git_backup/objects/34/5c91824cb84f5fb9e5c5945f26f62e52310e49 and /dev/null differ diff --git a/.git_backup/objects/34/628ddf1b54e4da92eb105da1ad16cc8432bbea b/.git_backup/objects/34/628ddf1b54e4da92eb105da1ad16cc8432bbea deleted file mode 100644 index 2e0ff06c..00000000 Binary files a/.git_backup/objects/34/628ddf1b54e4da92eb105da1ad16cc8432bbea and /dev/null differ diff --git a/.git_backup/objects/34/660a2d9b18e92b5dd41ce7f24c9d549559a5d2 b/.git_backup/objects/34/660a2d9b18e92b5dd41ce7f24c9d549559a5d2 deleted file mode 100644 index 9895b094..00000000 Binary files a/.git_backup/objects/34/660a2d9b18e92b5dd41ce7f24c9d549559a5d2 and /dev/null differ diff --git a/.git_backup/objects/34/68992ce92033a4d6d798f3edd973532090528d b/.git_backup/objects/34/68992ce92033a4d6d798f3edd973532090528d deleted file mode 100644 index d1331801..00000000 Binary files a/.git_backup/objects/34/68992ce92033a4d6d798f3edd973532090528d and /dev/null differ diff --git a/.git_backup/objects/34/6cb26fe7567cb2c03a1100fe2be83d8d96eb5d b/.git_backup/objects/34/6cb26fe7567cb2c03a1100fe2be83d8d96eb5d deleted file mode 100644 index 5bcb938a..00000000 Binary files a/.git_backup/objects/34/6cb26fe7567cb2c03a1100fe2be83d8d96eb5d and /dev/null differ diff --git a/.git_backup/objects/34/727b43a7b0fb325143dfedee4db25c4b56f5db b/.git_backup/objects/34/727b43a7b0fb325143dfedee4db25c4b56f5db deleted file mode 100644 index f8550784..00000000 --- a/.git_backup/objects/34/727b43a7b0fb325143dfedee4db25c4b56f5db +++ /dev/null @@ -1,3 +0,0 @@ -xMK -1D]MV -C`.\s Ǵ̏3?SWE٧㸻 STpjxեh,\ oZ^+Sm$kz0Z( ?AB$v5_[@| \ No newline at end of file diff --git a/.git_backup/objects/34/7348293e2981d6c1ff11b16384c57f53e0cde9 b/.git_backup/objects/34/7348293e2981d6c1ff11b16384c57f53e0cde9 deleted file mode 100644 index 34ca76d1..00000000 Binary files a/.git_backup/objects/34/7348293e2981d6c1ff11b16384c57f53e0cde9 and /dev/null differ diff --git a/.git_backup/objects/34/751657044b81ff5a5db93073cbc2001040e013 b/.git_backup/objects/34/751657044b81ff5a5db93073cbc2001040e013 deleted file mode 100644 index 0f43026a..00000000 Binary files a/.git_backup/objects/34/751657044b81ff5a5db93073cbc2001040e013 and /dev/null differ diff --git a/.git_backup/objects/34/799060ae2f25df8a0c7f2510f6211dd8648cea b/.git_backup/objects/34/799060ae2f25df8a0c7f2510f6211dd8648cea deleted file mode 100644 index fb2fb449..00000000 Binary files a/.git_backup/objects/34/799060ae2f25df8a0c7f2510f6211dd8648cea and /dev/null differ diff --git a/.git_backup/objects/34/854be29ad1f931ee86b3ce20b116071e47bb82 b/.git_backup/objects/34/854be29ad1f931ee86b3ce20b116071e47bb82 deleted file mode 100644 index 9662df1b..00000000 Binary files a/.git_backup/objects/34/854be29ad1f931ee86b3ce20b116071e47bb82 and /dev/null differ diff --git a/.git_backup/objects/34/87593cbdf99dea883f6c40af2ebc65dfb79a66 b/.git_backup/objects/34/87593cbdf99dea883f6c40af2ebc65dfb79a66 deleted file mode 100644 index 6427f6d1..00000000 Binary files a/.git_backup/objects/34/87593cbdf99dea883f6c40af2ebc65dfb79a66 and /dev/null differ diff --git a/.git_backup/objects/34/8c9862d20e132d7ddaf05808d921bf17dbaf42 b/.git_backup/objects/34/8c9862d20e132d7ddaf05808d921bf17dbaf42 deleted file mode 100644 index 5c7d263d..00000000 Binary files a/.git_backup/objects/34/8c9862d20e132d7ddaf05808d921bf17dbaf42 and /dev/null differ diff --git a/.git_backup/objects/34/a73ea25e3122686d579f532d5804ff3bab7fac b/.git_backup/objects/34/a73ea25e3122686d579f532d5804ff3bab7fac deleted file mode 100644 index 017e499a..00000000 --- a/.git_backup/objects/34/a73ea25e3122686d579f532d5804ff3bab7fac +++ /dev/null @@ -1,3 +0,0 @@ -xMN=O0R|(uhEB -ǨR;qVb)3?܆ǽK{!^0w5/&#?7f2S~ZXJ=ס|8\6󪍸"71YK2- 7P"讀)Z3 -k"f !C/^23 vװ~@1uW@ Vw:V?!E(vi 8b[轁lVZ9/"%ō0pG3] \ No newline at end of file diff --git a/.git_backup/objects/34/b63ac63a87ee3ea8e7a0f3f5b5406c437e2112 b/.git_backup/objects/34/b63ac63a87ee3ea8e7a0f3f5b5406c437e2112 deleted file mode 100644 index 1d5bf800..00000000 Binary files a/.git_backup/objects/34/b63ac63a87ee3ea8e7a0f3f5b5406c437e2112 and /dev/null differ diff --git a/.git_backup/objects/34/b735c34a87d36ab33b993ce65b1ac129b94f20 b/.git_backup/objects/34/b735c34a87d36ab33b993ce65b1ac129b94f20 deleted file mode 100644 index e348232f..00000000 Binary files a/.git_backup/objects/34/b735c34a87d36ab33b993ce65b1ac129b94f20 and /dev/null differ diff --git a/.git_backup/objects/34/b914ef899c393f95313805c18f7d8836544351 b/.git_backup/objects/34/b914ef899c393f95313805c18f7d8836544351 deleted file mode 100644 index 57146345..00000000 Binary files a/.git_backup/objects/34/b914ef899c393f95313805c18f7d8836544351 and /dev/null differ diff --git a/.git_backup/objects/34/b9a3f1f14ad7dac153cf4129d11de345345d78 b/.git_backup/objects/34/b9a3f1f14ad7dac153cf4129d11de345345d78 deleted file mode 100644 index b5f081c7..00000000 Binary files a/.git_backup/objects/34/b9a3f1f14ad7dac153cf4129d11de345345d78 and /dev/null differ diff --git a/.git_backup/objects/34/bb8ade84715be5cd146dde4ca49c99f70ed535 b/.git_backup/objects/34/bb8ade84715be5cd146dde4ca49c99f70ed535 deleted file mode 100644 index d3ab2522..00000000 Binary files a/.git_backup/objects/34/bb8ade84715be5cd146dde4ca49c99f70ed535 and /dev/null differ diff --git a/.git_backup/objects/34/bba581b31c7c553c7c6c7a80e56bfdf6cfe31d b/.git_backup/objects/34/bba581b31c7c553c7c6c7a80e56bfdf6cfe31d deleted file mode 100644 index ccff3799..00000000 Binary files a/.git_backup/objects/34/bba581b31c7c553c7c6c7a80e56bfdf6cfe31d and /dev/null differ diff --git a/.git_backup/objects/34/bc81cd6918903cf6db7b4eb9edfbaa53582bd0 b/.git_backup/objects/34/bc81cd6918903cf6db7b4eb9edfbaa53582bd0 deleted file mode 100644 index 97ed7491..00000000 Binary files a/.git_backup/objects/34/bc81cd6918903cf6db7b4eb9edfbaa53582bd0 and /dev/null differ diff --git a/.git_backup/objects/34/c82e5a611eaffadccdfd33485ea05969aab30c b/.git_backup/objects/34/c82e5a611eaffadccdfd33485ea05969aab30c deleted file mode 100644 index 8c9a5c34..00000000 Binary files a/.git_backup/objects/34/c82e5a611eaffadccdfd33485ea05969aab30c and /dev/null differ diff --git a/.git_backup/objects/34/cb87e451a38bef48d01d2f33e13c08cca9f864 b/.git_backup/objects/34/cb87e451a38bef48d01d2f33e13c08cca9f864 deleted file mode 100644 index ecf15dbd..00000000 Binary files a/.git_backup/objects/34/cb87e451a38bef48d01d2f33e13c08cca9f864 and /dev/null differ diff --git a/.git_backup/objects/34/ce092c6d08d9cdc2704840b7539de7b5ae1dcc b/.git_backup/objects/34/ce092c6d08d9cdc2704840b7539de7b5ae1dcc deleted file mode 100644 index 13a39ff2..00000000 Binary files a/.git_backup/objects/34/ce092c6d08d9cdc2704840b7539de7b5ae1dcc and /dev/null differ diff --git a/.git_backup/objects/34/d0137c26fda84e006dfa3ff4de737b9e50c8c5 b/.git_backup/objects/34/d0137c26fda84e006dfa3ff4de737b9e50c8c5 deleted file mode 100644 index 3a629093..00000000 Binary files a/.git_backup/objects/34/d0137c26fda84e006dfa3ff4de737b9e50c8c5 and /dev/null differ diff --git a/.git_backup/objects/34/d442684b032dbea327d914fe2bd0e01d141399 b/.git_backup/objects/34/d442684b032dbea327d914fe2bd0e01d141399 deleted file mode 100644 index 815f739d..00000000 Binary files a/.git_backup/objects/34/d442684b032dbea327d914fe2bd0e01d141399 and /dev/null differ diff --git a/.git_backup/objects/34/d5f686eb853f57bd5420b3067dbe6ee36a189b b/.git_backup/objects/34/d5f686eb853f57bd5420b3067dbe6ee36a189b deleted file mode 100644 index d95a32b4..00000000 Binary files a/.git_backup/objects/34/d5f686eb853f57bd5420b3067dbe6ee36a189b and /dev/null differ diff --git a/.git_backup/objects/34/e6546baeec15781e05525e5fa78880b29eb27b b/.git_backup/objects/34/e6546baeec15781e05525e5fa78880b29eb27b deleted file mode 100644 index 914ae568..00000000 Binary files a/.git_backup/objects/34/e6546baeec15781e05525e5fa78880b29eb27b and /dev/null differ diff --git a/.git_backup/objects/34/f11ad66c88047f2c049a4cdcc937b4b78ea6d6 b/.git_backup/objects/34/f11ad66c88047f2c049a4cdcc937b4b78ea6d6 deleted file mode 100644 index 69e8a468..00000000 Binary files a/.git_backup/objects/34/f11ad66c88047f2c049a4cdcc937b4b78ea6d6 and /dev/null differ diff --git a/.git_backup/objects/34/fc8b7840e8954ece3159bb1755607fd376ee96 b/.git_backup/objects/34/fc8b7840e8954ece3159bb1755607fd376ee96 deleted file mode 100644 index fa43511a..00000000 --- a/.git_backup/objects/34/fc8b7840e8954ece3159bb1755607fd376ee96 +++ /dev/null @@ -1,4 +0,0 @@ -xE= -@7`!B`k{6G\ly+!{ztVn -q`I<M٨6-~ -|Yys#G1QX2-Úh'})YiT]MT2v4$KF0J -2pȎ!.THo[|v= \ No newline at end of file diff --git a/.git_backup/objects/34/fef7270443a0c47b2891fbc6a61bfeba09144f b/.git_backup/objects/34/fef7270443a0c47b2891fbc6a61bfeba09144f deleted file mode 100644 index 32494dee..00000000 Binary files a/.git_backup/objects/34/fef7270443a0c47b2891fbc6a61bfeba09144f and /dev/null differ diff --git a/.git_backup/objects/35/1801fd47a2e3e48d9b63034fbae28f8318c9f9 b/.git_backup/objects/35/1801fd47a2e3e48d9b63034fbae28f8318c9f9 deleted file mode 100644 index 802787c9..00000000 Binary files a/.git_backup/objects/35/1801fd47a2e3e48d9b63034fbae28f8318c9f9 and /dev/null differ diff --git a/.git_backup/objects/35/1a43dd7618099363230b76558cd1737e7b3e67 b/.git_backup/objects/35/1a43dd7618099363230b76558cd1737e7b3e67 deleted file mode 100644 index 0d5954d1..00000000 Binary files a/.git_backup/objects/35/1a43dd7618099363230b76558cd1737e7b3e67 and /dev/null differ diff --git a/.git_backup/objects/35/1b9240e8e2a7e09da904c243f6ab1a44dda699 b/.git_backup/objects/35/1b9240e8e2a7e09da904c243f6ab1a44dda699 deleted file mode 100644 index fca85ddb..00000000 Binary files a/.git_backup/objects/35/1b9240e8e2a7e09da904c243f6ab1a44dda699 and /dev/null differ diff --git a/.git_backup/objects/35/1f0a1d487ebbc41c415c00cc7e678ca4b2d204 b/.git_backup/objects/35/1f0a1d487ebbc41c415c00cc7e678ca4b2d204 deleted file mode 100644 index fbc096e6..00000000 Binary files a/.git_backup/objects/35/1f0a1d487ebbc41c415c00cc7e678ca4b2d204 and /dev/null differ diff --git a/.git_backup/objects/35/26bf68b2112a7c66bbd2cb7d14413274ca9f27 b/.git_backup/objects/35/26bf68b2112a7c66bbd2cb7d14413274ca9f27 deleted file mode 100644 index 66d851e2..00000000 Binary files a/.git_backup/objects/35/26bf68b2112a7c66bbd2cb7d14413274ca9f27 and /dev/null differ diff --git a/.git_backup/objects/35/3fe2aa3564c79809e05e12711f90669e5e2388 b/.git_backup/objects/35/3fe2aa3564c79809e05e12711f90669e5e2388 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/35/481e26ab9f8692f56c206dd21c1074177d1626 b/.git_backup/objects/35/481e26ab9f8692f56c206dd21c1074177d1626 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/35/51bc2d29846441299cf57b397b02fc164c99b9 b/.git_backup/objects/35/51bc2d29846441299cf57b397b02fc164c99b9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/35/5c4cf37748123cb82a8afa98d5c4c9755a569c b/.git_backup/objects/35/5c4cf37748123cb82a8afa98d5c4c9755a569c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/35/5fcec858efd1215a1194a683fe3ac1332b71a1 b/.git_backup/objects/35/5fcec858efd1215a1194a683fe3ac1332b71a1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/35/64000bfde23a1ea5ad990398010ddee28f1a6b b/.git_backup/objects/35/64000bfde23a1ea5ad990398010ddee28f1a6b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/35/6d03834caee785803a5aa6e2ecb02a3c2be449 b/.git_backup/objects/35/6d03834caee785803a5aa6e2ecb02a3c2be449 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/35/78faeff1a96bb038beab27f1c16e2bbf653eba b/.git_backup/objects/35/78faeff1a96bb038beab27f1c16e2bbf653eba deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/35/7ce117bf407361c9e4946ed9e5334e90bc11cc b/.git_backup/objects/35/7ce117bf407361c9e4946ed9e5334e90bc11cc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/35/81d639bcddcb4c021594502f6e5971db4b570c b/.git_backup/objects/35/81d639bcddcb4c021594502f6e5971db4b570c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/35/82bb15cd7322088839b0134987ad10e717b6b5 b/.git_backup/objects/35/82bb15cd7322088839b0134987ad10e717b6b5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/35/8562d5061f14c0efb13edd39f48da023a809bf b/.git_backup/objects/35/8562d5061f14c0efb13edd39f48da023a809bf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/35/860a1993754b4d709d42077279a8910707633f b/.git_backup/objects/35/860a1993754b4d709d42077279a8910707633f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/35/89ec18bfee2dfd793b0842dc71cdcaba171972 b/.git_backup/objects/35/89ec18bfee2dfd793b0842dc71cdcaba171972 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/35/89fe726b3bbddcbf7382658aec41fbd2c4a941 b/.git_backup/objects/35/89fe726b3bbddcbf7382658aec41fbd2c4a941 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/35/8f4c0f9a4c3982a4156e09c56915ed396075f9 b/.git_backup/objects/35/8f4c0f9a4c3982a4156e09c56915ed396075f9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/35/90bee8d29a7670d5c0e94c2a1c83c83670e766 b/.git_backup/objects/35/90bee8d29a7670d5c0e94c2a1c83c83670e766 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/35/9c3cea62f9c9f225d626759a8eeb3761f9fc58 b/.git_backup/objects/35/9c3cea62f9c9f225d626759a8eeb3761f9fc58 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/35/9f19d928d94d0038af9b1035053859c83e4ea6 b/.git_backup/objects/35/9f19d928d94d0038af9b1035053859c83e4ea6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/35/a24133446b9ee1e8f8a7931519d93517130315 b/.git_backup/objects/35/a24133446b9ee1e8f8a7931519d93517130315 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/35/a77916a9f759413ee75f5db0f461a0a096723b b/.git_backup/objects/35/a77916a9f759413ee75f5db0f461a0a096723b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/35/a88a802003ee5eadf0a8dd9124321b3f667f42 b/.git_backup/objects/35/a88a802003ee5eadf0a8dd9124321b3f667f42 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/35/ab56315b6b070cfb823b3c86f2cce248b60fdf b/.git_backup/objects/35/ab56315b6b070cfb823b3c86f2cce248b60fdf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/35/ae8121364d4fb3292c11f2a72333f456fa9c0a b/.git_backup/objects/35/ae8121364d4fb3292c11f2a72333f456fa9c0a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/35/af28f2f79789927a8578d4a7847b24fdf9eaf5 b/.git_backup/objects/35/af28f2f79789927a8578d4a7847b24fdf9eaf5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/35/affa45e0d434e2fd5cb65ea14c9cbb7917863d b/.git_backup/objects/35/affa45e0d434e2fd5cb65ea14c9cbb7917863d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/35/b8b17928cc130c1b5feef840788382aa40baae b/.git_backup/objects/35/b8b17928cc130c1b5feef840788382aa40baae deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/35/c0da3490b371f3e8953128537fc19665922362 b/.git_backup/objects/35/c0da3490b371f3e8953128537fc19665922362 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/35/c1f3e6652fe20be9ea06d6796b964b36781993 b/.git_backup/objects/35/c1f3e6652fe20be9ea06d6796b964b36781993 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/35/c531c0709fabace97e52cacef74b4cfbbcd820 b/.git_backup/objects/35/c531c0709fabace97e52cacef74b4cfbbcd820 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/35/c7931c28c19834bc1b95b1236e2ade16b65e1a b/.git_backup/objects/35/c7931c28c19834bc1b95b1236e2ade16b65e1a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/35/c81c2891ed67e8a9d038e5851d59c797b1776d b/.git_backup/objects/35/c81c2891ed67e8a9d038e5851d59c797b1776d deleted file mode 100644 index 2c418b9d..00000000 Binary files a/.git_backup/objects/35/c81c2891ed67e8a9d038e5851d59c797b1776d and /dev/null differ diff --git a/.git_backup/objects/35/c8d47aaea16202f314ddf937ac702063cefa1a b/.git_backup/objects/35/c8d47aaea16202f314ddf937ac702063cefa1a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/35/cbc0c62f05cbf56d48034df77faa8da383ef6a b/.git_backup/objects/35/cbc0c62f05cbf56d48034df77faa8da383ef6a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/35/d07bda9a33339f031f59a3eabd811301bb2aaa b/.git_backup/objects/35/d07bda9a33339f031f59a3eabd811301bb2aaa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/35/dcb715bca4cb7f4b0dca287648ef8ee797cd73 b/.git_backup/objects/35/dcb715bca4cb7f4b0dca287648ef8ee797cd73 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/35/e5c2657ec1b7e243b764c67658808494729ee3 b/.git_backup/objects/35/e5c2657ec1b7e243b764c67658808494729ee3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/35/f3a67c962d1542021ddcb9c0c1df92fff5c089 b/.git_backup/objects/35/f3a67c962d1542021ddcb9c0c1df92fff5c089 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/35/f5f466976650ee33980184eec91c915eb877d2 b/.git_backup/objects/35/f5f466976650ee33980184eec91c915eb877d2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/35/fbfae723f8325cb9e6e2a73349552a4e6d4108 b/.git_backup/objects/35/fbfae723f8325cb9e6e2a73349552a4e6d4108 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/046aaeacaaeb914d360e49f0eb98c5545c7114 b/.git_backup/objects/36/046aaeacaaeb914d360e49f0eb98c5545c7114 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/07a2993911087a785155173e96e6c6e2686688 b/.git_backup/objects/36/07a2993911087a785155173e96e6c6e2686688 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/09b63a8505e374724fe150d38267814c32c3c7 b/.git_backup/objects/36/09b63a8505e374724fe150d38267814c32c3c7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/101c1ce8d3d0aa0012c2d71e6df2f3de3383ad b/.git_backup/objects/36/101c1ce8d3d0aa0012c2d71e6df2f3de3383ad deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/1194e17c1552bdd36f74b7540d6dd8c169c1f2 b/.git_backup/objects/36/1194e17c1552bdd36f74b7540d6dd8c169c1f2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/1c9669d79be6433ee7c2089be0ec9a87d311b9 b/.git_backup/objects/36/1c9669d79be6433ee7c2089be0ec9a87d311b9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/27674f0298382adfb8ff55364af6db8da68eb7 b/.git_backup/objects/36/27674f0298382adfb8ff55364af6db8da68eb7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/286df379e28ea997bea3ee1fd62cadebebbba9 b/.git_backup/objects/36/286df379e28ea997bea3ee1fd62cadebebbba9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/33bf8db8d773f8a00da4e6f515cc5f94cf6212 b/.git_backup/objects/36/33bf8db8d773f8a00da4e6f515cc5f94cf6212 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/477dec8a7b9795f3f414839ade1b245f720dbf b/.git_backup/objects/36/477dec8a7b9795f3f414839ade1b245f720dbf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/487c8a98e56eb6abf5fba83ed21ae575d40e09 b/.git_backup/objects/36/487c8a98e56eb6abf5fba83ed21ae575d40e09 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/4acb6a2fda7042e02dc972b0bb53be13275b87 b/.git_backup/objects/36/4acb6a2fda7042e02dc972b0bb53be13275b87 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/4b3d35e199892df76d3be3646ecbb971ab24a1 b/.git_backup/objects/36/4b3d35e199892df76d3be3646ecbb971ab24a1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/575f67cb35bfaff8ce707066aa594dede3fb59 b/.git_backup/objects/36/575f67cb35bfaff8ce707066aa594dede3fb59 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/588a88c3ba32d8552a84e014a20b3de6f93f4d b/.git_backup/objects/36/588a88c3ba32d8552a84e014a20b3de6f93f4d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/621b25c08f18e4545100c6eaec015123c3bf9f b/.git_backup/objects/36/621b25c08f18e4545100c6eaec015123c3bf9f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/642ea7deed63812ef61ffc507ee9373fa98336 b/.git_backup/objects/36/642ea7deed63812ef61ffc507ee9373fa98336 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/66d00707ac837fa42a3c016c0fce522ba067c1 b/.git_backup/objects/36/66d00707ac837fa42a3c016c0fce522ba067c1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/6c0f7cf2f74053049fc263d56ec2ebadc96f37 b/.git_backup/objects/36/6c0f7cf2f74053049fc263d56ec2ebadc96f37 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/6c51d6a5fada04eddfcce7b1c553f27ca5746b b/.git_backup/objects/36/6c51d6a5fada04eddfcce7b1c553f27ca5746b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/76b35af1d40b9c62696ae2762dabeba8c96c7d b/.git_backup/objects/36/76b35af1d40b9c62696ae2762dabeba8c96c7d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/7b3afb82c8b44bcb046af6cc406daf368c13d7 b/.git_backup/objects/36/7b3afb82c8b44bcb046af6cc406daf368c13d7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/804a95d7ef3d756412d0afd3f73ea1a6b5cbb0 b/.git_backup/objects/36/804a95d7ef3d756412d0afd3f73ea1a6b5cbb0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/93bba59ce6b9636f8cfb333cf06bac7da0b878 b/.git_backup/objects/36/93bba59ce6b9636f8cfb333cf06bac7da0b878 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/9407c303bb7d6ae9ced3b7a54239605e19ca1e b/.git_backup/objects/36/9407c303bb7d6ae9ced3b7a54239605e19ca1e deleted file mode 100644 index 7f5b79d1..00000000 Binary files a/.git_backup/objects/36/9407c303bb7d6ae9ced3b7a54239605e19ca1e and /dev/null differ diff --git a/.git_backup/objects/36/97074e83e1f104ff87d914a22f5693c352910e b/.git_backup/objects/36/97074e83e1f104ff87d914a22f5693c352910e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/9747f227dfd992a7f4419f544683183ac5b140 b/.git_backup/objects/36/9747f227dfd992a7f4419f544683183ac5b140 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/9832e9bc05cc502536abd07f1f56382f16acb5 b/.git_backup/objects/36/9832e9bc05cc502536abd07f1f56382f16acb5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/98c8853b46d4a42194002523b57fddfb225908 b/.git_backup/objects/36/98c8853b46d4a42194002523b57fddfb225908 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/9973cc04e79731a85597c7cb68faf63856184e b/.git_backup/objects/36/9973cc04e79731a85597c7cb68faf63856184e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/b318109eac5e459db9de8f81895ece69290dd3 b/.git_backup/objects/36/b318109eac5e459db9de8f81895ece69290dd3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/b9827bf8a449232bb7a09456fbb63f8e1991cf b/.git_backup/objects/36/b9827bf8a449232bb7a09456fbb63f8e1991cf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/c47b82c07e8ee9b03493cd5d7cd4b32833621e b/.git_backup/objects/36/c47b82c07e8ee9b03493cd5d7cd4b32833621e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/c9252c647e67bc7353c523152568b993c1331f b/.git_backup/objects/36/c9252c647e67bc7353c523152568b993c1331f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/d3971d10a3ddfd9af9a3b5e8d1254431c94502 b/.git_backup/objects/36/d3971d10a3ddfd9af9a3b5e8d1254431c94502 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/db14f6e818aca278c347b94b67be99ffd06a95 b/.git_backup/objects/36/db14f6e818aca278c347b94b67be99ffd06a95 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/dd768915c2ca9bc90a5fc1a1251324e0c1fc5c b/.git_backup/objects/36/dd768915c2ca9bc90a5fc1a1251324e0c1fc5c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/de808ef06f779d073900677a5825bb791f89ff b/.git_backup/objects/36/de808ef06f779d073900677a5825bb791f89ff deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/f24aa1083310d03b10c2064d348e2913d5161d b/.git_backup/objects/36/f24aa1083310d03b10c2064d348e2913d5161d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/f27ecaa3c22334215a04dcb72e2d52d3cc8a83 b/.git_backup/objects/36/f27ecaa3c22334215a04dcb72e2d52d3cc8a83 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/f362bac5049cb89cdd3575cc9b825255418d0e b/.git_backup/objects/36/f362bac5049cb89cdd3575cc9b825255418d0e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/f4a75e017c3e7467c23564327c5aeeaac0a145 b/.git_backup/objects/36/f4a75e017c3e7467c23564327c5aeeaac0a145 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/f529a7087cb6b85e33be8b0e3daa06ddd9e2f3 b/.git_backup/objects/36/f529a7087cb6b85e33be8b0e3daa06ddd9e2f3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/36/fa79d0bb7e34b87cbb857ed3440dd699e76401 b/.git_backup/objects/36/fa79d0bb7e34b87cbb857ed3440dd699e76401 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/015cc2a6a8d9fd21183a0220ff320f7b41b57b b/.git_backup/objects/37/015cc2a6a8d9fd21183a0220ff320f7b41b57b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/01fc8a3675000764f0b40e012ed83248fadef9 b/.git_backup/objects/37/01fc8a3675000764f0b40e012ed83248fadef9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/16f7e3b3ebc86a007f4a0753074ac96b9a971f b/.git_backup/objects/37/16f7e3b3ebc86a007f4a0753074ac96b9a971f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/196ba95419207787927672b9fbc53b3f4dd9bc b/.git_backup/objects/37/196ba95419207787927672b9fbc53b3f4dd9bc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/1e8cd596c586b854ef3b089de1efcfe05e3bce b/.git_backup/objects/37/1e8cd596c586b854ef3b089de1efcfe05e3bce deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/257db1b1525c2149cbf28b766a35e7b6406c54 b/.git_backup/objects/37/257db1b1525c2149cbf28b766a35e7b6406c54 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/2806a20071bf9997fb201a2aa625b8c411a368 b/.git_backup/objects/37/2806a20071bf9997fb201a2aa625b8c411a368 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/281ac1efdc278ca4fb205cae73f2bade7e7b47 b/.git_backup/objects/37/281ac1efdc278ca4fb205cae73f2bade7e7b47 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/288f548ccd0aec0ec098d6b0e62a4534ec7570 b/.git_backup/objects/37/288f548ccd0aec0ec098d6b0e62a4534ec7570 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/31e40d8634c4d58ddb3378d828c92948f06d67 b/.git_backup/objects/37/31e40d8634c4d58ddb3378d828c92948f06d67 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/3226277acdb1a0aa9fc4e0e4158ebf3459e09a b/.git_backup/objects/37/3226277acdb1a0aa9fc4e0e4158ebf3459e09a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/3867cb5100b7369cf4d47299be37eec7a3ed19 b/.git_backup/objects/37/3867cb5100b7369cf4d47299be37eec7a3ed19 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/3b14e72e083ddce84016410dd202794274a353 b/.git_backup/objects/37/3b14e72e083ddce84016410dd202794274a353 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/43d5b17d2ec3966cd5329ba6c172d823bb3fe1 b/.git_backup/objects/37/43d5b17d2ec3966cd5329ba6c172d823bb3fe1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/44e8978dc482116801271a62e552fd67cad54c b/.git_backup/objects/37/44e8978dc482116801271a62e552fd67cad54c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/4586ea67601c4512b52859ff4e73bb30dbecc0 b/.git_backup/objects/37/4586ea67601c4512b52859ff4e73bb30dbecc0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/473e82fb2076483ee026b6af8661b8189cd4be b/.git_backup/objects/37/473e82fb2076483ee026b6af8661b8189cd4be deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/4750a411fb74939ef4cbad789de95013e3598f b/.git_backup/objects/37/4750a411fb74939ef4cbad789de95013e3598f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/4a6d701ccdbbea3aaf0c62e6696338650c85ca b/.git_backup/objects/37/4a6d701ccdbbea3aaf0c62e6696338650c85ca deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/4e4c0f039cd30b4f991c90bf0542fc1269f434 b/.git_backup/objects/37/4e4c0f039cd30b4f991c90bf0542fc1269f434 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/518cd193afedf36440a9b0415f57175358237f b/.git_backup/objects/37/518cd193afedf36440a9b0415f57175358237f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/51b3489c61e92960ec93f8a69bcf84277d8d72 b/.git_backup/objects/37/51b3489c61e92960ec93f8a69bcf84277d8d72 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/54cb4b61288097ce7b1f675a14a7e4615442f6 b/.git_backup/objects/37/54cb4b61288097ce7b1f675a14a7e4615442f6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/6465212164654cc5cf792aeaf69d01141f0343 b/.git_backup/objects/37/6465212164654cc5cf792aeaf69d01141f0343 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/69d286998309248d1dc9a932e15d32368e1348 b/.git_backup/objects/37/69d286998309248d1dc9a932e15d32368e1348 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/6e04aa6e5babfae1c3f7448bb25ae2f702321b b/.git_backup/objects/37/6e04aa6e5babfae1c3f7448bb25ae2f702321b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/706c5fe83fa6b6b72706d5c78aa87e708c9196 b/.git_backup/objects/37/706c5fe83fa6b6b72706d5c78aa87e708c9196 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/7941252eafc7719d5e7253facc2e4b71693f0f b/.git_backup/objects/37/7941252eafc7719d5e7253facc2e4b71693f0f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/827291fb5a76d7ef9a7a3a695710b2074ca09a b/.git_backup/objects/37/827291fb5a76d7ef9a7a3a695710b2074ca09a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/85dcc2b3d20fd81888bd3197267e2cf70b1c5f b/.git_backup/objects/37/85dcc2b3d20fd81888bd3197267e2cf70b1c5f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/8c42281f903e292bd7c9cf3263849812cd09af b/.git_backup/objects/37/8c42281f903e292bd7c9cf3263849812cd09af deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/8fffcf91acda7af9a3305dec76cb74b5acf533 b/.git_backup/objects/37/8fffcf91acda7af9a3305dec76cb74b5acf533 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/92f26e994dd8767d45fb407ad0057722f34a48 b/.git_backup/objects/37/92f26e994dd8767d45fb407ad0057722f34a48 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/93ee1d52b9c11ce256f93416a16f4b0f65c07f b/.git_backup/objects/37/93ee1d52b9c11ce256f93416a16f4b0f65c07f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/9c766b94d6cb2464a92f19d163fdb7093b42eb b/.git_backup/objects/37/9c766b94d6cb2464a92f19d163fdb7093b42eb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/9df1bef3293b346baf1eaa9ecf98a841e11ae2 b/.git_backup/objects/37/9df1bef3293b346baf1eaa9ecf98a841e11ae2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/9fea695355de09378f976833a60dbd2f7f5abd b/.git_backup/objects/37/9fea695355de09378f976833a60dbd2f7f5abd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/a15ff2d8aca2097815611a246b5e163eb83c4b b/.git_backup/objects/37/a15ff2d8aca2097815611a246b5e163eb83c4b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/a73172e74189a4ff2707e11da94a8b576af747 b/.git_backup/objects/37/a73172e74189a4ff2707e11da94a8b576af747 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/ab9d8c48080f480808e572573e93cd4ef6295e b/.git_backup/objects/37/ab9d8c48080f480808e572573e93cd4ef6295e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/aec48fa77cdeb5cd27998a272897aaeedac031 b/.git_backup/objects/37/aec48fa77cdeb5cd27998a272897aaeedac031 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/b0e6531f1544e1ba9b5895c48939fc97441ce7 b/.git_backup/objects/37/b0e6531f1544e1ba9b5895c48939fc97441ce7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/b5d77c670227e29758dadf4c13f80aa852141e b/.git_backup/objects/37/b5d77c670227e29758dadf4c13f80aa852141e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/b7d266975e330f9befc02cc99cd7b3e5c4495d b/.git_backup/objects/37/b7d266975e330f9befc02cc99cd7b3e5c4495d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/c2607f5329ed5b960769161dbadb770d89f0ee b/.git_backup/objects/37/c2607f5329ed5b960769161dbadb770d89f0ee deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/c58c85ffebba9cc96469c35f42180c07e76019 b/.git_backup/objects/37/c58c85ffebba9cc96469c35f42180c07e76019 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/ca654994f6c5b09981730e77baace20119ce4c b/.git_backup/objects/37/ca654994f6c5b09981730e77baace20119ce4c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/cb85e4dbfb7ac9c01eecf584a1a721ed251e93 b/.git_backup/objects/37/cb85e4dbfb7ac9c01eecf584a1a721ed251e93 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/d1663b2f72447800d9a553929e3de932244289 b/.git_backup/objects/37/d1663b2f72447800d9a553929e3de932244289 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/dc3408e7aa6e27214798672468b2121303e296 b/.git_backup/objects/37/dc3408e7aa6e27214798672468b2121303e296 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/e07af71213ef78baa2218b768b9ff450a39f47 b/.git_backup/objects/37/e07af71213ef78baa2218b768b9ff450a39f47 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/f0e35906b69733c212e065d34d72a4971658f4 b/.git_backup/objects/37/f0e35906b69733c212e065d34d72a4971658f4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/f77c60f9236be556499225f09cb67c00eb4795 b/.git_backup/objects/37/f77c60f9236be556499225f09cb67c00eb4795 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/fbeb43e51bc9f726a29a7277da3cbc2ea4d0df b/.git_backup/objects/37/fbeb43e51bc9f726a29a7277da3cbc2ea4d0df deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/37/ff9ef08818d79f485abf9a51953cfcc06adea0 b/.git_backup/objects/37/ff9ef08818d79f485abf9a51953cfcc06adea0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/003dea9ebbdb957379e8d0a88a39b372ee5f3a b/.git_backup/objects/38/003dea9ebbdb957379e8d0a88a39b372ee5f3a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/09a9a50dba2c039765d9500dd43c4b3e3c21de b/.git_backup/objects/38/09a9a50dba2c039765d9500dd43c4b3e3c21de deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/1d589cfe153fedd2ebe7dfbd05ff6e13558b4a b/.git_backup/objects/38/1d589cfe153fedd2ebe7dfbd05ff6e13558b4a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/1fb941f5d7fb31776e6b2cca9b6a7ffbdffcf3 b/.git_backup/objects/38/1fb941f5d7fb31776e6b2cca9b6a7ffbdffcf3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/202987231523d7668aac64c6bd8a0413d5fc26 b/.git_backup/objects/38/202987231523d7668aac64c6bd8a0413d5fc26 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/2101bb75962452436e48844dc7381a992c8be7 b/.git_backup/objects/38/2101bb75962452436e48844dc7381a992c8be7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/3101cdb38706c305449674044e9288b92b7d75 b/.git_backup/objects/38/3101cdb38706c305449674044e9288b92b7d75 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/31ebba51ba279599886e27182a43e0beffe55a b/.git_backup/objects/38/31ebba51ba279599886e27182a43e0beffe55a deleted file mode 100644 index 57ebb11b..00000000 Binary files a/.git_backup/objects/38/31ebba51ba279599886e27182a43e0beffe55a and /dev/null differ diff --git a/.git_backup/objects/38/33817946cbfba8825c696acbe6dd721aa7f7a3 b/.git_backup/objects/38/33817946cbfba8825c696acbe6dd721aa7f7a3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/33cb8a0a2aa7c4ea65ab1e0fc5b1b8a2507787 b/.git_backup/objects/38/33cb8a0a2aa7c4ea65ab1e0fc5b1b8a2507787 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/35ec86794d16708b066b8c03e03bce1a4a338b b/.git_backup/objects/38/35ec86794d16708b066b8c03e03bce1a4a338b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/3955f6d18eb2d78f5abf43341b1799e71ad336 b/.git_backup/objects/38/3955f6d18eb2d78f5abf43341b1799e71ad336 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/3e25c694c59d1fdddf348803f0d46fc240d98c b/.git_backup/objects/38/3e25c694c59d1fdddf348803f0d46fc240d98c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/4fe5c22c71ea1f8eb3b37954db56af3c8319d6 b/.git_backup/objects/38/4fe5c22c71ea1f8eb3b37954db56af3c8319d6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/50ed266b136b8f3e8f6f2c2a03c04181232a2e b/.git_backup/objects/38/50ed266b136b8f3e8f6f2c2a03c04181232a2e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/52d6a6a1572d9b0e4d518c97dc74fa4e2adeb7 b/.git_backup/objects/38/52d6a6a1572d9b0e4d518c97dc74fa4e2adeb7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/530faf045a9cfc54750be6b12ec725c77cf231 b/.git_backup/objects/38/530faf045a9cfc54750be6b12ec725c77cf231 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/54aca9430a86e801d8ba8e33b6b09f08060d3b b/.git_backup/objects/38/54aca9430a86e801d8ba8e33b6b09f08060d3b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/5da08e598e1296e9c39bcadc68705f5f1ab200 b/.git_backup/objects/38/5da08e598e1296e9c39bcadc68705f5f1ab200 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/64220b2b4a2fd3803bdff0ab9e4c3941c1f313 b/.git_backup/objects/38/64220b2b4a2fd3803bdff0ab9e4c3941c1f313 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/6519642e3eb431449245fb5a7a2fc8d04f4f03 b/.git_backup/objects/38/6519642e3eb431449245fb5a7a2fc8d04f4f03 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/696a1fb3419dd810004d5aec9654e5224042ed b/.git_backup/objects/38/696a1fb3419dd810004d5aec9654e5224042ed deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/696cbfc017d36e37c535bd32434e619f2f9b2d b/.git_backup/objects/38/696cbfc017d36e37c535bd32434e619f2f9b2d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/69b42cb67731e1fd348fc3808322419465688a b/.git_backup/objects/38/69b42cb67731e1fd348fc3808322419465688a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/701c6d98d4ca69297fa4897a10bb003facc657 b/.git_backup/objects/38/701c6d98d4ca69297fa4897a10bb003facc657 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/724d6978cb482d3b78db3492cec735e1dc7951 b/.git_backup/objects/38/724d6978cb482d3b78db3492cec735e1dc7951 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/7844173c37143523a36c24c673870be2ce94c5 b/.git_backup/objects/38/7844173c37143523a36c24c673870be2ce94c5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/7aa5e071597aab086eb2adfe27219b002a2a14 b/.git_backup/objects/38/7aa5e071597aab086eb2adfe27219b002a2a14 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/81f1d9bd2c6e815dff5f23768af055059088da b/.git_backup/objects/38/81f1d9bd2c6e815dff5f23768af055059088da deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/85475a7eb1ad268e511ca74f830723bc1ff4c2 b/.git_backup/objects/38/85475a7eb1ad268e511ca74f830723bc1ff4c2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/87fa617792f75265a2aeda1f9a114f3115e481 b/.git_backup/objects/38/87fa617792f75265a2aeda1f9a114f3115e481 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/8b72eeb88320112d0d9229f7b5d40bc8b9f5c1 b/.git_backup/objects/38/8b72eeb88320112d0d9229f7b5d40bc8b9f5c1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/8dbf33a60175ada1e63775cb4f60c44b85f73a b/.git_backup/objects/38/8dbf33a60175ada1e63775cb4f60c44b85f73a deleted file mode 100644 index 3e1c1222..00000000 Binary files a/.git_backup/objects/38/8dbf33a60175ada1e63775cb4f60c44b85f73a and /dev/null differ diff --git a/.git_backup/objects/38/91ce6ca5ba4d9e70c1c0b8c0e4770e316f8147 b/.git_backup/objects/38/91ce6ca5ba4d9e70c1c0b8c0e4770e316f8147 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/92f8973b41fa5ef7ce45db49f99775a0fa8f5d b/.git_backup/objects/38/92f8973b41fa5ef7ce45db49f99775a0fa8f5d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/984238ecf651ab79d50e86a51c2ba849653bc5 b/.git_backup/objects/38/984238ecf651ab79d50e86a51c2ba849653bc5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/a4833b40f3be01afcf2098b125e154214035da b/.git_backup/objects/38/a4833b40f3be01afcf2098b125e154214035da deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/a62092830804441f361452b7dbbef43d2f4518 b/.git_backup/objects/38/a62092830804441f361452b7dbbef43d2f4518 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/a95892010d5b756247a74588df32e99536d40c b/.git_backup/objects/38/a95892010d5b756247a74588df32e99536d40c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/b812261125e6aabef8618955b234f6c7b04955 b/.git_backup/objects/38/b812261125e6aabef8618955b234f6c7b04955 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/b86682dd3de7213016fc2ac57697257668398c b/.git_backup/objects/38/b86682dd3de7213016fc2ac57697257668398c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/bea717656f049e79a182d18c630db7603a0327 b/.git_backup/objects/38/bea717656f049e79a182d18c630db7603a0327 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/c5544c444596bb802cbb0301ac541d0b638358 b/.git_backup/objects/38/c5544c444596bb802cbb0301ac541d0b638358 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/ca14c4e11fc18c7e2e4402a906eb8a28483ecd b/.git_backup/objects/38/ca14c4e11fc18c7e2e4402a906eb8a28483ecd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/ca4885dbfb1676d05f3a195f8011aeea2217de b/.git_backup/objects/38/ca4885dbfb1676d05f3a195f8011aeea2217de deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/ccacd897a9edaa461d29a9881b39e4a9cb65cc b/.git_backup/objects/38/ccacd897a9edaa461d29a9881b39e4a9cb65cc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/cd765ce61f0ccf3100422a80e70873388bc446 b/.git_backup/objects/38/cd765ce61f0ccf3100422a80e70873388bc446 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/d1e8ff834595354894a02bdafb3a0723dc5d7b b/.git_backup/objects/38/d1e8ff834595354894a02bdafb3a0723dc5d7b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/d4af013a8293dab02d9f0b8a09c2fc3fdeb045 b/.git_backup/objects/38/d4af013a8293dab02d9f0b8a09c2fc3fdeb045 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/d8cfd8f6da9909a33ca927fba8b9b1f3ae396f b/.git_backup/objects/38/d8cfd8f6da9909a33ca927fba8b9b1f3ae396f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/db8b7e3932098fd6cfda892051d63552fa40d9 b/.git_backup/objects/38/db8b7e3932098fd6cfda892051d63552fa40d9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/e0e4cf72f0d1493842c86ee5ad1f52d70e0c9b b/.git_backup/objects/38/e0e4cf72f0d1493842c86ee5ad1f52d70e0c9b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/e541c0ca52317a5ca2afda3fd964c4c5913559 b/.git_backup/objects/38/e541c0ca52317a5ca2afda3fd964c4c5913559 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/e6193d4d51b751508ae597119b58fffe56f751 b/.git_backup/objects/38/e6193d4d51b751508ae597119b58fffe56f751 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/ef6c9a7a10afb10caa5913687ea3636ab1d38e b/.git_backup/objects/38/ef6c9a7a10afb10caa5913687ea3636ab1d38e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/fa804e004de6f34685fcc8f08d97e8418ba848 b/.git_backup/objects/38/fa804e004de6f34685fcc8f08d97e8418ba848 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/38/ff6efec40c9b94520d73fca7ef669b8ed28b77 b/.git_backup/objects/38/ff6efec40c9b94520d73fca7ef669b8ed28b77 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/00089ce292c80f34c28beb054c6a8b80c4cb3e b/.git_backup/objects/39/00089ce292c80f34c28beb054c6a8b80c4cb3e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/05daa9688ac949956525377cf91a6a7d467104 b/.git_backup/objects/39/05daa9688ac949956525377cf91a6a7d467104 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/09875e5660a4dd8a09644dac1d9712ba1ffc44 b/.git_backup/objects/39/09875e5660a4dd8a09644dac1d9712ba1ffc44 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/09aa9c8776aae78c591ab5dc7f3da39332bcb7 b/.git_backup/objects/39/09aa9c8776aae78c591ab5dc7f3da39332bcb7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/1054bca5c4ac3460595ce353ee98867b56c4fa b/.git_backup/objects/39/1054bca5c4ac3460595ce353ee98867b56c4fa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/13ed65acc9d2ff779b6b7019b222aa92028847 b/.git_backup/objects/39/13ed65acc9d2ff779b6b7019b222aa92028847 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/16e237cfa213101f5e518faa7cdb51342781d5 b/.git_backup/objects/39/16e237cfa213101f5e518faa7cdb51342781d5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/1aaf118b10227fe0219d764cb19f438e0695b2 b/.git_backup/objects/39/1aaf118b10227fe0219d764cb19f438e0695b2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/1c71e57399af729abfaaea22d83ba87e7db0cc b/.git_backup/objects/39/1c71e57399af729abfaaea22d83ba87e7db0cc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/28f6b3bc0634502c131b723aea26aef3f0d215 b/.git_backup/objects/39/28f6b3bc0634502c131b723aea26aef3f0d215 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/2bef7d64baed6c9b33c8280a4b8536d1146f0e b/.git_backup/objects/39/2bef7d64baed6c9b33c8280a4b8536d1146f0e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/2c77b8e7813c434e09fbc9710d38e235c5ad0c b/.git_backup/objects/39/2c77b8e7813c434e09fbc9710d38e235c5ad0c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/344fc1f8c77d5ec43539d0c8e655f4b5d7d6f6 b/.git_backup/objects/39/344fc1f8c77d5ec43539d0c8e655f4b5d7d6f6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/360d2c5ecb10de5c2e685a8570393b0a795be2 b/.git_backup/objects/39/360d2c5ecb10de5c2e685a8570393b0a795be2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/38d68de14c3f83f9278b5d6b6a151a28549a0d b/.git_backup/objects/39/38d68de14c3f83f9278b5d6b6a151a28549a0d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/3a7fe9323991b68ea6176a784471ad91d5ffb3 b/.git_backup/objects/39/3a7fe9323991b68ea6176a784471ad91d5ffb3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/487f4098d7c2068b67d7d3dd85b61848974a23 b/.git_backup/objects/39/487f4098d7c2068b67d7d3dd85b61848974a23 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/4914df5413194a553b4768783fc848ab9706b4 b/.git_backup/objects/39/4914df5413194a553b4768783fc848ab9706b4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/4bbf689c2f45898a694997601e9e825f485dd3 b/.git_backup/objects/39/4bbf689c2f45898a694997601e9e825f485dd3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/5019b04622e7660abb21b511249b93a2213cdc b/.git_backup/objects/39/5019b04622e7660abb21b511249b93a2213cdc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/5038cbfc0f6dc25797d01273ca411929078dd1 b/.git_backup/objects/39/5038cbfc0f6dc25797d01273ca411929078dd1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/5592a87d8158a80d27d1067daa2caa0bd89f32 b/.git_backup/objects/39/5592a87d8158a80d27d1067daa2caa0bd89f32 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/5626f6bb5aff07805ca0d76340a7d3063c4d86 b/.git_backup/objects/39/5626f6bb5aff07805ca0d76340a7d3063c4d86 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/56dbaba5a68bf0397187e843e1a6deb4c08281 b/.git_backup/objects/39/56dbaba5a68bf0397187e843e1a6deb4c08281 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/57f336d4db43e41baa3d350fe304e7b18947a6 b/.git_backup/objects/39/57f336d4db43e41baa3d350fe304e7b18947a6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/58d15434bf41df210871fe41cd342c85e10655 b/.git_backup/objects/39/58d15434bf41df210871fe41cd342c85e10655 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/5fdea67f1bdf3c7e0ef92dec2fde0899ec95d4 b/.git_backup/objects/39/5fdea67f1bdf3c7e0ef92dec2fde0899ec95d4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/611bce2b4fa5aa3afb666b68f17d7162fcf6af b/.git_backup/objects/39/611bce2b4fa5aa3afb666b68f17d7162fcf6af deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/62a2ef57e70bf8d2a3bdecabca476f7bf45325 b/.git_backup/objects/39/62a2ef57e70bf8d2a3bdecabca476f7bf45325 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/64b65986bbe48eb13e0510f09db65c4e61aec7 b/.git_backup/objects/39/64b65986bbe48eb13e0510f09db65c4e61aec7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/66370c9773ed356c408e8de5ccffb14c572cc0 b/.git_backup/objects/39/66370c9773ed356c408e8de5ccffb14c572cc0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/714a4566494792761721504f1ae3db4d6a387e b/.git_backup/objects/39/714a4566494792761721504f1ae3db4d6a387e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/81bfa44e1298883841a4de6287c4d40ee603f2 b/.git_backup/objects/39/81bfa44e1298883841a4de6287c4d40ee603f2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/8386a5b9f61c13be314e256e671a37d28e3623 b/.git_backup/objects/39/8386a5b9f61c13be314e256e671a37d28e3623 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/84c1031f816fec207d7272ada3ae86fc204628 b/.git_backup/objects/39/84c1031f816fec207d7272ada3ae86fc204628 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/8850976bb8ade18cbfee0d84c0d115169e594d b/.git_backup/objects/39/8850976bb8ade18cbfee0d84c0d115169e594d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/8b9621acde223020fb07a4a678becdf106f822 b/.git_backup/objects/39/8b9621acde223020fb07a4a678becdf106f822 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/90ef05d56a5994469a134db07dc4b115627d9c b/.git_backup/objects/39/90ef05d56a5994469a134db07dc4b115627d9c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/98bfc7b8bf8523512c0c1e4410cb4b1fabbe3d b/.git_backup/objects/39/98bfc7b8bf8523512c0c1e4410cb4b1fabbe3d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/997a95c899e6e7b3a2afb64553d912b146e12c b/.git_backup/objects/39/997a95c899e6e7b3a2afb64553d912b146e12c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/9b48b13e442c954b6a31fd2e498bbbcb54f635 b/.git_backup/objects/39/9b48b13e442c954b6a31fd2e498bbbcb54f635 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/a204e27a24593dba02f31405d8dba756ce5b61 b/.git_backup/objects/39/a204e27a24593dba02f31405d8dba756ce5b61 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/a24b04888e79df51e2237577b303a2f901be63 b/.git_backup/objects/39/a24b04888e79df51e2237577b303a2f901be63 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/a5388948ef12b69b65fbfa89a84c6ef4a4bfd6 b/.git_backup/objects/39/a5388948ef12b69b65fbfa89a84c6ef4a4bfd6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/ac88097c9e3763fd346e2ca70a1a8688bc3a5a b/.git_backup/objects/39/ac88097c9e3763fd346e2ca70a1a8688bc3a5a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/b568d4951da8fba0542e57350be447fe827839 b/.git_backup/objects/39/b568d4951da8fba0542e57350be447fe827839 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/b7e3973a9a42b2016ea97345f07806975d0130 b/.git_backup/objects/39/b7e3973a9a42b2016ea97345f07806975d0130 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/c2cad5259ad58f47a6607dafd8323f5fb54f35 b/.git_backup/objects/39/c2cad5259ad58f47a6607dafd8323f5fb54f35 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/c35157ed9d374e6b9f585223b859eb7585c5a8 b/.git_backup/objects/39/c35157ed9d374e6b9f585223b859eb7585c5a8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/c6fa13f79a495637da2a031d698f9b9c2f7576 b/.git_backup/objects/39/c6fa13f79a495637da2a031d698f9b9c2f7576 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/cc9c70afa28b4503b37dd0720d317af0d9d13c b/.git_backup/objects/39/cc9c70afa28b4503b37dd0720d317af0d9d13c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/cef057f4490a70d7041bcfde4d3fec844732bb b/.git_backup/objects/39/cef057f4490a70d7041bcfde4d3fec844732bb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/d10a1ff9aea248331b8435ff0cf1127dc25ea0 b/.git_backup/objects/39/d10a1ff9aea248331b8435ff0cf1127dc25ea0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/d6fd84354e5f9eff7071c1b0375b114c84a181 b/.git_backup/objects/39/d6fd84354e5f9eff7071c1b0375b114c84a181 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/d7e06620ebac0c76e9ea93956bf0c426573d2c b/.git_backup/objects/39/d7e06620ebac0c76e9ea93956bf0c426573d2c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/d822e8bc692c826530621363ba3a47bdb18870 b/.git_backup/objects/39/d822e8bc692c826530621363ba3a47bdb18870 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/e1a9e2a4d5a729a046a3eaecc453b1ac3625ae b/.git_backup/objects/39/e1a9e2a4d5a729a046a3eaecc453b1ac3625ae deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/edda47445152c883ce4e00c70db5b1ed6b8f11 b/.git_backup/objects/39/edda47445152c883ce4e00c70db5b1ed6b8f11 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/eed168a80478b6b25f8fb1eecc19182010bf65 b/.git_backup/objects/39/eed168a80478b6b25f8fb1eecc19182010bf65 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/f5f5b5d11afa862abeadb11c0413edf1c50cfc b/.git_backup/objects/39/f5f5b5d11afa862abeadb11c0413edf1c50cfc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/f6022aeff0246b9c8413c943f47abd0f642523 b/.git_backup/objects/39/f6022aeff0246b9c8413c943f47abd0f642523 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/f6767b09f310c39870d0e09342298799af88aa b/.git_backup/objects/39/f6767b09f310c39870d0e09342298799af88aa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/fc34f708c7f8adb8ff2e0541bcebe47406608f b/.git_backup/objects/39/fc34f708c7f8adb8ff2e0541bcebe47406608f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/39/fdb58e7326669bce6f6fe79d74ed1f6b840b04 b/.git_backup/objects/39/fdb58e7326669bce6f6fe79d74ed1f6b840b04 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/029ee42b2a770135a46e57ee16f07a7ab6a4a9 b/.git_backup/objects/3a/029ee42b2a770135a46e57ee16f07a7ab6a4a9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/0a8e3fb4171918fb5bebd1fcb23e5c69765110 b/.git_backup/objects/3a/0a8e3fb4171918fb5bebd1fcb23e5c69765110 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/127e72943cc3fd33e9d8c95c091e3b357bcb2e b/.git_backup/objects/3a/127e72943cc3fd33e9d8c95c091e3b357bcb2e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/169a43536a060e465475d5343f01303475dbeb b/.git_backup/objects/3a/169a43536a060e465475d5343f01303475dbeb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/1f068041be307edc3436fa5d0421cdf8b9d8fb b/.git_backup/objects/3a/1f068041be307edc3436fa5d0421cdf8b9d8fb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/2aadaa58126f86e84b3621e75ae6d7bce6b481 b/.git_backup/objects/3a/2aadaa58126f86e84b3621e75ae6d7bce6b481 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/2c8937451e3b4c1f234abaf397a1874d94af61 b/.git_backup/objects/3a/2c8937451e3b4c1f234abaf397a1874d94af61 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/307ebd702cad90e950b7aff61b8a48dae67054 b/.git_backup/objects/3a/307ebd702cad90e950b7aff61b8a48dae67054 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/335b37165d2b3d6a09a1716cb158e272087c9f b/.git_backup/objects/3a/335b37165d2b3d6a09a1716cb158e272087c9f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/3a311fee90bde907091a816bb5a4247562ffde b/.git_backup/objects/3a/3a311fee90bde907091a816bb5a4247562ffde deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/3af87ff788e8b93937c0c41f82bee697c308e4 b/.git_backup/objects/3a/3af87ff788e8b93937c0c41f82bee697c308e4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/3c83591e957cf101e79d0427411ab1bc840570 b/.git_backup/objects/3a/3c83591e957cf101e79d0427411ab1bc840570 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/3d6316ccf0d0ef14d2da7a285f3d8e087ba95f b/.git_backup/objects/3a/3d6316ccf0d0ef14d2da7a285f3d8e087ba95f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/41ccc2cf42e34e1b445de99c025312fec1dee5 b/.git_backup/objects/3a/41ccc2cf42e34e1b445de99c025312fec1dee5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/447cd2db5eb0dc2c57f2524d1f0ebb2bb43fa9 b/.git_backup/objects/3a/447cd2db5eb0dc2c57f2524d1f0ebb2bb43fa9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/450c7c1f1c942da0ad419e1e365c7f3ffb5874 b/.git_backup/objects/3a/450c7c1f1c942da0ad419e1e365c7f3ffb5874 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/45d3b1b3d77ef24f267e9616a3de7b57c969a6 b/.git_backup/objects/3a/45d3b1b3d77ef24f267e9616a3de7b57c969a6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/49c0897c016f6e6839b4a156bbe3365b51528c b/.git_backup/objects/3a/49c0897c016f6e6839b4a156bbe3365b51528c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/528c5c98cd86376c411b6dff6f6f7972c6bf92 b/.git_backup/objects/3a/528c5c98cd86376c411b6dff6f6f7972c6bf92 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/5c8e4513b268b1cb8f2fc5960a72f2d71d4a3a b/.git_backup/objects/3a/5c8e4513b268b1cb8f2fc5960a72f2d71d4a3a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/690c1ec000642d3ceaf741309a957bf1b7403b b/.git_backup/objects/3a/690c1ec000642d3ceaf741309a957bf1b7403b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/6d344171831fabc603102982a36f6563d910a2 b/.git_backup/objects/3a/6d344171831fabc603102982a36f6563d910a2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/6f5047088a275ba751862daecde11b9722819d b/.git_backup/objects/3a/6f5047088a275ba751862daecde11b9722819d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/739baa16f60a559dbec5c011216c514122455b b/.git_backup/objects/3a/739baa16f60a559dbec5c011216c514122455b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/79c36b73159096ddbac16742ee792cab963c34 b/.git_backup/objects/3a/79c36b73159096ddbac16742ee792cab963c34 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/7cee157489632e01073a640105f5bff896c8eb b/.git_backup/objects/3a/7cee157489632e01073a640105f5bff896c8eb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/7f81aa0466cf4144d1308d3cf266c573741023 b/.git_backup/objects/3a/7f81aa0466cf4144d1308d3cf266c573741023 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/8daaf0cfa75d63f58cf3266a671c4330664c54 b/.git_backup/objects/3a/8daaf0cfa75d63f58cf3266a671c4330664c54 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/9162b80068d56c29231200dd7946f67a2a7d64 b/.git_backup/objects/3a/9162b80068d56c29231200dd7946f67a2a7d64 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/93e9a047ff1756443cd08dcaf28d9e70934f72 b/.git_backup/objects/3a/93e9a047ff1756443cd08dcaf28d9e70934f72 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/9b1eaf493c9177ab063b4b6acee2956916be3f b/.git_backup/objects/3a/9b1eaf493c9177ab063b4b6acee2956916be3f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/9cc2dd1aa64ef73d7c243c2671c854930c6dc3 b/.git_backup/objects/3a/9cc2dd1aa64ef73d7c243c2671c854930c6dc3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/a0ac1676accc2e32a96b795c60272a4546dcbc b/.git_backup/objects/3a/a0ac1676accc2e32a96b795c60272a4546dcbc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/a15a2eee313712387f6cf2265a52d04f0f12f7 b/.git_backup/objects/3a/a15a2eee313712387f6cf2265a52d04f0f12f7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/a9e27c3a4740eaf6c24d72629f3b45c2a23ca1 b/.git_backup/objects/3a/a9e27c3a4740eaf6c24d72629f3b45c2a23ca1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/b05376b3cacf37cf276d0a3af4955f884e7440 b/.git_backup/objects/3a/b05376b3cacf37cf276d0a3af4955f884e7440 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/b3bb16e3e3877849c35aef7a6e5e879f76bbfc b/.git_backup/objects/3a/b3bb16e3e3877849c35aef7a6e5e879f76bbfc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/b4718e8630aca8fc8b674ee1110c4f116e4dc2 b/.git_backup/objects/3a/b4718e8630aca8fc8b674ee1110c4f116e4dc2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/b5f9ca3df0f5ff0e87bb48d9b2f6506cd77315 b/.git_backup/objects/3a/b5f9ca3df0f5ff0e87bb48d9b2f6506cd77315 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/b8bfd77c36c66fd80047566209de48c1fba112 b/.git_backup/objects/3a/b8bfd77c36c66fd80047566209de48c1fba112 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/beed011dc9c761376aa41f3cb760c6aa936494 b/.git_backup/objects/3a/beed011dc9c761376aa41f3cb760c6aa936494 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/c47d1b3f2186c0d2e8f110ee8851497d0eba44 b/.git_backup/objects/3a/c47d1b3f2186c0d2e8f110ee8851497d0eba44 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/d917222a4e5bb93fe1c9e8fe1713bcab3630b6 b/.git_backup/objects/3a/d917222a4e5bb93fe1c9e8fe1713bcab3630b6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/db071e9dfa77e709d02c294c8bdffdb823b2a9 b/.git_backup/objects/3a/db071e9dfa77e709d02c294c8bdffdb823b2a9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/db8e1bf7c6ec51f1c100538799271d7d7a6e6f b/.git_backup/objects/3a/db8e1bf7c6ec51f1c100538799271d7d7a6e6f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/dbd0eb5cdf3deba359dd83ff672a2200ac7694 b/.git_backup/objects/3a/dbd0eb5cdf3deba359dd83ff672a2200ac7694 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/e000e5fc50f6278c6afc940506806cfda3da89 b/.git_backup/objects/3a/e000e5fc50f6278c6afc940506806cfda3da89 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/e8e0b2373accb1e57be71ce071d626bc066871 b/.git_backup/objects/3a/e8e0b2373accb1e57be71ce071d626bc066871 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/e97a664496f45a943c97d99563a9bad547d764 b/.git_backup/objects/3a/e97a664496f45a943c97d99563a9bad547d764 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/f32995d8022e55305106fbab7f506bd39f5cef b/.git_backup/objects/3a/f32995d8022e55305106fbab7f506bd39f5cef deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3a/ff940c86216267eeaca6159ca63b69ba5689bf b/.git_backup/objects/3a/ff940c86216267eeaca6159ca63b69ba5689bf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/00fcfc646c6fac0971ce089e0a06a5f99b92b5 b/.git_backup/objects/3b/00fcfc646c6fac0971ce089e0a06a5f99b92b5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/07506e8b73be889e7873492cfa3f5d736a2eb8 b/.git_backup/objects/3b/07506e8b73be889e7873492cfa3f5d736a2eb8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/07ebd81ff0fd79534aa5256622b3349e0e047e b/.git_backup/objects/3b/07ebd81ff0fd79534aa5256622b3349e0e047e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/0b39eaa51f545c20c588f10685f5492d0c3fe5 b/.git_backup/objects/3b/0b39eaa51f545c20c588f10685f5492d0c3fe5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/0c464674b6ec5c50ad60d724613c666b881721 b/.git_backup/objects/3b/0c464674b6ec5c50ad60d724613c666b881721 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/0dbb07946302257f63405482906db6c408c47e b/.git_backup/objects/3b/0dbb07946302257f63405482906db6c408c47e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/0f0a9e57ee6a69c3b65f25c7b8cc1d28d80690 b/.git_backup/objects/3b/0f0a9e57ee6a69c3b65f25c7b8cc1d28d80690 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/131bb10e100bc2dd619d57367a4e43c86e5316 b/.git_backup/objects/3b/131bb10e100bc2dd619d57367a4e43c86e5316 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/18e0e83381e364ddb0b3ab6dafe49f5504fa26 b/.git_backup/objects/3b/18e0e83381e364ddb0b3ab6dafe49f5504fa26 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/1b844231e929be5d85aae9fdbdf87774964709 b/.git_backup/objects/3b/1b844231e929be5d85aae9fdbdf87774964709 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/21b093fbef6b882fd33d0040ca338751a0f038 b/.git_backup/objects/3b/21b093fbef6b882fd33d0040ca338751a0f038 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/339cc4870e88890cea0858c111b69471373cd1 b/.git_backup/objects/3b/339cc4870e88890cea0858c111b69471373cd1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/4186d61152629b764efc4222e41647b65f7fbb b/.git_backup/objects/3b/4186d61152629b764efc4222e41647b65f7fbb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/4258f0b2b5a76139f035c7ee51066c3f2e981f b/.git_backup/objects/3b/4258f0b2b5a76139f035c7ee51066c3f2e981f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/490429b9ddc548aeb0825ec22373f1f202be41 b/.git_backup/objects/3b/490429b9ddc548aeb0825ec22373f1f202be41 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/4ede056deda4e033641d2b00e4f81562798833 b/.git_backup/objects/3b/4ede056deda4e033641d2b00e4f81562798833 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/544c8e6b37e82762fa98904c5eb38c75a90b4e b/.git_backup/objects/3b/544c8e6b37e82762fa98904c5eb38c75a90b4e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/589b2a9f6449a457e195ef2595ddfb645e7230 b/.git_backup/objects/3b/589b2a9f6449a457e195ef2595ddfb645e7230 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/59d3cf106589344efb0d29a4ec7833ce1eb95f b/.git_backup/objects/3b/59d3cf106589344efb0d29a4ec7833ce1eb95f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/5a428501a53ae7308c7b6edc42f4881820664d b/.git_backup/objects/3b/5a428501a53ae7308c7b6edc42f4881820664d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/5c4038dd7bd845e6b0aecad69991381b2b1331 b/.git_backup/objects/3b/5c4038dd7bd845e6b0aecad69991381b2b1331 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/5d6eb41883a7b32819f387b4c03c93e9d489cf b/.git_backup/objects/3b/5d6eb41883a7b32819f387b4c03c93e9d489cf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/60bdaab7bedc2201fbee35c5d11d37ab85a761 b/.git_backup/objects/3b/60bdaab7bedc2201fbee35c5d11d37ab85a761 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/60ec2ab84b1cef6ff55ade4c3361c03b61b4aa b/.git_backup/objects/3b/60ec2ab84b1cef6ff55ade4c3361c03b61b4aa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/64915f36a3c1874a7e8ee5cb0346c2fca39333 b/.git_backup/objects/3b/64915f36a3c1874a7e8ee5cb0346c2fca39333 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/65fee23e49040de13c242fa808a8f924997093 b/.git_backup/objects/3b/65fee23e49040de13c242fa808a8f924997093 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/687870da1f98893bddfcf86b8a4ebe00da54f5 b/.git_backup/objects/3b/687870da1f98893bddfcf86b8a4ebe00da54f5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/6bfee8f96573d69b71d971cec17ffcd9679334 b/.git_backup/objects/3b/6bfee8f96573d69b71d971cec17ffcd9679334 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/7b1276d6e9f1e0b39030afe9f6f2814e8fa147 b/.git_backup/objects/3b/7b1276d6e9f1e0b39030afe9f6f2814e8fa147 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/7cf09ac8ca9327cffa2680baa3ef6d2ba593ad b/.git_backup/objects/3b/7cf09ac8ca9327cffa2680baa3ef6d2ba593ad deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/801218cf109a40c228eeafab6a4b38a0c29135 b/.git_backup/objects/3b/801218cf109a40c228eeafab6a4b38a0c29135 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/814360d3aa4dbdcfc62766677530cbde4ef0a1 b/.git_backup/objects/3b/814360d3aa4dbdcfc62766677530cbde4ef0a1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/892556f37d4c0d0be19924f3c61773edfb4c13 b/.git_backup/objects/3b/892556f37d4c0d0be19924f3c61773edfb4c13 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/8cc86b5e86f335925cafd2a79475f0e18730df b/.git_backup/objects/3b/8cc86b5e86f335925cafd2a79475f0e18730df deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/9436252df7a99081e1e2a312ff9ba3322c4aa8 b/.git_backup/objects/3b/9436252df7a99081e1e2a312ff9ba3322c4aa8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/99c2ca58b9f10b5a78230ea70c15c33ee8414c b/.git_backup/objects/3b/99c2ca58b9f10b5a78230ea70c15c33ee8414c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/9b61f4991ea4c775ce87b6edb144c004d2cb8c b/.git_backup/objects/3b/9b61f4991ea4c775ce87b6edb144c004d2cb8c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/9c5eae70b4235adef68da9ec334196a147c185 b/.git_backup/objects/3b/9c5eae70b4235adef68da9ec334196a147c185 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/9ecacf6eef72366df1cc847c0d4666efc8a48c b/.git_backup/objects/3b/9ecacf6eef72366df1cc847c0d4666efc8a48c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/9ef71b696e15de52ad72101228336807300180 b/.git_backup/objects/3b/9ef71b696e15de52ad72101228336807300180 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/9fed4333c33032e04bbce3a1a8aeca1210af9b b/.git_backup/objects/3b/9fed4333c33032e04bbce3a1a8aeca1210af9b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/a4eba086d5f400d05d4485af61c91e86988207 b/.git_backup/objects/3b/a4eba086d5f400d05d4485af61c91e86988207 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/a501de03b6d17da62f03b7cf66f07232679533 b/.git_backup/objects/3b/a501de03b6d17da62f03b7cf66f07232679533 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/a5835331fe5b497e1113204372df93ccfaae19 b/.git_backup/objects/3b/a5835331fe5b497e1113204372df93ccfaae19 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/a9e432c463a074e1d3ff078c080dd439af06c5 b/.git_backup/objects/3b/a9e432c463a074e1d3ff078c080dd439af06c5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/bd2906150f46c5105e38dd1a8557d4ee00f4b1 b/.git_backup/objects/3b/bd2906150f46c5105e38dd1a8557d4ee00f4b1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/c60cec1832c8c3fbd7d66aeefef6c5c5265601 b/.git_backup/objects/3b/c60cec1832c8c3fbd7d66aeefef6c5c5265601 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/cdd48bedef0dcc1a4d70e0cc549adf8416dc42 b/.git_backup/objects/3b/cdd48bedef0dcc1a4d70e0cc549adf8416dc42 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/dbfc739ea9c4d80d02f1a495cb0ee2f7be9b97 b/.git_backup/objects/3b/dbfc739ea9c4d80d02f1a495cb0ee2f7be9b97 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/ddb6f6c8cf818eba80c9a2d24e2434578cd728 b/.git_backup/objects/3b/ddb6f6c8cf818eba80c9a2d24e2434578cd728 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/e402ebe0aed4d9ebf92446be653b6c9f883248 b/.git_backup/objects/3b/e402ebe0aed4d9ebf92446be653b6c9f883248 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/e500032786398c3efdbd9f873f705b6c1636bd b/.git_backup/objects/3b/e500032786398c3efdbd9f873f705b6c1636bd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/e53bc7a679ef8054807f9bff9e2f23f0f97b57 b/.git_backup/objects/3b/e53bc7a679ef8054807f9bff9e2f23f0f97b57 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/e787d31bf2c97e97f29757f7a2e62d8de0bde9 b/.git_backup/objects/3b/e787d31bf2c97e97f29757f7a2e62d8de0bde9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/f1418f38b0349f0476dfaa433e3e99e1a6227a b/.git_backup/objects/3b/f1418f38b0349f0476dfaa433e3e99e1a6227a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3b/ffff7aca43e3a6c8343d572141446eae3de28e b/.git_backup/objects/3b/ffff7aca43e3a6c8343d572141446eae3de28e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/076f479ad87b79953656878974f9ee49f5b931 b/.git_backup/objects/3c/076f479ad87b79953656878974f9ee49f5b931 deleted file mode 100644 index 72ed6acd..00000000 Binary files a/.git_backup/objects/3c/076f479ad87b79953656878974f9ee49f5b931 and /dev/null differ diff --git a/.git_backup/objects/3c/092a42a692f4cdfc1a24ed21e665b3e261f287 b/.git_backup/objects/3c/092a42a692f4cdfc1a24ed21e665b3e261f287 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/107c119735b293ae8989bddb40c7800f55dc70 b/.git_backup/objects/3c/107c119735b293ae8989bddb40c7800f55dc70 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/180d52a026d5835598497cb8a2f51dbe6150e6 b/.git_backup/objects/3c/180d52a026d5835598497cb8a2f51dbe6150e6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/191a35f8f2ff1bbcc0be4ecca03fe32a847672 b/.git_backup/objects/3c/191a35f8f2ff1bbcc0be4ecca03fe32a847672 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/1b523d70758fbd0080e21ca4c7ce6d9c9d9bd5 b/.git_backup/objects/3c/1b523d70758fbd0080e21ca4c7ce6d9c9d9bd5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/282c73d83ea9b31972b409f904ccaa52562884 b/.git_backup/objects/3c/282c73d83ea9b31972b409f904ccaa52562884 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/2dfb8f598c73ac734c863ef902151857c0cf65 b/.git_backup/objects/3c/2dfb8f598c73ac734c863ef902151857c0cf65 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/32797de872117d368af291c307d4db9bb5dabe b/.git_backup/objects/3c/32797de872117d368af291c307d4db9bb5dabe deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/35245a3f43cb2fa9ae6fc6d85af4f140988ca5 b/.git_backup/objects/3c/35245a3f43cb2fa9ae6fc6d85af4f140988ca5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/3844e69586d2f49377e77910627ee42fef9bb2 b/.git_backup/objects/3c/3844e69586d2f49377e77910627ee42fef9bb2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/38dbf4559a9df585866000eaee82130751e363 b/.git_backup/objects/3c/38dbf4559a9df585866000eaee82130751e363 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/463fb82d53e9a9616acfbbece0eb3be6d0d5e7 b/.git_backup/objects/3c/463fb82d53e9a9616acfbbece0eb3be6d0d5e7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/48eeaccbf3480dc06959dd47122bc93f590589 b/.git_backup/objects/3c/48eeaccbf3480dc06959dd47122bc93f590589 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/50c5dcfeeda2efed282200a5c5cc8c5f7542f7 b/.git_backup/objects/3c/50c5dcfeeda2efed282200a5c5cc8c5f7542f7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/542591769c23aef532cc3f76bbc752df797708 b/.git_backup/objects/3c/542591769c23aef532cc3f76bbc752df797708 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/55a6a5ed068c13daee5a2eaa33b30a75a621e0 b/.git_backup/objects/3c/55a6a5ed068c13daee5a2eaa33b30a75a621e0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/60da8fc5c4b005585a74ede3b3d7831d5ad2cd b/.git_backup/objects/3c/60da8fc5c4b005585a74ede3b3d7831d5ad2cd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/60e3d0e19cad97d3d4f46f7adb9fb9af7a16cc b/.git_backup/objects/3c/60e3d0e19cad97d3d4f46f7adb9fb9af7a16cc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/62aee31fc93d3c46f92803ceea023036bf8b3d b/.git_backup/objects/3c/62aee31fc93d3c46f92803ceea023036bf8b3d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/68ed67970d2b42a2b18b6ed6d29aae93563f65 b/.git_backup/objects/3c/68ed67970d2b42a2b18b6ed6d29aae93563f65 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/6979ab434ca2b558c7371486f698c036b3cbb8 b/.git_backup/objects/3c/6979ab434ca2b558c7371486f698c036b3cbb8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/6cca5acde6e45171deba3848e380450e938d5d b/.git_backup/objects/3c/6cca5acde6e45171deba3848e380450e938d5d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/70981ed4b6d4e772684ab279b6ad6a41e3f982 b/.git_backup/objects/3c/70981ed4b6d4e772684ab279b6ad6a41e3f982 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/7105fa35615d5899f23a6d3bac5b46a0328f39 b/.git_backup/objects/3c/7105fa35615d5899f23a6d3bac5b46a0328f39 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/744262448bcce3d753f4558312663bf43a35ce b/.git_backup/objects/3c/744262448bcce3d753f4558312663bf43a35ce deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/748d33e45bfcdc690ceee490cbb50b516cd2b3 b/.git_backup/objects/3c/748d33e45bfcdc690ceee490cbb50b516cd2b3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/77f8cf27f0ab1e71d64cfc114ef9d1bf72295c b/.git_backup/objects/3c/77f8cf27f0ab1e71d64cfc114ef9d1bf72295c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/83e07742768e978415d194fd11338dbb6d2f9c b/.git_backup/objects/3c/83e07742768e978415d194fd11338dbb6d2f9c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/866ef27c2510028357b95c91c2e691df0f0bc2 b/.git_backup/objects/3c/866ef27c2510028357b95c91c2e691df0f0bc2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/867f7582b7d3250bf5e009ffbf7545da404712 b/.git_backup/objects/3c/867f7582b7d3250bf5e009ffbf7545da404712 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/95b147e945bd6e471b74da12851e7058b7a7ea b/.git_backup/objects/3c/95b147e945bd6e471b74da12851e7058b7a7ea deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/9b9774894813c2d86949bbff87e1d1c2e9420d b/.git_backup/objects/3c/9b9774894813c2d86949bbff87e1d1c2e9420d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/a24160fa4a321b871f7f825a63ed8569b3d768 b/.git_backup/objects/3c/a24160fa4a321b871f7f825a63ed8569b3d768 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/a59eeffb936c2221ca263e91b1589d2a170da0 b/.git_backup/objects/3c/a59eeffb936c2221ca263e91b1589d2a170da0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/a61a9fa2e1dc62054aafa8d0885e7015c54083 b/.git_backup/objects/3c/a61a9fa2e1dc62054aafa8d0885e7015c54083 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/a655e26059b374d0064a9c342c30c5e08e7f0b b/.git_backup/objects/3c/a655e26059b374d0064a9c342c30c5e08e7f0b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/a9e3cc87ea493104c87e4b20a4f47b55df3824 b/.git_backup/objects/3c/a9e3cc87ea493104c87e4b20a4f47b55df3824 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/b0c2b841c88fc2bb3cda0cb1bf388cb58bff95 b/.git_backup/objects/3c/b0c2b841c88fc2bb3cda0cb1bf388cb58bff95 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/b77efe2c5b928e13352c69950bff2f93548f2a b/.git_backup/objects/3c/b77efe2c5b928e13352c69950bff2f93548f2a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/b88c31274778807bb00c4165cc274945d00517 b/.git_backup/objects/3c/b88c31274778807bb00c4165cc274945d00517 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/b997ebeb6e474a7d290704f524a15550a2cd78 b/.git_backup/objects/3c/b997ebeb6e474a7d290704f524a15550a2cd78 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/b9ceec3a46521ffb239c182e7f806d6862f00f b/.git_backup/objects/3c/b9ceec3a46521ffb239c182e7f806d6862f00f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/c31ae5e30506481192d0e4b2f3df8347af65c8 b/.git_backup/objects/3c/c31ae5e30506481192d0e4b2f3df8347af65c8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/c81ef851306734872131fd0fda14ad01026eeb b/.git_backup/objects/3c/c81ef851306734872131fd0fda14ad01026eeb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/d4381c1b852635caba7b37ff1d94e45f133ac5 b/.git_backup/objects/3c/d4381c1b852635caba7b37ff1d94e45f133ac5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/d52db682b874a569a0941320b9ef00b699f767 b/.git_backup/objects/3c/d52db682b874a569a0941320b9ef00b699f767 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/da483ed05e66c15699b525b04c286f49408595 b/.git_backup/objects/3c/da483ed05e66c15699b525b04c286f49408595 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/e7ad5fa88470b39df5a6a301de88f2b19d8690 b/.git_backup/objects/3c/e7ad5fa88470b39df5a6a301de88f2b19d8690 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/e8d6df71a1e5cfe483c5e8cc185a75bf52da94 b/.git_backup/objects/3c/e8d6df71a1e5cfe483c5e8cc185a75bf52da94 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/f44d73164b6a80eca5f23f699bd00dba1f623e b/.git_backup/objects/3c/f44d73164b6a80eca5f23f699bd00dba1f623e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/f597d83f90403132573d78247e6d02e66d0583 b/.git_backup/objects/3c/f597d83f90403132573d78247e6d02e66d0583 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3c/fab05f7491215de33c9e43976c0df5881b60e5 b/.git_backup/objects/3c/fab05f7491215de33c9e43976c0df5881b60e5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/02d8f0d0c7dddfb01156c0cc3539c5b8828abe b/.git_backup/objects/3d/02d8f0d0c7dddfb01156c0cc3539c5b8828abe deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/0642d1e672cd60d5220dd78983e31795b8b9eb b/.git_backup/objects/3d/0642d1e672cd60d5220dd78983e31795b8b9eb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/0d02032fda74df976e300be0e80e8ee5f74c67 b/.git_backup/objects/3d/0d02032fda74df976e300be0e80e8ee5f74c67 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/0edb70d1ced5a4eb4b1a02481fc35016fd2b65 b/.git_backup/objects/3d/0edb70d1ced5a4eb4b1a02481fc35016fd2b65 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/10d050422d8e418836434ea4147324baea3d12 b/.git_backup/objects/3d/10d050422d8e418836434ea4147324baea3d12 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/1906ca0b4af934a969a2b2499d3adcbaea1df7 b/.git_backup/objects/3d/1906ca0b4af934a969a2b2499d3adcbaea1df7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/190d87ce02d72bf9d11d35010ca231e2dcbbbc b/.git_backup/objects/3d/190d87ce02d72bf9d11d35010ca231e2dcbbbc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/21f8eae03acb93eb7f1c7926e7165e95a64936 b/.git_backup/objects/3d/21f8eae03acb93eb7f1c7926e7165e95a64936 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/2205615e617c0ff7eba013f537c4f66133bad2 b/.git_backup/objects/3d/2205615e617c0ff7eba013f537c4f66133bad2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/235b65e20c0a774004bb0fd0938b158d515bb1 b/.git_backup/objects/3d/235b65e20c0a774004bb0fd0938b158d515bb1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/2e2b94f27ac302bd337645a6e8b70fa92c5fc5 b/.git_backup/objects/3d/2e2b94f27ac302bd337645a6e8b70fa92c5fc5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/2f2d0cb37d7f1b1161d8871fd3585db39b4c72 b/.git_backup/objects/3d/2f2d0cb37d7f1b1161d8871fd3585db39b4c72 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/355b95cfd657b9be4d96a22aebeb059b370cb5 b/.git_backup/objects/3d/355b95cfd657b9be4d96a22aebeb059b370cb5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/392a1f90ee495839b397e29234115cef77f9a8 b/.git_backup/objects/3d/392a1f90ee495839b397e29234115cef77f9a8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/3f27f88eef4e02451d18204cdcfd51f96f6d15 b/.git_backup/objects/3d/3f27f88eef4e02451d18204cdcfd51f96f6d15 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/41092287cd9819d2d825f054e1c71d3da8f7ea b/.git_backup/objects/3d/41092287cd9819d2d825f054e1c71d3da8f7ea deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/43dc47b528035c718b965c4e35c57fd7597042 b/.git_backup/objects/3d/43dc47b528035c718b965c4e35c57fd7597042 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/457e3f32f59097823a11b4275bc9b6c2197df5 b/.git_backup/objects/3d/457e3f32f59097823a11b4275bc9b6c2197df5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/4fded10fddcb5590f4e2a2320bcfa1726fa1ac b/.git_backup/objects/3d/4fded10fddcb5590f4e2a2320bcfa1726fa1ac deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/5991ffe8b49484c716221dbfea3e1bd1313fcd b/.git_backup/objects/3d/5991ffe8b49484c716221dbfea3e1bd1313fcd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/59cef4d4f77dea744e0ab2e289f4bd6af52364 b/.git_backup/objects/3d/59cef4d4f77dea744e0ab2e289f4bd6af52364 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/62b5eba628efec558e95f3532885bd6e294504 b/.git_backup/objects/3d/62b5eba628efec558e95f3532885bd6e294504 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/6554095f68a7a83f6a8206825903a4324fcf51 b/.git_backup/objects/3d/6554095f68a7a83f6a8206825903a4324fcf51 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/710884ab095d60bb92c7171476df82757eb81d b/.git_backup/objects/3d/710884ab095d60bb92c7171476df82757eb81d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/7841f4c367a35c0b77b716a3295d0ecf608f80 b/.git_backup/objects/3d/7841f4c367a35c0b77b716a3295d0ecf608f80 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/78566ea3a98d175c89a1992dadfaa61f2df27e b/.git_backup/objects/3d/78566ea3a98d175c89a1992dadfaa61f2df27e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/79cd84bbc5324373df8264702c0e0fdd505ad5 b/.git_backup/objects/3d/79cd84bbc5324373df8264702c0e0fdd505ad5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/7d6f01901d5a0fabe35633b17b2f5505386052 b/.git_backup/objects/3d/7d6f01901d5a0fabe35633b17b2f5505386052 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/8409d0eafba25c1f7b8463cad6970487119c26 b/.git_backup/objects/3d/8409d0eafba25c1f7b8463cad6970487119c26 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/8e2305cc973ad2121403aee4bf08728f76c461 b/.git_backup/objects/3d/8e2305cc973ad2121403aee4bf08728f76c461 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/8ff406eeaf5adeeae8b2ab3eb7e4f54ba13620 b/.git_backup/objects/3d/8ff406eeaf5adeeae8b2ab3eb7e4f54ba13620 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/93ca1ef78f59d9454ebcf2a5834c7210b67ae9 b/.git_backup/objects/3d/93ca1ef78f59d9454ebcf2a5834c7210b67ae9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/9599ef20180bbed921af81736e7151a28565d1 b/.git_backup/objects/3d/9599ef20180bbed921af81736e7151a28565d1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/9f191e3acad56fb4f73ab44a74c50cdf91c12e b/.git_backup/objects/3d/9f191e3acad56fb4f73ab44a74c50cdf91c12e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/9fc254aadebf3ee5cc4a6f8f11cfc1e56b85de b/.git_backup/objects/3d/9fc254aadebf3ee5cc4a6f8f11cfc1e56b85de deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/a0fe6150d52a0080e46ad167e9e61eaa46c69f b/.git_backup/objects/3d/a0fe6150d52a0080e46ad167e9e61eaa46c69f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/acfa244deed8a4cd397be5099d93c6fc5628e3 b/.git_backup/objects/3d/acfa244deed8a4cd397be5099d93c6fc5628e3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/b10237b2688714864206c456f3e6f046ae7a4b b/.git_backup/objects/3d/b10237b2688714864206c456f3e6f046ae7a4b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/b2093ae433c81a950ade5e7d837d649c4208dc b/.git_backup/objects/3d/b2093ae433c81a950ade5e7d837d649c4208dc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/b9616889ac901966483698449c6c0ffd280d29 b/.git_backup/objects/3d/b9616889ac901966483698449c6c0ffd280d29 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/ba41225d35cc13b7cef0544a23c800025bd0aa b/.git_backup/objects/3d/ba41225d35cc13b7cef0544a23c800025bd0aa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/be26f12a8dce1f9114505537464d6404d47a50 b/.git_backup/objects/3d/be26f12a8dce1f9114505537464d6404d47a50 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/be3ae71acb539e4859a272e4ae936589b81890 b/.git_backup/objects/3d/be3ae71acb539e4859a272e4ae936589b81890 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/be3f3991628a4801e1e789d07761def5c1c028 b/.git_backup/objects/3d/be3f3991628a4801e1e789d07761def5c1c028 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/bf49df72558e1113c3c62822c2807e0bb39010 b/.git_backup/objects/3d/bf49df72558e1113c3c62822c2807e0bb39010 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/c1071e24238d1f911d21dee40d74fa17a68726 b/.git_backup/objects/3d/c1071e24238d1f911d21dee40d74fa17a68726 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/c1c85c2bad149194ec4f86dad9be5e1fa3dcf7 b/.git_backup/objects/3d/c1c85c2bad149194ec4f86dad9be5e1fa3dcf7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/c336ba452aa9f315ba8a8a82335824bd130a50 b/.git_backup/objects/3d/c336ba452aa9f315ba8a8a82335824bd130a50 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/d0bdcdafa925a6d79301494736a7bb97203f62 b/.git_backup/objects/3d/d0bdcdafa925a6d79301494736a7bb97203f62 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/d26f879278e36c331c9af2cb11ed2322024e7d b/.git_backup/objects/3d/d26f879278e36c331c9af2cb11ed2322024e7d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/d6412af066dc0d003661dbac4446de40338185 b/.git_backup/objects/3d/d6412af066dc0d003661dbac4446de40338185 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/d805801f14740c28e226b45cbcbdc7b9590d7d b/.git_backup/objects/3d/d805801f14740c28e226b45cbcbdc7b9590d7d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/dc0f953c36382d49913676fa14b455e486edf9 b/.git_backup/objects/3d/dc0f953c36382d49913676fa14b455e486edf9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/dc405c422ee28c48b925a5f9d019cf9c75f2f1 b/.git_backup/objects/3d/dc405c422ee28c48b925a5f9d019cf9c75f2f1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/dc9eed95d31510ecb04b6d3472fbe6d5b3bcb6 b/.git_backup/objects/3d/dc9eed95d31510ecb04b6d3472fbe6d5b3bcb6 deleted file mode 100644 index a94a4656..00000000 Binary files a/.git_backup/objects/3d/dc9eed95d31510ecb04b6d3472fbe6d5b3bcb6 and /dev/null differ diff --git a/.git_backup/objects/3d/ddc960b3af66b3b9c387aa46fe435fd402fd66 b/.git_backup/objects/3d/ddc960b3af66b3b9c387aa46fe435fd402fd66 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/ecd572a53f89a107645b56b38d710bb4322037 b/.git_backup/objects/3d/ecd572a53f89a107645b56b38d710bb4322037 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/ed1c9e44967e8fd8ef7f6a25758048ab6f9482 b/.git_backup/objects/3d/ed1c9e44967e8fd8ef7f6a25758048ab6f9482 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/ededbcafd15dcfaa61b98c7f908753a2ff0e47 b/.git_backup/objects/3d/ededbcafd15dcfaa61b98c7f908753a2ff0e47 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3d/f5b546b881893510e7ef1203c1b9a94321712f b/.git_backup/objects/3d/f5b546b881893510e7ef1203c1b9a94321712f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/04dd31446a0e7c7907a6597ccfc6fb1ebdadb5 b/.git_backup/objects/3e/04dd31446a0e7c7907a6597ccfc6fb1ebdadb5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/055752e61c7be3ba7cf1211f4b9ed7e92ca48e b/.git_backup/objects/3e/055752e61c7be3ba7cf1211f4b9ed7e92ca48e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/0b03b0734066802cb05234bb1f807dc10ed83c b/.git_backup/objects/3e/0b03b0734066802cb05234bb1f807dc10ed83c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/0f34c96677973dc9b9c67fe87c16fb22ff2449 b/.git_backup/objects/3e/0f34c96677973dc9b9c67fe87c16fb22ff2449 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/11575d6e0e07fb0386e718a76858a2c9686d53 b/.git_backup/objects/3e/11575d6e0e07fb0386e718a76858a2c9686d53 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/172fa6093b9e0e4c3d2b7f99ffc2c0ce8df74a b/.git_backup/objects/3e/172fa6093b9e0e4c3d2b7f99ffc2c0ce8df74a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/18d43e910db8a24e0ef64a5aea2d52440bbb0d b/.git_backup/objects/3e/18d43e910db8a24e0ef64a5aea2d52440bbb0d deleted file mode 100644 index 00e6c0f3..00000000 Binary files a/.git_backup/objects/3e/18d43e910db8a24e0ef64a5aea2d52440bbb0d and /dev/null differ diff --git a/.git_backup/objects/3e/1c79aac8cba88d49e53a6f4dd6e5d7d11cbd40 b/.git_backup/objects/3e/1c79aac8cba88d49e53a6f4dd6e5d7d11cbd40 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/1c9674f8e24af8b06c7a40f0550cb75bf8a599 b/.git_backup/objects/3e/1c9674f8e24af8b06c7a40f0550cb75bf8a599 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/1e9a1ec916040e94c231f428725add10a2709c b/.git_backup/objects/3e/1e9a1ec916040e94c231f428725add10a2709c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/23b9d4173876f663b01d16d81910c0354ce8bc b/.git_backup/objects/3e/23b9d4173876f663b01d16d81910c0354ce8bc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/25b5e338b36f5804faf1a75b084de94b7db3da b/.git_backup/objects/3e/25b5e338b36f5804faf1a75b084de94b7db3da deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/2759df30c14c1503818cc6a400a370e8fd8e89 b/.git_backup/objects/3e/2759df30c14c1503818cc6a400a370e8fd8e89 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/2bcd3d57f9f6d59c4a7557bab42865c92e522f b/.git_backup/objects/3e/2bcd3d57f9f6d59c4a7557bab42865c92e522f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/329818540c327a9604d7204ac0d97993c7aea2 b/.git_backup/objects/3e/329818540c327a9604d7204ac0d97993c7aea2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/3742e3f081f3e87764eab683cf86daa1329f31 b/.git_backup/objects/3e/3742e3f081f3e87764eab683cf86daa1329f31 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/43d13bb8b67777f493e7e6f9c99888f19553df b/.git_backup/objects/3e/43d13bb8b67777f493e7e6f9c99888f19553df deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/44dfee659b36f4f5e54461f696f68b7fe2eba2 b/.git_backup/objects/3e/44dfee659b36f4f5e54461f696f68b7fe2eba2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/47f66a7c506dd3ee9c667db954705ed84b2715 b/.git_backup/objects/3e/47f66a7c506dd3ee9c667db954705ed84b2715 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/4eaaaedbec97db0982d66d6884b72ded8792ec b/.git_backup/objects/3e/4eaaaedbec97db0982d66d6884b72ded8792ec deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/5a521a4178746ce13f89366892e9ec39a7d2b0 b/.git_backup/objects/3e/5a521a4178746ce13f89366892e9ec39a7d2b0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/64a52e82854e1778df5dbbbad021f783f02687 b/.git_backup/objects/3e/64a52e82854e1778df5dbbbad021f783f02687 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/6612cebedff1770731b6ed1707c9b501220b20 b/.git_backup/objects/3e/6612cebedff1770731b6ed1707c9b501220b20 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/672ec9c7018aebe8fcdbfc539d90fe06a9f416 b/.git_backup/objects/3e/672ec9c7018aebe8fcdbfc539d90fe06a9f416 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/69211a273d203f506656675d0e8e68de7575ee b/.git_backup/objects/3e/69211a273d203f506656675d0e8e68de7575ee deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/693e9c5df93cf49dcdb53eee27d51331e213a3 b/.git_backup/objects/3e/693e9c5df93cf49dcdb53eee27d51331e213a3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/70e40784e549e6bf9ebf9f4fb16d655ee5b1c4 b/.git_backup/objects/3e/70e40784e549e6bf9ebf9f4fb16d655ee5b1c4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/73e70c625a04b042cf63329e9e81e870721053 b/.git_backup/objects/3e/73e70c625a04b042cf63329e9e81e870721053 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/74a8102892b5ce4b9cc01b0e807074def4fb31 b/.git_backup/objects/3e/74a8102892b5ce4b9cc01b0e807074def4fb31 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/796884908831cec2e723fbf0e61e7d30e2ade1 b/.git_backup/objects/3e/796884908831cec2e723fbf0e61e7d30e2ade1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/8916dd587d8301c4d3fa41d0f9e900133309e3 b/.git_backup/objects/3e/8916dd587d8301c4d3fa41d0f9e900133309e3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/8e8509f4f3fdd77c33fa53dc62367d055237bc b/.git_backup/objects/3e/8e8509f4f3fdd77c33fa53dc62367d055237bc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/9521aef27d0a5d063745e25d6913de6c35243f b/.git_backup/objects/3e/9521aef27d0a5d063745e25d6913de6c35243f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/95a1f2f50ac19cf532747d2097609a23881709 b/.git_backup/objects/3e/95a1f2f50ac19cf532747d2097609a23881709 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/96c8fbc23888ec07b7623c910d86267124d8d5 b/.git_backup/objects/3e/96c8fbc23888ec07b7623c910d86267124d8d5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/978fad540a8979435d4561de151573696affd8 b/.git_backup/objects/3e/978fad540a8979435d4561de151573696affd8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/9a69e4dab9670fa7d19b24d24e5eb72322f359 b/.git_backup/objects/3e/9a69e4dab9670fa7d19b24d24e5eb72322f359 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/b62aba175398b4fe999030402476eb7dc63fb2 b/.git_backup/objects/3e/b62aba175398b4fe999030402476eb7dc63fb2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/b7d76131e5771a1337bf48dcae864463b19333 b/.git_backup/objects/3e/b7d76131e5771a1337bf48dcae864463b19333 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/ba9fc8299b35f886e0adc15139991f8115093a b/.git_backup/objects/3e/ba9fc8299b35f886e0adc15139991f8115093a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/bab4fe70832cd197320f51d349c34ebad2edf6 b/.git_backup/objects/3e/bab4fe70832cd197320f51d349c34ebad2edf6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/bc12408917589515e9ad932504b8f4ac0bc98b b/.git_backup/objects/3e/bc12408917589515e9ad932504b8f4ac0bc98b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/c046ae4d1662753221d21bae6a397a131723dd b/.git_backup/objects/3e/c046ae4d1662753221d21bae6a397a131723dd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/d0ced089bd46be9cc9de654204f2be46bd704a b/.git_backup/objects/3e/d0ced089bd46be9cc9de654204f2be46bd704a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/d0d6f178039db602fb107fd88f5e3882d2f617 b/.git_backup/objects/3e/d0d6f178039db602fb107fd88f5e3882d2f617 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/d25fbb441607f911c558556416f2218b4a4696 b/.git_backup/objects/3e/d25fbb441607f911c558556416f2218b4a4696 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/d711a2e5c958a8266129c936970ca959a5698b b/.git_backup/objects/3e/d711a2e5c958a8266129c936970ca959a5698b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/e1ac0c93265786ff03b923767f2473ed33c6cf b/.git_backup/objects/3e/e1ac0c93265786ff03b923767f2473ed33c6cf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/e9e74e082874d6eb05bac25d403b97b4ac2d17 b/.git_backup/objects/3e/e9e74e082874d6eb05bac25d403b97b4ac2d17 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3e/fcc0d7b5101f5b5fbacfaa47c9afe760dbaaa6 b/.git_backup/objects/3e/fcc0d7b5101f5b5fbacfaa47c9afe760dbaaa6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3f/0507d4bc94a44bca9c938f348ad15d0647b266 b/.git_backup/objects/3f/0507d4bc94a44bca9c938f348ad15d0647b266 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3f/10701f6b28c72b62c9904fec37b96bdd199dcc b/.git_backup/objects/3f/10701f6b28c72b62c9904fec37b96bdd199dcc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3f/1364947d70aab14e3ad82cbc2e973b8ab51096 b/.git_backup/objects/3f/1364947d70aab14e3ad82cbc2e973b8ab51096 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3f/1ada774aab2509064b426a349641c5051c7791 b/.git_backup/objects/3f/1ada774aab2509064b426a349641c5051c7791 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3f/1db3de252b5db4c2432b0c2f93a3516db61d8e b/.git_backup/objects/3f/1db3de252b5db4c2432b0c2f93a3516db61d8e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3f/2c8f0c1c63342b94c8782541c2e7770af37330 b/.git_backup/objects/3f/2c8f0c1c63342b94c8782541c2e7770af37330 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3f/37d501d4e5ca6395f3b367a46c0733e8ab18ee b/.git_backup/objects/3f/37d501d4e5ca6395f3b367a46c0733e8ab18ee deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3f/38642b6df878b7463f38db85df1fbe95375ecb b/.git_backup/objects/3f/38642b6df878b7463f38db85df1fbe95375ecb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3f/3ebc9c410fe2a33ad26a5d02bb99b9503e1f72 b/.git_backup/objects/3f/3ebc9c410fe2a33ad26a5d02bb99b9503e1f72 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3f/3f3a5ee8d18d992af301263fcbcf3b606e8a54 b/.git_backup/objects/3f/3f3a5ee8d18d992af301263fcbcf3b606e8a54 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3f/4ca630960e401b80f406a1fffb2d24a20d80f8 b/.git_backup/objects/3f/4ca630960e401b80f406a1fffb2d24a20d80f8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3f/4d300cef077e698989245562375a9444d983fa b/.git_backup/objects/3f/4d300cef077e698989245562375a9444d983fa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3f/509a26123c11c8befba68f6788fa1ac2f443ac b/.git_backup/objects/3f/509a26123c11c8befba68f6788fa1ac2f443ac deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3f/524a2da00111f6e7d6158711c195f9e2182d57 b/.git_backup/objects/3f/524a2da00111f6e7d6158711c195f9e2182d57 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3f/524ffaf54a0dc7a0c104aaafcc0d1ea5a33cb4 b/.git_backup/objects/3f/524ffaf54a0dc7a0c104aaafcc0d1ea5a33cb4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3f/5a696429c4edd13f7b2d0ef7469cae32b567ed b/.git_backup/objects/3f/5a696429c4edd13f7b2d0ef7469cae32b567ed deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3f/5c4df085d35542b75e371cbab04b1599c77c78 b/.git_backup/objects/3f/5c4df085d35542b75e371cbab04b1599c77c78 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3f/602ee6519fbbc4cf3675c0cd7f424ec597fe67 b/.git_backup/objects/3f/602ee6519fbbc4cf3675c0cd7f424ec597fe67 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3f/62f31dac2191a15d7df8db028a9286262d0080 b/.git_backup/objects/3f/62f31dac2191a15d7df8db028a9286262d0080 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3f/650683f3ec8eaed42435cb35f4be528a92248b b/.git_backup/objects/3f/650683f3ec8eaed42435cb35f4be528a92248b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3f/6d52deb4cd717bd974e7b4dd65c46cb6a45284 b/.git_backup/objects/3f/6d52deb4cd717bd974e7b4dd65c46cb6a45284 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3f/6dbba8f4c5ebebdaae9b2fdd96695ace8e2a6e b/.git_backup/objects/3f/6dbba8f4c5ebebdaae9b2fdd96695ace8e2a6e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3f/7231fed1d062db8436c96cf5ca21b8253b93f0 b/.git_backup/objects/3f/7231fed1d062db8436c96cf5ca21b8253b93f0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3f/8b0692f3a61700f968e142a23948a1a454402e b/.git_backup/objects/3f/8b0692f3a61700f968e142a23948a1a454402e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3f/925a9b33b7edae3204a6fc3c9626d25cae1c35 b/.git_backup/objects/3f/925a9b33b7edae3204a6fc3c9626d25cae1c35 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3f/936179f123c50ec40917b1e47075997f673b61 b/.git_backup/objects/3f/936179f123c50ec40917b1e47075997f673b61 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3f/9f896e632e929a63e9724ab80ecdfc9761b795 b/.git_backup/objects/3f/9f896e632e929a63e9724ab80ecdfc9761b795 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3f/a56c450eaa916d9c91b492ba17e7e843df2d53 b/.git_backup/objects/3f/a56c450eaa916d9c91b492ba17e7e843df2d53 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3f/abe353771dc0205fa6aa06685bf31a0d39f790 b/.git_backup/objects/3f/abe353771dc0205fa6aa06685bf31a0d39f790 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3f/b700bb3d00760b0dd0020b52f1c60549d7706e b/.git_backup/objects/3f/b700bb3d00760b0dd0020b52f1c60549d7706e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3f/c45ece0d925a24733c442d15750f29d3b491f1 b/.git_backup/objects/3f/c45ece0d925a24733c442d15750f29d3b491f1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3f/c7645a82863a45cb2c49234c4fbb9900d368b8 b/.git_backup/objects/3f/c7645a82863a45cb2c49234c4fbb9900d368b8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3f/d534884659c2c00b360e51c3a86306bdf3c03a b/.git_backup/objects/3f/d534884659c2c00b360e51c3a86306bdf3c03a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3f/df94bd3a0877c70380a9e73883872d52b88a11 b/.git_backup/objects/3f/df94bd3a0877c70380a9e73883872d52b88a11 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3f/eb737127f1bf9bdbf20326e483d1106b4a2887 b/.git_backup/objects/3f/eb737127f1bf9bdbf20326e483d1106b4a2887 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3f/efc1d4ce5accd40ccff7aefd44c49aa121c74f b/.git_backup/objects/3f/efc1d4ce5accd40ccff7aefd44c49aa121c74f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3f/f1ceba7996b8a0ece273b7852d00e8f4d60126 b/.git_backup/objects/3f/f1ceba7996b8a0ece273b7852d00e8f4d60126 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/3f/f6d2b8799d306aed842e35f41981c4b310c9ef b/.git_backup/objects/3f/f6d2b8799d306aed842e35f41981c4b310c9ef deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/051ddf63a32d79e5233b916e3911d6dc3ef759 b/.git_backup/objects/40/051ddf63a32d79e5233b916e3911d6dc3ef759 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/0c00e1e182aabb4ac0214000b300d377d854b5 b/.git_backup/objects/40/0c00e1e182aabb4ac0214000b300d377d854b5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/0ed9247949b175da0a6ec715cbddc142f84946 b/.git_backup/objects/40/0ed9247949b175da0a6ec715cbddc142f84946 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/10988300ffd12da5dd136f1f173d584261191e b/.git_backup/objects/40/10988300ffd12da5dd136f1f173d584261191e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/1de7897c9acf0a082e453ddf5a9d9ebb39caf5 b/.git_backup/objects/40/1de7897c9acf0a082e453ddf5a9d9ebb39caf5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/210b889402c0f27562296ab39ce1a714f0d0ef b/.git_backup/objects/40/210b889402c0f27562296ab39ce1a714f0d0ef deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/26281dcec7a99ee2860c8a033ab788ab42ebdc b/.git_backup/objects/40/26281dcec7a99ee2860c8a033ab788ab42ebdc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/2cdacd0a51748f2ab528d8d82b20cb092124b9 b/.git_backup/objects/40/2cdacd0a51748f2ab528d8d82b20cb092124b9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/364b044512d2bac51f83c49753bc1a41ec0c24 b/.git_backup/objects/40/364b044512d2bac51f83c49753bc1a41ec0c24 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/3709773f1a2e49722d63d1c59650bee02b209c b/.git_backup/objects/40/3709773f1a2e49722d63d1c59650bee02b209c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/3af686c862844009bbb6e3cde760685589c7ed b/.git_backup/objects/40/3af686c862844009bbb6e3cde760685589c7ed deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/3f4a2c06df1cf682670defd9daf37c1ddc0582 b/.git_backup/objects/40/3f4a2c06df1cf682670defd9daf37c1ddc0582 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/466f8b2ae7225ee0dfba49c42dcf562f8458a1 b/.git_backup/objects/40/466f8b2ae7225ee0dfba49c42dcf562f8458a1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/4a93a37abab19a49d60cbcf4c6e50f1927dc17 b/.git_backup/objects/40/4a93a37abab19a49d60cbcf4c6e50f1927dc17 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/506fcf6a5f4fd899f0875d03f24cac9eb65d12 b/.git_backup/objects/40/506fcf6a5f4fd899f0875d03f24cac9eb65d12 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/522111cbf417f8dedf5d9cdb624b7e52dd092f b/.git_backup/objects/40/522111cbf417f8dedf5d9cdb624b7e52dd092f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/5738aab0a89fcf61b4bc8332960478df850fc6 b/.git_backup/objects/40/5738aab0a89fcf61b4bc8332960478df850fc6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/5e3e7e1113aac70262945f6af45d33af6f9fd5 b/.git_backup/objects/40/5e3e7e1113aac70262945f6af45d33af6f9fd5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/67f358048d5e9776b64e3645970f56054c3634 b/.git_backup/objects/40/67f358048d5e9776b64e3645970f56054c3634 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/7138caf94e467b52d925f96ad80b506e16d9ec b/.git_backup/objects/40/7138caf94e467b52d925f96ad80b506e16d9ec deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/7f19e46d73dd8704dc36714cc9845cf1ad2b39 b/.git_backup/objects/40/7f19e46d73dd8704dc36714cc9845cf1ad2b39 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/8113e9bc417647839ccdd521f433c62f936a28 b/.git_backup/objects/40/8113e9bc417647839ccdd521f433c62f936a28 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/831be11e0ab028ada80cecf5fdc0e2a233ee17 b/.git_backup/objects/40/831be11e0ab028ada80cecf5fdc0e2a233ee17 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/899b200820ce231fd47f894b4ee403f9f76ef0 b/.git_backup/objects/40/899b200820ce231fd47f894b4ee403f9f76ef0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/9066265ba8f3868a1518ad3411ca43c0b4e1d2 b/.git_backup/objects/40/9066265ba8f3868a1518ad3411ca43c0b4e1d2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/9557ff99ffef61cbf06532b1900d25cc7877ae b/.git_backup/objects/40/9557ff99ffef61cbf06532b1900d25cc7877ae deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/9fac4ede75113ff60bfb8d38083253549ba5ac b/.git_backup/objects/40/9fac4ede75113ff60bfb8d38083253549ba5ac deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/a4b3353cfeb839971959b8fbd722712f826678 b/.git_backup/objects/40/a4b3353cfeb839971959b8fbd722712f826678 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/aa95d0a46058d2dc3fc5208ca39328d96b23fb b/.git_backup/objects/40/aa95d0a46058d2dc3fc5208ca39328d96b23fb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/ac6999e7e1ee98e0cca74507af0a0dc611f98e b/.git_backup/objects/40/ac6999e7e1ee98e0cca74507af0a0dc611f98e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/b25aa74a30ff1f946c799a643a9744d55d3cef b/.git_backup/objects/40/b25aa74a30ff1f946c799a643a9744d55d3cef deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/b2d588f7afff6adcd47f6e094674aa7396839a b/.git_backup/objects/40/b2d588f7afff6adcd47f6e094674aa7396839a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/b2eb1f4114b8a90bf8af727917a918a74d886f b/.git_backup/objects/40/b2eb1f4114b8a90bf8af727917a918a74d886f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/b37cef6e6e72de6e42f4d6c5f32d720adf0003 b/.git_backup/objects/40/b37cef6e6e72de6e42f4d6c5f32d720adf0003 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/c9cd330e0c731968d71dbbfeae9bd8c4a745a2 b/.git_backup/objects/40/c9cd330e0c731968d71dbbfeae9bd8c4a745a2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/c9e81c1763131ec2f8756051a463e66f1acb4a b/.git_backup/objects/40/c9e81c1763131ec2f8756051a463e66f1acb4a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/cdae9e9725ee12e65d259c9163502cfdd3ee29 b/.git_backup/objects/40/cdae9e9725ee12e65d259c9163502cfdd3ee29 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/d7124e5346af056c75e2f7012a51d94e8154b7 b/.git_backup/objects/40/d7124e5346af056c75e2f7012a51d94e8154b7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/dcaa3c77855d6f589d75ad6ea48ec33d2e35fb b/.git_backup/objects/40/dcaa3c77855d6f589d75ad6ea48ec33d2e35fb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/e8297c0bbbe619b103caccd5bc692a571b59ec b/.git_backup/objects/40/e8297c0bbbe619b103caccd5bc692a571b59ec deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/ea9624537c95005d2dba5acf2642bd1ae7d9cb b/.git_backup/objects/40/ea9624537c95005d2dba5acf2642bd1ae7d9cb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/f2c15e0dbf5ba27258c2e964be37df2d7fdf25 b/.git_backup/objects/40/f2c15e0dbf5ba27258c2e964be37df2d7fdf25 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/f5376b18dbd1b88114d1072ac9585e0cfea93e b/.git_backup/objects/40/f5376b18dbd1b88114d1072ac9585e0cfea93e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/fd45762ffe4310ce1546f321ea62f63c574886 b/.git_backup/objects/40/fd45762ffe4310ce1546f321ea62f63c574886 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/40/fe31c98dce6c1c7203118f99f1ab91db1839b0 b/.git_backup/objects/40/fe31c98dce6c1c7203118f99f1ab91db1839b0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/06064a197830641d60df26b928639a150f77fe b/.git_backup/objects/41/06064a197830641d60df26b928639a150f77fe deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/0fb29d6db5abab4c6b2a99308f99cce07c10b2 b/.git_backup/objects/41/0fb29d6db5abab4c6b2a99308f99cce07c10b2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/11fba86e63c92d7e464eceef1b38f26ab53111 b/.git_backup/objects/41/11fba86e63c92d7e464eceef1b38f26ab53111 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/12fec0a5a3ab3a8cd07d92a1e58188b5bca14b b/.git_backup/objects/41/12fec0a5a3ab3a8cd07d92a1e58188b5bca14b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/13b89fbbae78d0b69087472be269eac705ca67 b/.git_backup/objects/41/13b89fbbae78d0b69087472be269eac705ca67 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/14d1688c37f7dcc46d95528bdf34af4f75ceb3 b/.git_backup/objects/41/14d1688c37f7dcc46d95528bdf34af4f75ceb3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/1a839b84d3c629bf7eb623024077efe614ed07 b/.git_backup/objects/41/1a839b84d3c629bf7eb623024077efe614ed07 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/1ce48277d7826c833c7241f31e287eb0ed500f b/.git_backup/objects/41/1ce48277d7826c833c7241f31e287eb0ed500f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/1f45f87f85b95d3024ea4c0a7aba1422436dbb b/.git_backup/objects/41/1f45f87f85b95d3024ea4c0a7aba1422436dbb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/22508abab8678eae87739cf5a3aea7db221529 b/.git_backup/objects/41/22508abab8678eae87739cf5a3aea7db221529 deleted file mode 100644 index c0c59fe5..00000000 Binary files a/.git_backup/objects/41/22508abab8678eae87739cf5a3aea7db221529 and /dev/null differ diff --git a/.git_backup/objects/41/23839f2292c7d67d6ed2aa675014eca3d34382 b/.git_backup/objects/41/23839f2292c7d67d6ed2aa675014eca3d34382 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/32e0898831bc18faa313f103f55e7d5a1ea2b7 b/.git_backup/objects/41/32e0898831bc18faa313f103f55e7d5a1ea2b7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/3364f3506bd21279083fe8af5a69afaa3536ce b/.git_backup/objects/41/3364f3506bd21279083fe8af5a69afaa3536ce deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/380fe4adc43336f101f55a974a1379b31dc234 b/.git_backup/objects/41/380fe4adc43336f101f55a974a1379b31dc234 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/3fe17425a1bcf0e8700958486aad823c5feeb4 b/.git_backup/objects/41/3fe17425a1bcf0e8700958486aad823c5feeb4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/48297aa53b1bf555b298d8e4602c0c92579ac8 b/.git_backup/objects/41/48297aa53b1bf555b298d8e4602c0c92579ac8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/4c10a241a29cc8dc8ebd77b9b25f5619d0e03e b/.git_backup/objects/41/4c10a241a29cc8dc8ebd77b9b25f5619d0e03e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/59a1c0eb82ec84053e502a1db6a76ba64b10fd b/.git_backup/objects/41/59a1c0eb82ec84053e502a1db6a76ba64b10fd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/5b864f23314e9b819584a9acdde975654911f1 b/.git_backup/objects/41/5b864f23314e9b819584a9acdde975654911f1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/5bdf74db80a0d98cebc4ec4fecd2c477fe65ca b/.git_backup/objects/41/5bdf74db80a0d98cebc4ec4fecd2c477fe65ca deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/5cfe748696955c95bf026585f6237a95dbd50c b/.git_backup/objects/41/5cfe748696955c95bf026585f6237a95dbd50c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/600c0c1fcf3b4184d7f48d81c983c5350f44fc b/.git_backup/objects/41/600c0c1fcf3b4184d7f48d81c983c5350f44fc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/62691f3959c857128cd9ab3a12d19e62357bc9 b/.git_backup/objects/41/62691f3959c857128cd9ab3a12d19e62357bc9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/6d1aea417af61bfe0f59dc79a747c8580f99f6 b/.git_backup/objects/41/6d1aea417af61bfe0f59dc79a747c8580f99f6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/784104ee4bd5796006d1052536325d52db1e8c b/.git_backup/objects/41/784104ee4bd5796006d1052536325d52db1e8c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/7c8c138dc1f84bdbb437650a565ab6565b56b1 b/.git_backup/objects/41/7c8c138dc1f84bdbb437650a565ab6565b56b1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/7f930cb2640767dce8b2c1ce3ace0f0c1043c6 b/.git_backup/objects/41/7f930cb2640767dce8b2c1ce3ace0f0c1043c6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/816c939ac224da161234ef3ebebebfe3c73588 b/.git_backup/objects/41/816c939ac224da161234ef3ebebebfe3c73588 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/8596a12167184927e10d1a80760c677703717b b/.git_backup/objects/41/8596a12167184927e10d1a80760c677703717b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/85bc9ba87a03afe2adf5e5d2ff20b9494e0218 b/.git_backup/objects/41/85bc9ba87a03afe2adf5e5d2ff20b9494e0218 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/870e2da5cb0ed5b6571eb1e9f12b084202e2e4 b/.git_backup/objects/41/870e2da5cb0ed5b6571eb1e9f12b084202e2e4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/8730277ed6ba937a68777eeb19a231c3bc0ee3 b/.git_backup/objects/41/8730277ed6ba937a68777eeb19a231c3bc0ee3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/878b960054aed4bf8dbbe61cfe88a5549d5316 b/.git_backup/objects/41/878b960054aed4bf8dbbe61cfe88a5549d5316 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/88c2ed596d4279974d31f114f38e30b44fe853 b/.git_backup/objects/41/88c2ed596d4279974d31f114f38e30b44fe853 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/8ea84b236faf98296a56eb9e20fe9f119d2280 b/.git_backup/objects/41/8ea84b236faf98296a56eb9e20fe9f119d2280 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/95cd93edc920ca8c927017b9ce43ed9e00eddc b/.git_backup/objects/41/95cd93edc920ca8c927017b9ce43ed9e00eddc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/95fd9e0f88fac5ca4136ad6dfae741517e7e87 b/.git_backup/objects/41/95fd9e0f88fac5ca4136ad6dfae741517e7e87 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/960b726abd1e8eb1581d45ac941713e7ba6cf2 b/.git_backup/objects/41/960b726abd1e8eb1581d45ac941713e7ba6cf2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/98a4f2aeb8effcccf94a9c0114539f98124179 b/.git_backup/objects/41/98a4f2aeb8effcccf94a9c0114539f98124179 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/9e8ed4f7e18cadcc17183f988d4646583d0b86 b/.git_backup/objects/41/9e8ed4f7e18cadcc17183f988d4646583d0b86 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/a0ce3d0efa247760db266bace8e34a4b5dd9fa b/.git_backup/objects/41/a0ce3d0efa247760db266bace8e34a4b5dd9fa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/a1c23b0a7fe134b1f662545876eb65b31b071e b/.git_backup/objects/41/a1c23b0a7fe134b1f662545876eb65b31b071e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/a4aebf1d70118a298cda4ea6cccc0c5006c873 b/.git_backup/objects/41/a4aebf1d70118a298cda4ea6cccc0c5006c873 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/acde727402fe3024ca976206e11410596c450a b/.git_backup/objects/41/acde727402fe3024ca976206e11410596c450a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/b571019d3822a18416722b5741ed65d198957a b/.git_backup/objects/41/b571019d3822a18416722b5741ed65d198957a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/bf8afe405b9cc85debe821bb33948216b6d124 b/.git_backup/objects/41/bf8afe405b9cc85debe821bb33948216b6d124 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/c0e2f630c2c3db201958fd6c53f57f2fa2e692 b/.git_backup/objects/41/c0e2f630c2c3db201958fd6c53f57f2fa2e692 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/c2c61154f088b2f6ccf601e248bdf72c90c7fc b/.git_backup/objects/41/c2c61154f088b2f6ccf601e248bdf72c90c7fc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/c5b5852faec2ab4e053fee262f4cad4f09d84d b/.git_backup/objects/41/c5b5852faec2ab4e053fee262f4cad4f09d84d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/cc42c5677ddf0709d9eeb894eb8dbe4fd16f91 b/.git_backup/objects/41/cc42c5677ddf0709d9eeb894eb8dbe4fd16f91 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/cc47a91dbee54e9c2f0ab85adc20608be9eb48 b/.git_backup/objects/41/cc47a91dbee54e9c2f0ab85adc20608be9eb48 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/d093640a47456103026dc257b31be443c6acb2 b/.git_backup/objects/41/d093640a47456103026dc257b31be443c6acb2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/d8b3b08728fcddba4a83cb58cbee2ef72c49a1 b/.git_backup/objects/41/d8b3b08728fcddba4a83cb58cbee2ef72c49a1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/d9bc60d970cfd91ba87616794746ae5e3b1411 b/.git_backup/objects/41/d9bc60d970cfd91ba87616794746ae5e3b1411 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/dc3e632b314b8952db69cfaef544fb48a6e01c b/.git_backup/objects/41/dc3e632b314b8952db69cfaef544fb48a6e01c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/e00cf181161082b47f70f6a4e82a617f5c74f1 b/.git_backup/objects/41/e00cf181161082b47f70f6a4e82a617f5c74f1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/eb7ae85d03289c8582b4b52add416cb7fb18d6 b/.git_backup/objects/41/eb7ae85d03289c8582b4b52add416cb7fb18d6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/41/ff525ce6230c41bea1fb7a47c7899b83eac6b3 b/.git_backup/objects/41/ff525ce6230c41bea1fb7a47c7899b83eac6b3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/0c3028382fc3e49f6b9de0eb65124e6c1451df b/.git_backup/objects/42/0c3028382fc3e49f6b9de0eb65124e6c1451df deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/1d19c9405276001fc37e3af0063a00c29d3cdb b/.git_backup/objects/42/1d19c9405276001fc37e3af0063a00c29d3cdb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/2e835e5b68ee8457fd3a7aec8035ba518cbad9 b/.git_backup/objects/42/2e835e5b68ee8457fd3a7aec8035ba518cbad9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/3b09d65409cfe42cb3d32c91321a780c714a27 b/.git_backup/objects/42/3b09d65409cfe42cb3d32c91321a780c714a27 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/4173ccc69f032230401529cd64bb115e0d2868 b/.git_backup/objects/42/4173ccc69f032230401529cd64bb115e0d2868 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/4509be25b66fe18f46f6127cba66117a73a3c1 b/.git_backup/objects/42/4509be25b66fe18f46f6127cba66117a73a3c1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/46d3cf8e91ee0f529774a20f61179b436e007c b/.git_backup/objects/42/46d3cf8e91ee0f529774a20f61179b436e007c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/474ff00ad6de9b34d5a3665bed979511b09b47 b/.git_backup/objects/42/474ff00ad6de9b34d5a3665bed979511b09b47 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/49071ffe9878477d2e21b90b2889b055a7ec87 b/.git_backup/objects/42/49071ffe9878477d2e21b90b2889b055a7ec87 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/49ec62119e264d55a81d3faf9c87dcaed1c7c8 b/.git_backup/objects/42/49ec62119e264d55a81d3faf9c87dcaed1c7c8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/4bbdf990f42bf98762996fd23f87825c66ec1b b/.git_backup/objects/42/4bbdf990f42bf98762996fd23f87825c66ec1b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/4cb741d06cbfea9f2d7d867869c6513469240a b/.git_backup/objects/42/4cb741d06cbfea9f2d7d867869c6513469240a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/4cf0096d575be4c284091eb699b87b08fb2927 b/.git_backup/objects/42/4cf0096d575be4c284091eb699b87b08fb2927 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/5a6564b335bdd83e218f2e705a80df3f72e573 b/.git_backup/objects/42/5a6564b335bdd83e218f2e705a80df3f72e573 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/5cf527583ab18fa91ddbbf5c99ff360fa1b3b4 b/.git_backup/objects/42/5cf527583ab18fa91ddbbf5c99ff360fa1b3b4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/5ec4335455e54fd0386c81beb0b6a6cbe60e56 b/.git_backup/objects/42/5ec4335455e54fd0386c81beb0b6a6cbe60e56 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/6605566c6e21064e7197f1db231aaf3b687ff4 b/.git_backup/objects/42/6605566c6e21064e7197f1db231aaf3b687ff4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/66b5ee92a24b5e0ef65689a1b94a98bb4a9b56 b/.git_backup/objects/42/66b5ee92a24b5e0ef65689a1b94a98bb4a9b56 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/6c3ab62dd05f72611b614bf0c2a0406457f56e b/.git_backup/objects/42/6c3ab62dd05f72611b614bf0c2a0406457f56e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/6fddf9020ddd0106e2fac520026eda48ae471d b/.git_backup/objects/42/6fddf9020ddd0106e2fac520026eda48ae471d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/73473b00eb1e14f342049c3bd483c22057a97f b/.git_backup/objects/42/73473b00eb1e14f342049c3bd483c22057a97f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/783331ec1d8d8a0cb4edffb2b142404660eb4b b/.git_backup/objects/42/783331ec1d8d8a0cb4edffb2b142404660eb4b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/7fa563033fdd8533ae56337fa20befe9719b42 b/.git_backup/objects/42/7fa563033fdd8533ae56337fa20befe9719b42 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/80387fc5e542d3b022be43ab8ab8c05ea2e953 b/.git_backup/objects/42/80387fc5e542d3b022be43ab8ab8c05ea2e953 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/83de47226702205188773744fef313e365d0d7 b/.git_backup/objects/42/83de47226702205188773744fef313e365d0d7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/883863bac0f93b999b00ae2260e969363cdafb b/.git_backup/objects/42/883863bac0f93b999b00ae2260e969363cdafb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/8882745970e82da9cf7a7049e48f436ba71408 b/.git_backup/objects/42/8882745970e82da9cf7a7049e48f436ba71408 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/8cb1db4a0e348001832810e18e7979a26426e8 b/.git_backup/objects/42/8cb1db4a0e348001832810e18e7979a26426e8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/91eb32e9a0bdcca22fc863993c161bc6605be7 b/.git_backup/objects/42/91eb32e9a0bdcca22fc863993c161bc6605be7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/9a1767e4476707d2e45ee499e3c834ca4b187f b/.git_backup/objects/42/9a1767e4476707d2e45ee499e3c834ca4b187f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/9e69bb4a24ae6c5c4e3ce77172927f0b6372f8 b/.git_backup/objects/42/9e69bb4a24ae6c5c4e3ce77172927f0b6372f8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/a3777e6d815dd7309ed9156e205c349bc8112a b/.git_backup/objects/42/a3777e6d815dd7309ed9156e205c349bc8112a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/a3c4d35bd55e2ffecefb691c805f517c56d6ca b/.git_backup/objects/42/a3c4d35bd55e2ffecefb691c805f517c56d6ca deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/a46d0b832b8e3c0a176512c59a2463ae416124 b/.git_backup/objects/42/a46d0b832b8e3c0a176512c59a2463ae416124 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/a6d03fce89ef39d3004bd4cb889b5eaa834d58 b/.git_backup/objects/42/a6d03fce89ef39d3004bd4cb889b5eaa834d58 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/a74e86611d0d3acb5ff608fe991fd3a557654a b/.git_backup/objects/42/a74e86611d0d3acb5ff608fe991fd3a557654a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/adc7904c826712b1db6b3b5e4e83be918002ac b/.git_backup/objects/42/adc7904c826712b1db6b3b5e4e83be918002ac deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/ae4a1de04f387ef2f50fab4e172b29f1939e7c b/.git_backup/objects/42/ae4a1de04f387ef2f50fab4e172b29f1939e7c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/aef691e5b36c54a929909e20ce70ce0d2ad141 b/.git_backup/objects/42/aef691e5b36c54a929909e20ce70ce0d2ad141 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/b57ae70938a36fbe3b2758456c55ecb9d8ed00 b/.git_backup/objects/42/b57ae70938a36fbe3b2758456c55ecb9d8ed00 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/b8d9655293048624be289d4508834e0e66e346 b/.git_backup/objects/42/b8d9655293048624be289d4508834e0e66e346 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/bf9bae9c4a090314e28a2b9135aec4cce08d77 b/.git_backup/objects/42/bf9bae9c4a090314e28a2b9135aec4cce08d77 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/c318803693724ebe4be47c05318b5688895e43 b/.git_backup/objects/42/c318803693724ebe4be47c05318b5688895e43 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/c34e969415e3dce144acc4172a27bcef394733 b/.git_backup/objects/42/c34e969415e3dce144acc4172a27bcef394733 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/c70b10a7e0bfc3f66340fef896527ea93967db b/.git_backup/objects/42/c70b10a7e0bfc3f66340fef896527ea93967db deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/ce7b75c92fb01a3f6ed17eea363f756b7da582 b/.git_backup/objects/42/ce7b75c92fb01a3f6ed17eea363f756b7da582 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/d483d21ef88256bc01f026378d6b25e9c5c5d2 b/.git_backup/objects/42/d483d21ef88256bc01f026378d6b25e9c5c5d2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/dade18c1ec2b825f756dad4aaa89f2d9e6ce21 b/.git_backup/objects/42/dade18c1ec2b825f756dad4aaa89f2d9e6ce21 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/e457da20e6c81ac677d0b19917f03a19270c19 b/.git_backup/objects/42/e457da20e6c81ac677d0b19917f03a19270c19 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/e9db75847eb73c01208c4b3386d90b00658c3e b/.git_backup/objects/42/e9db75847eb73c01208c4b3386d90b00658c3e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/edaa2fe6c3abb64d6caa14c6a0f259d3d55bb8 b/.git_backup/objects/42/edaa2fe6c3abb64d6caa14c6a0f259d3d55bb8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/f21597b405427e38da54eb7057c7d204efa06c b/.git_backup/objects/42/f21597b405427e38da54eb7057c7d204efa06c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/f250cb9114b48edc2ee5e1328eaceef2d8e75c b/.git_backup/objects/42/f250cb9114b48edc2ee5e1328eaceef2d8e75c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/f6c455c6eac114945bcda6912d8d5ae41017d6 b/.git_backup/objects/42/f6c455c6eac114945bcda6912d8d5ae41017d6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/42/f8386459def38101c933b0bfd0aff1f8da05c8 b/.git_backup/objects/42/f8386459def38101c933b0bfd0aff1f8da05c8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/031616452c766a2b02ddfcb89826bae283b962 b/.git_backup/objects/43/031616452c766a2b02ddfcb89826bae283b962 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/03b903e5e007484c0d8e1eea43a35e9b53f38b b/.git_backup/objects/43/03b903e5e007484c0d8e1eea43a35e9b53f38b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/0b5f24b14de8b8ecc5f73fb57f16620574e97e b/.git_backup/objects/43/0b5f24b14de8b8ecc5f73fb57f16620574e97e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/0b8c07ba8bb4238973ed55f320fecc2636ea32 b/.git_backup/objects/43/0b8c07ba8bb4238973ed55f320fecc2636ea32 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/1b07c0ced3263d01242e9ae765f14bd0bddc16 b/.git_backup/objects/43/1b07c0ced3263d01242e9ae765f14bd0bddc16 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/1fa8b2e5f7f52e33cac77adffe6a2c100b004c b/.git_backup/objects/43/1fa8b2e5f7f52e33cac77adffe6a2c100b004c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/226e102f8c1e5fee8e2c01f33763dca5228788 b/.git_backup/objects/43/226e102f8c1e5fee8e2c01f33763dca5228788 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/236498f681cc06f64ca2afa613880331fe6fbb b/.git_backup/objects/43/236498f681cc06f64ca2afa613880331fe6fbb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/3cf21a8552d4fc41beb946ff99096318e9386f b/.git_backup/objects/43/3cf21a8552d4fc41beb946ff99096318e9386f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/3d793cb8fd53bf147086755ef79f555706dab1 b/.git_backup/objects/43/3d793cb8fd53bf147086755ef79f555706dab1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/459a04cc63fc75576dde923e5e53f6bde56be0 b/.git_backup/objects/43/459a04cc63fc75576dde923e5e53f6bde56be0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/46b3a5d18cf0172f382cee729e476bd221ca3e b/.git_backup/objects/43/46b3a5d18cf0172f382cee729e476bd221ca3e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/4874a6175dc9543bf5af4eb59b398c208833bf b/.git_backup/objects/43/4874a6175dc9543bf5af4eb59b398c208833bf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/4a656d49fcfb92762bf8b03ff5d98c5665140b b/.git_backup/objects/43/4a656d49fcfb92762bf8b03ff5d98c5665140b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/50174cf9f66ebf628b484903b6fe34d73ff69b b/.git_backup/objects/43/50174cf9f66ebf628b484903b6fe34d73ff69b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/5ad907f103f82434e7bd4ff7d9086e3ca892a9 b/.git_backup/objects/43/5ad907f103f82434e7bd4ff7d9086e3ca892a9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/5b27836ae2b5d88b09ef1fd826dd776a831da7 b/.git_backup/objects/43/5b27836ae2b5d88b09ef1fd826dd776a831da7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/61451e4940a33ec59a618a37b80ae64df7269c b/.git_backup/objects/43/61451e4940a33ec59a618a37b80ae64df7269c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/62b49151d7b34ef83b3067a8f9c9f877d72a0e b/.git_backup/objects/43/62b49151d7b34ef83b3067a8f9c9f877d72a0e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/630835ca677066a315ac0a04d17cb6839da38d b/.git_backup/objects/43/630835ca677066a315ac0a04d17cb6839da38d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/6711d72f38878187943118a5666020a4a645b3 b/.git_backup/objects/43/6711d72f38878187943118a5666020a4a645b3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/72b1b1332bda7145fef7d5bdc01f978d31255f b/.git_backup/objects/43/72b1b1332bda7145fef7d5bdc01f978d31255f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/7a47310ec174736b0efbbe9e7e9a8cc26c150c b/.git_backup/objects/43/7a47310ec174736b0efbbe9e7e9a8cc26c150c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/7bd22e6121e150bb2c154a32cf3b80f67d5c0c b/.git_backup/objects/43/7bd22e6121e150bb2c154a32cf3b80f67d5c0c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/7be86fcb6527526c19b110f6ee10a68766c304 b/.git_backup/objects/43/7be86fcb6527526c19b110f6ee10a68766c304 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/85d125496c6654a420af0716d63bd284a815ab b/.git_backup/objects/43/85d125496c6654a420af0716d63bd284a815ab deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/862fa1486f12bd03be1cdb938fdfdebc90503c b/.git_backup/objects/43/862fa1486f12bd03be1cdb938fdfdebc90503c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/a6fe9e2d70a54bb189485a00040d8a91a43ef8 b/.git_backup/objects/43/a6fe9e2d70a54bb189485a00040d8a91a43ef8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/b88e9f36ac05a824654979b003de341aa03f4e b/.git_backup/objects/43/b88e9f36ac05a824654979b003de341aa03f4e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/c4c89aacf0c771de138e1f58decf9fb592f62f b/.git_backup/objects/43/c4c89aacf0c771de138e1f58decf9fb592f62f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/c67d942af6662aff53589476806b1a6c63b23c b/.git_backup/objects/43/c67d942af6662aff53589476806b1a6c63b23c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/c68f057050ef5d26295bea85465c2d08f5a8d8 b/.git_backup/objects/43/c68f057050ef5d26295bea85465c2d08f5a8d8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/d290010dd24e2585ba14fcf8689beec5652d90 b/.git_backup/objects/43/d290010dd24e2585ba14fcf8689beec5652d90 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/d731f8c3142f6394e6952d6a256fdee07080ea b/.git_backup/objects/43/d731f8c3142f6394e6952d6a256fdee07080ea deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/e6d4aa716ecd1445470871c10b90bf46967511 b/.git_backup/objects/43/e6d4aa716ecd1445470871c10b90bf46967511 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/ea4ac900bbedd35a123e764066cfc993fba527 b/.git_backup/objects/43/ea4ac900bbedd35a123e764066cfc993fba527 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/eaa2e29936bb3480014dd4637ef7d86de82354 b/.git_backup/objects/43/eaa2e29936bb3480014dd4637ef7d86de82354 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/eb96f7f32d956d9a79f7117bf83d02015fff4c b/.git_backup/objects/43/eb96f7f32d956d9a79f7117bf83d02015fff4c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/f0245f1db65aeb43b9abe71cb5991db86f47ee b/.git_backup/objects/43/f0245f1db65aeb43b9abe71cb5991db86f47ee deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/f6e144f677a113b5362dcbdfb75db4f41c2b2f b/.git_backup/objects/43/f6e144f677a113b5362dcbdfb75db4f41c2b2f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/f71bd1e897a06922d329065f08e53ef8f9eded b/.git_backup/objects/43/f71bd1e897a06922d329065f08e53ef8f9eded deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/f93fda43ada43983cdfd8a4d613afd025c10dd b/.git_backup/objects/43/f93fda43ada43983cdfd8a4d613afd025c10dd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/fbe3307bd4d0ad76e88e3bee3a11f47336bf41 b/.git_backup/objects/43/fbe3307bd4d0ad76e88e3bee3a11f47336bf41 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/43/fe72b0776ed4a59c742427502ea4c738a8a2d5 b/.git_backup/objects/43/fe72b0776ed4a59c742427502ea4c738a8a2d5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/44/021a221d974c38159f2891f13382a89a7dd62f b/.git_backup/objects/44/021a221d974c38159f2891f13382a89a7dd62f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/44/07a9d0ca61a69c3335c9de6067b812862ddc9b b/.git_backup/objects/44/07a9d0ca61a69c3335c9de6067b812862ddc9b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/44/0e4446a6ab5cb13d7241e0fd5c16476371e9ac b/.git_backup/objects/44/0e4446a6ab5cb13d7241e0fd5c16476371e9ac deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/44/169b757e5121357791ab6ed0f1eebdb3e1bb38 b/.git_backup/objects/44/169b757e5121357791ab6ed0f1eebdb3e1bb38 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/44/16b13867e35891228371431ea762bf86784970 b/.git_backup/objects/44/16b13867e35891228371431ea762bf86784970 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/44/16e07e4aef6fd46e56c21db6071cbe19c1a7f6 b/.git_backup/objects/44/16e07e4aef6fd46e56c21db6071cbe19c1a7f6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/44/1e9358699732226eaf77583c0a2e341fee2650 b/.git_backup/objects/44/1e9358699732226eaf77583c0a2e341fee2650 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/44/265bfcce8916ddd3e07130576b4b30ba74695d b/.git_backup/objects/44/265bfcce8916ddd3e07130576b4b30ba74695d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/44/27a1a83d13f81382990248ad4fed49565ef148 b/.git_backup/objects/44/27a1a83d13f81382990248ad4fed49565ef148 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/44/3551ab88c3de8ae10ed511460a242d1dc2f9c9 b/.git_backup/objects/44/3551ab88c3de8ae10ed511460a242d1dc2f9c9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/44/3e33c1161d541e0d70f753106d524d8bc7b8ae b/.git_backup/objects/44/3e33c1161d541e0d70f753106d524d8bc7b8ae deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/44/3f6b30cfa729b4d5fa7eb836594d0a5c6f5f6d b/.git_backup/objects/44/3f6b30cfa729b4d5fa7eb836594d0a5c6f5f6d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/44/45957164ae876ff143a92704fe13fb976023e3 b/.git_backup/objects/44/45957164ae876ff143a92704fe13fb976023e3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/44/64a1e9fb036ecc43a55ad0abc5213548f60b49 b/.git_backup/objects/44/64a1e9fb036ecc43a55ad0abc5213548f60b49 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/44/6897bcd8a6995c5a1403cf7b70c8e85ebdd940 b/.git_backup/objects/44/6897bcd8a6995c5a1403cf7b70c8e85ebdd940 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/44/69631b7b3f75e66ad44cd5b1ac4fd762fd2c03 b/.git_backup/objects/44/69631b7b3f75e66ad44cd5b1ac4fd762fd2c03 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/44/7770a544942d330a33dff5a2d52d83a2ddd480 b/.git_backup/objects/44/7770a544942d330a33dff5a2d52d83a2ddd480 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/44/7bf66c43ebd7cf7da6f2a35846677ee317675f b/.git_backup/objects/44/7bf66c43ebd7cf7da6f2a35846677ee317675f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/44/883f6c3070f2c49df20083b7dd4082ed2e8b32 b/.git_backup/objects/44/883f6c3070f2c49df20083b7dd4082ed2e8b32 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/44/916ba96293db19756b8222422e76945aa48ebb b/.git_backup/objects/44/916ba96293db19756b8222422e76945aa48ebb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/44/9c18a49356ded0f51d5c525823a010007c83d0 b/.git_backup/objects/44/9c18a49356ded0f51d5c525823a010007c83d0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/44/9c54c9e6378521bf1bc879fe0007d611e3a9ff b/.git_backup/objects/44/9c54c9e6378521bf1bc879fe0007d611e3a9ff deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/44/a1cfe554de6c21ce413b1f6db8fff22e440dbe b/.git_backup/objects/44/a1cfe554de6c21ce413b1f6db8fff22e440dbe deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/44/a3e508e509eb64e085291d80470b5350626423 b/.git_backup/objects/44/a3e508e509eb64e085291d80470b5350626423 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/44/b1be9a6a71eea66ff9eeabd988c88b381390ac b/.git_backup/objects/44/b1be9a6a71eea66ff9eeabd988c88b381390ac deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/44/b7de92dfc644e36fef36b0c5661236d6155257 b/.git_backup/objects/44/b7de92dfc644e36fef36b0c5661236d6155257 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/44/c4b954986d19438dc6e9b5726de7677e92c20b b/.git_backup/objects/44/c4b954986d19438dc6e9b5726de7677e92c20b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/44/c4c9c09ed6d205d62261f4a1e26a9917e67064 b/.git_backup/objects/44/c4c9c09ed6d205d62261f4a1e26a9917e67064 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/44/c5f5bc66937de914ba38c19e3af4765b7f8e04 b/.git_backup/objects/44/c5f5bc66937de914ba38c19e3af4765b7f8e04 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/44/cc0efb086e82e562905efdfdd5e28580b56ecc b/.git_backup/objects/44/cc0efb086e82e562905efdfdd5e28580b56ecc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/44/cfa44373127d966884dc48bd3f4b16482ab3c5 b/.git_backup/objects/44/cfa44373127d966884dc48bd3f4b16482ab3c5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/44/cfaec3c22a981806063e2f8c2e64cd756bdb03 b/.git_backup/objects/44/cfaec3c22a981806063e2f8c2e64cd756bdb03 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/44/d052d719df8eb14f898cf5c01bd4ea71737679 b/.git_backup/objects/44/d052d719df8eb14f898cf5c01bd4ea71737679 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/44/d2ab18f97f5c83bad7b38f31a808a8d6ada433 b/.git_backup/objects/44/d2ab18f97f5c83bad7b38f31a808a8d6ada433 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/44/db8d7a0f99e4c5b67df877ac089f08d85577a5 b/.git_backup/objects/44/db8d7a0f99e4c5b67df877ac089f08d85577a5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/44/ddff8ab7feab7d309e88df63e6e475139273cd b/.git_backup/objects/44/ddff8ab7feab7d309e88df63e6e475139273cd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/44/e1bbf33c987b0cd7598e7537ae5ed0169ad254 b/.git_backup/objects/44/e1bbf33c987b0cd7598e7537ae5ed0169ad254 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/44/e304c8e24eb3ddda6cc6789306c8cdf3b423ae b/.git_backup/objects/44/e304c8e24eb3ddda6cc6789306c8cdf3b423ae deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/44/e3d4f77daa192b4c291993d478caf8dcd34e91 b/.git_backup/objects/44/e3d4f77daa192b4c291993d478caf8dcd34e91 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/44/ea3866dd79319c40d4bd0f27b89c9dcf03f800 b/.git_backup/objects/44/ea3866dd79319c40d4bd0f27b89c9dcf03f800 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/44/eedaa54876897528c17495ed9b8cfcd1e7b0b9 b/.git_backup/objects/44/eedaa54876897528c17495ed9b8cfcd1e7b0b9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/44/f434e038a4bc6575bcf95477ea9c4fa43fd1ec b/.git_backup/objects/44/f434e038a4bc6575bcf95477ea9c4fa43fd1ec deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/05e0cbc31e50a75df94b30cd53cf923659379d b/.git_backup/objects/45/05e0cbc31e50a75df94b30cd53cf923659379d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/06a6e150dfd73884811c8c0f5a0e21dc76a756 b/.git_backup/objects/45/06a6e150dfd73884811c8c0f5a0e21dc76a756 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/07d3e99bea14576b82bc73fdd265920bd975b9 b/.git_backup/objects/45/07d3e99bea14576b82bc73fdd265920bd975b9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/0bd8b05ea432687bc8bdcca28c620f8ac3707c b/.git_backup/objects/45/0bd8b05ea432687bc8bdcca28c620f8ac3707c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/0d0b741e058ace51d9780652bef7468c328350 b/.git_backup/objects/45/0d0b741e058ace51d9780652bef7468c328350 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/195e7921ef49162fe654998f7789981358da98 b/.git_backup/objects/45/195e7921ef49162fe654998f7789981358da98 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/1a831be08ab3b1b44eb0fd68992820eb689a7f b/.git_backup/objects/45/1a831be08ab3b1b44eb0fd68992820eb689a7f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/1b5e53f12de9f7f3562973f64f3c90196ae164 b/.git_backup/objects/45/1b5e53f12de9f7f3562973f64f3c90196ae164 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/1e45a831d8cf293099ff924a8528b902185fe0 b/.git_backup/objects/45/1e45a831d8cf293099ff924a8528b902185fe0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/1f3490096338f40e601628ac70f04112ace51d b/.git_backup/objects/45/1f3490096338f40e601628ac70f04112ace51d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/2b327d02da3b3bd3fab9592bdef4d56d6aff57 b/.git_backup/objects/45/2b327d02da3b3bd3fab9592bdef4d56d6aff57 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/32b1cc0dca76227927e873f9c64f01008e565a b/.git_backup/objects/45/32b1cc0dca76227927e873f9c64f01008e565a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/34b8eaac03b56e0f45b338032d537fb7647a16 b/.git_backup/objects/45/34b8eaac03b56e0f45b338032d537fb7647a16 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/3712610bf46501d8dd3667ff72d8033f49d81c b/.git_backup/objects/45/3712610bf46501d8dd3667ff72d8033f49d81c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/4002491a5bdfd235b0daad74034c21493085b1 b/.git_backup/objects/45/4002491a5bdfd235b0daad74034c21493085b1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/4208c773f8c74bb2b1c5e685a1acd664e17075 b/.git_backup/objects/45/4208c773f8c74bb2b1c5e685a1acd664e17075 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/47fc522b690ba2697843edd044f2039a4123a9 b/.git_backup/objects/45/47fc522b690ba2697843edd044f2039a4123a9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/4f75c95d142976357f98a48fff3b0609e5d848 b/.git_backup/objects/45/4f75c95d142976357f98a48fff3b0609e5d848 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/5ce3fa7a99a95b4017d09bb755b330bfbdb655 b/.git_backup/objects/45/5ce3fa7a99a95b4017d09bb755b330bfbdb655 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/61028ae1f3bdc6369584bf22f836c4d3dff516 b/.git_backup/objects/45/61028ae1f3bdc6369584bf22f836c4d3dff516 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/698ef225151aaee8b1db0f3ae012d70940ec14 b/.git_backup/objects/45/698ef225151aaee8b1db0f3ae012d70940ec14 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/699fa1294d3705668be07761c273cfc7c94f9f b/.git_backup/objects/45/699fa1294d3705668be07761c273cfc7c94f9f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/6c199d05ee290de0f895b87b162de177e56ab9 b/.git_backup/objects/45/6c199d05ee290de0f895b87b162de177e56ab9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/6ed801026f19602b3c28ec5e7ec1435c44fe0e b/.git_backup/objects/45/6ed801026f19602b3c28ec5e7ec1435c44fe0e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/7153cd7c765953b7d558245bdce2979609f347 b/.git_backup/objects/45/7153cd7c765953b7d558245bdce2979609f347 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/768c2506c95aec75a785e90012c9162d1b99d2 b/.git_backup/objects/45/768c2506c95aec75a785e90012c9162d1b99d2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/77c6a795e510bf7578236665f582c3770fb42e b/.git_backup/objects/45/77c6a795e510bf7578236665f582c3770fb42e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/7a6567febab446f241383c927196f2a6f13ae3 b/.git_backup/objects/45/7a6567febab446f241383c927196f2a6f13ae3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/7e2dc3dc54d4cb7dffa93725351dd469481d93 b/.git_backup/objects/45/7e2dc3dc54d4cb7dffa93725351dd469481d93 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/7f07d31f46796d7c1ef6e30094d07f8efa1648 b/.git_backup/objects/45/7f07d31f46796d7c1ef6e30094d07f8efa1648 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/81e7dfe0c181b1eaf0af889287724078140df4 b/.git_backup/objects/45/81e7dfe0c181b1eaf0af889287724078140df4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/99fb3e1d77065c4c489efa08e53b8dad2cb41c b/.git_backup/objects/45/99fb3e1d77065c4c489efa08e53b8dad2cb41c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/9e088834aa64ad1fd15e4911a13f23ae0832a2 b/.git_backup/objects/45/9e088834aa64ad1fd15e4911a13f23ae0832a2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/a0f5ecb7ac866b35773d107ed07c2f4944f31b b/.git_backup/objects/45/a0f5ecb7ac866b35773d107ed07c2f4944f31b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/a2ef4e39755ea1f41aab045f18a035af58ea07 b/.git_backup/objects/45/a2ef4e39755ea1f41aab045f18a035af58ea07 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/ae3efee8f5db82b407b4671769472f18c787cc b/.git_backup/objects/45/ae3efee8f5db82b407b4671769472f18c787cc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/b5353784fbc715ea9ec05394300fd8061b62f9 b/.git_backup/objects/45/b5353784fbc715ea9ec05394300fd8061b62f9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/b68f4f0c0ce868704d2fcbd30cea436a6a6fa8 b/.git_backup/objects/45/b68f4f0c0ce868704d2fcbd30cea436a6a6fa8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/be2c7ab7e8b46d412064265bfe21e44e5d81d3 b/.git_backup/objects/45/be2c7ab7e8b46d412064265bfe21e44e5d81d3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/be3968affa001ecabb98f0bcda0b0e02a069f0 b/.git_backup/objects/45/be3968affa001ecabb98f0bcda0b0e02a069f0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/c792ad2392a35b7cdd4373ffa5194cbec46fb4 b/.git_backup/objects/45/c792ad2392a35b7cdd4373ffa5194cbec46fb4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/c9cdac1910def6b5a50a60b4ab5c8e0092af18 b/.git_backup/objects/45/c9cdac1910def6b5a50a60b4ab5c8e0092af18 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/caeee197feae6954dffc7149eb223867aa1814 b/.git_backup/objects/45/caeee197feae6954dffc7149eb223867aa1814 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/dcaf95ffdd04cb5a6cc3bcb7ad6a7e4a49e9a5 b/.git_backup/objects/45/dcaf95ffdd04cb5a6cc3bcb7ad6a7e4a49e9a5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/df2e3f2e83f5552f8f1f8da31476ab40aff26d b/.git_backup/objects/45/df2e3f2e83f5552f8f1f8da31476ab40aff26d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/e08b1621a505c97c46f413d72719ebc7dd051d b/.git_backup/objects/45/e08b1621a505c97c46f413d72719ebc7dd051d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/e6a739ee50a8ae987502ae39b20ce524147b10 b/.git_backup/objects/45/e6a739ee50a8ae987502ae39b20ce524147b10 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/f31ce6f77dde136f912ad1b127e51bda64627d b/.git_backup/objects/45/f31ce6f77dde136f912ad1b127e51bda64627d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/45/f7b5d69da4d5bb2dfca3425411db43d290ce50 b/.git_backup/objects/45/f7b5d69da4d5bb2dfca3425411db43d290ce50 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/46/064f62c698eee2d80c0f48dd9076442aed54d4 b/.git_backup/objects/46/064f62c698eee2d80c0f48dd9076442aed54d4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/46/07ed477c665d08c3023012a2e699d0dcb7ba58 b/.git_backup/objects/46/07ed477c665d08c3023012a2e699d0dcb7ba58 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/46/12701d2a4dd7ab0175f3f8924c9d600d9a7220 b/.git_backup/objects/46/12701d2a4dd7ab0175f3f8924c9d600d9a7220 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/46/16b0fe71d29f3ce5b1aa63111197fa8d79a50d b/.git_backup/objects/46/16b0fe71d29f3ce5b1aa63111197fa8d79a50d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/46/171c634e39795e3aa6bd7da5aef3b0fbfce5b3 b/.git_backup/objects/46/171c634e39795e3aa6bd7da5aef3b0fbfce5b3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/46/1c62c07326d17753624cc3355cdf67a011436d b/.git_backup/objects/46/1c62c07326d17753624cc3355cdf67a011436d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/46/1f5b211b8e6c8ad94a971add30b74d42fa764c b/.git_backup/objects/46/1f5b211b8e6c8ad94a971add30b74d42fa764c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/46/2119930a1f8876c7fa20a788d6630b983e8038 b/.git_backup/objects/46/2119930a1f8876c7fa20a788d6630b983e8038 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/46/22a9d5330c83e3f08df795200633751932f618 b/.git_backup/objects/46/22a9d5330c83e3f08df795200633751932f618 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/46/233c8ba78b78987d584e02897ea9925c711671 b/.git_backup/objects/46/233c8ba78b78987d584e02897ea9925c711671 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/46/289e76ee8c0d63885ba5568ec6b05a06503788 b/.git_backup/objects/46/289e76ee8c0d63885ba5568ec6b05a06503788 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/46/2d588aff58f84f4421bd5226a263ef73dbd522 b/.git_backup/objects/46/2d588aff58f84f4421bd5226a263ef73dbd522 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/46/3bd7d16f348f29fea0c769eea3cd28f96d5832 b/.git_backup/objects/46/3bd7d16f348f29fea0c769eea3cd28f96d5832 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/46/3cb270e9c2611245e3a1acbbe330750c449a0d b/.git_backup/objects/46/3cb270e9c2611245e3a1acbbe330750c449a0d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/46/3f55f2552ab7233f326d0f81ce12be79ce149d b/.git_backup/objects/46/3f55f2552ab7233f326d0f81ce12be79ce149d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/46/47f886ed205de25cdd1721b55e8d3825ce7415 b/.git_backup/objects/46/47f886ed205de25cdd1721b55e8d3825ce7415 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/46/5333b0addb47e458e2ac8461586449f7302bd6 b/.git_backup/objects/46/5333b0addb47e458e2ac8461586449f7302bd6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/46/5403ee3521e2d07b29b2da8cbe7ecd314de551 b/.git_backup/objects/46/5403ee3521e2d07b29b2da8cbe7ecd314de551 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/46/6a99e287a9b3a7ca379766b6f17d9335f95e34 b/.git_backup/objects/46/6a99e287a9b3a7ca379766b6f17d9335f95e34 deleted file mode 100644 index df8836b9..00000000 Binary files a/.git_backup/objects/46/6a99e287a9b3a7ca379766b6f17d9335f95e34 and /dev/null differ diff --git a/.git_backup/objects/46/6f926428b4c67448afd0035115b3d93b22e91b b/.git_backup/objects/46/6f926428b4c67448afd0035115b3d93b22e91b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/46/703df1043416135a0702fd68ad6b4956bff2e8 b/.git_backup/objects/46/703df1043416135a0702fd68ad6b4956bff2e8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/46/8811eba0d39f811711061d1a67dc3d08355448 b/.git_backup/objects/46/8811eba0d39f811711061d1a67dc3d08355448 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/46/8efe479509f7a471c86f48cb21eca491e80b17 b/.git_backup/objects/46/8efe479509f7a471c86f48cb21eca491e80b17 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/46/9103c4e60216629620523d12ae54fee2b968d9 b/.git_backup/objects/46/9103c4e60216629620523d12ae54fee2b968d9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/46/9b1636da183a58f5e66bb1f4b5a257953b8ab8 b/.git_backup/objects/46/9b1636da183a58f5e66bb1f4b5a257953b8ab8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/46/9ebda89ee029f9a85f33b39051a5a3690819d7 b/.git_backup/objects/46/9ebda89ee029f9a85f33b39051a5a3690819d7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/46/aaa536bd87c8324d18726fb5ac9ac085ad2b73 b/.git_backup/objects/46/aaa536bd87c8324d18726fb5ac9ac085ad2b73 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/46/ba6c01c0a41d76ab3ebcda8dc55134e44cc721 b/.git_backup/objects/46/ba6c01c0a41d76ab3ebcda8dc55134e44cc721 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/46/c25c8eb2c55c2b3dcf4875a39b99c1c16c2676 b/.git_backup/objects/46/c25c8eb2c55c2b3dcf4875a39b99c1c16c2676 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/46/c61a5d15ead8f7bd3832b5ec2009b148c070da b/.git_backup/objects/46/c61a5d15ead8f7bd3832b5ec2009b148c070da deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/46/c6e52cb9156bdc92ffe68fa35cac4b5c1282b8 b/.git_backup/objects/46/c6e52cb9156bdc92ffe68fa35cac4b5c1282b8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/46/d0f6b511c7818656b9ffe56ac1d71c341daec6 b/.git_backup/objects/46/d0f6b511c7818656b9ffe56ac1d71c341daec6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/46/d10695d86cc94b59ed7bc73fcb4611cc1013e7 b/.git_backup/objects/46/d10695d86cc94b59ed7bc73fcb4611cc1013e7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/46/d1e71b2b949b46046adc4cf6843d86d171e818 b/.git_backup/objects/46/d1e71b2b949b46046adc4cf6843d86d171e818 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/46/db0ab5177827df92c997cb00ec7e04e1cb10f9 b/.git_backup/objects/46/db0ab5177827df92c997cb00ec7e04e1cb10f9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/46/e9ea52c54d067db5fba0ae0e9af34d910417a3 b/.git_backup/objects/46/e9ea52c54d067db5fba0ae0e9af34d910417a3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/46/ea49abab3ffd5b01f1f4536e2ef4b88d3580f5 b/.git_backup/objects/46/ea49abab3ffd5b01f1f4536e2ef4b88d3580f5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/46/f1de01ae39dcd4339a178d9cf76eba90033887 b/.git_backup/objects/46/f1de01ae39dcd4339a178d9cf76eba90033887 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/46/f42b5323d11686c44b573729db0df115343d5c b/.git_backup/objects/46/f42b5323d11686c44b573729db0df115343d5c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/46/f51c886a01f41af5dd968c2fcc47555610cb57 b/.git_backup/objects/46/f51c886a01f41af5dd968c2fcc47555610cb57 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/46/fb2502e5ccbd9e7b441fbd764c120c5eeac52f b/.git_backup/objects/46/fb2502e5ccbd9e7b441fbd764c120c5eeac52f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/46/fc0aadd004c2e0ef335fb63b340f5a7b2e8ef2 b/.git_backup/objects/46/fc0aadd004c2e0ef335fb63b340f5a7b2e8ef2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/015ed334ddfc0b685f7ed8af3cfc88ee11b5d4 b/.git_backup/objects/47/015ed334ddfc0b685f7ed8af3cfc88ee11b5d4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/09e843ca56ae33d38849076b8f3a8a39665b2a b/.git_backup/objects/47/09e843ca56ae33d38849076b8f3a8a39665b2a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/1665754e9f199f07f90107ebb350c38b378100 b/.git_backup/objects/47/1665754e9f199f07f90107ebb350c38b378100 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/193d957b9711ccdb40da4aa46b190992f33f0d b/.git_backup/objects/47/193d957b9711ccdb40da4aa46b190992f33f0d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/1ee295ebd2fe58a42d591c7e00d8bbb4d1042f b/.git_backup/objects/47/1ee295ebd2fe58a42d591c7e00d8bbb4d1042f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/2b7baf554ab5fe266eee5a33628b386bcf4364 b/.git_backup/objects/47/2b7baf554ab5fe266eee5a33628b386bcf4364 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/2fafb4403efb9673d5cc724dafd9cf764aac5b b/.git_backup/objects/47/2fafb4403efb9673d5cc724dafd9cf764aac5b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/377ed5dd4b75cabf7492ac4eeb81cb93706364 b/.git_backup/objects/47/377ed5dd4b75cabf7492ac4eeb81cb93706364 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/3fc7a3f725e844a3d43e96cbab4fc010d70dc1 b/.git_backup/objects/47/3fc7a3f725e844a3d43e96cbab4fc010d70dc1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/429377ed17c2965a8db42b4836c95c6a35e57c b/.git_backup/objects/47/429377ed17c2965a8db42b4836c95c6a35e57c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/43391a20a8f7ba9dcf3a1ae16b2e494c8b02ca b/.git_backup/objects/47/43391a20a8f7ba9dcf3a1ae16b2e494c8b02ca deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/4694f7456ee83979158d2fa1332ac848b0196a b/.git_backup/objects/47/4694f7456ee83979158d2fa1332ac848b0196a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/48bedcc7e05fefe9002ca6e79910757a578bd7 b/.git_backup/objects/47/48bedcc7e05fefe9002ca6e79910757a578bd7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/4b1c16acca31e8bc170df61d6a109da3b7987f b/.git_backup/objects/47/4b1c16acca31e8bc170df61d6a109da3b7987f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/4c9565603b130fede5d8297ef6c8b2810e2cb8 b/.git_backup/objects/47/4c9565603b130fede5d8297ef6c8b2810e2cb8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/50564744d2b84a338424ffbe269a54125b2cd9 b/.git_backup/objects/47/50564744d2b84a338424ffbe269a54125b2cd9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/5ace0aab30dfa69f736c257b8326ca0621f765 b/.git_backup/objects/47/5ace0aab30dfa69f736c257b8326ca0621f765 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/5b07da152d189b6b472b2c68aa6c59cf9ca878 b/.git_backup/objects/47/5b07da152d189b6b472b2c68aa6c59cf9ca878 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/652e8c206b3071feeaba51559c62bbccc01032 b/.git_backup/objects/47/652e8c206b3071feeaba51559c62bbccc01032 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/661d40a4188eb39e8d52e5af8ab23ef7f23766 b/.git_backup/objects/47/661d40a4188eb39e8d52e5af8ab23ef7f23766 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/6898364a5fbba4c56446aff26d46e06ea57c77 b/.git_backup/objects/47/6898364a5fbba4c56446aff26d46e06ea57c77 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/6fe0560c6507576b6a769c132b5272e83de843 b/.git_backup/objects/47/6fe0560c6507576b6a769c132b5272e83de843 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/732a9531cbbddc8035ec21a7816aa46833f23d b/.git_backup/objects/47/732a9531cbbddc8035ec21a7816aa46833f23d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/73c61de02e84eaebdfe1b55f5882dbca4a4793 b/.git_backup/objects/47/73c61de02e84eaebdfe1b55f5882dbca4a4793 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/7948a0986b2708c15d77127d06cdde794c33b5 b/.git_backup/objects/47/7948a0986b2708c15d77127d06cdde794c33b5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/7f0ebe27113c7146d1a1590065a237ef755b99 b/.git_backup/objects/47/7f0ebe27113c7146d1a1590065a237ef755b99 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/84d88345b8884bd955a8b2006168fbc4db4e55 b/.git_backup/objects/47/84d88345b8884bd955a8b2006168fbc4db4e55 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/8843e63a183ef140091b5987f80d23834bd8cd b/.git_backup/objects/47/8843e63a183ef140091b5987f80d23834bd8cd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/891251153c8817627193f7c7cd903c35c87f53 b/.git_backup/objects/47/891251153c8817627193f7c7cd903c35c87f53 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/8bc3a4ac6edaf89a92bc18c4a8e268336bdf80 b/.git_backup/objects/47/8bc3a4ac6edaf89a92bc18c4a8e268336bdf80 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/917dd178a632f9b9296c9276aa4569b395ec63 b/.git_backup/objects/47/917dd178a632f9b9296c9276aa4569b395ec63 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/9c7033a3fb558708fefda5a00fc049c76e1b33 b/.git_backup/objects/47/9c7033a3fb558708fefda5a00fc049c76e1b33 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/9e131c47509bb96efca3c43d8f80ea95a8286d b/.git_backup/objects/47/9e131c47509bb96efca3c43d8f80ea95a8286d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/abac9b481df17fc32072bdbc87ad51d517ce89 b/.git_backup/objects/47/abac9b481df17fc32072bdbc87ad51d517ce89 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/aec8fd4e17d20333071f3a52fa2e8f89a7f4fd b/.git_backup/objects/47/aec8fd4e17d20333071f3a52fa2e8f89a7f4fd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/bd1260ba665705dc3bb75feb71a12b9d19156a b/.git_backup/objects/47/bd1260ba665705dc3bb75feb71a12b9d19156a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/c7c17fc326ab3af72273a44c7186a0b29fa680 b/.git_backup/objects/47/c7c17fc326ab3af72273a44c7186a0b29fa680 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/ce4a7ae522fc2a2bbaa9d8ca285913b8ef0712 b/.git_backup/objects/47/ce4a7ae522fc2a2bbaa9d8ca285913b8ef0712 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/d46f8650fc85d848c5abc4549d909b455fa2b2 b/.git_backup/objects/47/d46f8650fc85d848c5abc4549d909b455fa2b2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/da73295c6b8b8540d8766b89d8cdfd4ac6cb68 b/.git_backup/objects/47/da73295c6b8b8540d8766b89d8cdfd4ac6cb68 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/db1fbf14932769e1447a51d70097fd6cb3e998 b/.git_backup/objects/47/db1fbf14932769e1447a51d70097fd6cb3e998 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/e181c241ed26e3c84baa31af94154db449e694 b/.git_backup/objects/47/e181c241ed26e3c84baa31af94154db449e694 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/ed372d64d47bcea2d9759afda7b78de5021492 b/.git_backup/objects/47/ed372d64d47bcea2d9759afda7b78de5021492 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/ed75eb413c010c279860129130ae1b956ea5c7 b/.git_backup/objects/47/ed75eb413c010c279860129130ae1b956ea5c7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/47/f953b4144ce9d7e6f5df8516986c30b0660f7e b/.git_backup/objects/47/f953b4144ce9d7e6f5df8516986c30b0660f7e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/48/0058f10dd6a8205d1bff0b94de7ae347a7629a b/.git_backup/objects/48/0058f10dd6a8205d1bff0b94de7ae347a7629a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/48/00b7c962ed59aaaa466e864638ec0da99e2d3e b/.git_backup/objects/48/00b7c962ed59aaaa466e864638ec0da99e2d3e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/48/051810ee218fb037cc15ccec05293e5ae9bb6b b/.git_backup/objects/48/051810ee218fb037cc15ccec05293e5ae9bb6b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/48/069a5152ecaa32a467dedf8658afab64caa8c1 b/.git_backup/objects/48/069a5152ecaa32a467dedf8658afab64caa8c1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/48/0ed053b1087f9c3d8917e3a6fae613cf612ed1 b/.git_backup/objects/48/0ed053b1087f9c3d8917e3a6fae613cf612ed1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/48/166e31ef1c4af7a255747e98f286c08510138c b/.git_backup/objects/48/166e31ef1c4af7a255747e98f286c08510138c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/48/197ba4da7b4314a16a19a698fe96c1b2a7ad0b b/.git_backup/objects/48/197ba4da7b4314a16a19a698fe96c1b2a7ad0b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/48/1a0a55d9abdb96a1a9f193e6d4f2b586306e5e b/.git_backup/objects/48/1a0a55d9abdb96a1a9f193e6d4f2b586306e5e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/48/1d509b8981e1f3e9b9cdac6c9f8d6281e2ee73 b/.git_backup/objects/48/1d509b8981e1f3e9b9cdac6c9f8d6281e2ee73 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/48/1eaae0aa354e11e64fd5f672a7a855ced511b7 b/.git_backup/objects/48/1eaae0aa354e11e64fd5f672a7a855ced511b7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/48/1edd30580f00eccf69de4f1c332fc048210011 b/.git_backup/objects/48/1edd30580f00eccf69de4f1c332fc048210011 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/48/3e19898d6864d626f88c0b023bc714ea714ed9 b/.git_backup/objects/48/3e19898d6864d626f88c0b023bc714ea714ed9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/48/412a4cbf9241ea83887876b1b8b22c367ff4fd b/.git_backup/objects/48/412a4cbf9241ea83887876b1b8b22c367ff4fd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/48/44e70853bb311578aa16a9f3124a2123e0a76b b/.git_backup/objects/48/44e70853bb311578aa16a9f3124a2123e0a76b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/48/53bec51106c05781a4c11921f0e082934147ec b/.git_backup/objects/48/53bec51106c05781a4c11921f0e082934147ec deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/48/550591fc22ffedd711dc5118102e1a216e8ae1 b/.git_backup/objects/48/550591fc22ffedd711dc5118102e1a216e8ae1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/48/5a675d8a1fb80bc4927fe236ba3fe550f5a0c9 b/.git_backup/objects/48/5a675d8a1fb80bc4927fe236ba3fe550f5a0c9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/48/67182422a93f255bf8530b6ffef9ee33a902c3 b/.git_backup/objects/48/67182422a93f255bf8530b6ffef9ee33a902c3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/48/695dbfce802f8326408a2002047adb56731db2 b/.git_backup/objects/48/695dbfce802f8326408a2002047adb56731db2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/48/764cb91cfb72fe7f3f93ef57a91fc223201313 b/.git_backup/objects/48/764cb91cfb72fe7f3f93ef57a91fc223201313 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/48/79bd368e732f12f2dade6a81e8c61fd94f2b9d b/.git_backup/objects/48/79bd368e732f12f2dade6a81e8c61fd94f2b9d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/48/8b6adf6cb32c4be27087875376dea3598fa164 b/.git_backup/objects/48/8b6adf6cb32c4be27087875376dea3598fa164 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/48/922865b7bc73c04369043dc45b983704da8342 b/.git_backup/objects/48/922865b7bc73c04369043dc45b983704da8342 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/48/9cad930e0029fc2f8e5111df1bad38151a07a9 b/.git_backup/objects/48/9cad930e0029fc2f8e5111df1bad38151a07a9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/48/9d10d71602ef0c51e3c9c9a002d3d9b080306f b/.git_backup/objects/48/9d10d71602ef0c51e3c9c9a002d3d9b080306f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/48/a55022aa484a53bf06051a18cfb4a7c324affe b/.git_backup/objects/48/a55022aa484a53bf06051a18cfb4a7c324affe deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/48/b620c48b928c29b0a56948f7fa04ea346c384d b/.git_backup/objects/48/b620c48b928c29b0a56948f7fa04ea346c384d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/48/b689f3d7c1413f3f2cd6a9867ea5120d0230fe b/.git_backup/objects/48/b689f3d7c1413f3f2cd6a9867ea5120d0230fe deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/48/bce59ffb4b8da47dec112ce0e44b96c8a48120 b/.git_backup/objects/48/bce59ffb4b8da47dec112ce0e44b96c8a48120 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/48/cccd7fc20547bc35dcd7d02343d52723903b63 b/.git_backup/objects/48/cccd7fc20547bc35dcd7d02343d52723903b63 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/48/e4f6ad993ea3dfb9ca1f4f21b595feae8b8adb b/.git_backup/objects/48/e4f6ad993ea3dfb9ca1f4f21b595feae8b8adb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/48/e7359a438124824085f3a38c03408b1fc82ebf b/.git_backup/objects/48/e7359a438124824085f3a38c03408b1fc82ebf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/48/ef357d07c5c975d08f044b668f87313879968e b/.git_backup/objects/48/ef357d07c5c975d08f044b668f87313879968e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/48/f1e5b810b2a066ac78a5f69a43ce3666c591dd b/.git_backup/objects/48/f1e5b810b2a066ac78a5f69a43ce3666c591dd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/48/f6bf57157d247cc3a30f49271e62d432a6701f b/.git_backup/objects/48/f6bf57157d247cc3a30f49271e62d432a6701f deleted file mode 100644 index ab4faa5d..00000000 Binary files a/.git_backup/objects/48/f6bf57157d247cc3a30f49271e62d432a6701f and /dev/null differ diff --git a/.git_backup/objects/48/f853cfdcb10625d9e64e3e531e7beb5cc86caa b/.git_backup/objects/48/f853cfdcb10625d9e64e3e531e7beb5cc86caa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/48/fa4dc1f5af20828334fe89b03a5378472a8470 b/.git_backup/objects/48/fa4dc1f5af20828334fe89b03a5378472a8470 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/48/fb39c2fbaac5d895c89a57a18066e76bffc3d9 b/.git_backup/objects/48/fb39c2fbaac5d895c89a57a18066e76bffc3d9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/48/fcf489deb8ef9042891b247df93f8b2419af1e b/.git_backup/objects/48/fcf489deb8ef9042891b247df93f8b2419af1e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/00ccc160a1dbf4de3a01c234735c21dd4417d6 b/.git_backup/objects/49/00ccc160a1dbf4de3a01c234735c21dd4417d6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/038bfcbe5852075d0aad071345e7867de87c4f b/.git_backup/objects/49/038bfcbe5852075d0aad071345e7867de87c4f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/04aa27a3e0f21e3f4015c732c168eac0728ef3 b/.git_backup/objects/49/04aa27a3e0f21e3f4015c732c168eac0728ef3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/05ea72b1640ca67e35b06395e1c700dffa8d21 b/.git_backup/objects/49/05ea72b1640ca67e35b06395e1c700dffa8d21 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/0641e6273ac5191a70203685569f5e26faecc2 b/.git_backup/objects/49/0641e6273ac5191a70203685569f5e26faecc2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/075d288961b7adfbef985497c136141a9a6008 b/.git_backup/objects/49/075d288961b7adfbef985497c136141a9a6008 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/09709fe26f73befc2173894e193a9f426aef2b b/.git_backup/objects/49/09709fe26f73befc2173894e193a9f426aef2b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/0f199a59ed7687848c768566bcda63b48bdad9 b/.git_backup/objects/49/0f199a59ed7687848c768566bcda63b48bdad9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/14a026b53b31448575396e1e6d6595ae911218 b/.git_backup/objects/49/14a026b53b31448575396e1e6d6595ae911218 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/1ccaa1eea1695957f3eb955ed0d2aa1fabf228 b/.git_backup/objects/49/1ccaa1eea1695957f3eb955ed0d2aa1fabf228 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/29a20bdc4ad795046ed20fc2202c4ed267bc16 b/.git_backup/objects/49/29a20bdc4ad795046ed20fc2202c4ed267bc16 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/29a4b9747370d0c08ee0ba57dd8514b11456b0 b/.git_backup/objects/49/29a4b9747370d0c08ee0ba57dd8514b11456b0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/384cfb2e55459fe8c6cebd978f08d8b2131aa4 b/.git_backup/objects/49/384cfb2e55459fe8c6cebd978f08d8b2131aa4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/3b53e4e7a3984ddd49780313bf3bd9901dc1e0 b/.git_backup/objects/49/3b53e4e7a3984ddd49780313bf3bd9901dc1e0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/3d3163c13d66d51e5117efb23763ff08ad2584 b/.git_backup/objects/49/3d3163c13d66d51e5117efb23763ff08ad2584 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/4842bec5a2d547c575b9abdd0e9e77f8cb3266 b/.git_backup/objects/49/4842bec5a2d547c575b9abdd0e9e77f8cb3266 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/4a26c309a1d796e09a4254deeb041363945c17 b/.git_backup/objects/49/4a26c309a1d796e09a4254deeb041363945c17 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/545ec0e81efa816ed10bf6344055b24a075f01 b/.git_backup/objects/49/545ec0e81efa816ed10bf6344055b24a075f01 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/5a48e08354d28bbd735c00b2c00ddbfaf3e4b5 b/.git_backup/objects/49/5a48e08354d28bbd735c00b2c00ddbfaf3e4b5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/6139b0f24b984b0dd93602ea93f6a064a11185 b/.git_backup/objects/49/6139b0f24b984b0dd93602ea93f6a064a11185 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/649c1487f13dc76b4b922304bf079b45aade07 b/.git_backup/objects/49/649c1487f13dc76b4b922304bf079b45aade07 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/64c0d7c8c71f93a3595519381a5d76218c37ce b/.git_backup/objects/49/64c0d7c8c71f93a3595519381a5d76218c37ce deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/6a5ddbfaaa2a5e1163f689e65c842f739eb8be b/.git_backup/objects/49/6a5ddbfaaa2a5e1163f689e65c842f739eb8be deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/72cb34aac69a5b369c1ad68c47e8b80f6fe70e b/.git_backup/objects/49/72cb34aac69a5b369c1ad68c47e8b80f6fe70e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/797eea59ddc68623185d3ca18fd0e4014ae549 b/.git_backup/objects/49/797eea59ddc68623185d3ca18fd0e4014ae549 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/79e8aa974354dc70f543ef851f30b344df2663 b/.git_backup/objects/49/79e8aa974354dc70f543ef851f30b344df2663 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/7d8a92e803599715bd4f59b95aaafb2e9c0671 b/.git_backup/objects/49/7d8a92e803599715bd4f59b95aaafb2e9c0671 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/7dd74d2a9a4752b6d0c2d578586dc71fb848cd b/.git_backup/objects/49/7dd74d2a9a4752b6d0c2d578586dc71fb848cd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/849aa5e4d4b80a579f7ca50de3713bf166ad95 b/.git_backup/objects/49/849aa5e4d4b80a579f7ca50de3713bf166ad95 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/9027ab14c9fd6a41f037013f3a6966f5329b05 b/.git_backup/objects/49/9027ab14c9fd6a41f037013f3a6966f5329b05 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/9511cde998b69a83900416cc6cad17649dfb4f b/.git_backup/objects/49/9511cde998b69a83900416cc6cad17649dfb4f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/995f08979d64e2ed87cca4e3da6d3a92da221f b/.git_backup/objects/49/995f08979d64e2ed87cca4e3da6d3a92da221f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/99a212c462bdb6c10e9e08fdfba74d03b05294 b/.git_backup/objects/49/99a212c462bdb6c10e9e08fdfba74d03b05294 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/a148a097e9cc06c165571e0bffaf7cae17dc5b b/.git_backup/objects/49/a148a097e9cc06c165571e0bffaf7cae17dc5b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/a4103421842ce6221bee2397d3a9eeb8dafdba b/.git_backup/objects/49/a4103421842ce6221bee2397d3a9eeb8dafdba deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/bf95e4790ec7ccbfb92854c1e48142fe11cfa1 b/.git_backup/objects/49/bf95e4790ec7ccbfb92854c1e48142fe11cfa1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/c0ec1d18d9f08111fe2d2a269ed407da71b158 b/.git_backup/objects/49/c0ec1d18d9f08111fe2d2a269ed407da71b158 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/c14369c5accea02b3b4e19b108ef8332afe273 b/.git_backup/objects/49/c14369c5accea02b3b4e19b108ef8332afe273 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/c5447e6605e39685801526919d97c5bb2f4f5b b/.git_backup/objects/49/c5447e6605e39685801526919d97c5bb2f4f5b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/c8966b0c6b6577588ac1d8e37aa4aa1cb883b0 b/.git_backup/objects/49/c8966b0c6b6577588ac1d8e37aa4aa1cb883b0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/cbc66e545bfb5e38740f274c2d9d379d061a27 b/.git_backup/objects/49/cbc66e545bfb5e38740f274c2d9d379d061a27 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/d57d4687cfd785b264cd580bf2eea71b777c0e b/.git_backup/objects/49/d57d4687cfd785b264cd580bf2eea71b777c0e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/d9d04b0c2f2547413cc3b9a7779db846d2ed3c b/.git_backup/objects/49/d9d04b0c2f2547413cc3b9a7779db846d2ed3c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/e239757d28b8b58c7047a312134eb228c51593 b/.git_backup/objects/49/e239757d28b8b58c7047a312134eb228c51593 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/e41895fd2c671720b614984515ace94d8aefea b/.git_backup/objects/49/e41895fd2c671720b614984515ace94d8aefea deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/eb7a729e47dfdf9a8decbd896634e6b4ac26c2 b/.git_backup/objects/49/eb7a729e47dfdf9a8decbd896634e6b4ac26c2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/ef7a74c4df6ba0739f964a02700d1f44127d00 b/.git_backup/objects/49/ef7a74c4df6ba0739f964a02700d1f44127d00 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/f0db5c335373d36fba8f4efd700f7a14232059 b/.git_backup/objects/49/f0db5c335373d36fba8f4efd700f7a14232059 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/f7b9aecac6f02f012e5fd3d270c4ecca3355fd b/.git_backup/objects/49/f7b9aecac6f02f012e5fd3d270c4ecca3355fd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/49/fd37436a97d44168ae9f4ef2504f29e767a76e b/.git_backup/objects/49/fd37436a97d44168ae9f4ef2504f29e767a76e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/00df2d783cf79f563acda01b609263f0582a85 b/.git_backup/objects/4a/00df2d783cf79f563acda01b609263f0582a85 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/017a1e6460056037c446ce1e27756f56d39caf b/.git_backup/objects/4a/017a1e6460056037c446ce1e27756f56d39caf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/06bc69d5c850fa9f7c4861bc6b3acca3905056 b/.git_backup/objects/4a/06bc69d5c850fa9f7c4861bc6b3acca3905056 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/19877c034aaaa791ab52be4387622ea645cf00 b/.git_backup/objects/4a/19877c034aaaa791ab52be4387622ea645cf00 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/199d5b42c512ab421aeda4f6c72fc3610f0148 b/.git_backup/objects/4a/199d5b42c512ab421aeda4f6c72fc3610f0148 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/1d4cb1656da06bd0097308f1e98c4e4742de0c b/.git_backup/objects/4a/1d4cb1656da06bd0097308f1e98c4e4742de0c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/24001f15fa6b82dd3c41ab172da0df1dbe2970 b/.git_backup/objects/4a/24001f15fa6b82dd3c41ab172da0df1dbe2970 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/2c589609ea4c7a83e86f35018c0c4c43f4dc56 b/.git_backup/objects/4a/2c589609ea4c7a83e86f35018c0c4c43f4dc56 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/2e3f971670eb67828457f0968fd384a67b4f7a b/.git_backup/objects/4a/2e3f971670eb67828457f0968fd384a67b4f7a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/2f2f05e1e2ec3342bd64f2fcfe04f21c46d577 b/.git_backup/objects/4a/2f2f05e1e2ec3342bd64f2fcfe04f21c46d577 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/34999794616c5aff897a55e028149c7312d894 b/.git_backup/objects/4a/34999794616c5aff897a55e028149c7312d894 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/37a1917b1eb8aa3d335ca3a8301c413915a59d b/.git_backup/objects/4a/37a1917b1eb8aa3d335ca3a8301c413915a59d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/3ea6840a1131efc0c8a1b8da56b55f42432dba b/.git_backup/objects/4a/3ea6840a1131efc0c8a1b8da56b55f42432dba deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/4d84b5b32579f77727a42cc412bd8ba7033756 b/.git_backup/objects/4a/4d84b5b32579f77727a42cc412bd8ba7033756 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/518b0c6d5bf2dc1ddc05d80a8a5dbf3dcae7f0 b/.git_backup/objects/4a/518b0c6d5bf2dc1ddc05d80a8a5dbf3dcae7f0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/51b934e4aec2697e19e5dfbf197745ceae8944 b/.git_backup/objects/4a/51b934e4aec2697e19e5dfbf197745ceae8944 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/595aa00937808ded275e207575c196a1727301 b/.git_backup/objects/4a/595aa00937808ded275e207575c196a1727301 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/5ca4f47a741e3ed243ae1d34e0e1f7b046ec32 b/.git_backup/objects/4a/5ca4f47a741e3ed243ae1d34e0e1f7b046ec32 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/5f199a4fcaddcdcf4c49cb531efac448c9122e b/.git_backup/objects/4a/5f199a4fcaddcdcf4c49cb531efac448c9122e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/7105d17916a7237f3df6e59d65ca82375f8803 b/.git_backup/objects/4a/7105d17916a7237f3df6e59d65ca82375f8803 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/7375a5ceb4b47894af47d1c1965476f95764ba b/.git_backup/objects/4a/7375a5ceb4b47894af47d1c1965476f95764ba deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/770fe1c868ce40151e68797e6e03efbadacd90 b/.git_backup/objects/4a/770fe1c868ce40151e68797e6e03efbadacd90 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/7d55d0e50cb8b892caa021695522e5ddd54a17 b/.git_backup/objects/4a/7d55d0e50cb8b892caa021695522e5ddd54a17 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/7e39fb34b007166c2f0f775f396f02290150cc b/.git_backup/objects/4a/7e39fb34b007166c2f0f775f396f02290150cc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/80522f5765b1dc816017f5afca53fbdf5a7eb6 b/.git_backup/objects/4a/80522f5765b1dc816017f5afca53fbdf5a7eb6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/80a38a5aa4e4f44a9b303f56d0adfc7fe4dd97 b/.git_backup/objects/4a/80a38a5aa4e4f44a9b303f56d0adfc7fe4dd97 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/826bb185531c34eb37959037c68fbf08c23f71 b/.git_backup/objects/4a/826bb185531c34eb37959037c68fbf08c23f71 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/8fd320584e7d0853b8ad1bf246817839372bec b/.git_backup/objects/4a/8fd320584e7d0853b8ad1bf246817839372bec deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/97b5200360f0b613822f8d362d3cb82da2f21c b/.git_backup/objects/4a/97b5200360f0b613822f8d362d3cb82da2f21c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/9a911a89083c5c8cb0aacd598c87dc892ad10c b/.git_backup/objects/4a/9a911a89083c5c8cb0aacd598c87dc892ad10c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/9b17a23c9c7107ffa227a8292d2fa520f15bec b/.git_backup/objects/4a/9b17a23c9c7107ffa227a8292d2fa520f15bec deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/9b4cc3e6e2f5890e40fd29d305010303281f99 b/.git_backup/objects/4a/9b4cc3e6e2f5890e40fd29d305010303281f99 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/a2f62fe85a0e820c9d888903c0e394223c0084 b/.git_backup/objects/4a/a2f62fe85a0e820c9d888903c0e394223c0084 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/a30ee6b250b3b72a9dcebb7f26a8e0432d7082 b/.git_backup/objects/4a/a30ee6b250b3b72a9dcebb7f26a8e0432d7082 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/a3f8f7e07ce5a7d0a1501a010bc50b5bda4bf3 b/.git_backup/objects/4a/a3f8f7e07ce5a7d0a1501a010bc50b5bda4bf3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/a4072e9de00c1c1527da3b9ccda784555b0fb0 b/.git_backup/objects/4a/a4072e9de00c1c1527da3b9ccda784555b0fb0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/bacfe80581df58942e665ee9bea67d9f2c2dfc b/.git_backup/objects/4a/bacfe80581df58942e665ee9bea67d9f2c2dfc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/bcf6fe469451513f5c228ef4dd8bf271226849 b/.git_backup/objects/4a/bcf6fe469451513f5c228ef4dd8bf271226849 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/bdf40f9183a2bff38442df8f7ba7b87d9eb7ba b/.git_backup/objects/4a/bdf40f9183a2bff38442df8f7ba7b87d9eb7ba deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/c02a07f45d562410025f05305c31d1ec39a28c b/.git_backup/objects/4a/c02a07f45d562410025f05305c31d1ec39a28c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/c71f3d7ec64a2aee47b35ead933568590de822 b/.git_backup/objects/4a/c71f3d7ec64a2aee47b35ead933568590de822 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/c7582ad5ee895bf9b354436142fd7ece1996ee b/.git_backup/objects/4a/c7582ad5ee895bf9b354436142fd7ece1996ee deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/c966bff67924d0c3a06ee7bd24468bdb3053e2 b/.git_backup/objects/4a/c966bff67924d0c3a06ee7bd24468bdb3053e2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/c9d19650df7061534030d161743982f755bb16 b/.git_backup/objects/4a/c9d19650df7061534030d161743982f755bb16 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/d0c703d98f6968db13b303a6986e28673d2ac5 b/.git_backup/objects/4a/d0c703d98f6968db13b303a6986e28673d2ac5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/d5be2170ca5a149f239f4bf2545060c21a357a b/.git_backup/objects/4a/d5be2170ca5a149f239f4bf2545060c21a357a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/dc8d0963a9ba36e513bafc55748f507f748f56 b/.git_backup/objects/4a/dc8d0963a9ba36e513bafc55748f507f748f56 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/e271695b0f33bf03c5d3d1268df9904d0b842f b/.git_backup/objects/4a/e271695b0f33bf03c5d3d1268df9904d0b842f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/e27b557f549eb57426e50a39da725dc0fc0caa b/.git_backup/objects/4a/e27b557f549eb57426e50a39da725dc0fc0caa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4a/ef781a3de3368d61c17e8bf585bcc784accfe4 b/.git_backup/objects/4a/ef781a3de3368d61c17e8bf585bcc784accfe4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/038f68477f3783614daeab60d7e2cd9cc53ca7 b/.git_backup/objects/4b/038f68477f3783614daeab60d7e2cd9cc53ca7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/0c1a2df967c1ec6ece556354196f4905fc5498 b/.git_backup/objects/4b/0c1a2df967c1ec6ece556354196f4905fc5498 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/1e335fe303bf6a3b4ace809ec887ccef9c3aa2 b/.git_backup/objects/4b/1e335fe303bf6a3b4ace809ec887ccef9c3aa2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/1fa98a114b7979ca2bbf13a7863c764384bcc1 b/.git_backup/objects/4b/1fa98a114b7979ca2bbf13a7863c764384bcc1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/20bde9ff9240ce8cc578e480f4d9aa8555bab4 b/.git_backup/objects/4b/20bde9ff9240ce8cc578e480f4d9aa8555bab4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/258c13dedc8ca701cef7ce193d4e4e4b33da67 b/.git_backup/objects/4b/258c13dedc8ca701cef7ce193d4e4e4b33da67 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/31893ba4bf5e43716b34d9f1af2fe3e3759e96 b/.git_backup/objects/4b/31893ba4bf5e43716b34d9f1af2fe3e3759e96 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/35a63fd57e2c2d3bbd645a2e5e8566b1a582be b/.git_backup/objects/4b/35a63fd57e2c2d3bbd645a2e5e8566b1a582be deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/375403ee7fe7c00c38388ed1f5ff3e84e7d552 b/.git_backup/objects/4b/375403ee7fe7c00c38388ed1f5ff3e84e7d552 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/3a5071fc671d8d4a7ef6c7655ca4212ced4f45 b/.git_backup/objects/4b/3a5071fc671d8d4a7ef6c7655ca4212ced4f45 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/3cbb64356169df0e2f1d0ef4437e5a9a8490df b/.git_backup/objects/4b/3cbb64356169df0e2f1d0ef4437e5a9a8490df deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/4361163b2e2f2592fa8e774c31bc2a73133c92 b/.git_backup/objects/4b/4361163b2e2f2592fa8e774c31bc2a73133c92 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/50ababfe960907370ddf132d8538396ea9e9d9 b/.git_backup/objects/4b/50ababfe960907370ddf132d8538396ea9e9d9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/50ac2d567d76e03b0883e8a67d884142effccb b/.git_backup/objects/4b/50ac2d567d76e03b0883e8a67d884142effccb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/533f1ce3909ca711746c373cf47e81804a5b53 b/.git_backup/objects/4b/533f1ce3909ca711746c373cf47e81804a5b53 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/5a04a5eca6ce56a4eb04c7d9347a340b93eef2 b/.git_backup/objects/4b/5a04a5eca6ce56a4eb04c7d9347a340b93eef2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/5b7aa054dda5ad5333333157a16476fea8c0d6 b/.git_backup/objects/4b/5b7aa054dda5ad5333333157a16476fea8c0d6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/70634ae8899e155ad09a33b103ce0ad6a9aaaa b/.git_backup/objects/4b/70634ae8899e155ad09a33b103ce0ad6a9aaaa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/7da1d9ce6dacdbcc284e1cf6c6896d469cb533 b/.git_backup/objects/4b/7da1d9ce6dacdbcc284e1cf6c6896d469cb533 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/7dbbc241c8884b17bb3da0d8b91bfc10ef7530 b/.git_backup/objects/4b/7dbbc241c8884b17bb3da0d8b91bfc10ef7530 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/7e88ba7076ed9986e96a934aed7569008f8e17 b/.git_backup/objects/4b/7e88ba7076ed9986e96a934aed7569008f8e17 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/7f2ae90b342ecbb6c555a2a773f4dd3d6af61c b/.git_backup/objects/4b/7f2ae90b342ecbb6c555a2a773f4dd3d6af61c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/7f5ceeaae0b99040027414869cdb454e378205 b/.git_backup/objects/4b/7f5ceeaae0b99040027414869cdb454e378205 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/82fdb15bb37a5f7a9dfae9dfe9109c7ce7875d b/.git_backup/objects/4b/82fdb15bb37a5f7a9dfae9dfe9109c7ce7875d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/86498eb7278027d76836373eab10ce8be68106 b/.git_backup/objects/4b/86498eb7278027d76836373eab10ce8be68106 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/915cd4c29ae33ab951c07cb59dddb670220cbf b/.git_backup/objects/4b/915cd4c29ae33ab951c07cb59dddb670220cbf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/926361826c6ed81efc2ac51662db5564e0d2f7 b/.git_backup/objects/4b/926361826c6ed81efc2ac51662db5564e0d2f7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/953d699108b2aed1c992cf3a33f3013b298254 b/.git_backup/objects/4b/953d699108b2aed1c992cf3a33f3013b298254 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/9555cee1fce4067afd6d910eec617a0f04907f b/.git_backup/objects/4b/9555cee1fce4067afd6d910eec617a0f04907f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/979bcc1edcb33feb9b385156492221d92253dc b/.git_backup/objects/4b/979bcc1edcb33feb9b385156492221d92253dc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/98133d7af497a840e2630bc72a02439c4d774f b/.git_backup/objects/4b/98133d7af497a840e2630bc72a02439c4d774f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/9a4f98a00dd6b1fb2afa0b01b6d17ecfbe6d19 b/.git_backup/objects/4b/9a4f98a00dd6b1fb2afa0b01b6d17ecfbe6d19 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/a020ef0fa71ebb26d4e4be8ba7a6d5d1ef96cb b/.git_backup/objects/4b/a020ef0fa71ebb26d4e4be8ba7a6d5d1ef96cb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/a3b13ecc046bd65537a4915b3740c7aae2e164 b/.git_backup/objects/4b/a3b13ecc046bd65537a4915b3740c7aae2e164 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/a6dc312dcc7b573669e662546a4f3b3c1f7214 b/.git_backup/objects/4b/a6dc312dcc7b573669e662546a4f3b3c1f7214 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/b951e274a399f091ff70b639d6e3b55ee1e122 b/.git_backup/objects/4b/b951e274a399f091ff70b639d6e3b55ee1e122 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/c3510e64a09246fe6c6261650421d2aa8c8e9f b/.git_backup/objects/4b/c3510e64a09246fe6c6261650421d2aa8c8e9f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/c78d69eaba97f4753a52d0d55812466321e4a5 b/.git_backup/objects/4b/c78d69eaba97f4753a52d0d55812466321e4a5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/c83a15bee1cc69ebe7be07910c05469aa1c831 b/.git_backup/objects/4b/c83a15bee1cc69ebe7be07910c05469aa1c831 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/c9a7d7c887986d1ce4851f3ac0ad73ccbe7e2b b/.git_backup/objects/4b/c9a7d7c887986d1ce4851f3ac0ad73ccbe7e2b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/cc3f6f76f39a55f9fbbf4eee0900de7f47d862 b/.git_backup/objects/4b/cc3f6f76f39a55f9fbbf4eee0900de7f47d862 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/cda4af02daf9afd99b4e78ee77e8118e9c96e5 b/.git_backup/objects/4b/cda4af02daf9afd99b4e78ee77e8118e9c96e5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/d072be9769748a852740d037d5c63021472c9d b/.git_backup/objects/4b/d072be9769748a852740d037d5c63021472c9d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/d730e21c6006d76fbdd7dd57811799306034fc b/.git_backup/objects/4b/d730e21c6006d76fbdd7dd57811799306034fc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/dfdb24f2096eac046bb9a576065bb96cfd476e b/.git_backup/objects/4b/dfdb24f2096eac046bb9a576065bb96cfd476e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/e4b2baa3f622e63919b467dab8dd8f407a56d7 b/.git_backup/objects/4b/e4b2baa3f622e63919b467dab8dd8f407a56d7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/f24de1d9f8ebc410f120aa83d98b7e41d1e6c4 b/.git_backup/objects/4b/f24de1d9f8ebc410f120aa83d98b7e41d1e6c4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/f414cb0052e351b6976b500123633bcacff15a b/.git_backup/objects/4b/f414cb0052e351b6976b500123633bcacff15a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/f6051fd36ef76ca55ba78fd20fb11f8001a7b5 b/.git_backup/objects/4b/f6051fd36ef76ca55ba78fd20fb11f8001a7b5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/f8ed911cae75824b27e5f5d5e444e17fa8eae8 b/.git_backup/objects/4b/f8ed911cae75824b27e5f5d5e444e17fa8eae8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/fa10403cd054c7e96848232551efea193d9bd3 b/.git_backup/objects/4b/fa10403cd054c7e96848232551efea193d9bd3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/fa650106a2ece5e43a89189f0a280c99bbbdd4 b/.git_backup/objects/4b/fa650106a2ece5e43a89189f0a280c99bbbdd4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/faf9a73da071c333190cca75f646661564ff02 b/.git_backup/objects/4b/faf9a73da071c333190cca75f646661564ff02 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4b/ffae17cba9e50a796c9e9584c80a112e6afe3e b/.git_backup/objects/4b/ffae17cba9e50a796c9e9584c80a112e6afe3e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/0303039826af6f6caa928e505cec10ebb3fa81 b/.git_backup/objects/4c/0303039826af6f6caa928e505cec10ebb3fa81 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/0c4084ca46cef2b01c7386026183e28dace32b b/.git_backup/objects/4c/0c4084ca46cef2b01c7386026183e28dace32b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/0c6241674bdc2863d629bdad4bfa422ee12379 b/.git_backup/objects/4c/0c6241674bdc2863d629bdad4bfa422ee12379 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/14feabada84b1c19e6dee4c388cf151d0f8554 b/.git_backup/objects/4c/14feabada84b1c19e6dee4c388cf151d0f8554 deleted file mode 100644 index 6554ff1d..00000000 Binary files a/.git_backup/objects/4c/14feabada84b1c19e6dee4c388cf151d0f8554 and /dev/null differ diff --git a/.git_backup/objects/4c/22b6d9bf3eb67679bec092e02817ffcd91a79d b/.git_backup/objects/4c/22b6d9bf3eb67679bec092e02817ffcd91a79d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/25647930c6557d10e8a3ee92b68cfe3a07f7d7 b/.git_backup/objects/4c/25647930c6557d10e8a3ee92b68cfe3a07f7d7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/27b2decd1159cf47285f0b18b5ed5178641e82 b/.git_backup/objects/4c/27b2decd1159cf47285f0b18b5ed5178641e82 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/2c6b77e55ac60f60b83d74855b90eb3d494c32 b/.git_backup/objects/4c/2c6b77e55ac60f60b83d74855b90eb3d494c32 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/2cd8a1226853b9b2436e63118662202da54d95 b/.git_backup/objects/4c/2cd8a1226853b9b2436e63118662202da54d95 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/35f06ee2618f12ad630daada0f0ca6b21ab219 b/.git_backup/objects/4c/35f06ee2618f12ad630daada0f0ca6b21ab219 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/379aa6f69ff56c8f19612002c6e3e939ea6012 b/.git_backup/objects/4c/379aa6f69ff56c8f19612002c6e3e939ea6012 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/3945ea96e62303d8ad757fc0d955bd826450f8 b/.git_backup/objects/4c/3945ea96e62303d8ad757fc0d955bd826450f8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/3a73a450f4f1073512b31ad0ed739fefa703ab b/.git_backup/objects/4c/3a73a450f4f1073512b31ad0ed739fefa703ab deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/3d9592eebe3fa6c08ae8b970e6c252d1e882d4 b/.git_backup/objects/4c/3d9592eebe3fa6c08ae8b970e6c252d1e882d4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/44d57bf8272b2f72b166a2b4823e836398d1ac b/.git_backup/objects/4c/44d57bf8272b2f72b166a2b4823e836398d1ac deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/482bafa6c9cae985d209db0225e9d24c493bbc b/.git_backup/objects/4c/482bafa6c9cae985d209db0225e9d24c493bbc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/4ab53b4277ac013d01d7fb02cd67999fd2c39a b/.git_backup/objects/4c/4ab53b4277ac013d01d7fb02cd67999fd2c39a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/4c1195990accd61c3cba9c5684185038dfa17e b/.git_backup/objects/4c/4c1195990accd61c3cba9c5684185038dfa17e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/590d507d1a9f914ca344288191e3cc5a499173 b/.git_backup/objects/4c/590d507d1a9f914ca344288191e3cc5a499173 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/5fd526523e6193de0aa0f4ea7dac520ffd8a1a b/.git_backup/objects/4c/5fd526523e6193de0aa0f4ea7dac520ffd8a1a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/6e2f9da6bc27112fe1c6ad037ed81cf43a9d5a b/.git_backup/objects/4c/6e2f9da6bc27112fe1c6ad037ed81cf43a9d5a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/6ec97ec6961bcf184b6e0b2437b9924db0b9de b/.git_backup/objects/4c/6ec97ec6961bcf184b6e0b2437b9924db0b9de deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/6ef607941ce700a31cdd133201dbc117f6e0cb b/.git_backup/objects/4c/6ef607941ce700a31cdd133201dbc117f6e0cb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/7a42bf3db4dd62fccf927ff0f20169bdfa5746 b/.git_backup/objects/4c/7a42bf3db4dd62fccf927ff0f20169bdfa5746 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/845055b56c48d01c19436a1d02057d263791c9 b/.git_backup/objects/4c/845055b56c48d01c19436a1d02057d263791c9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/875a4a5b441e9f66425c2b8418d08be158ff13 b/.git_backup/objects/4c/875a4a5b441e9f66425c2b8418d08be158ff13 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/8ae446dad77eb4ec31c00471058019d2f7f8b8 b/.git_backup/objects/4c/8ae446dad77eb4ec31c00471058019d2f7f8b8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/9175ab4aac77417795c033f565f7f9e6623921 b/.git_backup/objects/4c/9175ab4aac77417795c033f565f7f9e6623921 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/9a19e3786e98d123ed48ac8471f1799391d7dd b/.git_backup/objects/4c/9a19e3786e98d123ed48ac8471f1799391d7dd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/a12aa6231a622c7ca8ec52386b4431723f9121 b/.git_backup/objects/4c/a12aa6231a622c7ca8ec52386b4431723f9121 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/b200ab0ef3bc8d04cf70e7cdd038266bb22cc7 b/.git_backup/objects/4c/b200ab0ef3bc8d04cf70e7cdd038266bb22cc7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/b5f3a375e933fbc63b3aaab12527e60423de0c b/.git_backup/objects/4c/b5f3a375e933fbc63b3aaab12527e60423de0c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/b7dba0b4367149a9fd715205ec48fa55b64b05 b/.git_backup/objects/4c/b7dba0b4367149a9fd715205ec48fa55b64b05 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/b8ce760ebadb9fda52b1a953ce03c57b4490d2 b/.git_backup/objects/4c/b8ce760ebadb9fda52b1a953ce03c57b4490d2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/c359c47dc5173537ec7077e90f1ad16b400ad4 b/.git_backup/objects/4c/c359c47dc5173537ec7077e90f1ad16b400ad4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/c59c5ca76ffe17bebdfce2eaa4e3e761373e5c b/.git_backup/objects/4c/c59c5ca76ffe17bebdfce2eaa4e3e761373e5c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/c77c40fca343503cf5f6e0715c12c3b11f9bb5 b/.git_backup/objects/4c/c77c40fca343503cf5f6e0715c12c3b11f9bb5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/caf7869202aa90c93491ad87a78b1930e598c1 b/.git_backup/objects/4c/caf7869202aa90c93491ad87a78b1930e598c1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/d036d5684da5bba08dd5cb748337a9432c356b b/.git_backup/objects/4c/d036d5684da5bba08dd5cb748337a9432c356b deleted file mode 100644 index 1b56557c..00000000 Binary files a/.git_backup/objects/4c/d036d5684da5bba08dd5cb748337a9432c356b and /dev/null differ diff --git a/.git_backup/objects/4c/d09d42a6503780087632aae9ea5b458671fa57 b/.git_backup/objects/4c/d09d42a6503780087632aae9ea5b458671fa57 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/d2ecf4e3781a24fa8d9ded485283497c02b5b4 b/.git_backup/objects/4c/d2ecf4e3781a24fa8d9ded485283497c02b5b4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/d562cf94c6d16f6b2b49b38549db9b914a6178 b/.git_backup/objects/4c/d562cf94c6d16f6b2b49b38549db9b914a6178 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/d723f8b9d497bb16411052b868f2e4ab3b845e b/.git_backup/objects/4c/d723f8b9d497bb16411052b868f2e4ab3b845e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/e374a4e711de3ef6bf8655357f98ba292c6c04 b/.git_backup/objects/4c/e374a4e711de3ef6bf8655357f98ba292c6c04 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/e3dd35b538b14ec2ce70650584439a0d060113 b/.git_backup/objects/4c/e3dd35b538b14ec2ce70650584439a0d060113 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/e474230b6866f678e309074533729735856a7c b/.git_backup/objects/4c/e474230b6866f678e309074533729735856a7c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/ef7cc805081cf193d0c09e9456ead1d6dd6666 b/.git_backup/objects/4c/ef7cc805081cf193d0c09e9456ead1d6dd6666 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/efec5dd5af1cb1cce80d8cfdd49d513393b877 b/.git_backup/objects/4c/efec5dd5af1cb1cce80d8cfdd49d513393b877 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4c/ffc688fe3eb489184ebd268c76e9a4ef3992ce b/.git_backup/objects/4c/ffc688fe3eb489184ebd268c76e9a4ef3992ce deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/03f93cff38148c9c98a6ce8ce3136ab694b3cc b/.git_backup/objects/4d/03f93cff38148c9c98a6ce8ce3136ab694b3cc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/07b45ded85f5337a82a2a8813c5d343a7d8d92 b/.git_backup/objects/4d/07b45ded85f5337a82a2a8813c5d343a7d8d92 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/0a024e7bdfc1c2c9053e8693a04d80bbb8228c b/.git_backup/objects/4d/0a024e7bdfc1c2c9053e8693a04d80bbb8228c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/0f68ed499835d099428a344f4395eab6c57536 b/.git_backup/objects/4d/0f68ed499835d099428a344f4395eab6c57536 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/14ec0d7f334b1106a22040e7c8078fe8a6823c b/.git_backup/objects/4d/14ec0d7f334b1106a22040e7c8078fe8a6823c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/4064acc0c26fea67005704119acec0d34e052c b/.git_backup/objects/4d/4064acc0c26fea67005704119acec0d34e052c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/40994657aebe664aa11ef9153efd7ae8801a7d b/.git_backup/objects/4d/40994657aebe664aa11ef9153efd7ae8801a7d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/4b4b5158de7a5d3476fdd869c32550d408470d b/.git_backup/objects/4d/4b4b5158de7a5d3476fdd869c32550d408470d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/4fcb9a6ab9f320d49264b6b1b504b38f633577 b/.git_backup/objects/4d/4fcb9a6ab9f320d49264b6b1b504b38f633577 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/500cead61a8399887698b02d7a3efca3e19c33 b/.git_backup/objects/4d/500cead61a8399887698b02d7a3efca3e19c33 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/51af4a70f7514be4997d079834f5e8924e7749 b/.git_backup/objects/4d/51af4a70f7514be4997d079834f5e8924e7749 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/52c1b47b44b74aff1850fc6c706a06daa6171f b/.git_backup/objects/4d/52c1b47b44b74aff1850fc6c706a06daa6171f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/55967c1e13511819f90f8e0a1903d979ceed05 b/.git_backup/objects/4d/55967c1e13511819f90f8e0a1903d979ceed05 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/5a33b3ee3b6ffc7119222320f6762ba5b2f62e b/.git_backup/objects/4d/5a33b3ee3b6ffc7119222320f6762ba5b2f62e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/64f90bdbe989121641290b498e632932057145 b/.git_backup/objects/4d/64f90bdbe989121641290b498e632932057145 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/694b5d4e488d66e543402ee83c52387d7399bd b/.git_backup/objects/4d/694b5d4e488d66e543402ee83c52387d7399bd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/6994a176c528e35570f94f36246fc854bbacd1 b/.git_backup/objects/4d/6994a176c528e35570f94f36246fc854bbacd1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/77f5ffc98e1682ce1ee1e0dd581d9dc29d9644 b/.git_backup/objects/4d/77f5ffc98e1682ce1ee1e0dd581d9dc29d9644 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/78390c2596beb41b1abff651a729e4e964c36e b/.git_backup/objects/4d/78390c2596beb41b1abff651a729e4e964c36e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/7af19a01a37f119d91860272e7b80f1182cd87 b/.git_backup/objects/4d/7af19a01a37f119d91860272e7b80f1182cd87 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/7ebe127dd1183a766f5bc341f26c76c82f493a b/.git_backup/objects/4d/7ebe127dd1183a766f5bc341f26c76c82f493a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/7f26076e0603251447c990ac5167e36d3f501d b/.git_backup/objects/4d/7f26076e0603251447c990ac5167e36d3f501d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/8c628210cebd2c9036e21eb3bca39ba97dbed2 b/.git_backup/objects/4d/8c628210cebd2c9036e21eb3bca39ba97dbed2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/91ca76e27b9a6245e6d06425f895d6401512ab b/.git_backup/objects/4d/91ca76e27b9a6245e6d06425f895d6401512ab deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/9820adfddfe87cc14a64559a4aa8f244b4f907 b/.git_backup/objects/4d/9820adfddfe87cc14a64559a4aa8f244b4f907 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/99111f780c4a35edd7e89bf4b94178703840bb b/.git_backup/objects/4d/99111f780c4a35edd7e89bf4b94178703840bb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/ab6f9005bea50a065c685ec8260b0da2bff921 b/.git_backup/objects/4d/ab6f9005bea50a065c685ec8260b0da2bff921 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/ab7ef0859c244b916d61b7489d7371881e0ca2 b/.git_backup/objects/4d/ab7ef0859c244b916d61b7489d7371881e0ca2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/ac50a38265fa887b334918e2965f74e24f9d90 b/.git_backup/objects/4d/ac50a38265fa887b334918e2965f74e24f9d90 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/ad47dc256992ab537fae34210c6e80740133e7 b/.git_backup/objects/4d/ad47dc256992ab537fae34210c6e80740133e7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/adf64b4451587a0a4956aafdfcb384eb7e85e9 b/.git_backup/objects/4d/adf64b4451587a0a4956aafdfcb384eb7e85e9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/b3e46620583fcaaf18f8e4db6c17e417325f32 b/.git_backup/objects/4d/b3e46620583fcaaf18f8e4db6c17e417325f32 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/bafb30e29c65b24036f02e49f9015e3f359185 b/.git_backup/objects/4d/bafb30e29c65b24036f02e49f9015e3f359185 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/c0a06d8e7cc162e9587b8fc5e5acba4ecfd9fb b/.git_backup/objects/4d/c0a06d8e7cc162e9587b8fc5e5acba4ecfd9fb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/cd76da2ef8db0b9d449937ba9bd9690d6acc4c b/.git_backup/objects/4d/cd76da2ef8db0b9d449937ba9bd9690d6acc4c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/d02c2f01d6ac0e1322511c317b770f00a33c5d b/.git_backup/objects/4d/d02c2f01d6ac0e1322511c317b770f00a33c5d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/d3eda8c995ce022e9d46b907323e79bcd679f8 b/.git_backup/objects/4d/d3eda8c995ce022e9d46b907323e79bcd679f8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/d75e0d101cb516395a5aa4fb145f931d1291b7 b/.git_backup/objects/4d/d75e0d101cb516395a5aa4fb145f931d1291b7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/d7bae16c2b8f6ae2e3c5b92285e9db08b12dd5 b/.git_backup/objects/4d/d7bae16c2b8f6ae2e3c5b92285e9db08b12dd5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/de35e128fa6706afe4bed8a1870b4f519778d9 b/.git_backup/objects/4d/de35e128fa6706afe4bed8a1870b4f519778d9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/ed555ed8f73b84e20b96d833b72178d1b028d9 b/.git_backup/objects/4d/ed555ed8f73b84e20b96d833b72178d1b028d9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/f95d895e4752ffc443adb4b2a803d63c30e0f8 b/.git_backup/objects/4d/f95d895e4752ffc443adb4b2a803d63c30e0f8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4d/fee1f971b91080c898a3e61da7447af134cc4f b/.git_backup/objects/4d/fee1f971b91080c898a3e61da7447af134cc4f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/03b2c969bdefab944fc1f0de690c5b300221dd b/.git_backup/objects/4e/03b2c969bdefab944fc1f0de690c5b300221dd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/04e4e82ca9e4e21235133a44b3f8a9402febd2 b/.git_backup/objects/4e/04e4e82ca9e4e21235133a44b3f8a9402febd2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/0b53a082f11f9b9debf5e110b97b1b0473c9a6 b/.git_backup/objects/4e/0b53a082f11f9b9debf5e110b97b1b0473c9a6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/0ba792598d5539c14eff1da592e8d9d45d26e1 b/.git_backup/objects/4e/0ba792598d5539c14eff1da592e8d9d45d26e1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/0c6917da27834f009f64bb92da3addd9fcbe13 b/.git_backup/objects/4e/0c6917da27834f009f64bb92da3addd9fcbe13 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/15675d8b5caa33255fe37271700f587bd26671 b/.git_backup/objects/4e/15675d8b5caa33255fe37271700f587bd26671 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/1db69177534350e7337b86d83f09c2e828bdee b/.git_backup/objects/4e/1db69177534350e7337b86d83f09c2e828bdee deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/28416e104515e90fca4b69cc60d0c61fd15d61 b/.git_backup/objects/4e/28416e104515e90fca4b69cc60d0c61fd15d61 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/3098881bf491031f8ce84114d431f9b51e18bf b/.git_backup/objects/4e/3098881bf491031f8ce84114d431f9b51e18bf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/32c268673755aa55c68617baf3e89f94d146be b/.git_backup/objects/4e/32c268673755aa55c68617baf3e89f94d146be deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/3e02f9a5b6ef270a2fae61c41709f10bace10d b/.git_backup/objects/4e/3e02f9a5b6ef270a2fae61c41709f10bace10d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/3e819ce620c18281eeaec82d2aba05e0c97a9e b/.git_backup/objects/4e/3e819ce620c18281eeaec82d2aba05e0c97a9e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/4860ce31abfce16be43c8fb740e86b7b60a589 b/.git_backup/objects/4e/4860ce31abfce16be43c8fb740e86b7b60a589 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/4c43c7bc1fbb0cd044e54f3a0b37069f7bd138 b/.git_backup/objects/4e/4c43c7bc1fbb0cd044e54f3a0b37069f7bd138 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/53344ec74251da6a3b21ede9630920b1bafe68 b/.git_backup/objects/4e/53344ec74251da6a3b21ede9630920b1bafe68 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/5ef9f32ac9efed5f9179c02b42cb77cea6ea5f b/.git_backup/objects/4e/5ef9f32ac9efed5f9179c02b42cb77cea6ea5f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/6080f6ebe857ce3676616d39af30326698c6b0 b/.git_backup/objects/4e/6080f6ebe857ce3676616d39af30326698c6b0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/61db66094935138769f312856f30fc4b3b6df1 b/.git_backup/objects/4e/61db66094935138769f312856f30fc4b3b6df1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/6fee9eb57b2e3af92f18321d79f452aa968dc1 b/.git_backup/objects/4e/6fee9eb57b2e3af92f18321d79f452aa968dc1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/72aec7581499d9558c473219d3d26d1dbf6d78 b/.git_backup/objects/4e/72aec7581499d9558c473219d3d26d1dbf6d78 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/78b8cd7fb6cec14138daa468d55fb2be00ec5e b/.git_backup/objects/4e/78b8cd7fb6cec14138daa468d55fb2be00ec5e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/79aa17ec158711c143c24a9a5cc11e8b95ceee b/.git_backup/objects/4e/79aa17ec158711c143c24a9a5cc11e8b95ceee deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/8363ea88c871b7bfa0cd6d3d3e54150a5bb672 b/.git_backup/objects/4e/8363ea88c871b7bfa0cd6d3d3e54150a5bb672 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/848cd48b42d70033af233bf71c6904b9d069f9 b/.git_backup/objects/4e/848cd48b42d70033af233bf71c6904b9d069f9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/8854339e05269baf12dd6ae273b04ebd8c7502 b/.git_backup/objects/4e/8854339e05269baf12dd6ae273b04ebd8c7502 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/9902a695889c070f42570536702da1a52f4e57 b/.git_backup/objects/4e/9902a695889c070f42570536702da1a52f4e57 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/9a5f81a84c28f06c05416fcc911d5b31d23147 b/.git_backup/objects/4e/9a5f81a84c28f06c05416fcc911d5b31d23147 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/a6b8ac9c83e316facfe252ece13d1f3f30d867 b/.git_backup/objects/4e/a6b8ac9c83e316facfe252ece13d1f3f30d867 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/ab1f384a72a260d7441b2b97eb46115b3c5b3e b/.git_backup/objects/4e/ab1f384a72a260d7441b2b97eb46115b3c5b3e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/addd99740ca2d46872f722f8d9a4271b9c9b61 b/.git_backup/objects/4e/addd99740ca2d46872f722f8d9a4271b9c9b61 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/b20a5fa075450705454e888e0606c002aadd49 b/.git_backup/objects/4e/b20a5fa075450705454e888e0606c002aadd49 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/b2659bd2986125fcfb4afea5bae9efc2dcd1a0 b/.git_backup/objects/4e/b2659bd2986125fcfb4afea5bae9efc2dcd1a0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/b2986a432684cb1fb5fc3ceebcfda0e4c735ed b/.git_backup/objects/4e/b2986a432684cb1fb5fc3ceebcfda0e4c735ed deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/be7533c6a658bc7ebcc4ece016a7faf28f86a7 b/.git_backup/objects/4e/be7533c6a658bc7ebcc4ece016a7faf28f86a7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/c8c401d970606f7c8f2abdc867fcf6dee2e17c b/.git_backup/objects/4e/c8c401d970606f7c8f2abdc867fcf6dee2e17c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/ca9af78422dd92444e7d6724eb77398711b757 b/.git_backup/objects/4e/ca9af78422dd92444e7d6724eb77398711b757 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/cffba500c5e678749f902430c0f8d6ddf85224 b/.git_backup/objects/4e/cffba500c5e678749f902430c0f8d6ddf85224 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/d3498c8fefc458dfd8786f18b434be998d6cdb b/.git_backup/objects/4e/d3498c8fefc458dfd8786f18b434be998d6cdb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/d73fe371f81db9084fd46aa114be7fef4d5dd2 b/.git_backup/objects/4e/d73fe371f81db9084fd46aa114be7fef4d5dd2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/d77426bfc9805693c052bec5e424d9d5a74236 b/.git_backup/objects/4e/d77426bfc9805693c052bec5e424d9d5a74236 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/dd33705463a9a71a289cb1915152f514c4fd47 b/.git_backup/objects/4e/dd33705463a9a71a289cb1915152f514c4fd47 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/e1825abfe65887069dcbd10bcf786d50ba0702 b/.git_backup/objects/4e/e1825abfe65887069dcbd10bcf786d50ba0702 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/e2acfa12527029b38570216f9af256aaf1a06c b/.git_backup/objects/4e/e2acfa12527029b38570216f9af256aaf1a06c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/e2d3a31b59e8b50f433ecdf0be9e496e8cc3b8 b/.git_backup/objects/4e/e2d3a31b59e8b50f433ecdf0be9e496e8cc3b8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/e588db337c5a247a4ee97e6c64aa8e60233a91 b/.git_backup/objects/4e/e588db337c5a247a4ee97e6c64aa8e60233a91 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/e7cea79c88a3ea318fa8c55bb67ba365003ef2 b/.git_backup/objects/4e/e7cea79c88a3ea318fa8c55bb67ba365003ef2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/f052ca58af797f974663c1e34c5b96d84107de b/.git_backup/objects/4e/f052ca58af797f974663c1e34c5b96d84107de deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/f0a4c08650b6dba03c7af81d5dace34fc4bd98 b/.git_backup/objects/4e/f0a4c08650b6dba03c7af81d5dace34fc4bd98 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/f2a784329cc005fc5ea0883c4293c2f94dc124 b/.git_backup/objects/4e/f2a784329cc005fc5ea0883c4293c2f94dc124 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/f5837137b5c417bceb6b0892b60e536f622ea7 b/.git_backup/objects/4e/f5837137b5c417bceb6b0892b60e536f622ea7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/f6edcd815782e5b16998f1decbcb1aabda9b84 b/.git_backup/objects/4e/f6edcd815782e5b16998f1decbcb1aabda9b84 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/f929fb6edfc8a60bb82525b2219231d9efe205 b/.git_backup/objects/4e/f929fb6edfc8a60bb82525b2219231d9efe205 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4e/f93906569796d21113ecee6d6bbeba57b71bff b/.git_backup/objects/4e/f93906569796d21113ecee6d6bbeba57b71bff deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/00acdf9c059630c68d49bc47f0f2fa6f9ee8f4 b/.git_backup/objects/4f/00acdf9c059630c68d49bc47f0f2fa6f9ee8f4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/0fddfedd0fb57f872127269931773c2b84f773 b/.git_backup/objects/4f/0fddfedd0fb57f872127269931773c2b84f773 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/141a790e097531368f5d2ee0d3521c1b15ca91 b/.git_backup/objects/4f/141a790e097531368f5d2ee0d3521c1b15ca91 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/214d22d7aabe45e57395cc8ec8bc80be8fb779 b/.git_backup/objects/4f/214d22d7aabe45e57395cc8ec8bc80be8fb779 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/26b11b906de80ecd1bdb37f8b76c0c1873f468 b/.git_backup/objects/4f/26b11b906de80ecd1bdb37f8b76c0c1873f468 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/2b6d70c677075f3c838a30f5bc1cee8b95e3a6 b/.git_backup/objects/4f/2b6d70c677075f3c838a30f5bc1cee8b95e3a6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/3003711020eac05ef5a19ab29ba5670d89f642 b/.git_backup/objects/4f/3003711020eac05ef5a19ab29ba5670d89f642 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/3ce1d99ec3f4af779723d21d1a540111b9eb54 b/.git_backup/objects/4f/3ce1d99ec3f4af779723d21d1a540111b9eb54 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/3fe49d5695c4c01b33a255c95582ed8e904c03 b/.git_backup/objects/4f/3fe49d5695c4c01b33a255c95582ed8e904c03 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/46d6b1ac91da10689474b788e30de21901bb83 b/.git_backup/objects/4f/46d6b1ac91da10689474b788e30de21901bb83 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/523fd0e26f5b25f473edc9dbd61b9222f5ff5f b/.git_backup/objects/4f/523fd0e26f5b25f473edc9dbd61b9222f5ff5f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/5a3bd42353bf5a3d77243b9c607a3ec2b8cb1d b/.git_backup/objects/4f/5a3bd42353bf5a3d77243b9c607a3ec2b8cb1d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/5ec8eff29a65817504d82c7a406813959c313e b/.git_backup/objects/4f/5ec8eff29a65817504d82c7a406813959c313e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/6323870368cd97a6294e108ffea9067cf5e69b b/.git_backup/objects/4f/6323870368cd97a6294e108ffea9067cf5e69b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/65c8dfaf0bea40e531649e1ddb6bc43c934c96 b/.git_backup/objects/4f/65c8dfaf0bea40e531649e1ddb6bc43c934c96 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/6938ed2b4e6bb2c85f6ff24c246ab8bcae9b1f b/.git_backup/objects/4f/6938ed2b4e6bb2c85f6ff24c246ab8bcae9b1f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/696aceaa92d7f3e8802a3875de2b5e98d44268 b/.git_backup/objects/4f/696aceaa92d7f3e8802a3875de2b5e98d44268 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/6ab4bb04225f67c88089cba26cd5b3854efc5e b/.git_backup/objects/4f/6ab4bb04225f67c88089cba26cd5b3854efc5e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/6b2ef30874f52040348d8178ea575552389bb1 b/.git_backup/objects/4f/6b2ef30874f52040348d8178ea575552389bb1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/6d0d06d708f221ccc17d2ff82c35c7d41d5b97 b/.git_backup/objects/4f/6d0d06d708f221ccc17d2ff82c35c7d41d5b97 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/6d8b2d79406012c5f8bae9c289ed5bf4d179cc b/.git_backup/objects/4f/6d8b2d79406012c5f8bae9c289ed5bf4d179cc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/704a3547da02f913d6cfdbd4e0ed77c81caabe b/.git_backup/objects/4f/704a3547da02f913d6cfdbd4e0ed77c81caabe deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/78dd13c84102bd599a489acc00e55c2b1c386b b/.git_backup/objects/4f/78dd13c84102bd599a489acc00e55c2b1c386b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/7c8f2cc7141fb56a73161b339fff9bdfd13477 b/.git_backup/objects/4f/7c8f2cc7141fb56a73161b339fff9bdfd13477 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/8121219abb00b2ac5bb4ca48dbe39c8de023b1 b/.git_backup/objects/4f/8121219abb00b2ac5bb4ca48dbe39c8de023b1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/8c7c84a9fccd2c448856e4cd899a544ae82272 b/.git_backup/objects/4f/8c7c84a9fccd2c448856e4cd899a544ae82272 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/909740e875998c096da2b30f6c2ca4edc8b2c8 b/.git_backup/objects/4f/909740e875998c096da2b30f6c2ca4edc8b2c8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/9256d62325c75de027d1cd48f1ff520117413e b/.git_backup/objects/4f/9256d62325c75de027d1cd48f1ff520117413e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/9582fcb8b51ae328a019c4b9a630ce7d3bf634 b/.git_backup/objects/4f/9582fcb8b51ae328a019c4b9a630ce7d3bf634 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/9e64c018faad9952b497f9de4639ce278fd3aa b/.git_backup/objects/4f/9e64c018faad9952b497f9de4639ce278fd3aa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/b3810cbf43003df0dd4d2976a005ba71e674c0 b/.git_backup/objects/4f/b3810cbf43003df0dd4d2976a005ba71e674c0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/b417df8a60239937690b0f043df6f461b954e7 b/.git_backup/objects/4f/b417df8a60239937690b0f043df6f461b954e7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/b4a6b3123998df85173a0b79b34d3e7ddd40dd b/.git_backup/objects/4f/b4a6b3123998df85173a0b79b34d3e7ddd40dd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/ba8827994203a952f1a8070ffd9c8906c3f063 b/.git_backup/objects/4f/ba8827994203a952f1a8070ffd9c8906c3f063 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/c6aa844ee7754bcd98c483e398f3903eb4d7c9 b/.git_backup/objects/4f/c6aa844ee7754bcd98c483e398f3903eb4d7c9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/caa82cf280c9751296a65efab687e4811a62f9 b/.git_backup/objects/4f/caa82cf280c9751296a65efab687e4811a62f9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/cddfbb911f5f319b1e52256841641b3dec7577 b/.git_backup/objects/4f/cddfbb911f5f319b1e52256841641b3dec7577 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/d11b7509e65b01393a6af6125d1b304d524bd7 b/.git_backup/objects/4f/d11b7509e65b01393a6af6125d1b304d524bd7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/dde194a24aa44ec67d383fc0bbd0420e651d16 b/.git_backup/objects/4f/dde194a24aa44ec67d383fc0bbd0420e651d16 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/e36fd4c11f998ba3f626c5e23d97bd82d12791 b/.git_backup/objects/4f/e36fd4c11f998ba3f626c5e23d97bd82d12791 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/ed75de1cbc22357c675fd8ce2d52cbb6829b50 b/.git_backup/objects/4f/ed75de1cbc22357c675fd8ce2d52cbb6829b50 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/edbee91f649059e0880bc211528fd024774284 b/.git_backup/objects/4f/edbee91f649059e0880bc211528fd024774284 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/f75caf6a95fdb51c4973ecc474f2ece763834c b/.git_backup/objects/4f/f75caf6a95fdb51c4973ecc474f2ece763834c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/f83fecbc74d54b4d7aabb9b1297dc2d6658b12 b/.git_backup/objects/4f/f83fecbc74d54b4d7aabb9b1297dc2d6658b12 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/4f/ffe69591fea3f399f35034057096089d4017fb b/.git_backup/objects/4f/ffe69591fea3f399f35034057096089d4017fb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/50/022a991abdb1fff101784e1f4b728d16f09f93 b/.git_backup/objects/50/022a991abdb1fff101784e1f4b728d16f09f93 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/50/027ffd20b40414b1764b391d6e599572123d21 b/.git_backup/objects/50/027ffd20b40414b1764b391d6e599572123d21 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/50/04489ad2b5b6c314116ccf6fc1084609af73cc b/.git_backup/objects/50/04489ad2b5b6c314116ccf6fc1084609af73cc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/50/08c1ecabd45902ee90c9a8a4d0560aa2fc1ba2 b/.git_backup/objects/50/08c1ecabd45902ee90c9a8a4d0560aa2fc1ba2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/50/26857b13926b5eecf373ddea92c874d280555c b/.git_backup/objects/50/26857b13926b5eecf373ddea92c874d280555c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/50/30eaf08314546b41d6781c1b72f16d61e785f9 b/.git_backup/objects/50/30eaf08314546b41d6781c1b72f16d61e785f9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/50/364dcd1773e2be756617f9daa6ca49ebbd1a84 b/.git_backup/objects/50/364dcd1773e2be756617f9daa6ca49ebbd1a84 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/50/3d27dc0ead89e5bd6587f81427db2d1a78c10c b/.git_backup/objects/50/3d27dc0ead89e5bd6587f81427db2d1a78c10c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/50/40036f466428376f3e0bc252c54fb0fe32056f b/.git_backup/objects/50/40036f466428376f3e0bc252c54fb0fe32056f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/50/458c4ec9fe16bd472ce38fb9df11378e6a4b86 b/.git_backup/objects/50/458c4ec9fe16bd472ce38fb9df11378e6a4b86 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/50/5d7c9be19b3944f9dbbbeeb831ffafdd3af5ba b/.git_backup/objects/50/5d7c9be19b3944f9dbbbeeb831ffafdd3af5ba deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/50/5e446f8ec56fba2b631f6795ecaa9e44545ecd b/.git_backup/objects/50/5e446f8ec56fba2b631f6795ecaa9e44545ecd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/50/6165097d8665c8b8ed324b7b49a863778ff044 b/.git_backup/objects/50/6165097d8665c8b8ed324b7b49a863778ff044 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/50/67212767dc13fe72af8ef0b24ddb26ae286a37 b/.git_backup/objects/50/67212767dc13fe72af8ef0b24ddb26ae286a37 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/50/6856909f8b7690b3d61053f9e2f01173cb2fff b/.git_backup/objects/50/6856909f8b7690b3d61053f9e2f01173cb2fff deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/50/6c2b1866805d7a10ea29bf68af329ad5c21086 b/.git_backup/objects/50/6c2b1866805d7a10ea29bf68af329ad5c21086 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/50/70ab320232bc7df39e831eb0bed7f22248faab b/.git_backup/objects/50/70ab320232bc7df39e831eb0bed7f22248faab deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/50/71021898725e4f787daf6c3624ae7f25a018f7 b/.git_backup/objects/50/71021898725e4f787daf6c3624ae7f25a018f7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/50/747bb428773636cda6eb216020b31a18fc2dbe b/.git_backup/objects/50/747bb428773636cda6eb216020b31a18fc2dbe deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/50/74aa27546add415fb81e338af2733ac6cb7ba1 b/.git_backup/objects/50/74aa27546add415fb81e338af2733ac6cb7ba1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/50/80019f4de49551549c8452f1f82e9c9385062f b/.git_backup/objects/50/80019f4de49551549c8452f1f82e9c9385062f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/50/822ee2969260b764cf3cff6bea0b2cfe571833 b/.git_backup/objects/50/822ee2969260b764cf3cff6bea0b2cfe571833 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/50/8357927b72606648862b7f516900071dd4dc73 b/.git_backup/objects/50/8357927b72606648862b7f516900071dd4dc73 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/50/859564e654fd0cffc0abdc7d37fc51d550223f b/.git_backup/objects/50/859564e654fd0cffc0abdc7d37fc51d550223f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/50/86bb7acdc3773186e903000aace436c90dc565 b/.git_backup/objects/50/86bb7acdc3773186e903000aace436c90dc565 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/50/8a8a1df20e326827a34cb441b05a6260f08460 b/.git_backup/objects/50/8a8a1df20e326827a34cb441b05a6260f08460 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/50/8d70d7dfe8bc317183a72d32327e4f9ea97620 b/.git_backup/objects/50/8d70d7dfe8bc317183a72d32327e4f9ea97620 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/50/8e767a4700423bba11fc1c45f3e8f4587083d2 b/.git_backup/objects/50/8e767a4700423bba11fc1c45f3e8f4587083d2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/50/8fba7758a1f23d056fc98e4e58b3061402d459 b/.git_backup/objects/50/8fba7758a1f23d056fc98e4e58b3061402d459 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/50/9720a076b26220c7632daab846376633a2261f b/.git_backup/objects/50/9720a076b26220c7632daab846376633a2261f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/50/a0311059cec14bcfc29b39123dc69b513b8902 b/.git_backup/objects/50/a0311059cec14bcfc29b39123dc69b513b8902 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/50/acfe95674d8fe30f01f5701ff6e583415a8d24 b/.git_backup/objects/50/acfe95674d8fe30f01f5701ff6e583415a8d24 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/50/babff61514ad2fef33f4c1bad6e7393a113a38 b/.git_backup/objects/50/babff61514ad2fef33f4c1bad6e7393a113a38 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/50/ceda8fcda1a117de18a372da620b10b4738563 b/.git_backup/objects/50/ceda8fcda1a117de18a372da620b10b4738563 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/50/d3b9331b2b2f80e865e2a5d032e1e9fc28b3a3 b/.git_backup/objects/50/d3b9331b2b2f80e865e2a5d032e1e9fc28b3a3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/50/d5bf803146b35ee96e35d2fe9a2d05cc3b3564 b/.git_backup/objects/50/d5bf803146b35ee96e35d2fe9a2d05cc3b3564 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/50/da605946ef51e2a00a9c0e6337716f02a0cd0c b/.git_backup/objects/50/da605946ef51e2a00a9c0e6337716f02a0cd0c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/50/e1d7f3cfb9f9e4bfb22fc31dd06a7dd09f53b9 b/.git_backup/objects/50/e1d7f3cfb9f9e4bfb22fc31dd06a7dd09f53b9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/50/e37f0ede661944b2789391a35470323b7c39d0 b/.git_backup/objects/50/e37f0ede661944b2789391a35470323b7c39d0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/50/e6153b6f151815c600c861525ec27b4eff3257 b/.git_backup/objects/50/e6153b6f151815c600c861525ec27b4eff3257 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/50/ecb74924e2a64e3e03c10e2a5e77094096a9b5 b/.git_backup/objects/50/ecb74924e2a64e3e03c10e2a5e77094096a9b5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/50/f4395018abdd62e34d7758ef77479ef8317514 b/.git_backup/objects/50/f4395018abdd62e34d7758ef77479ef8317514 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/0e5b85de67e6d7f7632b97fb594e44f98b61f3 b/.git_backup/objects/51/0e5b85de67e6d7f7632b97fb594e44f98b61f3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/1184e94d3d1d4ec39ec0c4d39a19b0cf191cd4 b/.git_backup/objects/51/1184e94d3d1d4ec39ec0c4d39a19b0cf191cd4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/1c9f94a47d84adfe42cdd6763a186fdb4568da b/.git_backup/objects/51/1c9f94a47d84adfe42cdd6763a186fdb4568da deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/1f8fa87f1d7d18dda4c798e970d292f3a4a32a b/.git_backup/objects/51/1f8fa87f1d7d18dda4c798e970d292f3a4a32a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/213a27decadcba2c25bd1ef37246a37761c625 b/.git_backup/objects/51/213a27decadcba2c25bd1ef37246a37761c625 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/265d65486e27e8b94214d5a641790fea164fc1 b/.git_backup/objects/51/265d65486e27e8b94214d5a641790fea164fc1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/2f7d889420a016094a903585f27acaa50bc658 b/.git_backup/objects/51/2f7d889420a016094a903585f27acaa50bc658 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/3de938a8893c1fd328a96705ccf4dbdbc46968 b/.git_backup/objects/51/3de938a8893c1fd328a96705ccf4dbdbc46968 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/41638108b606d1e6900c99fc020629ced0f7be b/.git_backup/objects/51/41638108b606d1e6900c99fc020629ced0f7be deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/4860f77f82f37a3843a1a8c4bf72261fd33c96 b/.git_backup/objects/51/4860f77f82f37a3843a1a8c4bf72261fd33c96 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/4a6c3b40ce8e9fcaa55501b679bdd9417048dc b/.git_backup/objects/51/4a6c3b40ce8e9fcaa55501b679bdd9417048dc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/4aea38251b7e8d0e867749b06849240ea71aa9 b/.git_backup/objects/51/4aea38251b7e8d0e867749b06849240ea71aa9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/4b216032f5ac706e5e18772c0d8d019aed3e8c b/.git_backup/objects/51/4b216032f5ac706e5e18772c0d8d019aed3e8c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/4b2f069210febf3c8911c031a7c3ea604cdf11 b/.git_backup/objects/51/4b2f069210febf3c8911c031a7c3ea604cdf11 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/4c6f0264660d52d2f909e0ce1763129ee6aa63 b/.git_backup/objects/51/4c6f0264660d52d2f909e0ce1763129ee6aa63 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/4d9a92e8b18f347730cf7c9a78efa3fd378c69 b/.git_backup/objects/51/4d9a92e8b18f347730cf7c9a78efa3fd378c69 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/53118e9b142237522de42a65388e5d384ecf03 b/.git_backup/objects/51/53118e9b142237522de42a65388e5d384ecf03 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/54bd621c61d7c081630c4659f74d70059e1746 b/.git_backup/objects/51/54bd621c61d7c081630c4659f74d70059e1746 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/56d0371e9b7325697e0439847fab6e6bdef90b b/.git_backup/objects/51/56d0371e9b7325697e0439847fab6e6bdef90b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/5bd318700c1e8c01416fcaa31d661a9c561fbf b/.git_backup/objects/51/5bd318700c1e8c01416fcaa31d661a9c561fbf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/66bce35aec6d55f887ac9eb5241786e69cfe60 b/.git_backup/objects/51/66bce35aec6d55f887ac9eb5241786e69cfe60 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/6b996dc007409ea0c436cc4ae444a0b60d676b b/.git_backup/objects/51/6b996dc007409ea0c436cc4ae444a0b60d676b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/6ea345f10b83ef74376330f3217a41f5847994 b/.git_backup/objects/51/6ea345f10b83ef74376330f3217a41f5847994 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/75f64792c25f930ee4a70101103c76c95404a9 b/.git_backup/objects/51/75f64792c25f930ee4a70101103c76c95404a9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/79656fb876f918bf7a3b3da45056d7bd9fc030 b/.git_backup/objects/51/79656fb876f918bf7a3b3da45056d7bd9fc030 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/7fd0b6b8387c2f1419dc8bded58da57019e4cb b/.git_backup/objects/51/7fd0b6b8387c2f1419dc8bded58da57019e4cb deleted file mode 100644 index f4302081..00000000 Binary files a/.git_backup/objects/51/7fd0b6b8387c2f1419dc8bded58da57019e4cb and /dev/null differ diff --git a/.git_backup/objects/51/82c080f184cfa71ea144359d0467cc891fc729 b/.git_backup/objects/51/82c080f184cfa71ea144359d0467cc891fc729 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/854d562d091aa14e052b7c2a83e20b3f6dea70 b/.git_backup/objects/51/854d562d091aa14e052b7c2a83e20b3f6dea70 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/86b958d842839f16e27f56fe3d80f35ac5a690 b/.git_backup/objects/51/86b958d842839f16e27f56fe3d80f35ac5a690 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/9035b07e33cade0f8a315fa62cacdf511b4d20 b/.git_backup/objects/51/9035b07e33cade0f8a315fa62cacdf511b4d20 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/9498133ccc73c4608cc3f4aa059308e0b9ce5d b/.git_backup/objects/51/9498133ccc73c4608cc3f4aa059308e0b9ce5d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/94c3e49b9187b253569893655d6dad941a64e9 b/.git_backup/objects/51/94c3e49b9187b253569893655d6dad941a64e9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/977497402a6465d5058b27db173eedba64c380 b/.git_backup/objects/51/977497402a6465d5058b27db173eedba64c380 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/977711e20e49cc329084d548b04ec9c01453a5 b/.git_backup/objects/51/977711e20e49cc329084d548b04ec9c01453a5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/a96d2c8b8f047ad4a8e9b7efa3b1735c4ae1ce b/.git_backup/objects/51/a96d2c8b8f047ad4a8e9b7efa3b1735c4ae1ce deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/ad12d9f947e82ef24839cc21f2ea9df601ba9b b/.git_backup/objects/51/ad12d9f947e82ef24839cc21f2ea9df601ba9b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/b0b746cadf939fbbcd897d1ddc03be3f02dc38 b/.git_backup/objects/51/b0b746cadf939fbbcd897d1ddc03be3f02dc38 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/b4eaa1b72e592cbb1213f773783f2f938626a2 b/.git_backup/objects/51/b4eaa1b72e592cbb1213f773783f2f938626a2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/b5872cb4ac9041a18d83a2c52a23ee2336db7a b/.git_backup/objects/51/b5872cb4ac9041a18d83a2c52a23ee2336db7a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/bb70aacdc4315e60de122c64042e46a9cffd12 b/.git_backup/objects/51/bb70aacdc4315e60de122c64042e46a9cffd12 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/c056936fd4f145e65440a96167c4f91cfcca7c b/.git_backup/objects/51/c056936fd4f145e65440a96167c4f91cfcca7c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/ce3c1291b44592f76047ecaa0d5651090b898b b/.git_backup/objects/51/ce3c1291b44592f76047ecaa0d5651090b898b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/d70cf2b6d85eae5be6bd08625dbff865530f84 b/.git_backup/objects/51/d70cf2b6d85eae5be6bd08625dbff865530f84 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/d7b6ae1af2ac092fb2524110a9835d0f4eaced b/.git_backup/objects/51/d7b6ae1af2ac092fb2524110a9835d0f4eaced deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/e1884065d8d538b5dd7d5efc87a49e92f40d81 b/.git_backup/objects/51/e1884065d8d538b5dd7d5efc87a49e92f40d81 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/e73ad47177cdb19a628635a2e1345729c4664a b/.git_backup/objects/51/e73ad47177cdb19a628635a2e1345729c4664a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/ec35038f7034da93e40a2753b1b0801d0afd66 b/.git_backup/objects/51/ec35038f7034da93e40a2753b1b0801d0afd66 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/f0f9a88c671688ff820e1bc9a3da83b1ff693f b/.git_backup/objects/51/f0f9a88c671688ff820e1bc9a3da83b1ff693f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/f6d2768b5aeb2048475fa2bbc29622144f3c14 b/.git_backup/objects/51/f6d2768b5aeb2048475fa2bbc29622144f3c14 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/f77ce0cdfb866dd798dc49c3771b76d6678906 b/.git_backup/objects/51/f77ce0cdfb866dd798dc49c3771b76d6678906 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/51/fd141f2ac2708087352c7bc0c7632360924e06 b/.git_backup/objects/51/fd141f2ac2708087352c7bc0c7632360924e06 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/08f85152d729f92593199f783113834071cced b/.git_backup/objects/52/08f85152d729f92593199f783113834071cced deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/09d3efafae30e4a4296441bbdeea3c420eed99 b/.git_backup/objects/52/09d3efafae30e4a4296441bbdeea3c420eed99 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/0e1cedb3823b859666b1fa8872e073904fd4c6 b/.git_backup/objects/52/0e1cedb3823b859666b1fa8872e073904fd4c6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/11397f20c3695db0fd5b1cdca8f2386b485cf4 b/.git_backup/objects/52/11397f20c3695db0fd5b1cdca8f2386b485cf4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/13134768aa13edceabf2700adc01bed1823551 b/.git_backup/objects/52/13134768aa13edceabf2700adc01bed1823551 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/154f0be32cc2bdbf98af131d477900667d0abd b/.git_backup/objects/52/154f0be32cc2bdbf98af131d477900667d0abd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/17b38f155c86a989ffa592efa29a25347f8f40 b/.git_backup/objects/52/17b38f155c86a989ffa592efa29a25347f8f40 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/1eb716a5ebbcbc2c59654c4e71c3f0ff1abf26 b/.git_backup/objects/52/1eb716a5ebbcbc2c59654c4e71c3f0ff1abf26 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/2223fdc9de25cb1c6528d33f6468b9199f7c7c b/.git_backup/objects/52/2223fdc9de25cb1c6528d33f6468b9199f7c7c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/2756fc9db359002c7208b75094b103323f13c6 b/.git_backup/objects/52/2756fc9db359002c7208b75094b103323f13c6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/2bbc11ff735ee3884349e85b7afde626aac099 b/.git_backup/objects/52/2bbc11ff735ee3884349e85b7afde626aac099 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/3bf2aaab544f126765f45712c770fa2c1a2b18 b/.git_backup/objects/52/3bf2aaab544f126765f45712c770fa2c1a2b18 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/3e62e94753523f52ebc0a704240c4095321e44 b/.git_backup/objects/52/3e62e94753523f52ebc0a704240c4095321e44 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/453c8a4e652988f80571b53d42a77190b325a5 b/.git_backup/objects/52/453c8a4e652988f80571b53d42a77190b325a5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/475ea2f90d4af8cbe5203bbb52941082496f64 b/.git_backup/objects/52/475ea2f90d4af8cbe5203bbb52941082496f64 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/4c48e12db7dfe159f282e4664f71ce249e1970 b/.git_backup/objects/52/4c48e12db7dfe159f282e4664f71ce249e1970 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/50fea84031373dd3cf6afdd6ef5dbde2639c57 b/.git_backup/objects/52/50fea84031373dd3cf6afdd6ef5dbde2639c57 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/543d91e8f2abf111cadcc60bb00b5c9f7ad1b4 b/.git_backup/objects/52/543d91e8f2abf111cadcc60bb00b5c9f7ad1b4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/577ae5d55236ead211bb0febb893e618390083 b/.git_backup/objects/52/577ae5d55236ead211bb0febb893e618390083 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/642b2df1ea89d0c5ca4d5c3473474427d9e0b5 b/.git_backup/objects/52/642b2df1ea89d0c5ca4d5c3473474427d9e0b5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/7524ed295aba41b9a0448ffd7993c489a2cb99 b/.git_backup/objects/52/7524ed295aba41b9a0448ffd7993c489a2cb99 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/753c0f87bbfa457ada89d400908a3d6537ac0e b/.git_backup/objects/52/753c0f87bbfa457ada89d400908a3d6537ac0e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/82d53fd639a84c61b4aad5be289d51acbcd574 b/.git_backup/objects/52/82d53fd639a84c61b4aad5be289d51acbcd574 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/8c7f1a6af20a3df8214ce53a9686ea75658c51 b/.git_backup/objects/52/8c7f1a6af20a3df8214ce53a9686ea75658c51 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/8e3d6fa273a24a98825b1b37f9de9330e0c1a1 b/.git_backup/objects/52/8e3d6fa273a24a98825b1b37f9de9330e0c1a1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/9e1c9777beebcc3472dd066467a35c86a8c69c b/.git_backup/objects/52/9e1c9777beebcc3472dd066467a35c86a8c69c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/a2f3aeee85061ad6ec7cb01ed9fdee54c79bfc b/.git_backup/objects/52/a2f3aeee85061ad6ec7cb01ed9fdee54c79bfc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/a67336aaa82ca71d831e1d4fedb1ea91e425ce b/.git_backup/objects/52/a67336aaa82ca71d831e1d4fedb1ea91e425ce deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/af29d999fccf3b8b01ea39ff478507acaad3ff b/.git_backup/objects/52/af29d999fccf3b8b01ea39ff478507acaad3ff deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/af84aaf28e0beeef1ff5e0ec62bb79137c1629 b/.git_backup/objects/52/af84aaf28e0beeef1ff5e0ec62bb79137c1629 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/bf5a9162ac57cf937126394ac79a93ee380848 b/.git_backup/objects/52/bf5a9162ac57cf937126394ac79a93ee380848 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/c138cd234cf60855603da5807be48b14625121 b/.git_backup/objects/52/c138cd234cf60855603da5807be48b14625121 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/c9cfc4a6074a3117bda5c5dbbd26bea94453f4 b/.git_backup/objects/52/c9cfc4a6074a3117bda5c5dbbd26bea94453f4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/cd28c8d5accf11118b31e1a8fad084728667d5 b/.git_backup/objects/52/cd28c8d5accf11118b31e1a8fad084728667d5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/cf4facf1e795ab647d2c9997764c625f159010 b/.git_backup/objects/52/cf4facf1e795ab647d2c9997764c625f159010 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/dbf4d702ac79786d4a2b2f92d92a956004381a b/.git_backup/objects/52/dbf4d702ac79786d4a2b2f92d92a956004381a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/df9cc4fd47216a545205497676dd04baf94f99 b/.git_backup/objects/52/df9cc4fd47216a545205497676dd04baf94f99 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/eab7aaddab1003852c01e32a88db1b97c56629 b/.git_backup/objects/52/eab7aaddab1003852c01e32a88db1b97c56629 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/eae2c894df48c123b1ec44e24201138c311991 b/.git_backup/objects/52/eae2c894df48c123b1ec44e24201138c311991 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/ebd2b8e2b55aeb1648f0fbc0561db05615cbb5 b/.git_backup/objects/52/ebd2b8e2b55aeb1648f0fbc0561db05615cbb5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/ecf7915af6b88766989c7a3ab7e100cf80f3dc b/.git_backup/objects/52/ecf7915af6b88766989c7a3ab7e100cf80f3dc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/efea88065b220e44fd876de3bf3090fe62cc79 b/.git_backup/objects/52/efea88065b220e44fd876de3bf3090fe62cc79 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/f602258a04982adc04049c4582a44a058721bc b/.git_backup/objects/52/f602258a04982adc04049c4582a44a058721bc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/fbdedd138fbe232508d83a241799b20eed58f5 b/.git_backup/objects/52/fbdedd138fbe232508d83a241799b20eed58f5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/52/ff94743f7ffd72e90eadcb0edf6decf2635dab b/.git_backup/objects/52/ff94743f7ffd72e90eadcb0edf6decf2635dab deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/53/00b9b6f11a32264fd877125dc91ca204a395e8 b/.git_backup/objects/53/00b9b6f11a32264fd877125dc91ca204a395e8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/53/08b864bc0c728db604bac7b5007c1c0c916e4a b/.git_backup/objects/53/08b864bc0c728db604bac7b5007c1c0c916e4a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/53/096303d9bd1f020a291b60737c1114fae42cf8 b/.git_backup/objects/53/096303d9bd1f020a291b60737c1114fae42cf8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/53/0d1d5eb09ce3fd96571562a50292a5a3123ed2 b/.git_backup/objects/53/0d1d5eb09ce3fd96571562a50292a5a3123ed2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/53/16c0225b73ca8cd6cc86d9a31d9c4edddba59b b/.git_backup/objects/53/16c0225b73ca8cd6cc86d9a31d9c4edddba59b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/53/17392f27e1f863b211ef979cb1f988b056b65a b/.git_backup/objects/53/17392f27e1f863b211ef979cb1f988b056b65a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/53/17d37029218281b4da78eccf40ce9e94941301 b/.git_backup/objects/53/17d37029218281b4da78eccf40ce9e94941301 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/53/188ea4ef20bd4867021eeb929d89a9987f05a2 b/.git_backup/objects/53/188ea4ef20bd4867021eeb929d89a9987f05a2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/53/275ca9e3854c3e36d5ca3ff4849f04ae863e3e b/.git_backup/objects/53/275ca9e3854c3e36d5ca3ff4849f04ae863e3e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/53/2e7fa260c3f7b8e402b53e760cca9f358270b0 b/.git_backup/objects/53/2e7fa260c3f7b8e402b53e760cca9f358270b0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/53/2ec326f6db8716615333ed06b3b8b44109a091 b/.git_backup/objects/53/2ec326f6db8716615333ed06b3b8b44109a091 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/53/2f7c87557c824b63e8882937bb39194e3a3335 b/.git_backup/objects/53/2f7c87557c824b63e8882937bb39194e3a3335 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/53/3cf7a7a633111d994f41ef9404e456f9e633f6 b/.git_backup/objects/53/3cf7a7a633111d994f41ef9404e456f9e633f6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/53/4ab683c58493186a7490f1ccfb6997032ffab7 b/.git_backup/objects/53/4ab683c58493186a7490f1ccfb6997032ffab7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/53/4c20c15259ee11503edc418bd630d0aa46ba37 b/.git_backup/objects/53/4c20c15259ee11503edc418bd630d0aa46ba37 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/53/5b18b0aa841a57e44c145c2ab05c730ae314aa b/.git_backup/objects/53/5b18b0aa841a57e44c145c2ab05c730ae314aa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/53/735472752084243980960e3090b340a33719f2 b/.git_backup/objects/53/735472752084243980960e3090b340a33719f2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/53/776bfda0aa9ba98a10bc7ef6433d530dcc5af3 b/.git_backup/objects/53/776bfda0aa9ba98a10bc7ef6433d530dcc5af3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/53/7b73b3aeb36df09863a0cd24957e5612deb030 b/.git_backup/objects/53/7b73b3aeb36df09863a0cd24957e5612deb030 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/53/82f5f9202c053cbca47ce41b12799879994d83 b/.git_backup/objects/53/82f5f9202c053cbca47ce41b12799879994d83 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/53/913fdf457c30831f36127ba44c1e7340105883 b/.git_backup/objects/53/913fdf457c30831f36127ba44c1e7340105883 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/53/981df3d679767871aa96e3d2a81db8a13d74a9 b/.git_backup/objects/53/981df3d679767871aa96e3d2a81db8a13d74a9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/53/b15e127374743edde04c01fd502e5c19add808 b/.git_backup/objects/53/b15e127374743edde04c01fd502e5c19add808 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/53/b3330fac2bd64c02d8dc171c722ec491bea41d b/.git_backup/objects/53/b3330fac2bd64c02d8dc171c722ec491bea41d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/53/b78cce99e4656c6b7e27a882c1cf5ae09b67dd b/.git_backup/objects/53/b78cce99e4656c6b7e27a882c1cf5ae09b67dd deleted file mode 100644 index 2d9f03de..00000000 Binary files a/.git_backup/objects/53/b78cce99e4656c6b7e27a882c1cf5ae09b67dd and /dev/null differ diff --git a/.git_backup/objects/53/b8036d7056899cf36ddd15efad74bcf265cb90 b/.git_backup/objects/53/b8036d7056899cf36ddd15efad74bcf265cb90 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/53/bdcecbae0cf2b4b46b91eb8189682163ab2b3b b/.git_backup/objects/53/bdcecbae0cf2b4b46b91eb8189682163ab2b3b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/53/bf08e3585a52de81f0e43f2118edc386bd6d8e b/.git_backup/objects/53/bf08e3585a52de81f0e43f2118edc386bd6d8e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/53/c0bd869598df634dd156854c95c013afc82f3e b/.git_backup/objects/53/c0bd869598df634dd156854c95c013afc82f3e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/53/c10e5f6d4db6526903a9bb3d8e6f665d526f73 b/.git_backup/objects/53/c10e5f6d4db6526903a9bb3d8e6f665d526f73 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/53/d104cfd274e37cdafd2285532c6080a7c56625 b/.git_backup/objects/53/d104cfd274e37cdafd2285532c6080a7c56625 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/53/daf7de9c4c2c1f6e04e02729efb1e3e5e4fbc4 b/.git_backup/objects/53/daf7de9c4c2c1f6e04e02729efb1e3e5e4fbc4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/53/dd9be8e33ed1e53ab152d1faa31cd4fd75d974 b/.git_backup/objects/53/dd9be8e33ed1e53ab152d1faa31cd4fd75d974 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/53/ea5a4c2ddc92ffef1e14f7a3be75166ef74d33 b/.git_backup/objects/53/ea5a4c2ddc92ffef1e14f7a3be75166ef74d33 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/53/ee0844e3c58456807bfd7828bdb9cf58f8ed76 b/.git_backup/objects/53/ee0844e3c58456807bfd7828bdb9cf58f8ed76 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/53/f4cd101c18058a1ee4d4b9d1184ada11d74232 b/.git_backup/objects/53/f4cd101c18058a1ee4d4b9d1184ada11d74232 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/00fd232dae35619fe53d0908ec31f9504383fa b/.git_backup/objects/54/00fd232dae35619fe53d0908ec31f9504383fa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/03f3b73f481210598ad8ade805ae894d3419c5 b/.git_backup/objects/54/03f3b73f481210598ad8ade805ae894d3419c5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/0705e132afca6847a0957fbb3ba21e3a24a557 b/.git_backup/objects/54/0705e132afca6847a0957fbb3ba21e3a24a557 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/091f9495e235f76b739ba128d2c127a3724c38 b/.git_backup/objects/54/091f9495e235f76b739ba128d2c127a3724c38 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/0dbde609470499c1bbc74fca511d861523fad8 b/.git_backup/objects/54/0dbde609470499c1bbc74fca511d861523fad8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/0e60f4e073bc53a5f0a521a3639e0d80780af4 b/.git_backup/objects/54/0e60f4e073bc53a5f0a521a3639e0d80780af4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/0e7a4dc79d02a820e291b57c43335d5aa25a41 b/.git_backup/objects/54/0e7a4dc79d02a820e291b57c43335d5aa25a41 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/154d11f750f8dbc6f0cac06d870ce310303a02 b/.git_backup/objects/54/154d11f750f8dbc6f0cac06d870ce310303a02 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/16677bc7dab0c8bec3f5bf44d7d28b4ff73b13 b/.git_backup/objects/54/16677bc7dab0c8bec3f5bf44d7d28b4ff73b13 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/1f6d9b9b351b123c77ef55bf41a4adc311e770 b/.git_backup/objects/54/1f6d9b9b351b123c77ef55bf41a4adc311e770 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/277fa907230488938e85d3067359f999f2c2e4 b/.git_backup/objects/54/277fa907230488938e85d3067359f999f2c2e4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/29bab0803a691f250782990c0f29e07913697e b/.git_backup/objects/54/29bab0803a691f250782990c0f29e07913697e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/2b4d09d93a35e738ba690140981f875385b62f b/.git_backup/objects/54/2b4d09d93a35e738ba690140981f875385b62f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/354852ad94fbdcbcd4017bcfa54088f9d0856a b/.git_backup/objects/54/354852ad94fbdcbcd4017bcfa54088f9d0856a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/455a32e6f6d133825d161ffcc46fe9ceebf079 b/.git_backup/objects/54/455a32e6f6d133825d161ffcc46fe9ceebf079 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/462e27d663770bc33ef73ed70baae65767719d b/.git_backup/objects/54/462e27d663770bc33ef73ed70baae65767719d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/4b2fbd471ba7c1225135d6cc191185cdc89eb3 b/.git_backup/objects/54/4b2fbd471ba7c1225135d6cc191185cdc89eb3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/4c6a4e438695c0a73bc8ee5d448108c50780a2 b/.git_backup/objects/54/4c6a4e438695c0a73bc8ee5d448108c50780a2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/4e13b3431d53ff1dbf22e10c840ba7c4e88eb9 b/.git_backup/objects/54/4e13b3431d53ff1dbf22e10c840ba7c4e88eb9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/4ffbe4a7dba04a2a3771bdbebe1314fc694555 b/.git_backup/objects/54/4ffbe4a7dba04a2a3771bdbebe1314fc694555 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/50c55203fe53adaaca2840726810f1523a2d66 b/.git_backup/objects/54/50c55203fe53adaaca2840726810f1523a2d66 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/50cf2b62ec34c0bc99d4d405c4f53fbefbd2b4 b/.git_backup/objects/54/50cf2b62ec34c0bc99d4d405c4f53fbefbd2b4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/52d2ee533b49dde5205e6cb458782ab90606f2 b/.git_backup/objects/54/52d2ee533b49dde5205e6cb458782ab90606f2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/564b11dcc32154efd0c9052428b80d15d737c5 b/.git_backup/objects/54/564b11dcc32154efd0c9052428b80d15d737c5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/5f0dcbf695fcb096fe9e936f630b8601905bb0 b/.git_backup/objects/54/5f0dcbf695fcb096fe9e936f630b8601905bb0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/6bdaea7c46744230ba4b642eadacf69cb51810 b/.git_backup/objects/54/6bdaea7c46744230ba4b642eadacf69cb51810 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/71d746c239bdf6fec3b4dd33e834e5fd21b607 b/.git_backup/objects/54/71d746c239bdf6fec3b4dd33e834e5fd21b607 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/774d62f93d9d93b07e18652e70f290b178cad5 b/.git_backup/objects/54/774d62f93d9d93b07e18652e70f290b178cad5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/7fcc0b8aa077408c39046a6d74f3f69b65c24d b/.git_backup/objects/54/7fcc0b8aa077408c39046a6d74f3f69b65c24d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/7fd5e1bd16152073f7237ad265b5c643e7cbfe b/.git_backup/objects/54/7fd5e1bd16152073f7237ad265b5c643e7cbfe deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/862f12e43a162f85961d8960e1c2e6cd44f497 b/.git_backup/objects/54/862f12e43a162f85961d8960e1c2e6cd44f497 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/87ada5aeba4fefbc1ca2862724021f9efcdf5d b/.git_backup/objects/54/87ada5aeba4fefbc1ca2862724021f9efcdf5d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/8f762612fca628eccaeed66d1f3bd95d47dd0f b/.git_backup/objects/54/8f762612fca628eccaeed66d1f3bd95d47dd0f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/9246b8a378c4586e602884a93b317987b7101c b/.git_backup/objects/54/9246b8a378c4586e602884a93b317987b7101c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/9bdac0a2b5f8d5c142c617a3541f79ffb42e58 b/.git_backup/objects/54/9bdac0a2b5f8d5c142c617a3541f79ffb42e58 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/9cfb9760dda474cb858b7b36d236af48111067 b/.git_backup/objects/54/9cfb9760dda474cb858b7b36d236af48111067 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/ac116afe3cf40c0accae67f0826ceabeeab4f5 b/.git_backup/objects/54/ac116afe3cf40c0accae67f0826ceabeeab4f5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/ad7a8c363657d4fc7865ca213b6c06d6e01ae6 b/.git_backup/objects/54/ad7a8c363657d4fc7865ca213b6c06d6e01ae6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/b0b65f2d5343367250186ea2edf9e97a8405b5 b/.git_backup/objects/54/b0b65f2d5343367250186ea2edf9e97a8405b5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/b8600b88a5d8371686ce993bbb959e9a9d2d24 b/.git_backup/objects/54/b8600b88a5d8371686ce993bbb959e9a9d2d24 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/d5a3efbdba7b39258ec93aaa34a207029272c2 b/.git_backup/objects/54/d5a3efbdba7b39258ec93aaa34a207029272c2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/d7b13e70740dbff50d314beb3febca03716a29 b/.git_backup/objects/54/d7b13e70740dbff50d314beb3febca03716a29 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/dd3c49b6d6ce33027b3486c09af1f798c50ed8 b/.git_backup/objects/54/dd3c49b6d6ce33027b3486c09af1f798c50ed8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/dfc296c367cd338437d03ead16c67c1c0e3252 b/.git_backup/objects/54/dfc296c367cd338437d03ead16c67c1c0e3252 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/e161f7ef9bc0b9a3fd04881fb54a612948038c b/.git_backup/objects/54/e161f7ef9bc0b9a3fd04881fb54a612948038c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/e2b03d6f3390d8522c23592060e8383afb983b b/.git_backup/objects/54/e2b03d6f3390d8522c23592060e8383afb983b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/e31e05e8b0e78a97c7ffdfe6edf0e39e6e638f b/.git_backup/objects/54/e31e05e8b0e78a97c7ffdfe6edf0e39e6e638f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/e7b166cb1de83321a4965cc4915824b47a7f4f b/.git_backup/objects/54/e7b166cb1de83321a4965cc4915824b47a7f4f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/e861ae2de02164966a33c437e5fdb08ba3006c b/.git_backup/objects/54/e861ae2de02164966a33c437e5fdb08ba3006c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/f672cb69800a9d96a174419716375a79d1109b b/.git_backup/objects/54/f672cb69800a9d96a174419716375a79d1109b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/f9132d0bb320a934c08075dc64b565dfb7d6db b/.git_backup/objects/54/f9132d0bb320a934c08075dc64b565dfb7d6db deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/54/ff344b9a19e7d600ad2b390f65580fd3215154 b/.git_backup/objects/54/ff344b9a19e7d600ad2b390f65580fd3215154 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/078bb7b670dd45a24174fb67a94e8fdd93daab b/.git_backup/objects/55/078bb7b670dd45a24174fb67a94e8fdd93daab deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/084c5650db1f0b106b32b3990ca9a22ee90ae1 b/.git_backup/objects/55/084c5650db1f0b106b32b3990ca9a22ee90ae1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/096c4a72f39b522f9ba4abcc8c98f460cffe17 b/.git_backup/objects/55/096c4a72f39b522f9ba4abcc8c98f460cffe17 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/0aa6b65a6a32679a3c2503d4cb9411fdda295b b/.git_backup/objects/55/0aa6b65a6a32679a3c2503d4cb9411fdda295b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/11ac7d6b1b209ba00a7414671aa7e61d403898 b/.git_backup/objects/55/11ac7d6b1b209ba00a7414671aa7e61d403898 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/184ba49c21f0510ad3f92329b7bae9edb37acc b/.git_backup/objects/55/184ba49c21f0510ad3f92329b7bae9edb37acc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/18ea7c237a65a63bc01b4625d73bca549bcbdd b/.git_backup/objects/55/18ea7c237a65a63bc01b4625d73bca549bcbdd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/1ec6be8c2d0a17989fff586c6e4e62011d4018 b/.git_backup/objects/55/1ec6be8c2d0a17989fff586c6e4e62011d4018 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/21f6c822a489abaf35275ef93a2d484c6e12fe b/.git_backup/objects/55/21f6c822a489abaf35275ef93a2d484c6e12fe deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/22631d222e12b6050266da4ecbf4d59ca4e595 b/.git_backup/objects/55/22631d222e12b6050266da4ecbf4d59ca4e595 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/285fe5928f40eca6bd421d6f3d53d08eb20c87 b/.git_backup/objects/55/285fe5928f40eca6bd421d6f3d53d08eb20c87 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/38367f49e5b4e6cd6a37c56cc21fa8c27cd8b3 b/.git_backup/objects/55/38367f49e5b4e6cd6a37c56cc21fa8c27cd8b3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/39bac6ced7d584136fc705e8dcb80b300ad6b4 b/.git_backup/objects/55/39bac6ced7d584136fc705e8dcb80b300ad6b4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/39e6fb14133bb4a01163b92d2889450a03ab46 b/.git_backup/objects/55/39e6fb14133bb4a01163b92d2889450a03ab46 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/3fcbf4cf4634ce538a7c8d719aea87141672f6 b/.git_backup/objects/55/3fcbf4cf4634ce538a7c8d719aea87141672f6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/44205f6d51dec5f5b765d9f82ca6566d42a331 b/.git_backup/objects/55/44205f6d51dec5f5b765d9f82ca6566d42a331 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/5728b1a0187cc0ac63b8fe45c44bd1e0957918 b/.git_backup/objects/55/5728b1a0187cc0ac63b8fe45c44bd1e0957918 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/5a179fa760f65ca7d2515125e64f8eddcc0e55 b/.git_backup/objects/55/5a179fa760f65ca7d2515125e64f8eddcc0e55 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/5e5f0e26eaf859dab437303401c6fab52fd475 b/.git_backup/objects/55/5e5f0e26eaf859dab437303401c6fab52fd475 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/66cf819d872da041eb045913fd441f472625a5 b/.git_backup/objects/55/66cf819d872da041eb045913fd441f472625a5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/6809adda492b1fa720f5f75d3894f97135942c b/.git_backup/objects/55/6809adda492b1fa720f5f75d3894f97135942c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/69b1f2979b0f028236d7184b67c03ecb4a7386 b/.git_backup/objects/55/69b1f2979b0f028236d7184b67c03ecb4a7386 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/6ae8baafd118f5822f273b852b7599eb497157 b/.git_backup/objects/55/6ae8baafd118f5822f273b852b7599eb497157 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/6b448567edfec62f68298b72c73b3cc5beb0e1 b/.git_backup/objects/55/6b448567edfec62f68298b72c73b3cc5beb0e1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/6ba866933d37f3cfcf8042045d64e209bae30f b/.git_backup/objects/55/6ba866933d37f3cfcf8042045d64e209bae30f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/6dcf46ecd39eabefa6fdb3f78cbf104a3a1c0f b/.git_backup/objects/55/6dcf46ecd39eabefa6fdb3f78cbf104a3a1c0f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/6f252f6871ae830354c1919ba403101a304ebd b/.git_backup/objects/55/6f252f6871ae830354c1919ba403101a304ebd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/6fcd236bf05778ee84b09c827f96e5cd668598 b/.git_backup/objects/55/6fcd236bf05778ee84b09c827f96e5cd668598 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/7aaf56bb471e90cefe46558c19f353677dc27b b/.git_backup/objects/55/7aaf56bb471e90cefe46558c19f353677dc27b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/7e9ff57993408fc24fc99e1e754d5cf0b913e8 b/.git_backup/objects/55/7e9ff57993408fc24fc99e1e754d5cf0b913e8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/81011f6f22a6fcd7779878c360c3f3e28cd7fb b/.git_backup/objects/55/81011f6f22a6fcd7779878c360c3f3e28cd7fb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/81ce1ab656e6fa8dc0d2d9e3cffc1d82efc6f0 b/.git_backup/objects/55/81ce1ab656e6fa8dc0d2d9e3cffc1d82efc6f0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/997e48e60e73187ab13211989519f0665a6339 b/.git_backup/objects/55/997e48e60e73187ab13211989519f0665a6339 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/a2bcf72fad9bfae39f03badf0ae768eb305b85 b/.git_backup/objects/55/a2bcf72fad9bfae39f03badf0ae768eb305b85 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/af8bb43b7f2a50528aeb1fe9ba1f08df04fb5c b/.git_backup/objects/55/af8bb43b7f2a50528aeb1fe9ba1f08df04fb5c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/b06aad1073c90721500d41acda40154d137f5f b/.git_backup/objects/55/b06aad1073c90721500d41acda40154d137f5f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/b17dc37addaa365747c93c766c0fd13698225e b/.git_backup/objects/55/b17dc37addaa365747c93c766c0fd13698225e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/b510762ee9b0ac04776e38f6b4bb46b0d10021 b/.git_backup/objects/55/b510762ee9b0ac04776e38f6b4bb46b0d10021 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/c2208928d0c97932de1b9bf33f2d4baf657e16 b/.git_backup/objects/55/c2208928d0c97932de1b9bf33f2d4baf657e16 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/c861e384d679654b8615d4cb5808f536fd8f2e b/.git_backup/objects/55/c861e384d679654b8615d4cb5808f536fd8f2e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/cbd3c1b3d65630beae47832ffbcc7a6fd43354 b/.git_backup/objects/55/cbd3c1b3d65630beae47832ffbcc7a6fd43354 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/ce2d80ffadabc691a5634ce7ee6a31f227e44f b/.git_backup/objects/55/ce2d80ffadabc691a5634ce7ee6a31f227e44f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/d4627d537397674fe92f91fb2cea5502f4cd16 b/.git_backup/objects/55/d4627d537397674fe92f91fb2cea5502f4cd16 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/dab799c0ae8b184357256530d201335fcbccc9 b/.git_backup/objects/55/dab799c0ae8b184357256530d201335fcbccc9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/daf8e017bc5c164e3cfdad6f80e01ec6cc06b5 b/.git_backup/objects/55/daf8e017bc5c164e3cfdad6f80e01ec6cc06b5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/de3befb923fce23d201d1c81fe3c89a61778db b/.git_backup/objects/55/de3befb923fce23d201d1c81fe3c89a61778db deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/dfa2313ffb152709c58b47c0058567b710d903 b/.git_backup/objects/55/dfa2313ffb152709c58b47c0058567b710d903 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/e45cd4b81348c48bce825c2e05f12e9055fbdd b/.git_backup/objects/55/e45cd4b81348c48bce825c2e05f12e9055fbdd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/f01930ba92ff6852ae4745e78adb5f96c5b057 b/.git_backup/objects/55/f01930ba92ff6852ae4745e78adb5f96c5b057 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/f7116ae27bd6766ee226691021e960768239f7 b/.git_backup/objects/55/f7116ae27bd6766ee226691021e960768239f7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/fa8d286121f42150e1b838706fb51020966bf1 b/.git_backup/objects/55/fa8d286121f42150e1b838706fb51020966bf1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/55/fd042b546ae3c92cca7b2022f9a04951071955 b/.git_backup/objects/55/fd042b546ae3c92cca7b2022f9a04951071955 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/07410910b5fb62eef03cd11848c41131f1bd06 b/.git_backup/objects/56/07410910b5fb62eef03cd11848c41131f1bd06 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/0c5067bc46900c905efd8bf8f2ecf5d77da5e9 b/.git_backup/objects/56/0c5067bc46900c905efd8bf8f2ecf5d77da5e9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/1351523e705ff9e6a2810af60d10521628cbfd b/.git_backup/objects/56/1351523e705ff9e6a2810af60d10521628cbfd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/1411b3550d66686a605380ea245ae33160d2a5 b/.git_backup/objects/56/1411b3550d66686a605380ea245ae33160d2a5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/19944a3d34bed70d039683d3a5872c7c85a10f b/.git_backup/objects/56/19944a3d34bed70d039683d3a5872c7c85a10f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/1a0a50ecdf15d099c10b84272754a021bef5f7 b/.git_backup/objects/56/1a0a50ecdf15d099c10b84272754a021bef5f7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/1d85070208eb365853969941d6369adc1676d7 b/.git_backup/objects/56/1d85070208eb365853969941d6369adc1676d7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/1e1e49c82fa6e723ac9501e191894a602f4d57 b/.git_backup/objects/56/1e1e49c82fa6e723ac9501e191894a602f4d57 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/1fd18f7b408d4756cc22b5f760f6a84eaf78d1 b/.git_backup/objects/56/1fd18f7b408d4756cc22b5f760f6a84eaf78d1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/236e925ca01451a3fdba267131245be20d1973 b/.git_backup/objects/56/236e925ca01451a3fdba267131245be20d1973 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/24b0fe72b0cdb947361e4300d095b38ea05867 b/.git_backup/objects/56/24b0fe72b0cdb947361e4300d095b38ea05867 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/28f301b1950a7d1c828b06ed0509f919f5d8f5 b/.git_backup/objects/56/28f301b1950a7d1c828b06ed0509f919f5d8f5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/2d7fd7252f17b5936e907b049ee780e4d66b6e b/.git_backup/objects/56/2d7fd7252f17b5936e907b049ee780e4d66b6e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/2ffc7b29f9dff99a675983a439b172f628af9d b/.git_backup/objects/56/2ffc7b29f9dff99a675983a439b172f628af9d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/3092212b7f5560d83a2c1c95392fdfad7d7114 b/.git_backup/objects/56/3092212b7f5560d83a2c1c95392fdfad7d7114 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/4223aaa1fb06cc57a614c313b4ab0ef7c19d29 b/.git_backup/objects/56/4223aaa1fb06cc57a614c313b4ab0ef7c19d29 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/4b961bbde947d5e3fe68308dd6a28485fe4b9b b/.git_backup/objects/56/4b961bbde947d5e3fe68308dd6a28485fe4b9b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/4dd2a0d17083b30bb35b5610f8e45cb83eff28 b/.git_backup/objects/56/4dd2a0d17083b30bb35b5610f8e45cb83eff28 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/5e9d960f8604c487e063ad9ed3f6f63027f3b4 b/.git_backup/objects/56/5e9d960f8604c487e063ad9ed3f6f63027f3b4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/5f01c44a52327e74d8dcc87328711fd0ccb503 b/.git_backup/objects/56/5f01c44a52327e74d8dcc87328711fd0ccb503 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/600a2f45ffc0cc2f405dddec1875a16904f90c b/.git_backup/objects/56/600a2f45ffc0cc2f405dddec1875a16904f90c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/681c2aaa57e7d067944ef6f9e8b805f409d74f b/.git_backup/objects/56/681c2aaa57e7d067944ef6f9e8b805f409d74f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/7754b4a3c8c900eac44b1c5db7879d6bc1dcac b/.git_backup/objects/56/7754b4a3c8c900eac44b1c5db7879d6bc1dcac deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/78002ba99fdd44f18f40b1ee2a74436c36adcc b/.git_backup/objects/56/78002ba99fdd44f18f40b1ee2a74436c36adcc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/814b76922924115cbcf61556ff635e7a94c0e2 b/.git_backup/objects/56/814b76922924115cbcf61556ff635e7a94c0e2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/8437f39da94aeb4ae463aa10dff8fe00bbb547 b/.git_backup/objects/56/8437f39da94aeb4ae463aa10dff8fe00bbb547 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/87a2618500476356a3581b3577305c399f836f b/.git_backup/objects/56/87a2618500476356a3581b3577305c399f836f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/8cf3fd1de42e6ef36d885fe379715bd34be637 b/.git_backup/objects/56/8cf3fd1de42e6ef36d885fe379715bd34be637 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/8e4fc634a8aa91913507327733d895947767ef b/.git_backup/objects/56/8e4fc634a8aa91913507327733d895947767ef deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/94ca24aab57c3e6e5cbbad828a50686214b81c b/.git_backup/objects/56/94ca24aab57c3e6e5cbbad828a50686214b81c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/a27783315e3efc2d98a4ba30c9b8c69c1b799b b/.git_backup/objects/56/a27783315e3efc2d98a4ba30c9b8c69c1b799b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/a908a192714d6f353b5a63bb09f88f89e7c547 b/.git_backup/objects/56/a908a192714d6f353b5a63bb09f88f89e7c547 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/af003c59bf58f2d75072f043886606a2935e71 b/.git_backup/objects/56/af003c59bf58f2d75072f043886606a2935e71 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/afd83ce3359da520f0068dc4e9af777b4f30e5 b/.git_backup/objects/56/afd83ce3359da520f0068dc4e9af777b4f30e5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/b2cf95f8438496016e7da651dfb34d71927546 b/.git_backup/objects/56/b2cf95f8438496016e7da651dfb34d71927546 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/b873e2d98031e573aab967ea832124614b00dd b/.git_backup/objects/56/b873e2d98031e573aab967ea832124614b00dd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/cbe62b456878097e60d859bed15304fcf5fdea b/.git_backup/objects/56/cbe62b456878097e60d859bed15304fcf5fdea deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/cecd81a7994df5da25337e459e2be65a8c5f0f b/.git_backup/objects/56/cecd81a7994df5da25337e459e2be65a8c5f0f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/d2975877f092ac62ad403803f6456858affcba b/.git_backup/objects/56/d2975877f092ac62ad403803f6456858affcba deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/d30152eef9df25c682fd631d92a0006f619a92 b/.git_backup/objects/56/d30152eef9df25c682fd631d92a0006f619a92 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/d48945d58524b1fecacfbde3857d993b054c84 b/.git_backup/objects/56/d48945d58524b1fecacfbde3857d993b054c84 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/d592e612eb600b80987e15358250501386c53a b/.git_backup/objects/56/d592e612eb600b80987e15358250501386c53a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/d61edda4ceb7f5758f3b5ab31cdce4c4b86af1 b/.git_backup/objects/56/d61edda4ceb7f5758f3b5ab31cdce4c4b86af1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/dcd58a6e95858f349b3dafe65d1742bb30379d b/.git_backup/objects/56/dcd58a6e95858f349b3dafe65d1742bb30379d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/dd46e5c4e29c502620ca688614ed8230c1bfc2 b/.git_backup/objects/56/dd46e5c4e29c502620ca688614ed8230c1bfc2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/de8106914934643592b308d8af90821b419072 b/.git_backup/objects/56/de8106914934643592b308d8af90821b419072 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/e9321a9c2ba6e1a72c40dce0122a0a352ffe90 b/.git_backup/objects/56/e9321a9c2ba6e1a72c40dce0122a0a352ffe90 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/ef41cfdb3cf4cf6ede5832f72f23a5627d804d b/.git_backup/objects/56/ef41cfdb3cf4cf6ede5832f72f23a5627d804d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/f723d4c880ba43c79c606d1bc6eb624c6ba3b7 b/.git_backup/objects/56/f723d4c880ba43c79c606d1bc6eb624c6ba3b7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/56/ff3b1c02921b948a09b14c8620974a4dc9eaa1 b/.git_backup/objects/56/ff3b1c02921b948a09b14c8620974a4dc9eaa1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/57/04610711fd07af4c39200e14f49fac5d462792 b/.git_backup/objects/57/04610711fd07af4c39200e14f49fac5d462792 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/57/08468939f198e256b5a33f179f6fe70e46497d b/.git_backup/objects/57/08468939f198e256b5a33f179f6fe70e46497d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/57/0921d5526a8e3b13fb45e8380e1bcab08380ac b/.git_backup/objects/57/0921d5526a8e3b13fb45e8380e1bcab08380ac deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/57/0dd3bddba91fae2301478fe7c98fc6a15f147d b/.git_backup/objects/57/0dd3bddba91fae2301478fe7c98fc6a15f147d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/57/172ed6da5446ec41da26e5ce93f1d3618692c3 b/.git_backup/objects/57/172ed6da5446ec41da26e5ce93f1d3618692c3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/57/2065dab160cc0fe85a63fc70efe8d13f6ed01b b/.git_backup/objects/57/2065dab160cc0fe85a63fc70efe8d13f6ed01b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/57/244d9099a39ce54c6dcf17c71311f873178bd2 b/.git_backup/objects/57/244d9099a39ce54c6dcf17c71311f873178bd2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/57/2b352f30e3b1568e0d6e291edec8803ed53fe4 b/.git_backup/objects/57/2b352f30e3b1568e0d6e291edec8803ed53fe4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/57/2bdbaae706129ea3b288167a99bc2fca59caac b/.git_backup/objects/57/2bdbaae706129ea3b288167a99bc2fca59caac deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/57/2be5e2fe29ba978b78c8b65b116b5b54a4d01a b/.git_backup/objects/57/2be5e2fe29ba978b78c8b65b116b5b54a4d01a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/57/3a0099bdb6f03d426e1f8cb419f524c327a3d6 b/.git_backup/objects/57/3a0099bdb6f03d426e1f8cb419f524c327a3d6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/57/3b74e531bb4bfee5e9d417c7fe06edff9862a4 b/.git_backup/objects/57/3b74e531bb4bfee5e9d417c7fe06edff9862a4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/57/3d2bf01ee4400b92cdd0d575833e9925884488 b/.git_backup/objects/57/3d2bf01ee4400b92cdd0d575833e9925884488 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/57/556c2a36ad46b51faa353e25f545d9f19fea40 b/.git_backup/objects/57/556c2a36ad46b51faa353e25f545d9f19fea40 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/57/591df2f5cf807eb443fdb4a79152304aca9361 b/.git_backup/objects/57/591df2f5cf807eb443fdb4a79152304aca9361 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/57/5d3b5f4aa7949ff0c82d2ec042bf0c035ed70b b/.git_backup/objects/57/5d3b5f4aa7949ff0c82d2ec042bf0c035ed70b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/57/619b3324e5a60e220ec896db8311c4635caf8d b/.git_backup/objects/57/619b3324e5a60e220ec896db8311c4635caf8d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/57/63076d2878093971a0ef9870e1cde7f556b18b b/.git_backup/objects/57/63076d2878093971a0ef9870e1cde7f556b18b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/57/66aeb229a1b31378026274c366e8e9e44fd487 b/.git_backup/objects/57/66aeb229a1b31378026274c366e8e9e44fd487 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/57/694becc49b2028f17eac819b80a225ac010795 b/.git_backup/objects/57/694becc49b2028f17eac819b80a225ac010795 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/57/6f16bb2b21a7e0871a7222241ad65e533bb93a b/.git_backup/objects/57/6f16bb2b21a7e0871a7222241ad65e533bb93a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/57/75622d0ef85828b436dffcd21366f7538fc55c b/.git_backup/objects/57/75622d0ef85828b436dffcd21366f7538fc55c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/57/780b6255be034b0c8eface1081af2e1d36d24b b/.git_backup/objects/57/780b6255be034b0c8eface1081af2e1d36d24b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/57/7d69054fe2bf61426f073eca1a6d9db74f96fc b/.git_backup/objects/57/7d69054fe2bf61426f073eca1a6d9db74f96fc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/57/8cbd91599d805d1508157be3a50984d8e0a8e5 b/.git_backup/objects/57/8cbd91599d805d1508157be3a50984d8e0a8e5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/57/97684890882345440b6b4c6cbc7eba1f4e3c93 b/.git_backup/objects/57/97684890882345440b6b4c6cbc7eba1f4e3c93 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/57/99f122b511420eb16d066c31dc218bc4fae110 b/.git_backup/objects/57/99f122b511420eb16d066c31dc218bc4fae110 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/57/a6b214cec84410a0403ea634e65d884e1c9a84 b/.git_backup/objects/57/a6b214cec84410a0403ea634e65d884e1c9a84 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/57/b9f83b4000803a8e07f90319e8401a69d40e51 b/.git_backup/objects/57/b9f83b4000803a8e07f90319e8401a69d40e51 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/57/ba478a9157b5f4af6aa9cfb10a85b770344992 b/.git_backup/objects/57/ba478a9157b5f4af6aa9cfb10a85b770344992 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/57/cec70262526cb00f6929d079559e76b0b3ec00 b/.git_backup/objects/57/cec70262526cb00f6929d079559e76b0b3ec00 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/57/d087958f80b5b3d91b704126be043e98a98d0a b/.git_backup/objects/57/d087958f80b5b3d91b704126be043e98a98d0a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/57/e247e91044e51a2c9a3553eacceb0a8b4daaa6 b/.git_backup/objects/57/e247e91044e51a2c9a3553eacceb0a8b4daaa6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/57/e3d840d59a650ac5bccbad5baeec47d155f0ad b/.git_backup/objects/57/e3d840d59a650ac5bccbad5baeec47d155f0ad deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/57/e6f17898dcd84aa0f446dab8e5d4435e9b11e2 b/.git_backup/objects/57/e6f17898dcd84aa0f446dab8e5d4435e9b11e2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/57/e970f87f5c684463c87d98ac01f0b1bd9956e5 b/.git_backup/objects/57/e970f87f5c684463c87d98ac01f0b1bd9956e5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/57/e98eccea2868d7d9b6e4302ad7003794e84ddc b/.git_backup/objects/57/e98eccea2868d7d9b6e4302ad7003794e84ddc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/57/ecf0699dc8d57a99761154b5e5aded3d6db012 b/.git_backup/objects/57/ecf0699dc8d57a99761154b5e5aded3d6db012 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/57/ee67f4fce128bd9ea407ffc076f42dd0469b2a b/.git_backup/objects/57/ee67f4fce128bd9ea407ffc076f42dd0469b2a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/57/f8bf9da3bca295c15508963c77a870222af0bc b/.git_backup/objects/57/f8bf9da3bca295c15508963c77a870222af0bc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/57/fcbe0c438ddc3b771d775c0e283c388260e3d4 b/.git_backup/objects/57/fcbe0c438ddc3b771d775c0e283c388260e3d4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/57/fd7f9119b04f5197ce86f2418a013cb602651f b/.git_backup/objects/57/fd7f9119b04f5197ce86f2418a013cb602651f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/0e802b49fcb9982727c1868e67a27a958aac02 b/.git_backup/objects/58/0e802b49fcb9982727c1868e67a27a958aac02 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/1243d0563e1740c3421cbbfbb5d41182f80b8c b/.git_backup/objects/58/1243d0563e1740c3421cbbfbb5d41182f80b8c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/134f9b5ba693915cb3774f8b6682ab111be267 b/.git_backup/objects/58/134f9b5ba693915cb3774f8b6682ab111be267 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/15fade0b2d009925f1f52883f04d623c2dda32 b/.git_backup/objects/58/15fade0b2d009925f1f52883f04d623c2dda32 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/1801cd11785d840b0a617b5e72c354ab6be094 b/.git_backup/objects/58/1801cd11785d840b0a617b5e72c354ab6be094 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/19d90fd498ae1daef98fb6f4ea9388939d9d1b b/.git_backup/objects/58/19d90fd498ae1daef98fb6f4ea9388939d9d1b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/1e88661860329c8b2f0b95b670ef0b09017530 b/.git_backup/objects/58/1e88661860329c8b2f0b95b670ef0b09017530 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/2495668c945906ab89dec07473a26275ec6799 b/.git_backup/objects/58/2495668c945906ab89dec07473a26275ec6799 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/289473bbc30e60aa892c9a4553c3daedc27302 b/.git_backup/objects/58/289473bbc30e60aa892c9a4553c3daedc27302 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/2b31093bdbad58f2cb05e27d7be2b3b2750f25 b/.git_backup/objects/58/2b31093bdbad58f2cb05e27d7be2b3b2750f25 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/31b92e5a8b95c06ee627d652d30c0f6441cabf b/.git_backup/objects/58/31b92e5a8b95c06ee627d652d30c0f6441cabf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/33a41d51cc5a071488a1d48d6369cff18753bb b/.git_backup/objects/58/33a41d51cc5a071488a1d48d6369cff18753bb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/33b73c4898bebd77d78f76d0fc8065dd246276 b/.git_backup/objects/58/33b73c4898bebd77d78f76d0fc8065dd246276 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/34f9695ddc582ec001206a69cb96b67b147ea1 b/.git_backup/objects/58/34f9695ddc582ec001206a69cb96b67b147ea1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/48b1c5e382b5d1eea378c018a17b248e1be046 b/.git_backup/objects/58/48b1c5e382b5d1eea378c018a17b248e1be046 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/49c40b37bfb588ff078341eff8457f8a938728 b/.git_backup/objects/58/49c40b37bfb588ff078341eff8457f8a938728 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/57d74c7c073caf26db4ad659738cd4bbb49280 b/.git_backup/objects/58/57d74c7c073caf26db4ad659738cd4bbb49280 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/65347227be8f38b9ab2eb54733baa6ed18c0c6 b/.git_backup/objects/58/65347227be8f38b9ab2eb54733baa6ed18c0c6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/68ea23c7389fa3139988709518dcc273a965fd b/.git_backup/objects/58/68ea23c7389fa3139988709518dcc273a965fd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/6de0faf7a3736357d28100883c63a2a1548dec b/.git_backup/objects/58/6de0faf7a3736357d28100883c63a2a1548dec deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/79701c7da5127e327d15baa7e184bb68233bf8 b/.git_backup/objects/58/79701c7da5127e327d15baa7e184bb68233bf8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/7cc35cae6b16db8397b249a0467ebc98f85d60 b/.git_backup/objects/58/7cc35cae6b16db8397b249a0467ebc98f85d60 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/81754962996460a5900bb211d11411b554a48f b/.git_backup/objects/58/81754962996460a5900bb211d11411b554a48f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/864dfdbfa04ca708e63cc5cb4470342eef3333 b/.git_backup/objects/58/864dfdbfa04ca708e63cc5cb4470342eef3333 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/8a9ba03f9de08b47551d3c608e527eb1be4812 b/.git_backup/objects/58/8a9ba03f9de08b47551d3c608e527eb1be4812 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/a332ace244f3b56f742f1dfe37b0c5fa8413db b/.git_backup/objects/58/a332ace244f3b56f742f1dfe37b0c5fa8413db deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/aab1e312e43a557d90112a126fc4db154d5ad0 b/.git_backup/objects/58/aab1e312e43a557d90112a126fc4db154d5ad0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/ac340bec473ff05d52234ce70cb5364378d3aa b/.git_backup/objects/58/ac340bec473ff05d52234ce70cb5364378d3aa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/b212190aa16eb9f55272a12e830091e019b9f4 b/.git_backup/objects/58/b212190aa16eb9f55272a12e830091e019b9f4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/b70b44eb8036ccf48781c2ab5e9a0194c3d278 b/.git_backup/objects/58/b70b44eb8036ccf48781c2ab5e9a0194c3d278 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/b727764f2a96654709e32e601b4e3c0d4774b6 b/.git_backup/objects/58/b727764f2a96654709e32e601b4e3c0d4774b6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/b7a2a50a9c07308094941e876221cfe4c65df2 b/.git_backup/objects/58/b7a2a50a9c07308094941e876221cfe4c65df2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/c095d697ede213be5c730e305bf1789810ac4a b/.git_backup/objects/58/c095d697ede213be5c730e305bf1789810ac4a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/ce9b17909bbf49fe986378f74dfa2de747e0a7 b/.git_backup/objects/58/ce9b17909bbf49fe986378f74dfa2de747e0a7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/d741c2c69889ea7f93e8fc1c6ac938aefbc244 b/.git_backup/objects/58/d741c2c69889ea7f93e8fc1c6ac938aefbc244 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/da1b8312514e8b75a3dc3cf7d4513c2f6987d1 b/.git_backup/objects/58/da1b8312514e8b75a3dc3cf7d4513c2f6987d1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/df946ca5e85d23a4ce87450c734735f30d2537 b/.git_backup/objects/58/df946ca5e85d23a4ce87450c734735f30d2537 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/e999828e40e1b9bf6771a9b2de09354c815aa1 b/.git_backup/objects/58/e999828e40e1b9bf6771a9b2de09354c815aa1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/eb35420740c423dd13e6a1b13c04165bc9364b b/.git_backup/objects/58/eb35420740c423dd13e6a1b13c04165bc9364b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/eb9d6e10cd24716263d446c42aa24142153d91 b/.git_backup/objects/58/eb9d6e10cd24716263d446c42aa24142153d91 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/ec2291144bed104681a795ca3a11898c1fde7a b/.git_backup/objects/58/ec2291144bed104681a795ca3a11898c1fde7a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/eeab3fd1370fd4227c1eb391c29bd22a3eefb4 b/.git_backup/objects/58/eeab3fd1370fd4227c1eb391c29bd22a3eefb4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/f2d8667d373fafe0c9e23d390c5a3ab33df16a b/.git_backup/objects/58/f2d8667d373fafe0c9e23d390c5a3ab33df16a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/58/fedbd3e4231d6adc6b94398372a5bc1f7a2ffa b/.git_backup/objects/58/fedbd3e4231d6adc6b94398372a5bc1f7a2ffa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/01876cb62ffe803f5f694a164dc2e714ae4b5d b/.git_backup/objects/59/01876cb62ffe803f5f694a164dc2e714ae4b5d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/0e782f22eb01a5f3d71b03ab52242e0a9117ec b/.git_backup/objects/59/0e782f22eb01a5f3d71b03ab52242e0a9117ec deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/223fb3a6192ebc656a66d41ab9dccb617aa3f6 b/.git_backup/objects/59/223fb3a6192ebc656a66d41ab9dccb617aa3f6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/23c3ad9cb9b7ce38360308e964f3d6cc60ce4f b/.git_backup/objects/59/23c3ad9cb9b7ce38360308e964f3d6cc60ce4f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/26f2166ee9db30acd3e7fd7346d09bf38e7c76 b/.git_backup/objects/59/26f2166ee9db30acd3e7fd7346d09bf38e7c76 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/27d6482d3b014ef4ae2a1cee63bc53c685cdc3 b/.git_backup/objects/59/27d6482d3b014ef4ae2a1cee63bc53c685cdc3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/39f71f5540d1486aedb181b06563da2fe28471 b/.git_backup/objects/59/39f71f5540d1486aedb181b06563da2fe28471 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/3bff23edecd3c517c96e119ee777bd4ee1d9d0 b/.git_backup/objects/59/3bff23edecd3c517c96e119ee777bd4ee1d9d0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/3e8c6208ab0bf3aa869de89e213b8aa9f8c071 b/.git_backup/objects/59/3e8c6208ab0bf3aa869de89e213b8aa9f8c071 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/43efa17c1841982ce904607f382baec5cef049 b/.git_backup/objects/59/43efa17c1841982ce904607f382baec5cef049 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/48570178f3e6e79d1ff574241d09d4d8ed78de b/.git_backup/objects/59/48570178f3e6e79d1ff574241d09d4d8ed78de deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/5305f211bd172ec1dfc10c3cf6bab4e92d7fba b/.git_backup/objects/59/5305f211bd172ec1dfc10c3cf6bab4e92d7fba deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/588922a3c34ec390f81e152732d2ddf38bfc9b b/.git_backup/objects/59/588922a3c34ec390f81e152732d2ddf38bfc9b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/593f88a290505d89085598bff5d205ab38db07 b/.git_backup/objects/59/593f88a290505d89085598bff5d205ab38db07 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/62550392fa78514061582e9371c32b9f1d929b b/.git_backup/objects/59/62550392fa78514061582e9371c32b9f1d929b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/642f9ed10f49a3b209a1aad9d694dd71a32a0f b/.git_backup/objects/59/642f9ed10f49a3b209a1aad9d694dd71a32a0f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/682c99e87e5b2bbdbb5248be149ee2e4327c24 b/.git_backup/objects/59/682c99e87e5b2bbdbb5248be149ee2e4327c24 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/69f6a5826e5671f3d7508ec7c8f832762247ea b/.git_backup/objects/59/69f6a5826e5671f3d7508ec7c8f832762247ea deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/6e2afd7239390ff1302f87a642f86ebf113749 b/.git_backup/objects/59/6e2afd7239390ff1302f87a642f86ebf113749 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/72a96d8ded85cc14147ffc1400ec67c3b5a578 b/.git_backup/objects/59/72a96d8ded85cc14147ffc1400ec67c3b5a578 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/74804cda1dd2ad47680ca56063a4444c439034 b/.git_backup/objects/59/74804cda1dd2ad47680ca56063a4444c439034 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/7b21cd6586fa100f5aae20e1542606b916a4dd b/.git_backup/objects/59/7b21cd6586fa100f5aae20e1542606b916a4dd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/7b8bf914d6c65597532f2bc8fd3ddad9da6aea b/.git_backup/objects/59/7b8bf914d6c65597532f2bc8fd3ddad9da6aea deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/7c0dafa8cab0c1e9908de634a8ee17a0ae6621 b/.git_backup/objects/59/7c0dafa8cab0c1e9908de634a8ee17a0ae6621 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/8267103cf218d13121a8d6bef2ce44d25943f1 b/.git_backup/objects/59/8267103cf218d13121a8d6bef2ce44d25943f1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/87d560dc2bbf4788731b20508931386cf8d077 b/.git_backup/objects/59/87d560dc2bbf4788731b20508931386cf8d077 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/89eefeb8ef1bfcb47c5c727d46abff7910a18d b/.git_backup/objects/59/89eefeb8ef1bfcb47c5c727d46abff7910a18d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/8bb4a89b1f3d34c9411f768ec91c78946eb5a9 b/.git_backup/objects/59/8bb4a89b1f3d34c9411f768ec91c78946eb5a9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/8e9d2d15435a138cb215a8fad4c80684f66241 b/.git_backup/objects/59/8e9d2d15435a138cb215a8fad4c80684f66241 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/950918d5de148415b4beccca14851a6c9f97e2 b/.git_backup/objects/59/950918d5de148415b4beccca14851a6c9f97e2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/9663d67b0347211672291ff79fb5a4ecf69aa7 b/.git_backup/objects/59/9663d67b0347211672291ff79fb5a4ecf69aa7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/a01d91b87d4282bede38ade7cc78c0f7552d0e b/.git_backup/objects/59/a01d91b87d4282bede38ade7cc78c0f7552d0e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/a4c438287957f83f7c8d5aa7d8fff438c5d4ff b/.git_backup/objects/59/a4c438287957f83f7c8d5aa7d8fff438c5d4ff deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/bdb85b48d557c457e2d7723fb03519f04e7d54 b/.git_backup/objects/59/bdb85b48d557c457e2d7723fb03519f04e7d54 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/c3ec636ad954a5875bc34c2e2eb46060e6cfd6 b/.git_backup/objects/59/c3ec636ad954a5875bc34c2e2eb46060e6cfd6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/d243c4de4fbb3fa653753e40651a6d0a4f4967 b/.git_backup/objects/59/d243c4de4fbb3fa653753e40651a6d0a4f4967 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/de69d77f8bd4bd0b22da4b875d30a721477f47 b/.git_backup/objects/59/de69d77f8bd4bd0b22da4b875d30a721477f47 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/e2408684a37fef9f4766a7534c8712b3850d26 b/.git_backup/objects/59/e2408684a37fef9f4766a7534c8712b3850d26 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/ea892a5ca94e1ebab5b52f88e2f67bd731c6ce b/.git_backup/objects/59/ea892a5ca94e1ebab5b52f88e2f67bd731c6ce deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/f3759c409a1fb50e632ef5ef613d3fee7af7ef b/.git_backup/objects/59/f3759c409a1fb50e632ef5ef613d3fee7af7ef deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/f5c69ff2bd1cc76f93f6eec0c5ee1ac52867d0 b/.git_backup/objects/59/f5c69ff2bd1cc76f93f6eec0c5ee1ac52867d0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/fbbd7fa5e390bf3386097222e5fbb39e8a58ee b/.git_backup/objects/59/fbbd7fa5e390bf3386097222e5fbb39e8a58ee deleted file mode 100644 index 5dc407b3..00000000 Binary files a/.git_backup/objects/59/fbbd7fa5e390bf3386097222e5fbb39e8a58ee and /dev/null differ diff --git a/.git_backup/objects/59/fc547223973d44faee2e75538fbbc58782df23 b/.git_backup/objects/59/fc547223973d44faee2e75538fbbc58782df23 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/fe51e062cc9f7bec5fd312c10c908d1dcb7c7d b/.git_backup/objects/59/fe51e062cc9f7bec5fd312c10c908d1dcb7c7d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/feccd1507b201139ade1a738eb420e8cbf4b5f b/.git_backup/objects/59/feccd1507b201139ade1a738eb420e8cbf4b5f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/59/ffd13bbecb3eb95c3c8bd5d2ee86724d3be323 b/.git_backup/objects/59/ffd13bbecb3eb95c3c8bd5d2ee86724d3be323 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/068fff30df15abe83e8697cd977ca1469f96e6 b/.git_backup/objects/5a/068fff30df15abe83e8697cd977ca1469f96e6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/0b7f1ca032be1adf8ba91f863e727c5ec6a026 b/.git_backup/objects/5a/0b7f1ca032be1adf8ba91f863e727c5ec6a026 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/0c379c8c2cf1973aa6aa700aaaf20d2ebf9afc b/.git_backup/objects/5a/0c379c8c2cf1973aa6aa700aaaf20d2ebf9afc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/0f0e655a78ebffe9d634d6482732eb1d7c56b1 b/.git_backup/objects/5a/0f0e655a78ebffe9d634d6482732eb1d7c56b1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/1586c6f70612f192804bdea88c901d24e77667 b/.git_backup/objects/5a/1586c6f70612f192804bdea88c901d24e77667 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/16697f56cd23d17a255df122a66ae42f54dbdc b/.git_backup/objects/5a/16697f56cd23d17a255df122a66ae42f54dbdc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/1a8f77b55f31f6fab1b6fc98d06749f5c4de26 b/.git_backup/objects/5a/1a8f77b55f31f6fab1b6fc98d06749f5c4de26 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/216d3c89899c048c1f7284f791d345ae64846e b/.git_backup/objects/5a/216d3c89899c048c1f7284f791d345ae64846e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/21bcad67c330c008154e6ea35e5cc38e858f12 b/.git_backup/objects/5a/21bcad67c330c008154e6ea35e5cc38e858f12 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/25ff2a6afda2cb09b9e147ad20610bc1923444 b/.git_backup/objects/5a/25ff2a6afda2cb09b9e147ad20610bc1923444 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/3bfbb5741c3d8e49ad780996992e4abe99df03 b/.git_backup/objects/5a/3bfbb5741c3d8e49ad780996992e4abe99df03 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/3d730808c20bb0fcd9cd788fd36f1e9099f5a4 b/.git_backup/objects/5a/3d730808c20bb0fcd9cd788fd36f1e9099f5a4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/47b36a2a8d004211110d58f8fd58b22e52784b b/.git_backup/objects/5a/47b36a2a8d004211110d58f8fd58b22e52784b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/5130d40649087cf8a50e1b9e6cf82837cc349a b/.git_backup/objects/5a/5130d40649087cf8a50e1b9e6cf82837cc349a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/7a8c6adc2fd4568a9611cea17d90604e587ae2 b/.git_backup/objects/5a/7a8c6adc2fd4568a9611cea17d90604e587ae2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/7b5b99413eaa248ebb2c5da00030f1f85b6e61 b/.git_backup/objects/5a/7b5b99413eaa248ebb2c5da00030f1f85b6e61 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/7db9858dbad07548a90b8a630b1c7ff73f73eb b/.git_backup/objects/5a/7db9858dbad07548a90b8a630b1c7ff73f73eb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/7eb3f8cfc97e1573d9b640fb4e482a17f6c991 b/.git_backup/objects/5a/7eb3f8cfc97e1573d9b640fb4e482a17f6c991 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/81166393f9e89348ec948943baab1f127a7886 b/.git_backup/objects/5a/81166393f9e89348ec948943baab1f127a7886 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/8c92fe5fd90e51696cc6a0e2029dc8ef769bb6 b/.git_backup/objects/5a/8c92fe5fd90e51696cc6a0e2029dc8ef769bb6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/9576ff29c9968f515030a849f53cb8f2a89393 b/.git_backup/objects/5a/9576ff29c9968f515030a849f53cb8f2a89393 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/9db3e43ef4839d130eccf31091a9a28a464613 b/.git_backup/objects/5a/9db3e43ef4839d130eccf31091a9a28a464613 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/9de802091fd033de571c225a19972cb7fad0d7 b/.git_backup/objects/5a/9de802091fd033de571c225a19972cb7fad0d7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/9e3971a0b297ea21bc0ad4afc199581c0d3d54 b/.git_backup/objects/5a/9e3971a0b297ea21bc0ad4afc199581c0d3d54 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/9e8d65255ae4b45edff27031d9738ba022e6d1 b/.git_backup/objects/5a/9e8d65255ae4b45edff27031d9738ba022e6d1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/a24175285fa11de2c3e9e315e829021a9d7b88 b/.git_backup/objects/5a/a24175285fa11de2c3e9e315e829021a9d7b88 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/bfb0f3c2f872275962732b370fed1202f1144a b/.git_backup/objects/5a/bfb0f3c2f872275962732b370fed1202f1144a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/c1a7f8fdbaf9f312cf0c5d3f9b7a1f276e69b1 b/.git_backup/objects/5a/c1a7f8fdbaf9f312cf0c5d3f9b7a1f276e69b1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/c3e43c523c6af7903b1d0bd5b85f0815d2e359 b/.git_backup/objects/5a/c3e43c523c6af7903b1d0bd5b85f0815d2e359 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/c527972e7b963c1d5bc998ad746422f53d61b1 b/.git_backup/objects/5a/c527972e7b963c1d5bc998ad746422f53d61b1 deleted file mode 100644 index 0cc6e3bc..00000000 Binary files a/.git_backup/objects/5a/c527972e7b963c1d5bc998ad746422f53d61b1 and /dev/null differ diff --git a/.git_backup/objects/5a/c6afbe6d9946205c35052230c96e51707df907 b/.git_backup/objects/5a/c6afbe6d9946205c35052230c96e51707df907 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/c7ab380f98ae3dd94338d8806af01adff5f7e5 b/.git_backup/objects/5a/c7ab380f98ae3dd94338d8806af01adff5f7e5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/c7fc217358b39b5eb239ef80d9e584ba8630fd b/.git_backup/objects/5a/c7fc217358b39b5eb239ef80d9e584ba8630fd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/d09ba36b05c6b5df3f41c10bdfee240a5174fb b/.git_backup/objects/5a/d09ba36b05c6b5df3f41c10bdfee240a5174fb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/d2e51a45bd8d8dd10634969cef034b27bd7413 b/.git_backup/objects/5a/d2e51a45bd8d8dd10634969cef034b27bd7413 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/d6cfe8e4e60385da62bc65c0b9978fdd8bcd29 b/.git_backup/objects/5a/d6cfe8e4e60385da62bc65c0b9978fdd8bcd29 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/d74220e83e6c30a0aeefda4a00271b8ebdfcad b/.git_backup/objects/5a/d74220e83e6c30a0aeefda4a00271b8ebdfcad deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/de356b9c2f3e375bf598635627870f248c0cc3 b/.git_backup/objects/5a/de356b9c2f3e375bf598635627870f248c0cc3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/e1d80589df9a77d2d2abf2414efebbb64601e2 b/.git_backup/objects/5a/e1d80589df9a77d2d2abf2414efebbb64601e2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/e78f53020713ef2263253899b1c1b5e4800998 b/.git_backup/objects/5a/e78f53020713ef2263253899b1c1b5e4800998 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/eed825192b4e0c8790a9b432615d48d7e96454 b/.git_backup/objects/5a/eed825192b4e0c8790a9b432615d48d7e96454 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/f0d171ca0482bb6e1ad73b9b3e7277b635aec9 b/.git_backup/objects/5a/f0d171ca0482bb6e1ad73b9b3e7277b635aec9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/f747efc4de43353734939894ac1b6f2b34ad97 b/.git_backup/objects/5a/f747efc4de43353734939894ac1b6f2b34ad97 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5a/fb7e1fc937e659bd6d2061f88078edd85cd483 b/.git_backup/objects/5a/fb7e1fc937e659bd6d2061f88078edd85cd483 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/0004a3953349afb8e15fda3796de84c999e5b5 b/.git_backup/objects/5b/0004a3953349afb8e15fda3796de84c999e5b5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/07f41c62609255951edcbc56bc818137497e0e b/.git_backup/objects/5b/07f41c62609255951edcbc56bc818137497e0e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/136fd49db713c57e1c746b969075153e7aebbc b/.git_backup/objects/5b/136fd49db713c57e1c746b969075153e7aebbc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/137718ce4621d46edd981750c701bd6029c840 b/.git_backup/objects/5b/137718ce4621d46edd981750c701bd6029c840 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/18c5269e26bad9b73c8c704b750e60615976cc b/.git_backup/objects/5b/18c5269e26bad9b73c8c704b750e60615976cc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/28abd20f21e3c38fd02c3da6d77fdcd1ffcde4 b/.git_backup/objects/5b/28abd20f21e3c38fd02c3da6d77fdcd1ffcde4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/31776301f7b0bf7170ce450a8f8fbbdb6e9b10 b/.git_backup/objects/5b/31776301f7b0bf7170ce450a8f8fbbdb6e9b10 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/3cab7fb59874bed3d4b6a018ebd05f3b40de0d b/.git_backup/objects/5b/3cab7fb59874bed3d4b6a018ebd05f3b40de0d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/3e6de2a4fc391a7aff5fa905ee94da147be23d b/.git_backup/objects/5b/3e6de2a4fc391a7aff5fa905ee94da147be23d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/43ed3c4529f9535a3425cfddda967754e2ef70 b/.git_backup/objects/5b/43ed3c4529f9535a3425cfddda967754e2ef70 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/4dff69c12184fb149a1a7a466e1ca4572ada18 b/.git_backup/objects/5b/4dff69c12184fb149a1a7a466e1ca4572ada18 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/4eeca163077eb2018401a2796744382e6d2200 b/.git_backup/objects/5b/4eeca163077eb2018401a2796744382e6d2200 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/5a9f4dfa8d2e16009fbb13cd863d68fc0b895b b/.git_backup/objects/5b/5a9f4dfa8d2e16009fbb13cd863d68fc0b895b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/5c1608391e06656afc655b2e2dfaf0b55ce144 b/.git_backup/objects/5b/5c1608391e06656afc655b2e2dfaf0b55ce144 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/61d102bd400d93f8c2d9f4229c8989a6b5fb3d b/.git_backup/objects/5b/61d102bd400d93f8c2d9f4229c8989a6b5fb3d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/6387450742ff6056fbc576417564dc753c42e3 b/.git_backup/objects/5b/6387450742ff6056fbc576417564dc753c42e3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/662dbed12382fb28d5542539e09aeab558b5a4 b/.git_backup/objects/5b/662dbed12382fb28d5542539e09aeab558b5a4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/66f8c430d79a8438ad062466a97cf8c00dfb16 b/.git_backup/objects/5b/66f8c430d79a8438ad062466a97cf8c00dfb16 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/68dde6ccbfd35c1ba55b884ebaebfc6d4c7a4d b/.git_backup/objects/5b/68dde6ccbfd35c1ba55b884ebaebfc6d4c7a4d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/6c2e20b0cb650ecb9a2c802df8e12e4f81a013 b/.git_backup/objects/5b/6c2e20b0cb650ecb9a2c802df8e12e4f81a013 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/6ec2626c0cfe1b39c86993d1af0f5daa9137ac b/.git_backup/objects/5b/6ec2626c0cfe1b39c86993d1af0f5daa9137ac deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/6fcc2eb20fd28e26ad0f206b59dcd767fd7ede b/.git_backup/objects/5b/6fcc2eb20fd28e26ad0f206b59dcd767fd7ede deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/6fd8e99b454fa07ccc021c84085892def2cb70 b/.git_backup/objects/5b/6fd8e99b454fa07ccc021c84085892def2cb70 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/757370f28920d2163c744445c83f0a5ee7bf4d b/.git_backup/objects/5b/757370f28920d2163c744445c83f0a5ee7bf4d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/7a4f0b109b64e3a4323549153a402da769406d b/.git_backup/objects/5b/7a4f0b109b64e3a4323549153a402da769406d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/7aed2207e03db150041b350bdbfbf2dcfce244 b/.git_backup/objects/5b/7aed2207e03db150041b350bdbfbf2dcfce244 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/7dadac5d914ecb1ba15f04672f065f49e3d056 b/.git_backup/objects/5b/7dadac5d914ecb1ba15f04672f065f49e3d056 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/7e90fe16d8f9393a59a757e6baae3121e539cb b/.git_backup/objects/5b/7e90fe16d8f9393a59a757e6baae3121e539cb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/80193c1f27ab5368892f59c7d29ca3b9a81a83 b/.git_backup/objects/5b/80193c1f27ab5368892f59c7d29ca3b9a81a83 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/85dd3e9e830452d5b83288d57b9d7641bb0d2b b/.git_backup/objects/5b/85dd3e9e830452d5b83288d57b9d7641bb0d2b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/872e86c1d53d74613fb105a5abf279f75cd2d8 b/.git_backup/objects/5b/872e86c1d53d74613fb105a5abf279f75cd2d8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/8f4b9ecd894f1edfaa08d9fe730b8d7c8b93e0 b/.git_backup/objects/5b/8f4b9ecd894f1edfaa08d9fe730b8d7c8b93e0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/99910a1d53cecba23fe0171097dddbf1802e59 b/.git_backup/objects/5b/99910a1d53cecba23fe0171097dddbf1802e59 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/9ab911a0a060f287d73912c4a776f6d35f3910 b/.git_backup/objects/5b/9ab911a0a060f287d73912c4a776f6d35f3910 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/a4810ac67756c17b0ef3163a496e913c0b5e57 b/.git_backup/objects/5b/a4810ac67756c17b0ef3163a496e913c0b5e57 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/a4ab4408f1194f1d1772c5f177b3f22a2f8def b/.git_backup/objects/5b/a4ab4408f1194f1d1772c5f177b3f22a2f8def deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/ad85fdc1cd08553756d0fb2c7be8b5ad6af7fb b/.git_backup/objects/5b/ad85fdc1cd08553756d0fb2c7be8b5ad6af7fb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/ad8733bc837f5cf57677fa8cf13069808a63fd b/.git_backup/objects/5b/ad8733bc837f5cf57677fa8cf13069808a63fd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/b00410485d70092f61cca40cd7e68f8845612a b/.git_backup/objects/5b/b00410485d70092f61cca40cd7e68f8845612a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/b44715d513bd40b676d2865d4de2697c7d25a8 b/.git_backup/objects/5b/b44715d513bd40b676d2865d4de2697c7d25a8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/b571eba30621627a2f95b954b23fadf9c2b4c2 b/.git_backup/objects/5b/b571eba30621627a2f95b954b23fadf9c2b4c2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/b90fd6a49107a321c35b9cee4a7b810314b51f b/.git_backup/objects/5b/b90fd6a49107a321c35b9cee4a7b810314b51f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/bea41f7778be68f16a653f5c2878d151ed6275 b/.git_backup/objects/5b/bea41f7778be68f16a653f5c2878d151ed6275 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/c1a9a75d80d93ffdf452f23d7948447b725d19 b/.git_backup/objects/5b/c1a9a75d80d93ffdf452f23d7948447b725d19 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/d134fe676d560f232485285036056c71538592 b/.git_backup/objects/5b/d134fe676d560f232485285036056c71538592 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/d13a698739a7de35747753d8b5f6adedb87b70 b/.git_backup/objects/5b/d13a698739a7de35747753d8b5f6adedb87b70 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/d3cf14edfdffb352fa1dde8cb2fc5519282fc0 b/.git_backup/objects/5b/d3cf14edfdffb352fa1dde8cb2fc5519282fc0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/d3e9025b572ffbc508d91bf6e1800972683389 b/.git_backup/objects/5b/d3e9025b572ffbc508d91bf6e1800972683389 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/d58de698aacde9a2e4c4b968f3efe4c87a0a3a b/.git_backup/objects/5b/d58de698aacde9a2e4c4b968f3efe4c87a0a3a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/d6e66fa978a046d091c2d5227663d6bea289bd b/.git_backup/objects/5b/d6e66fa978a046d091c2d5227663d6bea289bd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/d7e67e649d256292fb12b8be6dc9ff88c111ac b/.git_backup/objects/5b/d7e67e649d256292fb12b8be6dc9ff88c111ac deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/de01ee9c3098f57dfa9da5335f1ebafa08f034 b/.git_backup/objects/5b/de01ee9c3098f57dfa9da5335f1ebafa08f034 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/e4ec0db0d130388b87bce5ffde591d18235b57 b/.git_backup/objects/5b/e4ec0db0d130388b87bce5ffde591d18235b57 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/e77823c66a9ca30188b52f1588ce249dbda970 b/.git_backup/objects/5b/e77823c66a9ca30188b52f1588ce249dbda970 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/f2ae16ebea457e6a6e0722f8ba2bf16ac1c804 b/.git_backup/objects/5b/f2ae16ebea457e6a6e0722f8ba2bf16ac1c804 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/f2b49ce59046ae10407afdf456f3770c97e420 b/.git_backup/objects/5b/f2b49ce59046ae10407afdf456f3770c97e420 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/f36b2536bdcf2c625d011b1bc6c337b00ecb00 b/.git_backup/objects/5b/f36b2536bdcf2c625d011b1bc6c337b00ecb00 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/f42b323c26f70008e20b5bf6fd892eebf7358f b/.git_backup/objects/5b/f42b323c26f70008e20b5bf6fd892eebf7358f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/f6c211c19b7cd37107a2e3b317c2a7195c2947 b/.git_backup/objects/5b/f6c211c19b7cd37107a2e3b317c2a7195c2947 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/f7fb743d45fd0000e3715df5551b10794b1084 b/.git_backup/objects/5b/f7fb743d45fd0000e3715df5551b10794b1084 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/fa41a81b3b9eeb3d54a09caf0510ba624ebb5c b/.git_backup/objects/5b/fa41a81b3b9eeb3d54a09caf0510ba624ebb5c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5b/faa0a29d88916fb9520ebcde9800f934b9f330 b/.git_backup/objects/5b/faa0a29d88916fb9520ebcde9800f934b9f330 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5c/05b54d3b62765a5711d68f24149152a347e45f b/.git_backup/objects/5c/05b54d3b62765a5711d68f24149152a347e45f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5c/19acce8037d341bfa9a62a8ce5602d37db0fe5 b/.git_backup/objects/5c/19acce8037d341bfa9a62a8ce5602d37db0fe5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5c/209a581cc5576887fb85b2ac56981ed789cdd6 b/.git_backup/objects/5c/209a581cc5576887fb85b2ac56981ed789cdd6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5c/28ed81b1b49ccad1aab0d739ff11c901a8a95b b/.git_backup/objects/5c/28ed81b1b49ccad1aab0d739ff11c901a8a95b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5c/350628aa65e31530db29dcc49fd10dc91de313 b/.git_backup/objects/5c/350628aa65e31530db29dcc49fd10dc91de313 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5c/3692693bb6d22119f4441601cea20526158938 b/.git_backup/objects/5c/3692693bb6d22119f4441601cea20526158938 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5c/3782ecc028c828ef9c09405634693ef3843514 b/.git_backup/objects/5c/3782ecc028c828ef9c09405634693ef3843514 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5c/3e03e2d87552958036350b4bad65c5e23eecb2 b/.git_backup/objects/5c/3e03e2d87552958036350b4bad65c5e23eecb2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5c/4309f4ab8859bbd92e501feb5b306e013b1dba b/.git_backup/objects/5c/4309f4ab8859bbd92e501feb5b306e013b1dba deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5c/567ae572cbad23d62061aa416d480439d6fdfa b/.git_backup/objects/5c/567ae572cbad23d62061aa416d480439d6fdfa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5c/5c055884f2b6c36874392c8d0546aca0b0466c b/.git_backup/objects/5c/5c055884f2b6c36874392c8d0546aca0b0466c deleted file mode 100644 index a3cbab6b..00000000 Binary files a/.git_backup/objects/5c/5c055884f2b6c36874392c8d0546aca0b0466c and /dev/null differ diff --git a/.git_backup/objects/5c/5c57e4e40f26294e737ea1feb8dbe015b0f083 b/.git_backup/objects/5c/5c57e4e40f26294e737ea1feb8dbe015b0f083 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5c/5f0597bf681a15e76ada7f4224ccbd65331d06 b/.git_backup/objects/5c/5f0597bf681a15e76ada7f4224ccbd65331d06 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5c/5f14398e83cb72d4c7fc74717befbbf80bbfbb b/.git_backup/objects/5c/5f14398e83cb72d4c7fc74717befbbf80bbfbb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5c/6a31fab71d2e874568f119ffd947e2af215e5c b/.git_backup/objects/5c/6a31fab71d2e874568f119ffd947e2af215e5c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5c/6fe30aff5e23067d4e3111d12b909f53e4774c b/.git_backup/objects/5c/6fe30aff5e23067d4e3111d12b909f53e4774c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5c/71cac90d8d97425ba44e694ea5a212217f6659 b/.git_backup/objects/5c/71cac90d8d97425ba44e694ea5a212217f6659 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5c/7311a8596c21edffbc84c03ba6d691c31e4df2 b/.git_backup/objects/5c/7311a8596c21edffbc84c03ba6d691c31e4df2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5c/76523f8072bd1cc05bad1bcf78f695db2d6f3e b/.git_backup/objects/5c/76523f8072bd1cc05bad1bcf78f695db2d6f3e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5c/7a7fc45b5e3de7d4312c9f85350bad184dcbf4 b/.git_backup/objects/5c/7a7fc45b5e3de7d4312c9f85350bad184dcbf4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5c/858b86b46798ef35c48e989b34aa4ccbec90ec b/.git_backup/objects/5c/858b86b46798ef35c48e989b34aa4ccbec90ec deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5c/87ed69cead6f488f787272088b477b77db2d33 b/.git_backup/objects/5c/87ed69cead6f488f787272088b477b77db2d33 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5c/88904fd42e59a8ddbd688d6bc0e4fb4088eb27 b/.git_backup/objects/5c/88904fd42e59a8ddbd688d6bc0e4fb4088eb27 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5c/8d1abeec56bdf8b1f69b220b903a45d6053726 b/.git_backup/objects/5c/8d1abeec56bdf8b1f69b220b903a45d6053726 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5c/8f968489f8c9cc812ec445626f9a2c1556652b b/.git_backup/objects/5c/8f968489f8c9cc812ec445626f9a2c1556652b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5c/93158f50f44a5792c953627b610912b4555bdf b/.git_backup/objects/5c/93158f50f44a5792c953627b610912b4555bdf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5c/9f2e37405a6ee55f11fcce509a2ab53024bc99 b/.git_backup/objects/5c/9f2e37405a6ee55f11fcce509a2ab53024bc99 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5c/a5fd0a722f7ebe8eb2d0b50a11e94b0c52152a b/.git_backup/objects/5c/a5fd0a722f7ebe8eb2d0b50a11e94b0c52152a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5c/af428f15cb345c39d20b8d78870a037796f8a4 b/.git_backup/objects/5c/af428f15cb345c39d20b8d78870a037796f8a4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5c/b7a9725060ebda92edd5c23becdd73d1a0306e b/.git_backup/objects/5c/b7a9725060ebda92edd5c23becdd73d1a0306e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5c/bec953ef591c0788478bcbec2e00936f31cc3b b/.git_backup/objects/5c/bec953ef591c0788478bcbec2e00936f31cc3b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5c/bf628f1a4abe398185f5ae5aab006f6e48fed5 b/.git_backup/objects/5c/bf628f1a4abe398185f5ae5aab006f6e48fed5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5c/ce793ea5e3331881ec93b0d78edca7838e0bb2 b/.git_backup/objects/5c/ce793ea5e3331881ec93b0d78edca7838e0bb2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5c/cf266c93b729b33e8d9f02126150023d2b53f7 b/.git_backup/objects/5c/cf266c93b729b33e8d9f02126150023d2b53f7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5c/d30a21b5e786084ed43987f1878e39eb0924fe b/.git_backup/objects/5c/d30a21b5e786084ed43987f1878e39eb0924fe deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5c/e72915e9ef5be83441a0174e8a885809c22103 b/.git_backup/objects/5c/e72915e9ef5be83441a0174e8a885809c22103 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5c/e98edd76b9c666958723cfc272a1bc118bde91 b/.git_backup/objects/5c/e98edd76b9c666958723cfc272a1bc118bde91 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5c/f6eb1a672b8e140b870f35a6660c9d10a67436 b/.git_backup/objects/5c/f6eb1a672b8e140b870f35a6660c9d10a67436 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5c/f8a85cf0e4dc3f35c62b80b83eede4f5852213 b/.git_backup/objects/5c/f8a85cf0e4dc3f35c62b80b83eede4f5852213 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5c/fac43d285fec6ba3c4e49aa6b1802d3473f468 b/.git_backup/objects/5c/fac43d285fec6ba3c4e49aa6b1802d3473f468 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5d/0abe4c97ad985fd444ede2e8bfc28347a9cc20 b/.git_backup/objects/5d/0abe4c97ad985fd444ede2e8bfc28347a9cc20 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5d/0aeba4aebbc35d2dc7157477d2ca8dfafd00db b/.git_backup/objects/5d/0aeba4aebbc35d2dc7157477d2ca8dfafd00db deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5d/1088f4b7d78b25619aab1a8be7c793c20d2f40 b/.git_backup/objects/5d/1088f4b7d78b25619aab1a8be7c793c20d2f40 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5d/2527899806fd60557b640b0d0bdefaba835901 b/.git_backup/objects/5d/2527899806fd60557b640b0d0bdefaba835901 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5d/2643c20ceb2d15ddd48d15c3b1ee60a71dfd93 b/.git_backup/objects/5d/2643c20ceb2d15ddd48d15c3b1ee60a71dfd93 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5d/275b42b6dd5ba9fd74011c3defc994883cebad b/.git_backup/objects/5d/275b42b6dd5ba9fd74011c3defc994883cebad deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5d/3204f4060efb19e02372001e3b01807edd4474 b/.git_backup/objects/5d/3204f4060efb19e02372001e3b01807edd4474 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5d/34935543b9d63a114946673f6da4d91e4089cd b/.git_backup/objects/5d/34935543b9d63a114946673f6da4d91e4089cd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5d/35d0a250b082811720325ee920f9186045d84b b/.git_backup/objects/5d/35d0a250b082811720325ee920f9186045d84b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5d/3e3b8e23cdb72784a8aaf04183cc3e9c9f6199 b/.git_backup/objects/5d/3e3b8e23cdb72784a8aaf04183cc3e9c9f6199 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5d/3eb792e59c02a0e4c94bb5f31690f6569982f6 b/.git_backup/objects/5d/3eb792e59c02a0e4c94bb5f31690f6569982f6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5d/4705dbe7d7763ccda3b46d6e1a8427c5bace5d b/.git_backup/objects/5d/4705dbe7d7763ccda3b46d6e1a8427c5bace5d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5d/4ee1a4fbe8d367981a070867b52ec608f9001a b/.git_backup/objects/5d/4ee1a4fbe8d367981a070867b52ec608f9001a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5d/5955bbf953a02716ab11a9a28c573681d8c05c b/.git_backup/objects/5d/5955bbf953a02716ab11a9a28c573681d8c05c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5d/64f55387d4f4631bc780f9662fa4ee15c94104 b/.git_backup/objects/5d/64f55387d4f4631bc780f9662fa4ee15c94104 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5d/6a706745dc8cf601575bd62c6463e8cb96839e b/.git_backup/objects/5d/6a706745dc8cf601575bd62c6463e8cb96839e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5d/7bee38006d4e510b841d84df0322dee024b77c b/.git_backup/objects/5d/7bee38006d4e510b841d84df0322dee024b77c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5d/7f5004e47a7cd1b725146aa26f44b11ca92ff3 b/.git_backup/objects/5d/7f5004e47a7cd1b725146aa26f44b11ca92ff3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5d/8317c363fe718f75f5c085520fe6a9135f8272 b/.git_backup/objects/5d/8317c363fe718f75f5c085520fe6a9135f8272 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5d/84ac35e61770eb8b330dd39b8cdd9c7bdb9d74 b/.git_backup/objects/5d/84ac35e61770eb8b330dd39b8cdd9c7bdb9d74 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5d/907f8cff4ac0d59039d094616a2eca3df69fe1 b/.git_backup/objects/5d/907f8cff4ac0d59039d094616a2eca3df69fe1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5d/92b33575bf5ee105331f3d51902eea57d15f69 b/.git_backup/objects/5d/92b33575bf5ee105331f3d51902eea57d15f69 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5d/95975d2545b96d56c7529f8309a58903355bf1 b/.git_backup/objects/5d/95975d2545b96d56c7529f8309a58903355bf1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5d/a831cf8871fe9550e2abffff8d9056082b5a10 b/.git_backup/objects/5d/a831cf8871fe9550e2abffff8d9056082b5a10 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5d/b3082b7498895728f603dd424e17a8313a8519 b/.git_backup/objects/5d/b3082b7498895728f603dd424e17a8313a8519 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5d/b44f90826721aabf0ee05d5c7229cbd461a686 b/.git_backup/objects/5d/b44f90826721aabf0ee05d5c7229cbd461a686 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5d/b5d7f507c1d150e6b36f236df7ee61c0f65581 b/.git_backup/objects/5d/b5d7f507c1d150e6b36f236df7ee61c0f65581 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5d/b7af5536e9b8d55534e305076a93c031bef189 b/.git_backup/objects/5d/b7af5536e9b8d55534e305076a93c031bef189 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5d/bc9ce505aeac35995c007007fec11e18b568eb b/.git_backup/objects/5d/bc9ce505aeac35995c007007fec11e18b568eb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5d/bfcf17dd0e01dc0325dd009340291158906e8d b/.git_backup/objects/5d/bfcf17dd0e01dc0325dd009340291158906e8d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5d/c06b181cb91f8da6374eefe5d5b40a961305ed b/.git_backup/objects/5d/c06b181cb91f8da6374eefe5d5b40a961305ed deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5d/cda6df3206fc722c8cf93718b1499d9b104f08 b/.git_backup/objects/5d/cda6df3206fc722c8cf93718b1499d9b104f08 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5d/d0fef43182f4bb71e242a60817b853f8c92793 b/.git_backup/objects/5d/d0fef43182f4bb71e242a60817b853f8c92793 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5d/d2a5e4545d7ec1c8f958ab9c798cb2dd01330a b/.git_backup/objects/5d/d2a5e4545d7ec1c8f958ab9c798cb2dd01330a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5d/daa0b7b7214d96551695a4a1a60b7c7e9bab74 b/.git_backup/objects/5d/daa0b7b7214d96551695a4a1a60b7c7e9bab74 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5d/dbaa2b8de7dfee21cc72fedcc37adc5ea00d78 b/.git_backup/objects/5d/dbaa2b8de7dfee21cc72fedcc37adc5ea00d78 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5d/f5509d2c49712fe56539f4e366ace9dec68e65 b/.git_backup/objects/5d/f5509d2c49712fe56539f4e366ace9dec68e65 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5d/f662a1d1f119eb45168b421527b58b24e42f92 b/.git_backup/objects/5d/f662a1d1f119eb45168b421527b58b24e42f92 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5d/f954f01c7aad1e6dd211758a2bd6c5163edbda b/.git_backup/objects/5d/f954f01c7aad1e6dd211758a2bd6c5163edbda deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/0ef1af2f3730092fab0f5607d1c0a9b59568b5 b/.git_backup/objects/5e/0ef1af2f3730092fab0f5607d1c0a9b59568b5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/0fbfe3e2e2bf9a53d3b257717131701c4c9afe b/.git_backup/objects/5e/0fbfe3e2e2bf9a53d3b257717131701c4c9afe deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/16fe3e6a2a09d80893b7cb7d77a44e1864b2c5 b/.git_backup/objects/5e/16fe3e6a2a09d80893b7cb7d77a44e1864b2c5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/178dc181ac60faeaf5a714b240964c7b0181a6 b/.git_backup/objects/5e/178dc181ac60faeaf5a714b240964c7b0181a6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/280d3773039fcc312a64b2040eadd1b075396c b/.git_backup/objects/5e/280d3773039fcc312a64b2040eadd1b075396c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/29502cddfa9a9887a93399ab4193fb75dfe605 b/.git_backup/objects/5e/29502cddfa9a9887a93399ab4193fb75dfe605 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/29c79e34a73bdfbbcc2571333bfdd28007e07f b/.git_backup/objects/5e/29c79e34a73bdfbbcc2571333bfdd28007e07f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/30b54950d977c6a893742d6955220c9cdc0584 b/.git_backup/objects/5e/30b54950d977c6a893742d6955220c9cdc0584 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/32a0cbeb46bced2c17ca09ebfc1dc2483f5806 b/.git_backup/objects/5e/32a0cbeb46bced2c17ca09ebfc1dc2483f5806 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/37d5e47829651f2ab2000caa1b0ccd1a95c292 b/.git_backup/objects/5e/37d5e47829651f2ab2000caa1b0ccd1a95c292 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/3dd3d63c4440693ee72baa02800807c7e49c3f b/.git_backup/objects/5e/3dd3d63c4440693ee72baa02800807c7e49c3f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/3e198233698f2b007489dd299cecb87d971067 b/.git_backup/objects/5e/3e198233698f2b007489dd299cecb87d971067 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/42a131cbadf76e39e6bfc0c4f0685930f02830 b/.git_backup/objects/5e/42a131cbadf76e39e6bfc0c4f0685930f02830 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/42dbde4b9f18b58aa50f11037f5c68664e94fc b/.git_backup/objects/5e/42dbde4b9f18b58aa50f11037f5c68664e94fc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/4374c2c5b988412d9c165e639df8b2bb887e7d b/.git_backup/objects/5e/4374c2c5b988412d9c165e639df8b2bb887e7d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/46ca1cef4ac48c551478c2da1e3094168382fb b/.git_backup/objects/5e/46ca1cef4ac48c551478c2da1e3094168382fb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/4b228ba2d32fec8aaeca6454ca8adacf67be2c b/.git_backup/objects/5e/4b228ba2d32fec8aaeca6454ca8adacf67be2c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/4d2e0bd96ee68be03a55d10d004f3d9390668e b/.git_backup/objects/5e/4d2e0bd96ee68be03a55d10d004f3d9390668e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/4e12d4f456af070239b0618643945a94756f7b b/.git_backup/objects/5e/4e12d4f456af070239b0618643945a94756f7b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/52ed74b4d8bfbbec5247fc1eab4ca46548b772 b/.git_backup/objects/5e/52ed74b4d8bfbbec5247fc1eab4ca46548b772 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/5556f3b3d10c6ce291abe17871c3b438b2fe5b b/.git_backup/objects/5e/5556f3b3d10c6ce291abe17871c3b438b2fe5b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/6013bc1ecf88653ba3a2c076028400ff6131f2 b/.git_backup/objects/5e/6013bc1ecf88653ba3a2c076028400ff6131f2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/69802566b12b7cd85f8a8d97eee9e9b2bab608 b/.git_backup/objects/5e/69802566b12b7cd85f8a8d97eee9e9b2bab608 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/70aac10b773600db8f00ac1a002bc409e7fab8 b/.git_backup/objects/5e/70aac10b773600db8f00ac1a002bc409e7fab8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/7af9fe521bd529dd2c1878b0a6e9ea7c57752d b/.git_backup/objects/5e/7af9fe521bd529dd2c1878b0a6e9ea7c57752d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/7be04f3c0291502b50b101db82d299aadc7772 b/.git_backup/objects/5e/7be04f3c0291502b50b101db82d299aadc7772 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/8319212b606dbebf27bfed32c109c00294929e b/.git_backup/objects/5e/8319212b606dbebf27bfed32c109c00294929e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/85f6b52304bbf4a5faee603d64d41923831725 b/.git_backup/objects/5e/85f6b52304bbf4a5faee603d64d41923831725 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/8ae5a3a9ea2087f1b9fffc48c94b41e94eb4c8 b/.git_backup/objects/5e/8ae5a3a9ea2087f1b9fffc48c94b41e94eb4c8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/94579503a37f989f267001ba291e71d7d3881f b/.git_backup/objects/5e/94579503a37f989f267001ba291e71d7d3881f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/94ac901dec5f401d357b3db884087bc174e91b b/.git_backup/objects/5e/94ac901dec5f401d357b3db884087bc174e91b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/9b161a608dc3be1e098589d526c3c5be0d24ac b/.git_backup/objects/5e/9b161a608dc3be1e098589d526c3c5be0d24ac deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/9b52773d279c9663961fbbd4d34d92fa63e28b b/.git_backup/objects/5e/9b52773d279c9663961fbbd4d34d92fa63e28b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/9e43a6b8016c2db44e4cfc4583b29638aa8602 b/.git_backup/objects/5e/9e43a6b8016c2db44e4cfc4583b29638aa8602 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/a174907e05c7a84a74c9b0db8ebf4e9f963f14 b/.git_backup/objects/5e/a174907e05c7a84a74c9b0db8ebf4e9f963f14 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/a48ea947b07cb1e76a4c4930b5693c3084d35e b/.git_backup/objects/5e/a48ea947b07cb1e76a4c4930b5693c3084d35e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/a609ccedf18eb4ab70f8fc6990448eb6407237 b/.git_backup/objects/5e/a609ccedf18eb4ab70f8fc6990448eb6407237 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/b723c80949d0cf2a99603ea6aba4688ade6b21 b/.git_backup/objects/5e/b723c80949d0cf2a99603ea6aba4688ade6b21 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/b7bbb14ec5574c37c4a974747c3fa6635437db b/.git_backup/objects/5e/b7bbb14ec5574c37c4a974747c3fa6635437db deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/b9110f4c60c4d8df951c0da3c2a9f57e153260 b/.git_backup/objects/5e/b9110f4c60c4d8df951c0da3c2a9f57e153260 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/bab965e6f043f9cd5131cb2f0a094ebbf0774e b/.git_backup/objects/5e/bab965e6f043f9cd5131cb2f0a094ebbf0774e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/bdf38ed42e418b0b3d3405fa68f189567979e5 b/.git_backup/objects/5e/bdf38ed42e418b0b3d3405fa68f189567979e5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/be86800521085649dbeb86e7401c948a310ffe b/.git_backup/objects/5e/be86800521085649dbeb86e7401c948a310ffe deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/ccd861071d4eccb76fe0d8f5195bd1a7f646b7 b/.git_backup/objects/5e/ccd861071d4eccb76fe0d8f5195bd1a7f646b7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/ce05649e7268a75c82de6ced552619ffc093ab b/.git_backup/objects/5e/ce05649e7268a75c82de6ced552619ffc093ab deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/d1100ebe65cdf52495019f8cc41c32c087d7de b/.git_backup/objects/5e/d1100ebe65cdf52495019f8cc41c32c087d7de deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/d606bca678c9e9364d1f75f32d202d849865eb b/.git_backup/objects/5e/d606bca678c9e9364d1f75f32d202d849865eb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/dd0810ddeb32fdd3c3f7f54eeeade3f2984db1 b/.git_backup/objects/5e/dd0810ddeb32fdd3c3f7f54eeeade3f2984db1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/e23fe0e59f044598675db44d53c20590b88934 b/.git_backup/objects/5e/e23fe0e59f044598675db44d53c20590b88934 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/e303d88b43c05820edeb31e325216806bbc84e b/.git_backup/objects/5e/e303d88b43c05820edeb31e325216806bbc84e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/e45a2a180244831215d5e5164c98374f39e08c b/.git_backup/objects/5e/e45a2a180244831215d5e5164c98374f39e08c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/e6220203e5425f900fb5a43676c24ea377c2fa b/.git_backup/objects/5e/e6220203e5425f900fb5a43676c24ea377c2fa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/e90e70203d72484b8752475c86139671bcb102 b/.git_backup/objects/5e/e90e70203d72484b8752475c86139671bcb102 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/eac8de1b78d701b5bd8879624f7620d9ea9a03 b/.git_backup/objects/5e/eac8de1b78d701b5bd8879624f7620d9ea9a03 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/eb2249918f82153c3e706b1c01ac840e5a5d6d b/.git_backup/objects/5e/eb2249918f82153c3e706b1c01ac840e5a5d6d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/ed1e7caa6da71e47d2a7fcbdc09a55f4886f20 b/.git_backup/objects/5e/ed1e7caa6da71e47d2a7fcbdc09a55f4886f20 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/f1f10aa33a9219b561d7c334b7ccecb958b42e b/.git_backup/objects/5e/f1f10aa33a9219b561d7c334b7ccecb958b42e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/f39f687b7cdaba18b6872c6bb49b08232cf485 b/.git_backup/objects/5e/f39f687b7cdaba18b6872c6bb49b08232cf485 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/f69e8dd58167d7a39535725cbc8e4e23fded29 b/.git_backup/objects/5e/f69e8dd58167d7a39535725cbc8e4e23fded29 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/fda358b40a5ce1124bab105638fec9a65f3808 b/.git_backup/objects/5e/fda358b40a5ce1124bab105638fec9a65f3808 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5e/fefd62b43e4f11dd300be4355a4b413c7a70d2 b/.git_backup/objects/5e/fefd62b43e4f11dd300be4355a4b413c7a70d2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/03a9a2841198e0b57a8f8c78b35cbd773dd8e7 b/.git_backup/objects/5f/03a9a2841198e0b57a8f8c78b35cbd773dd8e7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/03d6709dfa43c87c1d8c8480a77cb8c3dea51f b/.git_backup/objects/5f/03d6709dfa43c87c1d8c8480a77cb8c3dea51f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/063ca2025d4b79d11f57690670a4843e509b7d b/.git_backup/objects/5f/063ca2025d4b79d11f57690670a4843e509b7d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/07e20de201e0e2ec2dc720758aa7a23c2eb175 b/.git_backup/objects/5f/07e20de201e0e2ec2dc720758aa7a23c2eb175 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/0b049b0783fd311ba5face7fc7960e7cf9d3ec b/.git_backup/objects/5f/0b049b0783fd311ba5face7fc7960e7cf9d3ec deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/10e7e35cc0ade61e4e8fb42622c15ab2d63232 b/.git_backup/objects/5f/10e7e35cc0ade61e4e8fb42622c15ab2d63232 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/1757fe53a9232e5ac5b834958782b258f9fc62 b/.git_backup/objects/5f/1757fe53a9232e5ac5b834958782b258f9fc62 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/1c11289f6a54cb07ebdbf31d02e8e81b18b07f b/.git_backup/objects/5f/1c11289f6a54cb07ebdbf31d02e8e81b18b07f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/200c7a55fd06d9f47866e3a6e149c6f09a3b40 b/.git_backup/objects/5f/200c7a55fd06d9f47866e3a6e149c6f09a3b40 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/22505a2c3e21dc71b9f650981860ba6761650d b/.git_backup/objects/5f/22505a2c3e21dc71b9f650981860ba6761650d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/22e9a7149f1d1745c995912746b3720678cc96 b/.git_backup/objects/5f/22e9a7149f1d1745c995912746b3720678cc96 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/2651eec683c10097fb623728048b64778c87e8 b/.git_backup/objects/5f/2651eec683c10097fb623728048b64778c87e8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/278b09dc818f9567d5fe64fc500666a9d123ca b/.git_backup/objects/5f/278b09dc818f9567d5fe64fc500666a9d123ca deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/2b90a026aaecbdc090b3d3234954ab29fce8ae b/.git_backup/objects/5f/2b90a026aaecbdc090b3d3234954ab29fce8ae deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/300a73d0064cd16015f511be7abca894823667 b/.git_backup/objects/5f/300a73d0064cd16015f511be7abca894823667 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/3706ce64cadf081a6c56abd7ba423575a4abb2 b/.git_backup/objects/5f/3706ce64cadf081a6c56abd7ba423575a4abb2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/403c96d7b3df72f0d77d15c3e230f72bc96c24 b/.git_backup/objects/5f/403c96d7b3df72f0d77d15c3e230f72bc96c24 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/40a1b08236ec0a372dd667e6c4493fde2ef60a b/.git_backup/objects/5f/40a1b08236ec0a372dd667e6c4493fde2ef60a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/4256f2facfa6b8611bba8db6c5b29dc1e92833 b/.git_backup/objects/5f/4256f2facfa6b8611bba8db6c5b29dc1e92833 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/46c6523618264a6cd806e5173960fc5542a4c8 b/.git_backup/objects/5f/46c6523618264a6cd806e5173960fc5542a4c8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/473ce5f90f09b151afefe6bafe4d8c4f443227 b/.git_backup/objects/5f/473ce5f90f09b151afefe6bafe4d8c4f443227 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/4a699aab498ac3d03745ad2fb55f861fd3f164 b/.git_backup/objects/5f/4a699aab498ac3d03745ad2fb55f861fd3f164 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/4fab9e31ba6b50f4fbfd3e409030e530b03edf b/.git_backup/objects/5f/4fab9e31ba6b50f4fbfd3e409030e530b03edf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/5a6635346f335e5c1f2a3707fe88425cb0dbcc b/.git_backup/objects/5f/5a6635346f335e5c1f2a3707fe88425cb0dbcc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/68effdaa1fbfe57ca8a55d6350658ac868c9f3 b/.git_backup/objects/5f/68effdaa1fbfe57ca8a55d6350658ac868c9f3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/69845e85f952eb33bb451163ef73989a78634c b/.git_backup/objects/5f/69845e85f952eb33bb451163ef73989a78634c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/6ed647204f9368ffa7b7f2ad66950450976cd9 b/.git_backup/objects/5f/6ed647204f9368ffa7b7f2ad66950450976cd9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/7dabd622ea9ffb969ad710a0646aaa24053bd6 b/.git_backup/objects/5f/7dabd622ea9ffb969ad710a0646aaa24053bd6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/81c7cf787c0a924913cb31bc93e0106fc92429 b/.git_backup/objects/5f/81c7cf787c0a924913cb31bc93e0106fc92429 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/83c7f9495dfa34540cd0fbdd366c844ab1ca7c b/.git_backup/objects/5f/83c7f9495dfa34540cd0fbdd366c844ab1ca7c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/85cf69de0c0d15e102f6ec12e7220e3b95d810 b/.git_backup/objects/5f/85cf69de0c0d15e102f6ec12e7220e3b95d810 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/872190ef75a4bef30372faa247fc94e954d881 b/.git_backup/objects/5f/872190ef75a4bef30372faa247fc94e954d881 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/8b32d15fb4dc2b75b33fc9609a6b03e124faa7 b/.git_backup/objects/5f/8b32d15fb4dc2b75b33fc9609a6b03e124faa7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/93442cae4f6f4314f9d7a95df91622586d15d2 b/.git_backup/objects/5f/93442cae4f6f4314f9d7a95df91622586d15d2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/9cd78560d4102034b4808e7394044d7093fa54 b/.git_backup/objects/5f/9cd78560d4102034b4808e7394044d7093fa54 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/9dccafeaaf1a37713497291f004eb89ab9ad41 b/.git_backup/objects/5f/9dccafeaaf1a37713497291f004eb89ab9ad41 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/a11e7f8158dac287e03cc012ed505b372717b5 b/.git_backup/objects/5f/a11e7f8158dac287e03cc012ed505b372717b5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/a6d39b2c7c74635f9570c1e1665d03a45024b2 b/.git_backup/objects/5f/a6d39b2c7c74635f9570c1e1665d03a45024b2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/a717507d8e4181639b61dd6599242d35f4018e b/.git_backup/objects/5f/a717507d8e4181639b61dd6599242d35f4018e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/ac0a1013bcfa56b289a777e54c28ffc15d5dce b/.git_backup/objects/5f/ac0a1013bcfa56b289a777e54c28ffc15d5dce deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/ad7912fbaac2ac1564ff3faa0a094b1702478b b/.git_backup/objects/5f/ad7912fbaac2ac1564ff3faa0a094b1702478b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/b4a82f0f13828524c992edcef0cc3f1f98d2c1 b/.git_backup/objects/5f/b4a82f0f13828524c992edcef0cc3f1f98d2c1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/bce5d92693cd82020943244535c6b06026a643 b/.git_backup/objects/5f/bce5d92693cd82020943244535c6b06026a643 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/be60bb0c50f0b6ec36eb02b125e9e9bf0f81dd b/.git_backup/objects/5f/be60bb0c50f0b6ec36eb02b125e9e9bf0f81dd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/cd61f2b4f110a60eeab2899e46c2cd53ed553d b/.git_backup/objects/5f/cd61f2b4f110a60eeab2899e46c2cd53ed553d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/db8bcb275fdb0634255f0f709cb3e70d09c11b b/.git_backup/objects/5f/db8bcb275fdb0634255f0f709cb3e70d09c11b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/dcd39d8d2a3e0c55e190675c75e749b531aa39 b/.git_backup/objects/5f/dcd39d8d2a3e0c55e190675c75e749b531aa39 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/e7c4dc8545a5c8f5a8343a2c0bd3cb9eafc0ec b/.git_backup/objects/5f/e7c4dc8545a5c8f5a8343a2c0bd3cb9eafc0ec deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/eac02d87f4789c316b5efc5bd1f001bccda42d b/.git_backup/objects/5f/eac02d87f4789c316b5efc5bd1f001bccda42d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/eac636f5e6128b741923e939e8d4e07f6572f1 b/.git_backup/objects/5f/eac636f5e6128b741923e939e8d4e07f6572f1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/5f/f37d857abcb446701fb6dbacfabf88482e642b b/.git_backup/objects/5f/f37d857abcb446701fb6dbacfabf88482e642b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/60/0afaf1f3bd4be3c3f2cc226dd9014fd5622540 b/.git_backup/objects/60/0afaf1f3bd4be3c3f2cc226dd9014fd5622540 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/60/1da1cc9deceba3826946f1a5a53744a33eb806 b/.git_backup/objects/60/1da1cc9deceba3826946f1a5a53744a33eb806 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/60/229549383860289ce358185e2b2a9004d141a5 b/.git_backup/objects/60/229549383860289ce358185e2b2a9004d141a5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/60/23a20b1374a11a1eafb719c846a48c42f9aad6 b/.git_backup/objects/60/23a20b1374a11a1eafb719c846a48c42f9aad6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/60/243c04cff8c257ee92946b1f8357d1183404e9 b/.git_backup/objects/60/243c04cff8c257ee92946b1f8357d1183404e9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/60/25035a6cead6b0e359dbe09fd286e19d87090f b/.git_backup/objects/60/25035a6cead6b0e359dbe09fd286e19d87090f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/60/2b1db6e64adf17fb4fb164956bbd34ad949be3 b/.git_backup/objects/60/2b1db6e64adf17fb4fb164956bbd34ad949be3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/60/2b74e7bc437ee4fdfbc375280f423700caa49e b/.git_backup/objects/60/2b74e7bc437ee4fdfbc375280f423700caa49e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/60/2e4fbdaa26bbb8d95ce78d1f48dbbfa883e7e9 b/.git_backup/objects/60/2e4fbdaa26bbb8d95ce78d1f48dbbfa883e7e9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/60/32b20f0d4f560e50e9de67f30489c963a69518 b/.git_backup/objects/60/32b20f0d4f560e50e9de67f30489c963a69518 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/60/3525694cc307d47412717c4c2f85ddc960897b b/.git_backup/objects/60/3525694cc307d47412717c4c2f85ddc960897b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/60/3b40f82b625c0127406bc9f1efcc86c5481845 b/.git_backup/objects/60/3b40f82b625c0127406bc9f1efcc86c5481845 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/60/3dad7427d7dff351a2e5da64c77d7f62dcbe09 b/.git_backup/objects/60/3dad7427d7dff351a2e5da64c77d7f62dcbe09 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/60/45ea02b0010edf5d3239af4db6a6e52b3e2623 b/.git_backup/objects/60/45ea02b0010edf5d3239af4db6a6e52b3e2623 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/60/4788ba91633dfa2522d099d4daea3f4aff52eb b/.git_backup/objects/60/4788ba91633dfa2522d099d4daea3f4aff52eb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/60/4ac8fde3b566bea2997895f8dd2709d40ec7e2 b/.git_backup/objects/60/4ac8fde3b566bea2997895f8dd2709d40ec7e2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/60/5c80483b77fd4efa6f48ab8fd1bc6abd12e5a4 b/.git_backup/objects/60/5c80483b77fd4efa6f48ab8fd1bc6abd12e5a4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/60/66c1e30f69b76afdb8d251ecefd8cd9e1acde5 b/.git_backup/objects/60/66c1e30f69b76afdb8d251ecefd8cd9e1acde5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/60/67b31354d747b6cae73515056f0b87ae9d0d2e b/.git_backup/objects/60/67b31354d747b6cae73515056f0b87ae9d0d2e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/60/7186ee9236ca1c2b35d547c00a635b85583d15 b/.git_backup/objects/60/7186ee9236ca1c2b35d547c00a635b85583d15 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/60/77566a00433151f6115242e768c7194c304a6e b/.git_backup/objects/60/77566a00433151f6115242e768c7194c304a6e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/60/8708e49f1c7288aae60a380f6fd518f0b7b3a8 b/.git_backup/objects/60/8708e49f1c7288aae60a380f6fd518f0b7b3a8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/60/8dda283abc993a34795ee0a8a6280c9db8a039 b/.git_backup/objects/60/8dda283abc993a34795ee0a8a6280c9db8a039 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/60/933131f8a2a5b5bdc8cf1b348b962a710c5fc6 b/.git_backup/objects/60/933131f8a2a5b5bdc8cf1b348b962a710c5fc6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/60/94de157b66dce952bfff0d92f17ab42899e232 b/.git_backup/objects/60/94de157b66dce952bfff0d92f17ab42899e232 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/60/9eaa6b3727add595a60c030da2eb4fedb8cde1 b/.git_backup/objects/60/9eaa6b3727add595a60c030da2eb4fedb8cde1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/60/a391c01a184c6938e45d26cc7db7e9c2d10f78 b/.git_backup/objects/60/a391c01a184c6938e45d26cc7db7e9c2d10f78 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/60/aa2a0d695ba577ff87624d479f1eb25c8f1caf b/.git_backup/objects/60/aa2a0d695ba577ff87624d479f1eb25c8f1caf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/60/b0cc52c2dc140b0e2f20de27419a4980980e2f b/.git_backup/objects/60/b0cc52c2dc140b0e2f20de27419a4980980e2f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/60/b1f46b909251103f99dec8d65bec01ddd3b995 b/.git_backup/objects/60/b1f46b909251103f99dec8d65bec01ddd3b995 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/60/b2489005f48aaa760a6b6c51a853481fa29315 b/.git_backup/objects/60/b2489005f48aaa760a6b6c51a853481fa29315 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/60/bdc923ba74528cdc21c7eb9f9a81b44b44a9d2 b/.git_backup/objects/60/bdc923ba74528cdc21c7eb9f9a81b44b44a9d2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/60/c4cc1db0f53b53b62ff2a2bd4143716f24270c b/.git_backup/objects/60/c4cc1db0f53b53b62ff2a2bd4143716f24270c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/60/ca35d77f262091f2aff014370c74c74d16f7f6 b/.git_backup/objects/60/ca35d77f262091f2aff014370c74c74d16f7f6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/60/d2051812f02a49c385411f4e009b76bdac49ea b/.git_backup/objects/60/d2051812f02a49c385411f4e009b76bdac49ea deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/60/d8cb54c19ebba996fee707fee0681e5463d0b3 b/.git_backup/objects/60/d8cb54c19ebba996fee707fee0681e5463d0b3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/60/dec5b8adfc8901a8e03e69ec0f20cdd614e0b6 b/.git_backup/objects/60/dec5b8adfc8901a8e03e69ec0f20cdd614e0b6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/60/e0c72fb6be111a2d495d795aed2faa6443b5a1 b/.git_backup/objects/60/e0c72fb6be111a2d495d795aed2faa6443b5a1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/60/ea7ad64830ace0eb7c2b46c845ec5eb2bf365b b/.git_backup/objects/60/ea7ad64830ace0eb7c2b46c845ec5eb2bf365b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/60/fa8f1a0c08332d1d1bafec2f6ba3f197aae0d0 b/.git_backup/objects/60/fa8f1a0c08332d1d1bafec2f6ba3f197aae0d0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/60/fb7df618d314f360d004465b389fd37866b524 b/.git_backup/objects/60/fb7df618d314f360d004465b389fd37866b524 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/61/0ce4187f7fc845c46a614e627abb18510da543 b/.git_backup/objects/61/0ce4187f7fc845c46a614e627abb18510da543 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/61/0e7af5fc13d9784de30d272c7c39d7938873a0 b/.git_backup/objects/61/0e7af5fc13d9784de30d272c7c39d7938873a0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/61/10a774795fab67a78c829aed2c7a07bf0e05d3 b/.git_backup/objects/61/10a774795fab67a78c829aed2c7a07bf0e05d3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/61/16c34f238e2669e386fca649e81798b2f73be3 b/.git_backup/objects/61/16c34f238e2669e386fca649e81798b2f73be3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/61/18a045889fe9cfb4df8e6d2361979299499e25 b/.git_backup/objects/61/18a045889fe9cfb4df8e6d2361979299499e25 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/61/1cec552867a6d50b7edd700c86c7396d906ea2 b/.git_backup/objects/61/1cec552867a6d50b7edd700c86c7396d906ea2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/61/1fdebfba23c5f079086ed04364fc7b45d28569 b/.git_backup/objects/61/1fdebfba23c5f079086ed04364fc7b45d28569 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/61/398af6cb6b47141df9bea4c885908bdc91396b b/.git_backup/objects/61/398af6cb6b47141df9bea4c885908bdc91396b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/61/405ac867957d5f631635cc2d8b5652f5455c29 b/.git_backup/objects/61/405ac867957d5f631635cc2d8b5652f5455c29 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/61/414c7627abe8153aaac3719f22bf697d91e2a3 b/.git_backup/objects/61/414c7627abe8153aaac3719f22bf697d91e2a3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/61/57ae5e36776503213c02f6d9b4b01c49790a36 b/.git_backup/objects/61/57ae5e36776503213c02f6d9b4b01c49790a36 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/61/58ae7128fd42302bc51630065e8167731cf2d9 b/.git_backup/objects/61/58ae7128fd42302bc51630065e8167731cf2d9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/61/702092cacdac9f6ee84493c8dc252ec4ccdf20 b/.git_backup/objects/61/702092cacdac9f6ee84493c8dc252ec4ccdf20 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/61/78b39c5502a8b96cf92988f5fb78e3f9e8ffa3 b/.git_backup/objects/61/78b39c5502a8b96cf92988f5fb78e3f9e8ffa3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/61/7a4134e556774953a56d10a2f8f211b15a605f b/.git_backup/objects/61/7a4134e556774953a56d10a2f8f211b15a605f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/61/7b03dff226bbda8a21cc360f6a876f5005aacd b/.git_backup/objects/61/7b03dff226bbda8a21cc360f6a876f5005aacd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/61/7dfc694741e5ed4d19f5fd8db3635005a7473d b/.git_backup/objects/61/7dfc694741e5ed4d19f5fd8db3635005a7473d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/61/83dc2784a78cced397e5bec4d3505122b9de53 b/.git_backup/objects/61/83dc2784a78cced397e5bec4d3505122b9de53 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/61/851cdbe6b0d7bcc26a7c9ece68def1607a9b9b b/.git_backup/objects/61/851cdbe6b0d7bcc26a7c9ece68def1607a9b9b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/61/87894e8449fdb320b410a1e8550b6775284a75 b/.git_backup/objects/61/87894e8449fdb320b410a1e8550b6775284a75 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/61/89114f8c44131397e90d8f98b5895d104246e0 b/.git_backup/objects/61/89114f8c44131397e90d8f98b5895d104246e0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/61/8b42d6694221710bbe3de2965c14ab277879d5 b/.git_backup/objects/61/8b42d6694221710bbe3de2965c14ab277879d5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/61/8f17334d06e3270174b1fcf203f9b0a14fdb36 b/.git_backup/objects/61/8f17334d06e3270174b1fcf203f9b0a14fdb36 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/61/9a1259670a361ac76ffa86c481a813dbaec07a b/.git_backup/objects/61/9a1259670a361ac76ffa86c481a813dbaec07a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/61/9f88dee6de75b57b08dcbb68ee22c1ae26483c b/.git_backup/objects/61/9f88dee6de75b57b08dcbb68ee22c1ae26483c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/61/a56674d584f216acfab311ad4a63110863c1f3 b/.git_backup/objects/61/a56674d584f216acfab311ad4a63110863c1f3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/61/ab1270cdb7e5fa080c5ebffe4158db2f8c66f1 b/.git_backup/objects/61/ab1270cdb7e5fa080c5ebffe4158db2f8c66f1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/61/ab94cbc49214fa93c07bc73c92369a6280fdc2 b/.git_backup/objects/61/ab94cbc49214fa93c07bc73c92369a6280fdc2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/61/b1ac66e5efaa6c05fe0f865fc55fbbd3592a98 b/.git_backup/objects/61/b1ac66e5efaa6c05fe0f865fc55fbbd3592a98 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/61/c24ea73138d9938d5e22f19a47c893df232032 b/.git_backup/objects/61/c24ea73138d9938d5e22f19a47c893df232032 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/61/c253b782e3207e5ff2858f395d5ba6184b7152 b/.git_backup/objects/61/c253b782e3207e5ff2858f395d5ba6184b7152 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/61/c754f0cc7f82c03d54603b9a5a96e5e279f893 b/.git_backup/objects/61/c754f0cc7f82c03d54603b9a5a96e5e279f893 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/61/cea564e60e36556c498dad1fdfa3dec91b1d07 b/.git_backup/objects/61/cea564e60e36556c498dad1fdfa3dec91b1d07 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/61/cf37056501cd565dc4b5896f004ccbcb4e6b44 b/.git_backup/objects/61/cf37056501cd565dc4b5896f004ccbcb4e6b44 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/61/d56df485ab1869a7cd42607525489fb7e9d3b7 b/.git_backup/objects/61/d56df485ab1869a7cd42607525489fb7e9d3b7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/61/e1518adf8c15c8703c8642dc0976d3cf737392 b/.git_backup/objects/61/e1518adf8c15c8703c8642dc0976d3cf737392 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/61/e17f2b5697fd42477f1acb30411c5ab1ba83c3 b/.git_backup/objects/61/e17f2b5697fd42477f1acb30411c5ab1ba83c3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/61/ea72a93a4609ff456306992ad4becc453d99ae b/.git_backup/objects/61/ea72a93a4609ff456306992ad4becc453d99ae deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/61/ec8e3105a77afe55b9ae5ed0c782bb448d3fec b/.git_backup/objects/61/ec8e3105a77afe55b9ae5ed0c782bb448d3fec deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/61/ee2df5d6d9f0e7e31bf0d3076650287eb39060 b/.git_backup/objects/61/ee2df5d6d9f0e7e31bf0d3076650287eb39060 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/61/f19583b24bfe0b6002545eba7d4263a241ba18 b/.git_backup/objects/61/f19583b24bfe0b6002545eba7d4263a241ba18 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/024603c9492ea2e99f598e962eea6160818d85 b/.git_backup/objects/62/024603c9492ea2e99f598e962eea6160818d85 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/066318b74dcc5c32bcd24b9493fb34d1ce52d7 b/.git_backup/objects/62/066318b74dcc5c32bcd24b9493fb34d1ce52d7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/07b886b95c71569d56d28028d856bc9d63ac91 b/.git_backup/objects/62/07b886b95c71569d56d28028d856bc9d63ac91 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/0f529b522aef9825187c56e032fa164bee187a b/.git_backup/objects/62/0f529b522aef9825187c56e032fa164bee187a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/14693f22975d2912d0d7966b73002062be1959 b/.git_backup/objects/62/14693f22975d2912d0d7966b73002062be1959 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/155b543b1346fb2c57e6975a3326c5af7d75e4 b/.git_backup/objects/62/155b543b1346fb2c57e6975a3326c5af7d75e4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/16692fca52b24f07d02ff001b494364352fa3c b/.git_backup/objects/62/16692fca52b24f07d02ff001b494364352fa3c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/247a09fb0e614ef3370b7588826ee3652b6ff4 b/.git_backup/objects/62/247a09fb0e614ef3370b7588826ee3652b6ff4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/30c8ddacc2c6cb651e158a22df8b0fed5fb242 b/.git_backup/objects/62/30c8ddacc2c6cb651e158a22df8b0fed5fb242 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/31529d85e5b30ad4c2d49aee1fe497b52ad066 b/.git_backup/objects/62/31529d85e5b30ad4c2d49aee1fe497b52ad066 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/391506440256f453564058ffd98812ff395333 b/.git_backup/objects/62/391506440256f453564058ffd98812ff395333 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/3d3690f252a0cdba270b4f5cb6a8c04d21c426 b/.git_backup/objects/62/3d3690f252a0cdba270b4f5cb6a8c04d21c426 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/48e0ee0e18686e681e70bd01d50ab58f666c16 b/.git_backup/objects/62/48e0ee0e18686e681e70bd01d50ab58f666c16 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/4a7ac026f6d304c513902ca7aca015fbffba12 b/.git_backup/objects/62/4a7ac026f6d304c513902ca7aca015fbffba12 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/4ac50c186a71b79e252c87e08077716a7cef06 b/.git_backup/objects/62/4ac50c186a71b79e252c87e08077716a7cef06 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/4e56720eac8f9fe305fd917a2674bca782a1f9 b/.git_backup/objects/62/4e56720eac8f9fe305fd917a2674bca782a1f9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/515c07ab344429b3653f8a2a093737748fbe10 b/.git_backup/objects/62/515c07ab344429b3653f8a2a093737748fbe10 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/52943b385de913a6d1c415e40e6481b7622690 b/.git_backup/objects/62/52943b385de913a6d1c415e40e6481b7622690 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/537d37a8c1144c20cde00ff7cd3a60c9b700d4 b/.git_backup/objects/62/537d37a8c1144c20cde00ff7cd3a60c9b700d4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/547c02af947da1221f9e9c7830ea378f338d23 b/.git_backup/objects/62/547c02af947da1221f9e9c7830ea378f338d23 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/6428a8db10ff8ad1ae3091d1c96f96b7752ad7 b/.git_backup/objects/62/6428a8db10ff8ad1ae3091d1c96f96b7752ad7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/650b4ef42a352fc93c48b5849d2cf5b9f4ea2c b/.git_backup/objects/62/650b4ef42a352fc93c48b5849d2cf5b9f4ea2c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/661f5e46666eb759652182769a119c606ad4a0 b/.git_backup/objects/62/661f5e46666eb759652182769a119c606ad4a0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/663c8c6b810c05a65fd23d4ccd6d11769194ba b/.git_backup/objects/62/663c8c6b810c05a65fd23d4ccd6d11769194ba deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/732402dbeea97e13500ff9f2d11e6572aeb7b7 b/.git_backup/objects/62/732402dbeea97e13500ff9f2d11e6572aeb7b7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/73aa0c18f33ce33d0d8a6a9fa1d79972e57f99 b/.git_backup/objects/62/73aa0c18f33ce33d0d8a6a9fa1d79972e57f99 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/79ec75ec05e0a7d243d6ba10c05e382889fa34 b/.git_backup/objects/62/79ec75ec05e0a7d243d6ba10c05e382889fa34 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/7ba571a37826e13c99c7cea84038e0f57fd24c b/.git_backup/objects/62/7ba571a37826e13c99c7cea84038e0f57fd24c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/7d75acfb76311186431a7cbdc7ac83a68d41b4 b/.git_backup/objects/62/7d75acfb76311186431a7cbdc7ac83a68d41b4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/845287ba83a8dc66135b4b1ce7cc03833ec1b5 b/.git_backup/objects/62/845287ba83a8dc66135b4b1ce7cc03833ec1b5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/90b7a07a52d2013c740c2c47244ddadc9cc08a b/.git_backup/objects/62/90b7a07a52d2013c740c2c47244ddadc9cc08a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/96437a948f5cff90563227eceb3e4b3b549ae2 b/.git_backup/objects/62/96437a948f5cff90563227eceb3e4b3b549ae2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/9dcd817201acd733e53ec29a1943da621b94d4 b/.git_backup/objects/62/9dcd817201acd733e53ec29a1943da621b94d4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/a5523125b58dcddb78b97da6d2f67fc15b5cca b/.git_backup/objects/62/a5523125b58dcddb78b97da6d2f67fc15b5cca deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/aa2fca9e5661a1ed116a9388a81d201bba6d42 b/.git_backup/objects/62/aa2fca9e5661a1ed116a9388a81d201bba6d42 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/b0a7005e06c4bd700c76c0607ea303151a4cb1 b/.git_backup/objects/62/b0a7005e06c4bd700c76c0607ea303151a4cb1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/b8c59ba8855b2ef4273a33b475b2e16b7b3d1b b/.git_backup/objects/62/b8c59ba8855b2ef4273a33b475b2e16b7b3d1b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/bd79004a114f7665131f7a2632a834ccd72a85 b/.git_backup/objects/62/bd79004a114f7665131f7a2632a834ccd72a85 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/bdc9ef33ece8fd129d7e976b122129d1d99393 b/.git_backup/objects/62/bdc9ef33ece8fd129d7e976b122129d1d99393 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/bdcac14db3f464ff561e32db2c6b55c0cb1866 b/.git_backup/objects/62/bdcac14db3f464ff561e32db2c6b55c0cb1866 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/c38803697088dcd50c79190059c6c81334987c b/.git_backup/objects/62/c38803697088dcd50c79190059c6c81334987c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/c9a5b943cb768c9270a04d1dbf36d526a4e6e8 b/.git_backup/objects/62/c9a5b943cb768c9270a04d1dbf36d526a4e6e8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/cb82807aa7b34bd882332316ee154753e55273 b/.git_backup/objects/62/cb82807aa7b34bd882332316ee154753e55273 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/cbfc8fefcb93ba95eae5857dcf984e269128b3 b/.git_backup/objects/62/cbfc8fefcb93ba95eae5857dcf984e269128b3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/cd8bf3c2334e0c3d690046166a4b82033ca182 b/.git_backup/objects/62/cd8bf3c2334e0c3d690046166a4b82033ca182 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/cde3221e959dbdf4a00869d304fb680a44ac12 b/.git_backup/objects/62/cde3221e959dbdf4a00869d304fb680a44ac12 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/cf634d12e306f5c1697501d8b3c93790f44cb8 b/.git_backup/objects/62/cf634d12e306f5c1697501d8b3c93790f44cb8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/d7535159f139393201d604450ca122b8329961 b/.git_backup/objects/62/d7535159f139393201d604450ca122b8329961 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/d7635c32c8d083f86743275dd1cf8750888e90 b/.git_backup/objects/62/d7635c32c8d083f86743275dd1cf8750888e90 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/e31c0e4671564af0359dea92ea4064a74778ff b/.git_backup/objects/62/e31c0e4671564af0359dea92ea4064a74778ff deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/e4710151e0571b01c4857065c4918ab357b0c4 b/.git_backup/objects/62/e4710151e0571b01c4857065c4918ab357b0c4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/ea0be81a4596bd60332728ab191d16beaee1b7 b/.git_backup/objects/62/ea0be81a4596bd60332728ab191d16beaee1b7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/ea2a7836db2de73f28a8dff4c6e9f8a0a96594 b/.git_backup/objects/62/ea2a7836db2de73f28a8dff4c6e9f8a0a96594 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/eb978430807555f3dde8cecf9e1a2bfc0c5d5e b/.git_backup/objects/62/eb978430807555f3dde8cecf9e1a2bfc0c5d5e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/ee5ce04470ff65ace727b8b8108bd1251b67b3 b/.git_backup/objects/62/ee5ce04470ff65ace727b8b8108bd1251b67b3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/f888e629ec69f84d3fcc42ffdacb7159d316cc b/.git_backup/objects/62/f888e629ec69f84d3fcc42ffdacb7159d316cc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/fb982e9c34ca4a8e3586b7728ff983b00f4937 b/.git_backup/objects/62/fb982e9c34ca4a8e3586b7728ff983b00f4937 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/62/fd93026d5e2ce4beb91c036fe4c144a3d8d8fa b/.git_backup/objects/62/fd93026d5e2ce4beb91c036fe4c144a3d8d8fa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/00dfc57f051e461776b82591471c7dc7fc486d b/.git_backup/objects/63/00dfc57f051e461776b82591471c7dc7fc486d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/0122ddf3fb15baf0366b8e01b15c638a648424 b/.git_backup/objects/63/0122ddf3fb15baf0366b8e01b15c638a648424 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/04e4a84ed8a87feb978fd480b1354d6daaa436 b/.git_backup/objects/63/04e4a84ed8a87feb978fd480b1354d6daaa436 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/059b84476749119f44ebefda795f85f6ab27d7 b/.git_backup/objects/63/059b84476749119f44ebefda795f85f6ab27d7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/0bb8d23d2a0cae74019078c5131464173a44d8 b/.git_backup/objects/63/0bb8d23d2a0cae74019078c5131464173a44d8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/10c0247dd9b35f2a9a2234f4fbf2bb3a2cb50c b/.git_backup/objects/63/10c0247dd9b35f2a9a2234f4fbf2bb3a2cb50c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/14e478e5d8938e755114d1132e7fc95a3d23ac b/.git_backup/objects/63/14e478e5d8938e755114d1132e7fc95a3d23ac deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/1848af4f2fedba16a8a5bdb6c1fdde9c211dc1 b/.git_backup/objects/63/1848af4f2fedba16a8a5bdb6c1fdde9c211dc1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/2058763b7d9e826122af6834bb72d4bd970434 b/.git_backup/objects/63/2058763b7d9e826122af6834bb72d4bd970434 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/22b8fcd562afb5a3a874ae88108e3d6353b969 b/.git_backup/objects/63/22b8fcd562afb5a3a874ae88108e3d6353b969 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/25f00cba4c5de7f11743b012e0435a761e2b50 b/.git_backup/objects/63/25f00cba4c5de7f11743b012e0435a761e2b50 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/2aae2fa9081e64fb3825e8a6367e974c0ba0be b/.git_backup/objects/63/2aae2fa9081e64fb3825e8a6367e974c0ba0be deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/2c8e360c79f96429c52bd0282bbeaa3f3ed617 b/.git_backup/objects/63/2c8e360c79f96429c52bd0282bbeaa3f3ed617 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/302f36abb4e2c66445f46a3ef36deec401a349 b/.git_backup/objects/63/302f36abb4e2c66445f46a3ef36deec401a349 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/3e4ed77dd5748cfc06c3644ce356ba24ae8ca4 b/.git_backup/objects/63/3e4ed77dd5748cfc06c3644ce356ba24ae8ca4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/482dbc1502c580fb18d99e6797c502cfa3f4df b/.git_backup/objects/63/482dbc1502c580fb18d99e6797c502cfa3f4df deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/4cc0c11dc8990ec561041e1bab1684a10def66 b/.git_backup/objects/63/4cc0c11dc8990ec561041e1bab1684a10def66 deleted file mode 100644 index 16fee5fe..00000000 Binary files a/.git_backup/objects/63/4cc0c11dc8990ec561041e1bab1684a10def66 and /dev/null differ diff --git a/.git_backup/objects/63/52233bb8f0771361c085c9a41b10605d577938 b/.git_backup/objects/63/52233bb8f0771361c085c9a41b10605d577938 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/5e511697ee6413d326708691d5a31cad5b28cb b/.git_backup/objects/63/5e511697ee6413d326708691d5a31cad5b28cb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/7e8ceb0d6f808fe47d94b9771768a196aedc18 b/.git_backup/objects/63/7e8ceb0d6f808fe47d94b9771768a196aedc18 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/84ff4c41e0b16a52a8ba17132d3e368b90b4a5 b/.git_backup/objects/63/84ff4c41e0b16a52a8ba17132d3e368b90b4a5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/8a5456101ac3cc81a7842931b52baf2cd4842a b/.git_backup/objects/63/8a5456101ac3cc81a7842931b52baf2cd4842a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/8cad3d2d8907330bde56e2b76c9b185c523b45 b/.git_backup/objects/63/8cad3d2d8907330bde56e2b76c9b185c523b45 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/8d0d1534deba060140ffda3b61950a0b4f815d b/.git_backup/objects/63/8d0d1534deba060140ffda3b61950a0b4f815d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/8eb724ded9dc8502dfd82dc35376eaf21f1d53 b/.git_backup/objects/63/8eb724ded9dc8502dfd82dc35376eaf21f1d53 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/9172640ef615dc1d6e5f5cc400a4c4656454b9 b/.git_backup/objects/63/9172640ef615dc1d6e5f5cc400a4c4656454b9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/96715e89efff404b04ca64dd655e71834f3f57 b/.git_backup/objects/63/96715e89efff404b04ca64dd655e71834f3f57 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/a01dee404fb48a3ae47e06222268ca76063466 b/.git_backup/objects/63/a01dee404fb48a3ae47e06222268ca76063466 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/a7708b88237cae22a34bee55e56666f14e997b b/.git_backup/objects/63/a7708b88237cae22a34bee55e56666f14e997b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/a7724307be4548921afef338ee0c24f39a1300 b/.git_backup/objects/63/a7724307be4548921afef338ee0c24f39a1300 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/ae54cafc9001c8e24abbad0d07f6092d86a11f b/.git_backup/objects/63/ae54cafc9001c8e24abbad0d07f6092d86a11f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/af65fe961b4313ec4e7a7d7563d9b0382c610f b/.git_backup/objects/63/af65fe961b4313ec4e7a7d7563d9b0382c610f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/b0bd235e57c1a35fe76ab699a1414c7020acba b/.git_backup/objects/63/b0bd235e57c1a35fe76ab699a1414c7020acba deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/bc339ff10d1ffc02513bbdf88b9dadd255ea89 b/.git_backup/objects/63/bc339ff10d1ffc02513bbdf88b9dadd255ea89 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/c41ff32de0ad974b8376306679b27425f5a2bd b/.git_backup/objects/63/c41ff32de0ad974b8376306679b27425f5a2bd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/c667b26fddb7be4a09bfc249124339265dda47 b/.git_backup/objects/63/c667b26fddb7be4a09bfc249124339265dda47 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/c839af4b23f0ba3bea8c56f2bbb7c03e7bc44a b/.git_backup/objects/63/c839af4b23f0ba3bea8c56f2bbb7c03e7bc44a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/d32318e535370b9acbad6d900ca4d271205029 b/.git_backup/objects/63/d32318e535370b9acbad6d900ca4d271205029 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/d3cc4f5ef7473c80c5dd348781531848e2fa81 b/.git_backup/objects/63/d3cc4f5ef7473c80c5dd348781531848e2fa81 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/d3fe53f9db524c8ef523d65ae831f419c95605 b/.git_backup/objects/63/d3fe53f9db524c8ef523d65ae831f419c95605 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/d42eccad08bd4ec79cdebcc4958f867727fbb4 b/.git_backup/objects/63/d42eccad08bd4ec79cdebcc4958f867727fbb4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/d78e37a9a2a7538357f4be0f4e8c416d49511b b/.git_backup/objects/63/d78e37a9a2a7538357f4be0f4e8c416d49511b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/de586648efe3da6d3ffb6f1f183974da82f4c8 b/.git_backup/objects/63/de586648efe3da6d3ffb6f1f183974da82f4c8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/dfdf48a68d02240737ecd6af081e02eb0b6317 b/.git_backup/objects/63/dfdf48a68d02240737ecd6af081e02eb0b6317 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/e47baa20edc56b0ada0500febdb464aed6f8bb b/.git_backup/objects/63/e47baa20edc56b0ada0500febdb464aed6f8bb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/e56f07cf04cfd28bb9c3a771d9af189b8df6ef b/.git_backup/objects/63/e56f07cf04cfd28bb9c3a771d9af189b8df6ef deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/e76980af9810b3f57d49177c091e36e12a3102 b/.git_backup/objects/63/e76980af9810b3f57d49177c091e36e12a3102 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/e8b47984fc854f5c242451ba746ee5a68a3847 b/.git_backup/objects/63/e8b47984fc854f5c242451ba746ee5a68a3847 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/ecaf128185ca96c526edd604f59d8969ab45d5 b/.git_backup/objects/63/ecaf128185ca96c526edd604f59d8969ab45d5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/ef31792e80ffb0514435020b000f9459bdbb93 b/.git_backup/objects/63/ef31792e80ffb0514435020b000f9459bdbb93 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/f0bc7464a21c4a9bf23ce5547b47f033b19016 b/.git_backup/objects/63/f0bc7464a21c4a9bf23ce5547b47f033b19016 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/63/f8729179d8a7e421a9c301c72f749d5d799333 b/.git_backup/objects/63/f8729179d8a7e421a9c301c72f749d5d799333 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/0030ca1362bf0364ec2b180694ac6198b835c7 b/.git_backup/objects/64/0030ca1362bf0364ec2b180694ac6198b835c7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/090925dadfe1446e92e8d8746ba007ca42b548 b/.git_backup/objects/64/090925dadfe1446e92e8d8746ba007ca42b548 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/0dc10a4aeeb29a0d85530143e73da0bca7be69 b/.git_backup/objects/64/0dc10a4aeeb29a0d85530143e73da0bca7be69 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/0e9e93bfd2b3ab82c4cf8bf51dff6b2864e962 b/.git_backup/objects/64/0e9e93bfd2b3ab82c4cf8bf51dff6b2864e962 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/0f5dfd638872bc701044d6d5a0eddc77fcaeca b/.git_backup/objects/64/0f5dfd638872bc701044d6d5a0eddc77fcaeca deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/11f86f8f97cbe5cf99c5d4bfc5d41c4ee29035 b/.git_backup/objects/64/11f86f8f97cbe5cf99c5d4bfc5d41c4ee29035 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/2d01f384b43a38a8be2a577f85e9120d986b17 b/.git_backup/objects/64/2d01f384b43a38a8be2a577f85e9120d986b17 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/2f64681bf1c5d319c241d34ad07bbc10d3e533 b/.git_backup/objects/64/2f64681bf1c5d319c241d34ad07bbc10d3e533 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/374ca42563a36499eea79c19460791756cf32c b/.git_backup/objects/64/374ca42563a36499eea79c19460791756cf32c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/37c752347055a632ef48060a532ff63be17136 b/.git_backup/objects/64/37c752347055a632ef48060a532ff63be17136 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/3a5617abbebbbf73b78c61f1c612c4a325e64f b/.git_backup/objects/64/3a5617abbebbbf73b78c61f1c612c4a325e64f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/43396e8a8703ba9fefd24c99d5f1cde8a3225d b/.git_backup/objects/64/43396e8a8703ba9fefd24c99d5f1cde8a3225d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/459e7bad527aa1947e6134405e57444fb3e514 b/.git_backup/objects/64/459e7bad527aa1947e6134405e57444fb3e514 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/471bdc2ef5f7a3985defc47022faae1b9d11ee b/.git_backup/objects/64/471bdc2ef5f7a3985defc47022faae1b9d11ee deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/47ad136a8dedc4cb7f694b4b0f3c6a1e9c7900 b/.git_backup/objects/64/47ad136a8dedc4cb7f694b4b0f3c6a1e9c7900 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/528ca7a52a44cfd2dd74361f1821925392f316 b/.git_backup/objects/64/528ca7a52a44cfd2dd74361f1821925392f316 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/53bbecb1597ea6e6ea3a77e43e19c4027a85fb b/.git_backup/objects/64/53bbecb1597ea6e6ea3a77e43e19c4027a85fb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/58aefb3dbe834187b29fb25bb241b18def459e b/.git_backup/objects/64/58aefb3dbe834187b29fb25bb241b18def459e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/5a08b449743ca7240da1103144a03bb5488f16 b/.git_backup/objects/64/5a08b449743ca7240da1103144a03bb5488f16 deleted file mode 100644 index 2febc834..00000000 Binary files a/.git_backup/objects/64/5a08b449743ca7240da1103144a03bb5488f16 and /dev/null differ diff --git a/.git_backup/objects/64/5e86b86044cfbf5092f578d221f5ca7acf9173 b/.git_backup/objects/64/5e86b86044cfbf5092f578d221f5ca7acf9173 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/5f49418b14e3f436c3d335751999894fc9fd73 b/.git_backup/objects/64/5f49418b14e3f436c3d335751999894fc9fd73 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/61d86fd6750177ab4064f88544c09b949a0017 b/.git_backup/objects/64/61d86fd6750177ab4064f88544c09b949a0017 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/638ad158cc32d8c469a355091328a387e5572a b/.git_backup/objects/64/638ad158cc32d8c469a355091328a387e5572a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/6961ba41140bf912ed5f7a4af228b4d86fba18 b/.git_backup/objects/64/6961ba41140bf912ed5f7a4af228b4d86fba18 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/7bfc8001deaa505a7bb2fd827986f7f32e7446 b/.git_backup/objects/64/7bfc8001deaa505a7bb2fd827986f7f32e7446 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/8af96c47e2211e591cbad9c616d315529f14d4 b/.git_backup/objects/64/8af96c47e2211e591cbad9c616d315529f14d4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/8f7dc6beeb4c363f18212b5e59358751fb6811 b/.git_backup/objects/64/8f7dc6beeb4c363f18212b5e59358751fb6811 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/92b691949e1e109533d6cdd54130369ee026af b/.git_backup/objects/64/92b691949e1e109533d6cdd54130369ee026af deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/9ad562307c0f07dfee34be832e8c8ac88d6e2a b/.git_backup/objects/64/9ad562307c0f07dfee34be832e8c8ac88d6e2a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/9d453db0317de3825a467325893b66dc2ae567 b/.git_backup/objects/64/9d453db0317de3825a467325893b66dc2ae567 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/9e757b1d6e85a09c379dd67fb2f4d06e93a302 b/.git_backup/objects/64/9e757b1d6e85a09c379dd67fb2f4d06e93a302 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/9f77aa8a425f4e21877087b645d8864aa0c99d b/.git_backup/objects/64/9f77aa8a425f4e21877087b645d8864aa0c99d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/9fd1c4863ba605daf00c7bd273bb995b356d72 b/.git_backup/objects/64/9fd1c4863ba605daf00c7bd273bb995b356d72 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/a3a19c3133a1fdb052ef7000a449c24768e07b b/.git_backup/objects/64/a3a19c3133a1fdb052ef7000a449c24768e07b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/a635707c2fff814d01063022498adf2cd7a131 b/.git_backup/objects/64/a635707c2fff814d01063022498adf2cd7a131 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/bf92f74a457d2f4bc42798493db15cc3ab1008 b/.git_backup/objects/64/bf92f74a457d2f4bc42798493db15cc3ab1008 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/c0724702f854feebd68ff8698fcf1fa8f5259a b/.git_backup/objects/64/c0724702f854feebd68ff8698fcf1fa8f5259a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/c163f9d5ce9e4f92359ec95f29809ee377aac1 b/.git_backup/objects/64/c163f9d5ce9e4f92359ec95f29809ee377aac1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/c60d4e365e6bc9ac4fc502fbeaa4aa5b4aefbe b/.git_backup/objects/64/c60d4e365e6bc9ac4fc502fbeaa4aa5b4aefbe deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/cbbd6c8cd2b23018dda1017c726434f4e8f1a4 b/.git_backup/objects/64/cbbd6c8cd2b23018dda1017c726434f4e8f1a4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/d94846e4fd1ca184e1a14112dba1d439aaa38e b/.git_backup/objects/64/d94846e4fd1ca184e1a14112dba1d439aaa38e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/e0022d10fc9b9b5d0ce90aa0938c1385d13a26 b/.git_backup/objects/64/e0022d10fc9b9b5d0ce90aa0938c1385d13a26 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/e3e133117ab28717d223f1dcade8900d79145c b/.git_backup/objects/64/e3e133117ab28717d223f1dcade8900d79145c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/e78ae158a455b8455fde5769b53087a8ccc7df b/.git_backup/objects/64/e78ae158a455b8455fde5769b53087a8ccc7df deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/e8bdea4672c94f3cb3ced334350fbadec7c5f4 b/.git_backup/objects/64/e8bdea4672c94f3cb3ced334350fbadec7c5f4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/f1b7694418a8c284febe195659c4dd53359b1a b/.git_backup/objects/64/f1b7694418a8c284febe195659c4dd53359b1a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/f669d538e5d4f2de4cab913dbbce55beddc4d8 b/.git_backup/objects/64/f669d538e5d4f2de4cab913dbbce55beddc4d8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/f6ae608f1e93e300c629a08ba0593b0ea92c41 b/.git_backup/objects/64/f6ae608f1e93e300c629a08ba0593b0ea92c41 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/f8d62683368091292836d840170a598928f569 b/.git_backup/objects/64/f8d62683368091292836d840170a598928f569 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/fd8b41cb6b6a749a6d4fef0d81adeddb04e4fe b/.git_backup/objects/64/fd8b41cb6b6a749a6d4fef0d81adeddb04e4fe deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/64/febcf9693083ce97295b595a5be246da018b91 b/.git_backup/objects/64/febcf9693083ce97295b595a5be246da018b91 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/0a01949f217611f92f2465d8e2d03c81eca38e b/.git_backup/objects/65/0a01949f217611f92f2465d8e2d03c81eca38e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/0baa1372a6a3d9f3953b6d6fecc9166f6bd14e b/.git_backup/objects/65/0baa1372a6a3d9f3953b6d6fecc9166f6bd14e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/0deedce88b6babd8a3f2b62a5839f1a6cb966c b/.git_backup/objects/65/0deedce88b6babd8a3f2b62a5839f1a6cb966c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/0e8738164cf75f6166c40b874995d06311874e b/.git_backup/objects/65/0e8738164cf75f6166c40b874995d06311874e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/13b7f24e860d231707920fdddd5307011db976 b/.git_backup/objects/65/13b7f24e860d231707920fdddd5307011db976 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/16e316085fea79433c50ca25963e31ec13ba34 b/.git_backup/objects/65/16e316085fea79433c50ca25963e31ec13ba34 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/2a5fc1a3c34d96d9d4b2ef720e044ef47dabf1 b/.git_backup/objects/65/2a5fc1a3c34d96d9d4b2ef720e044ef47dabf1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/2ca4fd22a3e887c4800587ac85a0cfd26e032c b/.git_backup/objects/65/2ca4fd22a3e887c4800587ac85a0cfd26e032c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/2e2e28654f35eb2e4f147da64c73c9a19ed95c b/.git_backup/objects/65/2e2e28654f35eb2e4f147da64c73c9a19ed95c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/32121548747e43c767ac48c9b60fc3d07c25df b/.git_backup/objects/65/32121548747e43c767ac48c9b60fc3d07c25df deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/328f31ea488ca0ed799406e5573a016b8e1f39 b/.git_backup/objects/65/328f31ea488ca0ed799406e5573a016b8e1f39 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/3b146a60e5e5641a07bfc82f9590dad1ed69f5 b/.git_backup/objects/65/3b146a60e5e5641a07bfc82f9590dad1ed69f5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/3c3f1797dd2bd987887d79abebb2d9f5a61f14 b/.git_backup/objects/65/3c3f1797dd2bd987887d79abebb2d9f5a61f14 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/3ea88ed62acbae8b09c33e42c676a17617e0aa b/.git_backup/objects/65/3ea88ed62acbae8b09c33e42c676a17617e0aa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/3f89172c79cce30f81787e63c8d27885c5e9bb b/.git_backup/objects/65/3f89172c79cce30f81787e63c8d27885c5e9bb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/457223259ed0a9d9a04daff614c380da27787c b/.git_backup/objects/65/457223259ed0a9d9a04daff614c380da27787c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/6c4706b0432f8d764894545ac1ca0bc29d610b b/.git_backup/objects/65/6c4706b0432f8d764894545ac1ca0bc29d610b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/7230a0c4024e0b53f31d97584cfb35cfcd119e b/.git_backup/objects/65/7230a0c4024e0b53f31d97584cfb35cfcd119e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/75fdce31183d8238b18f2f30ab5b9227c7071c b/.git_backup/objects/65/75fdce31183d8238b18f2f30ab5b9227c7071c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/79bef810bda3d0674b77c1fbabd90dd2f81a8b b/.git_backup/objects/65/79bef810bda3d0674b77c1fbabd90dd2f81a8b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/82a234fd26347c2e6e90af74cd738032b9c8ef b/.git_backup/objects/65/82a234fd26347c2e6e90af74cd738032b9c8ef deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/83328f916f1628853636c6a70fc383c43c9150 b/.git_backup/objects/65/83328f916f1628853636c6a70fc383c43c9150 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/863c098822f0a661e861e87269ea0400ac7fd1 b/.git_backup/objects/65/863c098822f0a661e861e87269ea0400ac7fd1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/8b7cfe0aefc6597dfd7151a5be0ffa3bd88c72 b/.git_backup/objects/65/8b7cfe0aefc6597dfd7151a5be0ffa3bd88c72 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/936a9fcdbf3eec932f885878f7125773ee913d b/.git_backup/objects/65/936a9fcdbf3eec932f885878f7125773ee913d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/94effd5680ddc95b47f892fc04c07a65f2c825 b/.git_backup/objects/65/94effd5680ddc95b47f892fc04c07a65f2c825 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/96f490a233c57f0037351b4012055e8375275d b/.git_backup/objects/65/96f490a233c57f0037351b4012055e8375275d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/a1c64a1578ad0cadd9ed6470ab60a2087ffec5 b/.git_backup/objects/65/a1c64a1578ad0cadd9ed6470ab60a2087ffec5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/a1de97e4dad3e8a385fbd9eff389c90849846c b/.git_backup/objects/65/a1de97e4dad3e8a385fbd9eff389c90849846c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/a3a33374385d4199dda32bb7a3284f52653e66 b/.git_backup/objects/65/a3a33374385d4199dda32bb7a3284f52653e66 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/a42eb1ee72c7843efbf8a2cf8f8c47d0b17644 b/.git_backup/objects/65/a42eb1ee72c7843efbf8a2cf8f8c47d0b17644 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/a438ad6108b937743fe8b1cfbc443c1c3a4705 b/.git_backup/objects/65/a438ad6108b937743fe8b1cfbc443c1c3a4705 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/a47bb2950a7888112d80015ca628039aa193d2 b/.git_backup/objects/65/a47bb2950a7888112d80015ca628039aa193d2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/a5b0c720dad151ffdcba3dbe91c8bd638845c6 b/.git_backup/objects/65/a5b0c720dad151ffdcba3dbe91c8bd638845c6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/a9aad04a42249080cb0033827d5b17f6112cfc b/.git_backup/objects/65/a9aad04a42249080cb0033827d5b17f6112cfc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/ae344a67af084ce0d017523fa2e7ff24a5ca44 b/.git_backup/objects/65/ae344a67af084ce0d017523fa2e7ff24a5ca44 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/b0844a608edd8804c1ae27fce663368732a678 b/.git_backup/objects/65/b0844a608edd8804c1ae27fce663368732a678 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/b831439f00d863af5a56fb503f3320eb087736 b/.git_backup/objects/65/b831439f00d863af5a56fb503f3320eb087736 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/be4cd0226327b3fd377b5f517554519961f077 b/.git_backup/objects/65/be4cd0226327b3fd377b5f517554519961f077 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/c043c87eff27e9405316fdbc0c695f2b347441 b/.git_backup/objects/65/c043c87eff27e9405316fdbc0c695f2b347441 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/ca09edb39edc2d34a9a53e5cfb759859897538 b/.git_backup/objects/65/ca09edb39edc2d34a9a53e5cfb759859897538 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/ce6d27892a8a357382b5ed515c52e6da4b0f70 b/.git_backup/objects/65/ce6d27892a8a357382b5ed515c52e6da4b0f70 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/d06d6197f501fda97deb110861f0f8d4340027 b/.git_backup/objects/65/d06d6197f501fda97deb110861f0f8d4340027 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/d8829acbe2c3638bb5e865be2563ac195d425a b/.git_backup/objects/65/d8829acbe2c3638bb5e865be2563ac195d425a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/daa8b22465b23168af49ce5d526a518aad122f b/.git_backup/objects/65/daa8b22465b23168af49ce5d526a518aad122f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/e2063e09b7537ce6a82f7c9afdcf9946a08521 b/.git_backup/objects/65/e2063e09b7537ce6a82f7c9afdcf9946a08521 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/e3dbb222effb30c0a07b2f08696776c17c74fb b/.git_backup/objects/65/e3dbb222effb30c0a07b2f08696776c17c74fb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/e76095f6897d5eae8ff3229842c56af0e80a7a b/.git_backup/objects/65/e76095f6897d5eae8ff3229842c56af0e80a7a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/ecc646fc710ef3487d9bfcc34fc90d05ade270 b/.git_backup/objects/65/ecc646fc710ef3487d9bfcc34fc90d05ade270 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/f080091f72c699fdc2f854743889f1c3025ff9 b/.git_backup/objects/65/f080091f72c699fdc2f854743889f1c3025ff9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/f80e66205aa2b052a41d7dfa0ec6f118fde501 b/.git_backup/objects/65/f80e66205aa2b052a41d7dfa0ec6f118fde501 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/fdf56342e8b5b8e181914881025231684e1871 b/.git_backup/objects/65/fdf56342e8b5b8e181914881025231684e1871 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/65/febab42e6c38fd4991a1424f8541abdccb48cf b/.git_backup/objects/65/febab42e6c38fd4991a1424f8541abdccb48cf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/0402ee857e351abe81e1d0e094baf4a7f451f3 b/.git_backup/objects/66/0402ee857e351abe81e1d0e094baf4a7f451f3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/0ac65099a0787bf0024e31735078be31ea8535 b/.git_backup/objects/66/0ac65099a0787bf0024e31735078be31ea8535 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/0f75b1df5cf14b5a3264d2ec81d9564904eb92 b/.git_backup/objects/66/0f75b1df5cf14b5a3264d2ec81d9564904eb92 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/0f7b850ea202cb6f54d185e249b5fe529f57b2 b/.git_backup/objects/66/0f7b850ea202cb6f54d185e249b5fe529f57b2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/113ae251c38e7e89088b8bcf73319550d86b68 b/.git_backup/objects/66/113ae251c38e7e89088b8bcf73319550d86b68 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/1efc83294edbe5f615daa87a1f4a5590aae167 b/.git_backup/objects/66/1efc83294edbe5f615daa87a1f4a5590aae167 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/21549b8449130d2d01ebac0a3649d8b70c4f91 b/.git_backup/objects/66/21549b8449130d2d01ebac0a3649d8b70c4f91 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/281a91c6cdfa313416d553354c799229862c52 b/.git_backup/objects/66/281a91c6cdfa313416d553354c799229862c52 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/30d7feaffbecd1fe215e404f1e99deb5d839ea b/.git_backup/objects/66/30d7feaffbecd1fe215e404f1e99deb5d839ea deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/350532a7737c475a3ae6ef1b1d8406543d890e b/.git_backup/objects/66/350532a7737c475a3ae6ef1b1d8406543d890e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/35fcf6b22c8a0f58a263e522da9ca03df6ed58 b/.git_backup/objects/66/35fcf6b22c8a0f58a263e522da9ca03df6ed58 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/3a35c32875b4571a0b9fb8391d81a4f97fbe78 b/.git_backup/objects/66/3a35c32875b4571a0b9fb8391d81a4f97fbe78 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/3c0c87203d8ef53930582c496e83ba83870ad5 b/.git_backup/objects/66/3c0c87203d8ef53930582c496e83ba83870ad5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/43c42ddcc9579930980b7eb30e11f339638404 b/.git_backup/objects/66/43c42ddcc9579930980b7eb30e11f339638404 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/490d25dff9bcc8f710b0141f1a02e64aeb32f3 b/.git_backup/objects/66/490d25dff9bcc8f710b0141f1a02e64aeb32f3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/499b4d3df6f79abc7ab6113a5f7d7b050d6cd5 b/.git_backup/objects/66/499b4d3df6f79abc7ab6113a5f7d7b050d6cd5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/4b658a1b883797306c1cb5849ae74a17b3e390 b/.git_backup/objects/66/4b658a1b883797306c1cb5849ae74a17b3e390 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/4f56225f72a19afaa6249a0266df6b775772f7 b/.git_backup/objects/66/4f56225f72a19afaa6249a0266df6b775772f7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/501480ba5b63f98ee9a59c1f99e5e6917da6d9 b/.git_backup/objects/66/501480ba5b63f98ee9a59c1f99e5e6917da6d9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/5520e41e3841e74e582939eb4483ce95e0e250 b/.git_backup/objects/66/5520e41e3841e74e582939eb4483ce95e0e250 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/56fd565f79d377066588831bf8ecd1839136c3 b/.git_backup/objects/66/56fd565f79d377066588831bf8ecd1839136c3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/6307e8fe0608c69f2b6578a49794e1e20a139a b/.git_backup/objects/66/6307e8fe0608c69f2b6578a49794e1e20a139a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/64c1772e85fa930dc330550f2cb237ac042328 b/.git_backup/objects/66/64c1772e85fa930dc330550f2cb237ac042328 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/68a7c6a3d028dd1a4483748e5e027a63d60b42 b/.git_backup/objects/66/68a7c6a3d028dd1a4483748e5e027a63d60b42 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/6ce60e9a2bea19bedd289815e4cc6afa251a45 b/.git_backup/objects/66/6ce60e9a2bea19bedd289815e4cc6afa251a45 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/6d641815858908ff5e947130fc440575cb4c3f b/.git_backup/objects/66/6d641815858908ff5e947130fc440575cb4c3f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/708f061e02ff7618b3753ed7caf476a2acd28c b/.git_backup/objects/66/708f061e02ff7618b3753ed7caf476a2acd28c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/71700eddb3aa9e55fdde6ffe6e0e7149f2549b b/.git_backup/objects/66/71700eddb3aa9e55fdde6ffe6e0e7149f2549b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/7e31c2a662c2aaae3b08a8bae59acc535c0690 b/.git_backup/objects/66/7e31c2a662c2aaae3b08a8bae59acc535c0690 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/8213564c4fa3c13c6d64b1a0bad5d17ee936ee b/.git_backup/objects/66/8213564c4fa3c13c6d64b1a0bad5d17ee936ee deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/8a19c32829ed9ac5c6ce133fcc78df8e18818f b/.git_backup/objects/66/8a19c32829ed9ac5c6ce133fcc78df8e18818f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/8ba4d0151c5c76ed6e758061daa8c1b0bf5d21 b/.git_backup/objects/66/8ba4d0151c5c76ed6e758061daa8c1b0bf5d21 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/900b048dbf60f0c5794dfd5eae70ed54a2f66f b/.git_backup/objects/66/900b048dbf60f0c5794dfd5eae70ed54a2f66f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/930f4324682eccf385bf694c876720abd278fd b/.git_backup/objects/66/930f4324682eccf385bf694c876720abd278fd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/94a01b109693fbf4c9a2662c0042520b09deb7 b/.git_backup/objects/66/94a01b109693fbf4c9a2662c0042520b09deb7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/95480fff4c87608ac2002dfb341f90ed1a5ce4 b/.git_backup/objects/66/95480fff4c87608ac2002dfb341f90ed1a5ce4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/958f0a069d7aea7939bed40b9197608e93b243 b/.git_backup/objects/66/958f0a069d7aea7939bed40b9197608e93b243 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/9602e0a880d308cbea22eed2fda74cea225a9f b/.git_backup/objects/66/9602e0a880d308cbea22eed2fda74cea225a9f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/97c38ae67f945b503dd16cd11f96a0c9cc948b b/.git_backup/objects/66/97c38ae67f945b503dd16cd11f96a0c9cc948b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/991e1608c5efa9dcd5f82a68be72a4c667af85 b/.git_backup/objects/66/991e1608c5efa9dcd5f82a68be72a4c667af85 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/9a3a7074f9a9e1af29cb4bc78b05851df67959 b/.git_backup/objects/66/9a3a7074f9a9e1af29cb4bc78b05851df67959 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/a66fbbcd78a4393457943ea6b55d9bc9e38754 b/.git_backup/objects/66/a66fbbcd78a4393457943ea6b55d9bc9e38754 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/ae6e210b05f4f2bc3a313748a86eb41c6ec317 b/.git_backup/objects/66/ae6e210b05f4f2bc3a313748a86eb41c6ec317 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/af5a42be440f1fb8fec3b915afb49b356f63a5 b/.git_backup/objects/66/af5a42be440f1fb8fec3b915afb49b356f63a5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/aff884c3d6c110411fd7e8ad962bd67e87e2e7 b/.git_backup/objects/66/aff884c3d6c110411fd7e8ad962bd67e87e2e7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/b386bf764c8613347daafcf0814c9a7c5d414d b/.git_backup/objects/66/b386bf764c8613347daafcf0814c9a7c5d414d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/c56f875ef2210d2f48e9267d5f72787235c8eb b/.git_backup/objects/66/c56f875ef2210d2f48e9267d5f72787235c8eb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/d510686a5921b4ee3bc185a4133b9496796db4 b/.git_backup/objects/66/d510686a5921b4ee3bc185a4133b9496796db4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/e44f1a0caf00a6452fa9afae18323c51987ded b/.git_backup/objects/66/e44f1a0caf00a6452fa9afae18323c51987ded deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/ebaebee95df8eb0d7f942896b5ec4921104ae1 b/.git_backup/objects/66/ebaebee95df8eb0d7f942896b5ec4921104ae1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/ecb8fc41d8144c812735c1e241f9af923133a3 b/.git_backup/objects/66/ecb8fc41d8144c812735c1e241f9af923133a3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/fe63180fd1cabda7af05d69034629100f1604d b/.git_backup/objects/66/fe63180fd1cabda7af05d69034629100f1604d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/ff495e9d7b7263ebc5b2e71770a28caf9b554b b/.git_backup/objects/66/ff495e9d7b7263ebc5b2e71770a28caf9b554b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/66/ffcbe07dbb3c675d9e8869a52e1f60f68b4856 b/.git_backup/objects/66/ffcbe07dbb3c675d9e8869a52e1f60f68b4856 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/007cab02d1d48e4f1e2aa8fed7f51f814dbd12 b/.git_backup/objects/67/007cab02d1d48e4f1e2aa8fed7f51f814dbd12 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/0221b57753ec3bb6eab730310943d02a2aeb6d b/.git_backup/objects/67/0221b57753ec3bb6eab730310943d02a2aeb6d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/02e115c18a90094c098b9a3cfa211a6b32110a b/.git_backup/objects/67/02e115c18a90094c098b9a3cfa211a6b32110a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/0abc8a79bfa1cc38c2b9be176c55081bc3f169 b/.git_backup/objects/67/0abc8a79bfa1cc38c2b9be176c55081bc3f169 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/0ed398825f08bd3f81aaf6a2244b9b74f5266c b/.git_backup/objects/67/0ed398825f08bd3f81aaf6a2244b9b74f5266c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/1e515209dc63fbeed486a4a00cd9e410692743 b/.git_backup/objects/67/1e515209dc63fbeed486a4a00cd9e410692743 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/22928a4a4491c74d3fef5205276b532b15dcbf b/.git_backup/objects/67/22928a4a4491c74d3fef5205276b532b15dcbf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/361df2e49d48dd56c91e291ba92553e9afe344 b/.git_backup/objects/67/361df2e49d48dd56c91e291ba92553e9afe344 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/36b07baae6222e72446bcf189e7181b8c89c7e b/.git_backup/objects/67/36b07baae6222e72446bcf189e7181b8c89c7e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/3f309f18c32866bd17ed4d92cc6c72b6301b81 b/.git_backup/objects/67/3f309f18c32866bd17ed4d92cc6c72b6301b81 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/449e2c21d8cc70f85caab5e0b8197aa74822fa b/.git_backup/objects/67/449e2c21d8cc70f85caab5e0b8197aa74822fa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/452d89fcf8b8f605b144c4886c5a3f7953d6b5 b/.git_backup/objects/67/452d89fcf8b8f605b144c4886c5a3f7953d6b5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/46bdc32b3e1a5091bb2c1e587080f1ca9e570b b/.git_backup/objects/67/46bdc32b3e1a5091bb2c1e587080f1ca9e570b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/527c272c24866efb5fe0c9922b53f2a01340f3 b/.git_backup/objects/67/527c272c24866efb5fe0c9922b53f2a01340f3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/52a064d1d5d297bf44e6f42455eddc6664ee2e b/.git_backup/objects/67/52a064d1d5d297bf44e6f42455eddc6664ee2e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/52c5b05285678b86aea170f0921fc5f5e57738 b/.git_backup/objects/67/52c5b05285678b86aea170f0921fc5f5e57738 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/591c8532f43132d717d3dc6aafe703a5dbfcdc b/.git_backup/objects/67/591c8532f43132d717d3dc6aafe703a5dbfcdc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/5e6bf3743f3d3011c238657e7128ee9960ef7f b/.git_backup/objects/67/5e6bf3743f3d3011c238657e7128ee9960ef7f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/6095a2d0f0f7fe18940369fe11646a13f5bd0e b/.git_backup/objects/67/6095a2d0f0f7fe18940369fe11646a13f5bd0e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/6f190a6d6115c31061f92293b1ae0549562ce7 b/.git_backup/objects/67/6f190a6d6115c31061f92293b1ae0549562ce7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/737658fd94a5b60b0311d9d18108574cbcd6d9 b/.git_backup/objects/67/737658fd94a5b60b0311d9d18108574cbcd6d9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/76074b421bc04842c0389a7c237ad49cd0992a b/.git_backup/objects/67/76074b421bc04842c0389a7c237ad49cd0992a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/76163c94f3d6f61b00d329d4061d6b02afeeb9 b/.git_backup/objects/67/76163c94f3d6f61b00d329d4061d6b02afeeb9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/79639f32c3cfc672ad37d4a98500c638dc0154 b/.git_backup/objects/67/79639f32c3cfc672ad37d4a98500c638dc0154 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/7bbff6a9d89180cfd2dd3279a1c412610b6540 b/.git_backup/objects/67/7bbff6a9d89180cfd2dd3279a1c412610b6540 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/7fadf5235ef6a2cd70a6c7c9714be0277275bd b/.git_backup/objects/67/7fadf5235ef6a2cd70a6c7c9714be0277275bd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/83d7b9aa5b0dd9e4afd7b1a0dbd8189fd9b7f8 b/.git_backup/objects/67/83d7b9aa5b0dd9e4afd7b1a0dbd8189fd9b7f8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/8ba5cc7b2b415153e539df9ee6f37f11a2c54e b/.git_backup/objects/67/8ba5cc7b2b415153e539df9ee6f37f11a2c54e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/9273e6e972b86023d2fc740f6922270891c1a7 b/.git_backup/objects/67/9273e6e972b86023d2fc740f6922270891c1a7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/935ff4da8f527e03cd05ed2aa20e601e10f921 b/.git_backup/objects/67/935ff4da8f527e03cd05ed2aa20e601e10f921 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/98ae96212f0ee971a71d9cacdb7ebabdfec7d3 b/.git_backup/objects/67/98ae96212f0ee971a71d9cacdb7ebabdfec7d3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/9b94480d7ff5a11e037ffb758f2214c6e5097f b/.git_backup/objects/67/9b94480d7ff5a11e037ffb758f2214c6e5097f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/9c0637c82051b7bca71b3fff0d291c23e5aa81 b/.git_backup/objects/67/9c0637c82051b7bca71b3fff0d291c23e5aa81 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/9c1f21e69956cf883a49acf09b6aff0a781fb3 b/.git_backup/objects/67/9c1f21e69956cf883a49acf09b6aff0a781fb3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/9e3c0363518b9e58d0a3b020033898faac08ad b/.git_backup/objects/67/9e3c0363518b9e58d0a3b020033898faac08ad deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/a62978aa1bc8eaa45306c086ca25ee5274eb56 b/.git_backup/objects/67/a62978aa1bc8eaa45306c086ca25ee5274eb56 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/a856c92c07e9c7ea54d7bc154e78258e857946 b/.git_backup/objects/67/a856c92c07e9c7ea54d7bc154e78258e857946 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/aa4c1005e962782d8541dbd0244ffede9a822c b/.git_backup/objects/67/aa4c1005e962782d8541dbd0244ffede9a822c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/addef483f6f97b9b3b3aaae544345ceb91c4b7 b/.git_backup/objects/67/addef483f6f97b9b3b3aaae544345ceb91c4b7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/af865c801ce11b2989333e944f1a3b98ffc3f0 b/.git_backup/objects/67/af865c801ce11b2989333e944f1a3b98ffc3f0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/af9653fc75a3ef36554c873c088c3a4877fe71 b/.git_backup/objects/67/af9653fc75a3ef36554c873c088c3a4877fe71 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/b46a66cc6fce72f3ec9d7e56dd3e772aeadc2b b/.git_backup/objects/67/b46a66cc6fce72f3ec9d7e56dd3e772aeadc2b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/b93386aa05de07867828e2879df8dd240b5ad4 b/.git_backup/objects/67/b93386aa05de07867828e2879df8dd240b5ad4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/bb89b42a56d02105a0a63f7c557337d1e001ec b/.git_backup/objects/67/bb89b42a56d02105a0a63f7c557337d1e001ec deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/c08b0bcd4e7f972330d55ced0831c432e20a7c b/.git_backup/objects/67/c08b0bcd4e7f972330d55ced0831c432e20a7c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/c3a2902dbcbb06d948ed52e011c56c6d7f37a9 b/.git_backup/objects/67/c3a2902dbcbb06d948ed52e011c56c6d7f37a9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/ce2444ea69a0bbdfab0bda8c2aa14951187096 b/.git_backup/objects/67/ce2444ea69a0bbdfab0bda8c2aa14951187096 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/d158fa3891af52d701102f1181d0cb02de92cf b/.git_backup/objects/67/d158fa3891af52d701102f1181d0cb02de92cf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/db4625829680298b2a5a9032a379d870a00700 b/.git_backup/objects/67/db4625829680298b2a5a9032a379d870a00700 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/db8588217f266eb561f75fae738656325deac9 b/.git_backup/objects/67/db8588217f266eb561f75fae738656325deac9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/e04d8cb2088e6a91e3c7fe86c6c26eab6152ad b/.git_backup/objects/67/e04d8cb2088e6a91e3c7fe86c6c26eab6152ad deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/ee0e0bc0bf53c789f0ddfd99075299847cdc03 b/.git_backup/objects/67/ee0e0bc0bf53c789f0ddfd99075299847cdc03 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/f21d81fa5f7d40f15fdab237238013e9dea007 b/.git_backup/objects/67/f21d81fa5f7d40f15fdab237238013e9dea007 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/f84f64ab294e59038e806fd5acc9602f758b15 b/.git_backup/objects/67/f84f64ab294e59038e806fd5acc9602f758b15 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/f953383326a0cdb1d634d70fdb71ed8aa64fa8 b/.git_backup/objects/67/f953383326a0cdb1d634d70fdb71ed8aa64fa8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/67/f986c0949ca78f76ffa03cb9456eec369639f2 b/.git_backup/objects/67/f986c0949ca78f76ffa03cb9456eec369639f2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/0094ca5bfd6c6b65bbf5693dbe9f15581a84c9 b/.git_backup/objects/68/0094ca5bfd6c6b65bbf5693dbe9f15581a84c9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/0543dce3a869d042006b44c1d6c32bb6f85b53 b/.git_backup/objects/68/0543dce3a869d042006b44c1d6c32bb6f85b53 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/08fe70e754ae3b22f5ae80511a47efaaef2f98 b/.git_backup/objects/68/08fe70e754ae3b22f5ae80511a47efaaef2f98 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/0ed62eabd8acd47052481182408e7e509b9914 b/.git_backup/objects/68/0ed62eabd8acd47052481182408e7e509b9914 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/10ce4cd216abed185c91c76d372a23db5a6abc b/.git_backup/objects/68/10ce4cd216abed185c91c76d372a23db5a6abc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/176daa4976b015fb79026f3053e74e4a7457ab b/.git_backup/objects/68/176daa4976b015fb79026f3053e74e4a7457ab deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/1a254b87ee68639882845ad98024a584c04d15 b/.git_backup/objects/68/1a254b87ee68639882845ad98024a584c04d15 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/1f29fd48a3039fc47bf07603c4b11fc4fe55d0 b/.git_backup/objects/68/1f29fd48a3039fc47bf07603c4b11fc4fe55d0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/22c585660791ace392f07e78ea834ead73fc5f b/.git_backup/objects/68/22c585660791ace392f07e78ea834ead73fc5f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/239495d6c72b70257e51d7ec3ddb35611940a2 b/.git_backup/objects/68/239495d6c72b70257e51d7ec3ddb35611940a2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/23e0798799b059bb4f2c93ecd6778742c71af8 b/.git_backup/objects/68/23e0798799b059bb4f2c93ecd6778742c71af8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/246b1d7bb9d92430a261b291773a983aa884eb b/.git_backup/objects/68/246b1d7bb9d92430a261b291773a983aa884eb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/26ac4a32f562c77e16df750e7d319952b0cd41 b/.git_backup/objects/68/26ac4a32f562c77e16df750e7d319952b0cd41 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/291694168cf4f49a0af5ae35d71af8be9d003a b/.git_backup/objects/68/291694168cf4f49a0af5ae35d71af8be9d003a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/2e7a8eb8e2b8cdd922fe77ed13992c5a7a1252 b/.git_backup/objects/68/2e7a8eb8e2b8cdd922fe77ed13992c5a7a1252 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/2e91482948f65fa5d06b4c9beb09eb2283cb1d b/.git_backup/objects/68/2e91482948f65fa5d06b4c9beb09eb2283cb1d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/34b34eb9a413b532cbf0bb068e3d7fcc0f201b b/.git_backup/objects/68/34b34eb9a413b532cbf0bb068e3d7fcc0f201b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/35628cda82b0d4f4866a4d8fbd3964ebad9659 b/.git_backup/objects/68/35628cda82b0d4f4866a4d8fbd3964ebad9659 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/369c981b1e9e9a49640fc15e69d06633ed21ff b/.git_backup/objects/68/369c981b1e9e9a49640fc15e69d06633ed21ff deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/38c6f40681a654134ea71565fbc435d555e3e1 b/.git_backup/objects/68/38c6f40681a654134ea71565fbc435d555e3e1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/3b10e9aae9c8b0ba4030a9c46d467aebaf6ee7 b/.git_backup/objects/68/3b10e9aae9c8b0ba4030a9c46d467aebaf6ee7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/3dd37bd82c0763d5205360be952c1bce28f928 b/.git_backup/objects/68/3dd37bd82c0763d5205360be952c1bce28f928 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/437dad75a2691985bc532b740c11830dd06765 b/.git_backup/objects/68/437dad75a2691985bc532b740c11830dd06765 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/4489c54ac8c4f036ed59bfc28de7b3de50d286 b/.git_backup/objects/68/4489c54ac8c4f036ed59bfc28de7b3de50d286 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/4c6586f091350c347f2b6150935f5214ffec27 b/.git_backup/objects/68/4c6586f091350c347f2b6150935f5214ffec27 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/4e2ce29781d9bf4aa66743b901e1d566c46c30 b/.git_backup/objects/68/4e2ce29781d9bf4aa66743b901e1d566c46c30 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/51fa94370672621b66a32de1a92414f8b08722 b/.git_backup/objects/68/51fa94370672621b66a32de1a92414f8b08722 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/545b7964bf808be2204a7dacf7d023fbd9c8dc b/.git_backup/objects/68/545b7964bf808be2204a7dacf7d023fbd9c8dc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/55aa245e370b477218d07cd03f449a26758e7c b/.git_backup/objects/68/55aa245e370b477218d07cd03f449a26758e7c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/59c6cd5d797484e18386b0defe606ada22c75e b/.git_backup/objects/68/59c6cd5d797484e18386b0defe606ada22c75e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/6857e1a53ca35b7e355f886cc7d821ca7b70d5 b/.git_backup/objects/68/6857e1a53ca35b7e355f886cc7d821ca7b70d5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/6b1f0d84a4d2a50db912a5d4683852ccc9dda5 b/.git_backup/objects/68/6b1f0d84a4d2a50db912a5d4683852ccc9dda5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/6d4ebc3a95015651977937abb02046c204a507 b/.git_backup/objects/68/6d4ebc3a95015651977937abb02046c204a507 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/6e5ebd937fff16d5aa7f154d5c823ed17d9e0a b/.git_backup/objects/68/6e5ebd937fff16d5aa7f154d5c823ed17d9e0a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/7827a4ad2e1094e9c40000949d4143e42a1619 b/.git_backup/objects/68/7827a4ad2e1094e9c40000949d4143e42a1619 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/85c3b1fcc1ff5f9401d161856768f3afcde79c b/.git_backup/objects/68/85c3b1fcc1ff5f9401d161856768f3afcde79c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/89e98041d8000f94b3cf6f221ff615894923f3 b/.git_backup/objects/68/89e98041d8000f94b3cf6f221ff615894923f3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/8eeb531a440266e7cb56d6881b7676cbaad5a7 b/.git_backup/objects/68/8eeb531a440266e7cb56d6881b7676cbaad5a7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/9ea416408ba844b6de6c1e135a53ed22836752 b/.git_backup/objects/68/9ea416408ba844b6de6c1e135a53ed22836752 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/a3b53a1df0574ad05b0e8bc53279e1110db9af b/.git_backup/objects/68/a3b53a1df0574ad05b0e8bc53279e1110db9af deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/aaba1d46ca52ad7226727c70b6517d95486213 b/.git_backup/objects/68/aaba1d46ca52ad7226727c70b6517d95486213 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/b4f00b394338b4b92b1209da2feadf03f8dd02 b/.git_backup/objects/68/b4f00b394338b4b92b1209da2feadf03f8dd02 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/b8ca9625ad3f787855d06ca8be64ab23422921 b/.git_backup/objects/68/b8ca9625ad3f787855d06ca8be64ab23422921 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/c982cbfeb7e45f02c7adf54790e52ebe2675e6 b/.git_backup/objects/68/c982cbfeb7e45f02c7adf54790e52ebe2675e6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/ce2cb85c64936896b7640f0d48f977830eec6a b/.git_backup/objects/68/ce2cb85c64936896b7640f0d48f977830eec6a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/d454b3e8941755ad6f4e1a2f25d353c32e0ff0 b/.git_backup/objects/68/d454b3e8941755ad6f4e1a2f25d353c32e0ff0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/dcca634d8e3f0081bad2f9ae5e653a2942db68 b/.git_backup/objects/68/dcca634d8e3f0081bad2f9ae5e653a2942db68 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/e3386e4cb2d17512e61e1bf23ebb0ed773f771 b/.git_backup/objects/68/e3386e4cb2d17512e61e1bf23ebb0ed773f771 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/e80a4a2703cc3901803c4c0389eacb58352c84 b/.git_backup/objects/68/e80a4a2703cc3901803c4c0389eacb58352c84 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/f3f2969772cafcd9352da4e2366101d5c7b3a9 b/.git_backup/objects/68/f3f2969772cafcd9352da4e2366101d5c7b3a9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/f5344d0f9aec6bfcd1f1f13d945214516589de b/.git_backup/objects/68/f5344d0f9aec6bfcd1f1f13d945214516589de deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/68/ff77db0d95c7d054ef33c05e05ba71bcbbbdd8 b/.git_backup/objects/68/ff77db0d95c7d054ef33c05e05ba71bcbbbdd8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/00ba513dd088760bbdd13ec00d2e40752c8ab1 b/.git_backup/objects/69/00ba513dd088760bbdd13ec00d2e40752c8ab1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/01f5a8be3e5c1f31ae1df82711530b8f5793a7 b/.git_backup/objects/69/01f5a8be3e5c1f31ae1df82711530b8f5793a7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/068314d2a32d1b87fb9d01ff248331998c6191 b/.git_backup/objects/69/068314d2a32d1b87fb9d01ff248331998c6191 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/072b558ad7c3bcf845fdf453f8a9d97ad72209 b/.git_backup/objects/69/072b558ad7c3bcf845fdf453f8a9d97ad72209 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/12079e859a5ec5dfbea42fb3223a77c57a70b6 b/.git_backup/objects/69/12079e859a5ec5dfbea42fb3223a77c57a70b6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/203d61e0953da9d2b17f2353da6772e3560e43 b/.git_backup/objects/69/203d61e0953da9d2b17f2353da6772e3560e43 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/2558c2b8c900a7593a4695f295da8bc635e3f3 b/.git_backup/objects/69/2558c2b8c900a7593a4695f295da8bc635e3f3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/25fdbfb02e0c1ddf70bcb4c19bb9e259ecfc54 b/.git_backup/objects/69/25fdbfb02e0c1ddf70bcb4c19bb9e259ecfc54 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/2645ed4f9e4cb67166ecafa97cbc4802a6cc20 b/.git_backup/objects/69/2645ed4f9e4cb67166ecafa97cbc4802a6cc20 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/297b67678b63c42c547e4d964a7fa20f075033 b/.git_backup/objects/69/297b67678b63c42c547e4d964a7fa20f075033 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/3051d74aa0777043d07cbc3682da46bd7e9c53 b/.git_backup/objects/69/3051d74aa0777043d07cbc3682da46bd7e9c53 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/3138c9e2cf024bed8e21ef14310e47b51c7cb8 b/.git_backup/objects/69/3138c9e2cf024bed8e21ef14310e47b51c7cb8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/31dd0ea2d4c2d01972ca3c03e0a60a48ecb1f6 b/.git_backup/objects/69/31dd0ea2d4c2d01972ca3c03e0a60a48ecb1f6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/36a3c5ea303d4eb876cf002fb10c6a38b06591 b/.git_backup/objects/69/36a3c5ea303d4eb876cf002fb10c6a38b06591 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/3d28e51fadb1a76a5af77a8e31823173194466 b/.git_backup/objects/69/3d28e51fadb1a76a5af77a8e31823173194466 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/3e67652c91269a45804f87280abd3cb945ef62 b/.git_backup/objects/69/3e67652c91269a45804f87280abd3cb945ef62 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/45904f512337524f271be1fb509d9de1b36c0c b/.git_backup/objects/69/45904f512337524f271be1fb509d9de1b36c0c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/4a756dc5abca54bd7a8a0c9232a0974e194edb b/.git_backup/objects/69/4a756dc5abca54bd7a8a0c9232a0974e194edb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/4d1487f2a1a881d44dfdd8c62f6ff344e33c6d b/.git_backup/objects/69/4d1487f2a1a881d44dfdd8c62f6ff344e33c6d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/4f843ec138f8d8e731edfb512602a9579492d6 b/.git_backup/objects/69/4f843ec138f8d8e731edfb512602a9579492d6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/4fb732f43bf7c53844b037fc407a7b8b9d7b6a b/.git_backup/objects/69/4fb732f43bf7c53844b037fc407a7b8b9d7b6a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/50d349ff99deed5183401885726e1fa881123d b/.git_backup/objects/69/50d349ff99deed5183401885726e1fa881123d deleted file mode 100644 index f6b54980..00000000 Binary files a/.git_backup/objects/69/50d349ff99deed5183401885726e1fa881123d and /dev/null differ diff --git a/.git_backup/objects/69/5458273d16eae0bd578ebd01206c932176749a b/.git_backup/objects/69/5458273d16eae0bd578ebd01206c932176749a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/63e8b793312d1dbc538b7d7e0c448f00402722 b/.git_backup/objects/69/63e8b793312d1dbc538b7d7e0c448f00402722 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/64841793d6b1f91c9da9329ec3e574692c867c b/.git_backup/objects/69/64841793d6b1f91c9da9329ec3e574692c867c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/654e2c75d46e5b105a70bf8f011bab09308059 b/.git_backup/objects/69/654e2c75d46e5b105a70bf8f011bab09308059 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/73bf782b10d142eb7d9ad73bce68a2d7729c70 b/.git_backup/objects/69/73bf782b10d142eb7d9ad73bce68a2d7729c70 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/87c7c255c7d04415e280d68a167f2287fa8601 b/.git_backup/objects/69/87c7c255c7d04415e280d68a167f2287fa8601 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/893ffdd5247dc40ab44a9de09697e5c8e0bb3b b/.git_backup/objects/69/893ffdd5247dc40ab44a9de09697e5c8e0bb3b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/899c91eda7ff88702a40eda5bacccaa0d21b35 b/.git_backup/objects/69/899c91eda7ff88702a40eda5bacccaa0d21b35 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/8c76e30e91f568a29daca12993cfacbfdbf83e b/.git_backup/objects/69/8c76e30e91f568a29daca12993cfacbfdbf83e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/8ef3353ea79924edd6c4c7ed304390cc89cd9b b/.git_backup/objects/69/8ef3353ea79924edd6c4c7ed304390cc89cd9b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/974d1235a635e6cc09883ba5aa28df1bbf4cf5 b/.git_backup/objects/69/974d1235a635e6cc09883ba5aa28df1bbf4cf5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/abcba0dbaf0c0e58fb05ac87b6ab5a83b9b186 b/.git_backup/objects/69/abcba0dbaf0c0e58fb05ac87b6ab5a83b9b186 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/acb926bb6df05a9edb1d1a1f7dc1d4d0f02621 b/.git_backup/objects/69/acb926bb6df05a9edb1d1a1f7dc1d4d0f02621 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/be3dec7418c9bececde7811fd1d5a62f995f03 b/.git_backup/objects/69/be3dec7418c9bececde7811fd1d5a62f995f03 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/c1dc85a8826f4e16b16f97b28195cd5d0e2271 b/.git_backup/objects/69/c1dc85a8826f4e16b16f97b28195cd5d0e2271 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/c2eca16677ba9c8be45130cb92d8e4a05ad81b b/.git_backup/objects/69/c2eca16677ba9c8be45130cb92d8e4a05ad81b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/c6116608f364f62fff5271de8455c2cd1110ae b/.git_backup/objects/69/c6116608f364f62fff5271de8455c2cd1110ae deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/c615c9c603defe4cc63ae70712a5ec5a82ddb5 b/.git_backup/objects/69/c615c9c603defe4cc63ae70712a5ec5a82ddb5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/c82703083a47b2005fd23d5413e99dfb202603 b/.git_backup/objects/69/c82703083a47b2005fd23d5413e99dfb202603 deleted file mode 100644 index 0870b87f..00000000 Binary files a/.git_backup/objects/69/c82703083a47b2005fd23d5413e99dfb202603 and /dev/null differ diff --git a/.git_backup/objects/69/c8e3688c3d7018cf5369d36ec296f54507128e b/.git_backup/objects/69/c8e3688c3d7018cf5369d36ec296f54507128e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/ce1a9a79fb3f6ea205bfa8c77af32d5d014cb1 b/.git_backup/objects/69/ce1a9a79fb3f6ea205bfa8c77af32d5d014cb1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/d24c38c28959361283624e02f8891fa69b6c5f b/.git_backup/objects/69/d24c38c28959361283624e02f8891fa69b6c5f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/d402237ef1a7829eb3c724826854def88ce791 b/.git_backup/objects/69/d402237ef1a7829eb3c724826854def88ce791 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/d55751087d2fb08d2bc12e88007312ae17e3a7 b/.git_backup/objects/69/d55751087d2fb08d2bc12e88007312ae17e3a7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/d7eaf4ecf8747c21d07e14edcf65b4e394974c b/.git_backup/objects/69/d7eaf4ecf8747c21d07e14edcf65b4e394974c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/f544bd6e78968ee13117cc311973cb2b4fcd51 b/.git_backup/objects/69/f544bd6e78968ee13117cc311973cb2b4fcd51 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/69/fca9719cbd136de4e13266e7c53fe4565b7821 b/.git_backup/objects/69/fca9719cbd136de4e13266e7c53fe4565b7821 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6a/04c08da145189509236b4bb4e47cb7f579fcd3 b/.git_backup/objects/6a/04c08da145189509236b4bb4e47cb7f579fcd3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6a/09bfa3bd0820117175bd0281ef796f0eeb2c5b b/.git_backup/objects/6a/09bfa3bd0820117175bd0281ef796f0eeb2c5b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6a/0bd7cd9ecd70dc256a588f2b4329ddae512fe2 b/.git_backup/objects/6a/0bd7cd9ecd70dc256a588f2b4329ddae512fe2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6a/1099cd3fada48bd150f0a1858f3da7efa05c3a b/.git_backup/objects/6a/1099cd3fada48bd150f0a1858f3da7efa05c3a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6a/16433aa0a3206bd8ee3f0f90eab8ad39e0ba36 b/.git_backup/objects/6a/16433aa0a3206bd8ee3f0f90eab8ad39e0ba36 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6a/187edb1828256362617d3fe24d26cf58e7ca3b b/.git_backup/objects/6a/187edb1828256362617d3fe24d26cf58e7ca3b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6a/1f41421eb38152bf6f8feb5e14dca2852759a5 b/.git_backup/objects/6a/1f41421eb38152bf6f8feb5e14dca2852759a5 deleted file mode 100644 index e9a91646..00000000 Binary files a/.git_backup/objects/6a/1f41421eb38152bf6f8feb5e14dca2852759a5 and /dev/null differ diff --git a/.git_backup/objects/6a/2a9fc935a56989b166de9b23f3df3bc4f64879 b/.git_backup/objects/6a/2a9fc935a56989b166de9b23f3df3bc4f64879 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6a/33ca3f0c97877394960da123147f234aa5abef b/.git_backup/objects/6a/33ca3f0c97877394960da123147f234aa5abef deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6a/3755533264b1b6bdbf24516e5bd3ed6340807a b/.git_backup/objects/6a/3755533264b1b6bdbf24516e5bd3ed6340807a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6a/3d4a4267985595a2424b72c09cc5cbb1a1ca20 b/.git_backup/objects/6a/3d4a4267985595a2424b72c09cc5cbb1a1ca20 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6a/43b0475347cb50d0d65ada1000a82eeca9e882 b/.git_backup/objects/6a/43b0475347cb50d0d65ada1000a82eeca9e882 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6a/5474ffed1433978428021f8cec1be0ab0222fb b/.git_backup/objects/6a/5474ffed1433978428021f8cec1be0ab0222fb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6a/57626f4116792bcae6ffa115130c18335942a1 b/.git_backup/objects/6a/57626f4116792bcae6ffa115130c18335942a1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6a/584a511e1c9aec8ea3a709708e980862e86b9d b/.git_backup/objects/6a/584a511e1c9aec8ea3a709708e980862e86b9d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6a/59c59cfc75f3521f55994e36800cd4d2bbe9ca b/.git_backup/objects/6a/59c59cfc75f3521f55994e36800cd4d2bbe9ca deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6a/5eea538aa2069fcc74996dbd21a8aa7516184a b/.git_backup/objects/6a/5eea538aa2069fcc74996dbd21a8aa7516184a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6a/67ea59436c04936378d2929c81e0d705fe4b48 b/.git_backup/objects/6a/67ea59436c04936378d2929c81e0d705fe4b48 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6a/7daea16963c99fb7c4bbcd4b122d6af53d2576 b/.git_backup/objects/6a/7daea16963c99fb7c4bbcd4b122d6af53d2576 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6a/8053a8fe4b8ee29da0e76fe1804c5601111690 b/.git_backup/objects/6a/8053a8fe4b8ee29da0e76fe1804c5601111690 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6a/84e66b7a28aa3c12528ff96ae94a7af0530d26 b/.git_backup/objects/6a/84e66b7a28aa3c12528ff96ae94a7af0530d26 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6a/85044a14431fe88ce817eabf1eaa53b3f23122 b/.git_backup/objects/6a/85044a14431fe88ce817eabf1eaa53b3f23122 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6a/91c12ee286ee44f8de528c9886fffb3a12c962 b/.git_backup/objects/6a/91c12ee286ee44f8de528c9886fffb3a12c962 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6a/996cedb146f7dfbab1ab4123f71af557797758 b/.git_backup/objects/6a/996cedb146f7dfbab1ab4123f71af557797758 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6a/9f7c2a809227cea6737b41e5af21f90572f2c7 b/.git_backup/objects/6a/9f7c2a809227cea6737b41e5af21f90572f2c7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6a/a12120bf4ee35d617f12119144b8e41db979b0 b/.git_backup/objects/6a/a12120bf4ee35d617f12119144b8e41db979b0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6a/aa25155ac3c9a122fe9a7c215583060bb62097 b/.git_backup/objects/6a/aa25155ac3c9a122fe9a7c215583060bb62097 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6a/aa39653a9d3cb7599ab0636ff109aa37ebd4f2 b/.git_backup/objects/6a/aa39653a9d3cb7599ab0636ff109aa37ebd4f2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6a/b2b1a4d5783e8189b6072ffa2db19d92ca4ed9 b/.git_backup/objects/6a/b2b1a4d5783e8189b6072ffa2db19d92ca4ed9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6a/b5330361a6bcc2a8403f9b3788aedae750d57f b/.git_backup/objects/6a/b5330361a6bcc2a8403f9b3788aedae750d57f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6a/c85f9d36fdc252620e273db8a2a7fd0aee584e b/.git_backup/objects/6a/c85f9d36fdc252620e273db8a2a7fd0aee584e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6a/cafe2c9b0b2ea0bc99f4ded6a66bc56f8b6234 b/.git_backup/objects/6a/cafe2c9b0b2ea0bc99f4ded6a66bc56f8b6234 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6a/d3b5af19a437a163417979d563cb784344e3da b/.git_backup/objects/6a/d3b5af19a437a163417979d563cb784344e3da deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6a/d68e48be582c3b594ff5703a3700686b3c011b b/.git_backup/objects/6a/d68e48be582c3b594ff5703a3700686b3c011b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6a/de46a0b11e79a99862098b1a4c5755a5c6a519 b/.git_backup/objects/6a/de46a0b11e79a99862098b1a4c5755a5c6a519 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6a/f0c31a29998ce564d5d0a2c51b11b8e60c1fed b/.git_backup/objects/6a/f0c31a29998ce564d5d0a2c51b11b8e60c1fed deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6a/f1138f260e4eaaa0aa242f7f50b918a283b49f b/.git_backup/objects/6a/f1138f260e4eaaa0aa242f7f50b918a283b49f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6a/f58b344b7ac60bce359a907d68554700cf5ab2 b/.git_backup/objects/6a/f58b344b7ac60bce359a907d68554700cf5ab2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6a/fb5c627ce3db6e61cbf46276f7ddd42552eb28 b/.git_backup/objects/6a/fb5c627ce3db6e61cbf46276f7ddd42552eb28 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6b/0293ea5d495b3815c8e3f27160aeadeef54916 b/.git_backup/objects/6b/0293ea5d495b3815c8e3f27160aeadeef54916 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6b/0fc3414cfa3e06887c34b6b1a31c7cad47e5e6 b/.git_backup/objects/6b/0fc3414cfa3e06887c34b6b1a31c7cad47e5e6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6b/137d59eb65c883a7cb7347f702dae23ebc19d4 b/.git_backup/objects/6b/137d59eb65c883a7cb7347f702dae23ebc19d4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6b/15603b3b3f1954499120fbd47ca56cbae4bf4b b/.git_backup/objects/6b/15603b3b3f1954499120fbd47ca56cbae4bf4b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6b/183a0bf2b0b4ef8b2345842d5f57cad8b50277 b/.git_backup/objects/6b/183a0bf2b0b4ef8b2345842d5f57cad8b50277 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6b/1b2e52b5278ec1469af740dd8930f0f88b6e90 b/.git_backup/objects/6b/1b2e52b5278ec1469af740dd8930f0f88b6e90 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6b/1c0f851f8e78058608c9f2f0803cb0e6b1711e b/.git_backup/objects/6b/1c0f851f8e78058608c9f2f0803cb0e6b1711e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6b/20df315b23ecd1e3d0ec32c11c0b5ced577efe b/.git_backup/objects/6b/20df315b23ecd1e3d0ec32c11c0b5ced577efe deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6b/227383284a9e88d705dc8893882b6e43b0d076 b/.git_backup/objects/6b/227383284a9e88d705dc8893882b6e43b0d076 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6b/3309ba8ea1beaaa497593e747d9d61a217b8ad b/.git_backup/objects/6b/3309ba8ea1beaaa497593e747d9d61a217b8ad deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6b/348ff5ff92227312c9947c94f3eb911a9ba195 b/.git_backup/objects/6b/348ff5ff92227312c9947c94f3eb911a9ba195 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6b/39dfffff0c676306db275767e1e29b0fab2e27 b/.git_backup/objects/6b/39dfffff0c676306db275767e1e29b0fab2e27 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6b/440cd7f6f0231fd98fa7eca74c1fb515f95b9f b/.git_backup/objects/6b/440cd7f6f0231fd98fa7eca74c1fb515f95b9f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6b/481e51f2f8e48663e13d9b229e5dc93082a4e2 b/.git_backup/objects/6b/481e51f2f8e48663e13d9b229e5dc93082a4e2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6b/4c6b6addfd96f10ae6255cd0cd837ba1eac916 b/.git_backup/objects/6b/4c6b6addfd96f10ae6255cd0cd837ba1eac916 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6b/6cd2d2780215b687115c4291d10d03f5231b37 b/.git_backup/objects/6b/6cd2d2780215b687115c4291d10d03f5231b37 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6b/6f7ae88946540efc207b0fc53cdcf39a98042c b/.git_backup/objects/6b/6f7ae88946540efc207b0fc53cdcf39a98042c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6b/743ab27301e7c7fe68f16f5a3d213cc483c5bc b/.git_backup/objects/6b/743ab27301e7c7fe68f16f5a3d213cc483c5bc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6b/77e42f134eeb6cbb285a2479b5bf78a5aeb4d9 b/.git_backup/objects/6b/77e42f134eeb6cbb285a2479b5bf78a5aeb4d9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6b/8608d989ed083165f74418e4dcf7f6e94038a9 b/.git_backup/objects/6b/8608d989ed083165f74418e4dcf7f6e94038a9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6b/8f35cba0d1834806c11c6289531ebba467f810 b/.git_backup/objects/6b/8f35cba0d1834806c11c6289531ebba467f810 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6b/8ff0a8572aecebd58772f4234bb107f19afb81 b/.git_backup/objects/6b/8ff0a8572aecebd58772f4234bb107f19afb81 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6b/985f14278b2ee96808ecbcc101fd0790782aaa b/.git_backup/objects/6b/985f14278b2ee96808ecbcc101fd0790782aaa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6b/9950164fd5279305d5c0d205cf28a258fe8ee2 b/.git_backup/objects/6b/9950164fd5279305d5c0d205cf28a258fe8ee2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6b/9969568c8e82026b4b49956e5b820e278fe1be b/.git_backup/objects/6b/9969568c8e82026b4b49956e5b820e278fe1be deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6b/a083d65ac3f42f599274ad3c34669cff1ece56 b/.git_backup/objects/6b/a083d65ac3f42f599274ad3c34669cff1ece56 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6b/a10f0c28dac51c9fb8696363ae9d3296a5b2aa b/.git_backup/objects/6b/a10f0c28dac51c9fb8696363ae9d3296a5b2aa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6b/a2e04f350792e2c0021cf7ba7f40b25dc6cd51 b/.git_backup/objects/6b/a2e04f350792e2c0021cf7ba7f40b25dc6cd51 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6b/a3347796e08d87c1ed7b471d33ca3e951827c5 b/.git_backup/objects/6b/a3347796e08d87c1ed7b471d33ca3e951827c5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6b/a8a2400445c204729b599cc742e88c246bdb25 b/.git_backup/objects/6b/a8a2400445c204729b599cc742e88c246bdb25 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6b/b332435be632095799e7ab1f34ece3d6696fff b/.git_backup/objects/6b/b332435be632095799e7ab1f34ece3d6696fff deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6b/b5abbe79028afed7b110603a0d5dfd6affae7f b/.git_backup/objects/6b/b5abbe79028afed7b110603a0d5dfd6affae7f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6b/b9237c0f1dbb901c181b625af105a597cfed49 b/.git_backup/objects/6b/b9237c0f1dbb901c181b625af105a597cfed49 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6b/c79dfd7234545d5f3f560e9a45b7ef9d04164d b/.git_backup/objects/6b/c79dfd7234545d5f3f560e9a45b7ef9d04164d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6b/c81bfea01e25699c4abeb59d36c56d91393944 b/.git_backup/objects/6b/c81bfea01e25699c4abeb59d36c56d91393944 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6b/cd717725af36ae1757ea4f872ec7ec5835956a b/.git_backup/objects/6b/cd717725af36ae1757ea4f872ec7ec5835956a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6b/cdf9db0f4d68032132355b89c5a297c7a8902f b/.git_backup/objects/6b/cdf9db0f4d68032132355b89c5a297c7a8902f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6b/d78dc5978eed5f1cd20f0f1ec2b6ebf0d8d989 b/.git_backup/objects/6b/d78dc5978eed5f1cd20f0f1ec2b6ebf0d8d989 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6b/db4df806b5c4f2efd2e15d242f0c9bc948497f b/.git_backup/objects/6b/db4df806b5c4f2efd2e15d242f0c9bc948497f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6b/dec63d6867928bf73a7e513f60cee8f49ca050 b/.git_backup/objects/6b/dec63d6867928bf73a7e513f60cee8f49ca050 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6b/e90e88e1671074db2503376b8a291f5d45007f b/.git_backup/objects/6b/e90e88e1671074db2503376b8a291f5d45007f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6b/f240a8413ff3c22786eb0aa05b4bf37e15f912 b/.git_backup/objects/6b/f240a8413ff3c22786eb0aa05b4bf37e15f912 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/07366e402d6c7c1cec37606c0cf1e10d1c27bb b/.git_backup/objects/6c/07366e402d6c7c1cec37606c0cf1e10d1c27bb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/090bc393f29fdce43b0e911876c53bcbbc73e1 b/.git_backup/objects/6c/090bc393f29fdce43b0e911876c53bcbbc73e1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/0966aa74d1111d767a23034f49d2efe8976cde b/.git_backup/objects/6c/0966aa74d1111d767a23034f49d2efe8976cde deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/0db8564d59ada7a06398e9153d3f4b7b051404 b/.git_backup/objects/6c/0db8564d59ada7a06398e9153d3f4b7b051404 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/11a534d49b946180771976588f7fabb0cfdfaf b/.git_backup/objects/6c/11a534d49b946180771976588f7fabb0cfdfaf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/180f68395dbd0f9da733c95aa2086085311998 b/.git_backup/objects/6c/180f68395dbd0f9da733c95aa2086085311998 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/1b2a11fba63664317f5b974e5729bddd48fb3d b/.git_backup/objects/6c/1b2a11fba63664317f5b974e5729bddd48fb3d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/227b44afdd9e7f38291a586e0828d9f75f9ad0 b/.git_backup/objects/6c/227b44afdd9e7f38291a586e0828d9f75f9ad0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/231df4d788a2e1a96f877ec5d40509a7fb09cc b/.git_backup/objects/6c/231df4d788a2e1a96f877ec5d40509a7fb09cc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/29c70c356cd76ed57b4173147174ad61dfae8a b/.git_backup/objects/6c/29c70c356cd76ed57b4173147174ad61dfae8a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/2f4a9e83f5a084bac8a7c0a731721d45aed257 b/.git_backup/objects/6c/2f4a9e83f5a084bac8a7c0a731721d45aed257 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/3587c7eeada3effe6ecc4b8d9b29fe21188337 b/.git_backup/objects/6c/3587c7eeada3effe6ecc4b8d9b29fe21188337 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/38c584fbd402898c3b7105f79917f4d1064043 b/.git_backup/objects/6c/38c584fbd402898c3b7105f79917f4d1064043 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/38ec8af36551854fcc3536bf30e8f82eb7fe4d b/.git_backup/objects/6c/38ec8af36551854fcc3536bf30e8f82eb7fe4d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/390720d91074ac1cc834a54573a99594083e9f b/.git_backup/objects/6c/390720d91074ac1cc834a54573a99594083e9f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/3bca927b6df2c67e16a32fd8d29e67d985725b b/.git_backup/objects/6c/3bca927b6df2c67e16a32fd8d29e67d985725b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/3c40ffd9948fb2c52bf8b46031d194e0d7e190 b/.git_backup/objects/6c/3c40ffd9948fb2c52bf8b46031d194e0d7e190 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/3cff3b12cec4ad050b31cc5d5c327f32784447 b/.git_backup/objects/6c/3cff3b12cec4ad050b31cc5d5c327f32784447 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/3e4fa02212f9ff65579d0c3526fc4d22719005 b/.git_backup/objects/6c/3e4fa02212f9ff65579d0c3526fc4d22719005 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/3eb620730ea263479d2e62cca1d8fc39f7ac3a b/.git_backup/objects/6c/3eb620730ea263479d2e62cca1d8fc39f7ac3a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/403ad71e023d43a87b7e2561b368d1646f642f b/.git_backup/objects/6c/403ad71e023d43a87b7e2561b368d1646f642f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/416fc761a636a6c756a847d035eb6e4079a7e0 b/.git_backup/objects/6c/416fc761a636a6c756a847d035eb6e4079a7e0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/46a3b9f0375fc50bd4ca7b74114752e43033bf b/.git_backup/objects/6c/46a3b9f0375fc50bd4ca7b74114752e43033bf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/4e07343acc6960fbd54552927470f331632e4f b/.git_backup/objects/6c/4e07343acc6960fbd54552927470f331632e4f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/55fcd04bcd5547bad3a56d4db14c556deb7902 b/.git_backup/objects/6c/55fcd04bcd5547bad3a56d4db14c556deb7902 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/576e3960ec54f2046f0518185a456e6a37dd58 b/.git_backup/objects/6c/576e3960ec54f2046f0518185a456e6a37dd58 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/5d77879000b3560d716ae9ec695d58a9a314ae b/.git_backup/objects/6c/5d77879000b3560d716ae9ec695d58a9a314ae deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/6243672a01d73046c1e383c52877a9de78f93f b/.git_backup/objects/6c/6243672a01d73046c1e383c52877a9de78f93f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/66effde22903a4edafd3ad5330d4a7c950a03e b/.git_backup/objects/6c/66effde22903a4edafd3ad5330d4a7c950a03e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/690ff4f577377b0b853747eeb35afc1b6c9ea6 b/.git_backup/objects/6c/690ff4f577377b0b853747eeb35afc1b6c9ea6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/6ab126555bc81e4b0dfae409177fbdd8f56b32 b/.git_backup/objects/6c/6ab126555bc81e4b0dfae409177fbdd8f56b32 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/704c755570d1508424af92a0eb5aa1353666a0 b/.git_backup/objects/6c/704c755570d1508424af92a0eb5aa1353666a0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/7651e6d9aec5c5965466a964ee7f42e81ed413 b/.git_backup/objects/6c/7651e6d9aec5c5965466a964ee7f42e81ed413 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/7902083283e894277eb6596b7bb619346b0e7a b/.git_backup/objects/6c/7902083283e894277eb6596b7bb619346b0e7a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/7e898315f865b27f84212791b959debe18ef2a b/.git_backup/objects/6c/7e898315f865b27f84212791b959debe18ef2a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/8147116c0336a170a6ef801aa6f3614c1b2f83 b/.git_backup/objects/6c/8147116c0336a170a6ef801aa6f3614c1b2f83 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/8a4330bf25df84c5fb04a2a0ef2202fb5bfaf4 b/.git_backup/objects/6c/8a4330bf25df84c5fb04a2a0ef2202fb5bfaf4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/8c1242c883707d2a7f0e2110cf50feea417623 b/.git_backup/objects/6c/8c1242c883707d2a7f0e2110cf50feea417623 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/908306390614ecb97d56d96b6b280cd2177c5e b/.git_backup/objects/6c/908306390614ecb97d56d96b6b280cd2177c5e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/9738ecf8dd12297c23eafb6ba93e88cb6c59e1 b/.git_backup/objects/6c/9738ecf8dd12297c23eafb6ba93e88cb6c59e1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/9a2f50b584aebc2a9f42ac2f378fff3336479b b/.git_backup/objects/6c/9a2f50b584aebc2a9f42ac2f378fff3336479b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/9e1720a6bb67ef94968e655243f9ad151faea5 b/.git_backup/objects/6c/9e1720a6bb67ef94968e655243f9ad151faea5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/a5fab9baf687260a9e5cbb496e093c145035a2 b/.git_backup/objects/6c/a5fab9baf687260a9e5cbb496e093c145035a2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/abed2c50f60361694ae9b0195cd147ecebc1eb b/.git_backup/objects/6c/abed2c50f60361694ae9b0195cd147ecebc1eb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/afcd33a505e4548de15fd92b46378d3381f0b6 b/.git_backup/objects/6c/afcd33a505e4548de15fd92b46378d3381f0b6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/b3b4dae397930fba60e4c08b25b9444783b6f7 b/.git_backup/objects/6c/b3b4dae397930fba60e4c08b25b9444783b6f7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/b449da0d14ddf5cf21152527d3f3ab9d1fb17f b/.git_backup/objects/6c/b449da0d14ddf5cf21152527d3f3ab9d1fb17f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/b4b8f0d1131b2e8ff55174028d7cfe5937f7a5 b/.git_backup/objects/6c/b4b8f0d1131b2e8ff55174028d7cfe5937f7a5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/b54908724c9809288b75545da4bf9adff26d06 b/.git_backup/objects/6c/b54908724c9809288b75545da4bf9adff26d06 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/b6826d2d8fd93bbb46ec2648148aa0ee63e0f4 b/.git_backup/objects/6c/b6826d2d8fd93bbb46ec2648148aa0ee63e0f4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/b9cc7b3bc751fbb5a54ba06eaaf953bf14ed8d b/.git_backup/objects/6c/b9cc7b3bc751fbb5a54ba06eaaf953bf14ed8d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/bab701223bda70309a7eec443030706a0a25a2 b/.git_backup/objects/6c/bab701223bda70309a7eec443030706a0a25a2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/bf2dd606692e76ccef8851b7e11352eb9f24a2 b/.git_backup/objects/6c/bf2dd606692e76ccef8851b7e11352eb9f24a2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/c20821f85081f1065d93ecb210a52537971607 b/.git_backup/objects/6c/c20821f85081f1065d93ecb210a52537971607 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/cd44e698a8ad5146eccbc2d8eb6d0e72c937e8 b/.git_backup/objects/6c/cd44e698a8ad5146eccbc2d8eb6d0e72c937e8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/d11cf7e67d8f2515a43feed2b679ec362c66e8 b/.git_backup/objects/6c/d11cf7e67d8f2515a43feed2b679ec362c66e8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/d880ad5be4c71bab5e7c18d714bcc14b71f873 b/.git_backup/objects/6c/d880ad5be4c71bab5e7c18d714bcc14b71f873 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/df00d57828f1230acc1d67d4101e3962c38f26 b/.git_backup/objects/6c/df00d57828f1230acc1d67d4101e3962c38f26 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/dfeb7017034226cf0bdd8d345db317502b52aa b/.git_backup/objects/6c/dfeb7017034226cf0bdd8d345db317502b52aa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/ed3febd78f4d65a7f12cb5c9116dfa57a031d3 b/.git_backup/objects/6c/ed3febd78f4d65a7f12cb5c9116dfa57a031d3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/ed5329b814e0fd3c397bb11dc69a82b06eb1f4 b/.git_backup/objects/6c/ed5329b814e0fd3c397bb11dc69a82b06eb1f4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/eff7bceeb893239b02762cc0630e3d86e0f665 b/.git_backup/objects/6c/eff7bceeb893239b02762cc0630e3d86e0f665 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/f01fe76841e9cb2403bc0502e138e22f26915d b/.git_backup/objects/6c/f01fe76841e9cb2403bc0502e138e22f26915d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/f43bdc3df93525e91a00cb9b747f32855659c5 b/.git_backup/objects/6c/f43bdc3df93525e91a00cb9b747f32855659c5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/f8f95524800343d7b20a816968473018d78dc1 b/.git_backup/objects/6c/f8f95524800343d7b20a816968473018d78dc1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/f9bd509f874158497d992a35ee14e66f290900 b/.git_backup/objects/6c/f9bd509f874158497d992a35ee14e66f290900 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/fd8a16e16ec08c7cd83e6c0e1f9e1bbc5dc18a b/.git_backup/objects/6c/fd8a16e16ec08c7cd83e6c0e1f9e1bbc5dc18a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/fdf1ee00560346148aaac40039f1b6baee115a b/.git_backup/objects/6c/fdf1ee00560346148aaac40039f1b6baee115a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6c/fe9f3f12c9e78b6f10937a2b050cd74c301cd9 b/.git_backup/objects/6c/fe9f3f12c9e78b6f10937a2b050cd74c301cd9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/007b22ff0d231aec16f9de41553e7385a9c3f7 b/.git_backup/objects/6d/007b22ff0d231aec16f9de41553e7385a9c3f7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/0331e00835f9c9bfec3be89c20d8b651300a48 b/.git_backup/objects/6d/0331e00835f9c9bfec3be89c20d8b651300a48 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/08809a6503ccf07aafb61fc6db34488afa7e39 b/.git_backup/objects/6d/08809a6503ccf07aafb61fc6db34488afa7e39 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/0ac02e9c3e07eff905cbb342a267ee9a6cf2a7 b/.git_backup/objects/6d/0ac02e9c3e07eff905cbb342a267ee9a6cf2a7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/0b548c4463664033a4b3e360424390bd9b6f8b b/.git_backup/objects/6d/0b548c4463664033a4b3e360424390bd9b6f8b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/10058be71e036f7f1d280ae61af022d77fb96e b/.git_backup/objects/6d/10058be71e036f7f1d280ae61af022d77fb96e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/1060ace0e63cd4a9c1b1fecd30190f05a124a2 b/.git_backup/objects/6d/1060ace0e63cd4a9c1b1fecd30190f05a124a2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/159a755f3bb0646fe023823e40a2543ba4915b b/.git_backup/objects/6d/159a755f3bb0646fe023823e40a2543ba4915b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/1aec32b546e92ac23832b8a6270808af2b6f7d b/.git_backup/objects/6d/1aec32b546e92ac23832b8a6270808af2b6f7d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/24714bf96c6fc9b8af0b7f1dec537784ab4bf6 b/.git_backup/objects/6d/24714bf96c6fc9b8af0b7f1dec537784ab4bf6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/28854810a255d976b2079736db0e6e1f6d53ac b/.git_backup/objects/6d/28854810a255d976b2079736db0e6e1f6d53ac deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/31099ceff55a845ae34ea2106029d8df2f0294 b/.git_backup/objects/6d/31099ceff55a845ae34ea2106029d8df2f0294 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/3de44849cc5288f96a210578dd9109cdbffd06 b/.git_backup/objects/6d/3de44849cc5288f96a210578dd9109cdbffd06 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/3e068977edfe6407f29404f0a7d1737f7d3eba b/.git_backup/objects/6d/3e068977edfe6407f29404f0a7d1737f7d3eba deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/46f327a6e5426e1c763f64b71382543b5d4bef b/.git_backup/objects/6d/46f327a6e5426e1c763f64b71382543b5d4bef deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/476670b64a1efa776c57ad299ce9365b105bbd b/.git_backup/objects/6d/476670b64a1efa776c57ad299ce9365b105bbd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/4e19377e9f70c3782daa223753c640c60ab1eb b/.git_backup/objects/6d/4e19377e9f70c3782daa223753c640c60ab1eb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/51ea7d5de7b091cc30d6670086b3045404b7c5 b/.git_backup/objects/6d/51ea7d5de7b091cc30d6670086b3045404b7c5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/54e84df32d18a0e2ea543272caff0f570c078a b/.git_backup/objects/6d/54e84df32d18a0e2ea543272caff0f570c078a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/593c3105e8dc6c54ddfe179057ca2a240939d6 b/.git_backup/objects/6d/593c3105e8dc6c54ddfe179057ca2a240939d6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/5c28993010823d4c4629a0b65f4d8e3f0a2590 b/.git_backup/objects/6d/5c28993010823d4c4629a0b65f4d8e3f0a2590 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/5c53a61a72cb179910222c02ca0f630c8d3cd5 b/.git_backup/objects/6d/5c53a61a72cb179910222c02ca0f630c8d3cd5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/5dd76d2c17a8bdfc585a604143ffe8241ba8a3 b/.git_backup/objects/6d/5dd76d2c17a8bdfc585a604143ffe8241ba8a3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/688502a1ca80f2e57a6de2790ac3193879d248 b/.git_backup/objects/6d/688502a1ca80f2e57a6de2790ac3193879d248 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/6aa08204c3f41b6d09e7c0fa78a441683ec4c3 b/.git_backup/objects/6d/6aa08204c3f41b6d09e7c0fa78a441683ec4c3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/6bbe2d35aea9ae1097be75367ab512e9821a95 b/.git_backup/objects/6d/6bbe2d35aea9ae1097be75367ab512e9821a95 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/7525c2ebcfe25cb6787579bf5324da1fd6f28a b/.git_backup/objects/6d/7525c2ebcfe25cb6787579bf5324da1fd6f28a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/781510d3eaf6e433a685fa56f29b1e1231d406 b/.git_backup/objects/6d/781510d3eaf6e433a685fa56f29b1e1231d406 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/7cbb244215e03b4140a679b76be46f8e724ea5 b/.git_backup/objects/6d/7cbb244215e03b4140a679b76be46f8e724ea5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/7ccf4b2afef3c5dbe22058007d0fbb068b25fb b/.git_backup/objects/6d/7ccf4b2afef3c5dbe22058007d0fbb068b25fb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/80987f6bfe4194182a7c254cd4fc4657ce51d3 b/.git_backup/objects/6d/80987f6bfe4194182a7c254cd4fc4657ce51d3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/832748459270a1ff81896ff0982023e4f99a5b b/.git_backup/objects/6d/832748459270a1ff81896ff0982023e4f99a5b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/93f6e1d3f76bcb6325f503958d19798b098fa0 b/.git_backup/objects/6d/93f6e1d3f76bcb6325f503958d19798b098fa0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/960821b7c163cc8508054783969c5cb4d8151f b/.git_backup/objects/6d/960821b7c163cc8508054783969c5cb4d8151f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/9f4f388c045dfa21d66661f08d87ea689507da b/.git_backup/objects/6d/9f4f388c045dfa21d66661f08d87ea689507da deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/acb9fc1a41c747601b4833d8b41bb336a0f7c0 b/.git_backup/objects/6d/acb9fc1a41c747601b4833d8b41bb336a0f7c0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/af46eeb58e389b6f679bccbaf1edc641351ad2 b/.git_backup/objects/6d/af46eeb58e389b6f679bccbaf1edc641351ad2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/b103bcd5de8fc4379a6b8c856f4353530888a3 b/.git_backup/objects/6d/b103bcd5de8fc4379a6b8c856f4353530888a3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/b4bcff09357f1aa6afa41e3eaad36d701d28b7 b/.git_backup/objects/6d/b4bcff09357f1aa6afa41e3eaad36d701d28b7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/b545c65aa26e54e4a7d9284b8f19ea7f33843f b/.git_backup/objects/6d/b545c65aa26e54e4a7d9284b8f19ea7f33843f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/bd47050362b8185d1f25e98c7e09befc408899 b/.git_backup/objects/6d/bd47050362b8185d1f25e98c7e09befc408899 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/cf60c1b3d7a46586f7ab976c5be8ab6fcc71a3 b/.git_backup/objects/6d/cf60c1b3d7a46586f7ab976c5be8ab6fcc71a3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/d174902ccfb5f60ad77b30ae546b6262be60fb b/.git_backup/objects/6d/d174902ccfb5f60ad77b30ae546b6262be60fb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/d320d1db42aaf07740baddb187822a91cabe55 b/.git_backup/objects/6d/d320d1db42aaf07740baddb187822a91cabe55 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/d860b37e2141f7d0b966cdde9b76b406d6fdbb b/.git_backup/objects/6d/d860b37e2141f7d0b966cdde9b76b406d6fdbb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/dcf7f5c15a20f7fe832230b6de1688b9f81781 b/.git_backup/objects/6d/dcf7f5c15a20f7fe832230b6de1688b9f81781 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/deb63ddbdf5a5a64089bdaa9ed01b2570ec053 b/.git_backup/objects/6d/deb63ddbdf5a5a64089bdaa9ed01b2570ec053 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/e111ddff636542bc3fd139871b0bf262a5953f b/.git_backup/objects/6d/e111ddff636542bc3fd139871b0bf262a5953f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/e56bee47c4bcb20c4cc0afe84c4a4c9d337987 b/.git_backup/objects/6d/e56bee47c4bcb20c4cc0afe84c4a4c9d337987 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/e8d5475493315565e0ad22a5855611ce3b538b b/.git_backup/objects/6d/e8d5475493315565e0ad22a5855611ce3b538b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/ef56b4a75f67000ed8181ae2d2c40eefb645fb b/.git_backup/objects/6d/ef56b4a75f67000ed8181ae2d2c40eefb645fb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/f423c8caffd77bf558254b4d76e38613ae684b b/.git_backup/objects/6d/f423c8caffd77bf558254b4d76e38613ae684b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6d/faf152adb3f7ee23b91b4af8b9c8ab3bf36f55 b/.git_backup/objects/6d/faf152adb3f7ee23b91b4af8b9c8ab3bf36f55 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/0693b4b010a8c42e34f89ab8fa1e18b5bae1cc b/.git_backup/objects/6e/0693b4b010a8c42e34f89ab8fa1e18b5bae1cc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/06e405e0b6c438505a3f1a093f241c227635ba b/.git_backup/objects/6e/06e405e0b6c438505a3f1a093f241c227635ba deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/14dde389b4cd2af22e6c5934ccaca00d0c48b1 b/.git_backup/objects/6e/14dde389b4cd2af22e6c5934ccaca00d0c48b1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/181b60611ebdcdec4787eb9dfb23637eb3f3c9 b/.git_backup/objects/6e/181b60611ebdcdec4787eb9dfb23637eb3f3c9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/18d1c49fc6485ee9396d207cce893c6606c179 b/.git_backup/objects/6e/18d1c49fc6485ee9396d207cce893c6606c179 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/1996ff7f225be12328fba969a4a63eef8387e2 b/.git_backup/objects/6e/1996ff7f225be12328fba969a4a63eef8387e2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/1d66d193f4ec2e43bc448473bc632a61936201 b/.git_backup/objects/6e/1d66d193f4ec2e43bc448473bc632a61936201 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/1da357567c7552f83bfe78ed1cf29786beccd4 b/.git_backup/objects/6e/1da357567c7552f83bfe78ed1cf29786beccd4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/224245076ee6ddaeeb87d7ee0de46be4a0ee97 b/.git_backup/objects/6e/224245076ee6ddaeeb87d7ee0de46be4a0ee97 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/28feafd171afd33627ffc40dcaa5a837fa977f b/.git_backup/objects/6e/28feafd171afd33627ffc40dcaa5a837fa977f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/2965f785f586141f321c46141013fd4ea5564f b/.git_backup/objects/6e/2965f785f586141f321c46141013fd4ea5564f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/32c5c271654451edd618ccb85a2c86b38f180a b/.git_backup/objects/6e/32c5c271654451edd618ccb85a2c86b38f180a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/34aa7787ad04a6d36bfae8d33a18e29a3e8f47 b/.git_backup/objects/6e/34aa7787ad04a6d36bfae8d33a18e29a3e8f47 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/34f9607847cb74f8469823c01776baf8216b59 b/.git_backup/objects/6e/34f9607847cb74f8469823c01776baf8216b59 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/3654a6edac1f96633189f00e04cfe2ec07683e b/.git_backup/objects/6e/3654a6edac1f96633189f00e04cfe2ec07683e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/3cde88ca233497d424822ebecf5e2cba3b4c28 b/.git_backup/objects/6e/3cde88ca233497d424822ebecf5e2cba3b4c28 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/3d42acd5d9821c47c06414332a51df7ebac20d b/.git_backup/objects/6e/3d42acd5d9821c47c06414332a51df7ebac20d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/40fad0f4f30c52f5c23a57f870166f02ada31f b/.git_backup/objects/6e/40fad0f4f30c52f5c23a57f870166f02ada31f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/49347a069a84f08e043c809ff4bc4ff1e43557 b/.git_backup/objects/6e/49347a069a84f08e043c809ff4bc4ff1e43557 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/4a8dee0a7c5f2ef737fd3f04cedb72cba9b728 b/.git_backup/objects/6e/4a8dee0a7c5f2ef737fd3f04cedb72cba9b728 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/4d79dd0c5f09a794befc893c9d4e4d7c7a6d10 b/.git_backup/objects/6e/4d79dd0c5f09a794befc893c9d4e4d7c7a6d10 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/4ed7b77cad8352d671f263af434fe1e40b6b51 b/.git_backup/objects/6e/4ed7b77cad8352d671f263af434fe1e40b6b51 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/5adb9fcca6acb9200d257fa4f6299afab2253c b/.git_backup/objects/6e/5adb9fcca6acb9200d257fa4f6299afab2253c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/6b9baeee587ed7859b73b4edce11419ce80b4f b/.git_backup/objects/6e/6b9baeee587ed7859b73b4edce11419ce80b4f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/6cfab735381b4c34bbfceea2fea728c5c8c978 b/.git_backup/objects/6e/6cfab735381b4c34bbfceea2fea728c5c8c978 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/6f54702ce1a09c0fccb0c44d0cd4a474c46a8c b/.git_backup/objects/6e/6f54702ce1a09c0fccb0c44d0cd4a474c46a8c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/7022cd87875d3f5dcfa1cc27fbe92a0156e1e3 b/.git_backup/objects/6e/7022cd87875d3f5dcfa1cc27fbe92a0156e1e3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/725fbc4f6f9d7ec4cc04436e9cf2acc80adcfc b/.git_backup/objects/6e/725fbc4f6f9d7ec4cc04436e9cf2acc80adcfc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/75f55e619414499187c206dddf44bffae4030b b/.git_backup/objects/6e/75f55e619414499187c206dddf44bffae4030b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/7919af78815c55af980c9cb21cdedaf1371d26 b/.git_backup/objects/6e/7919af78815c55af980c9cb21cdedaf1371d26 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/7b1b19a026c4f9c339138a19dd632a758be4e3 b/.git_backup/objects/6e/7b1b19a026c4f9c339138a19dd632a758be4e3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/8272574dd1ddcee53889897513a4a9ac82c1d4 b/.git_backup/objects/6e/8272574dd1ddcee53889897513a4a9ac82c1d4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/83e1b985304bde1d89c07f24379b4ba836afbc b/.git_backup/objects/6e/83e1b985304bde1d89c07f24379b4ba836afbc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/8528845ea6bfffc2575aa0372173491447e342 b/.git_backup/objects/6e/8528845ea6bfffc2575aa0372173491447e342 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/9143826d3d20b4a221135190975d5562597b8e b/.git_backup/objects/6e/9143826d3d20b4a221135190975d5562597b8e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/9c8f7b08a7231b82af43f76042af3cf63189ee b/.git_backup/objects/6e/9c8f7b08a7231b82af43f76042af3cf63189ee deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/a64eb39672171d55daa49de56fc6f33a7554b5 b/.git_backup/objects/6e/a64eb39672171d55daa49de56fc6f33a7554b5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/af051b6fa2b58e88ec86624ebf6f599d6584ed b/.git_backup/objects/6e/af051b6fa2b58e88ec86624ebf6f599d6584ed deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/b236bccb47a0effad52df7be1861f15a15ebf2 b/.git_backup/objects/6e/b236bccb47a0effad52df7be1861f15a15ebf2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/b441541b8ad0180a2b1718f423325099b93007 b/.git_backup/objects/6e/b441541b8ad0180a2b1718f423325099b93007 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/b5c9031fe9c0f9768246399e31a131398873a5 b/.git_backup/objects/6e/b5c9031fe9c0f9768246399e31a131398873a5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/cad62a4aa8d7affb61791c31333bb240200051 b/.git_backup/objects/6e/cad62a4aa8d7affb61791c31333bb240200051 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/d981a0634d1f0d095dd81cd1dcc8e5c59d3501 b/.git_backup/objects/6e/d981a0634d1f0d095dd81cd1dcc8e5c59d3501 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/dcce13db391a6f697f5af92f97d32691372c50 b/.git_backup/objects/6e/dcce13db391a6f697f5af92f97d32691372c50 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/dd0f34f34ee1ac253bc242293c507bb8188d19 b/.git_backup/objects/6e/dd0f34f34ee1ac253bc242293c507bb8188d19 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/e20f26374a2702876979d2d0a294491a07e343 b/.git_backup/objects/6e/e20f26374a2702876979d2d0a294491a07e343 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/e48491eb833da21e5aefe1a8efe521c132cbf4 b/.git_backup/objects/6e/e48491eb833da21e5aefe1a8efe521c132cbf4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/e89dfcc0b7e9dd4c300808124971a6dac80608 b/.git_backup/objects/6e/e89dfcc0b7e9dd4c300808124971a6dac80608 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/ebf0c01ae52292bb92aa58af2c91c576375284 b/.git_backup/objects/6e/ebf0c01ae52292bb92aa58af2c91c576375284 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/eea81ef7d4ea8b98d814d8c43fb6d5f6760e19 b/.git_backup/objects/6e/eea81ef7d4ea8b98d814d8c43fb6d5f6760e19 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/f8a02c0e0230bd1096cd284977576a51c5942d b/.git_backup/objects/6e/f8a02c0e0230bd1096cd284977576a51c5942d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/f9a0909ce4971abc734a0069689bb3aa1ef2a7 b/.git_backup/objects/6e/f9a0909ce4971abc734a0069689bb3aa1ef2a7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6e/fcd11fb6f6a338b48e97bdd5138ee8a723cbbb b/.git_backup/objects/6e/fcd11fb6f6a338b48e97bdd5138ee8a723cbbb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/01fbfd109e76c94b6e6e9bfd9eb388f39d99ee b/.git_backup/objects/6f/01fbfd109e76c94b6e6e9bfd9eb388f39d99ee deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/0cf6bb1b22c77b2daab263ee4082a5d4cf3eb6 b/.git_backup/objects/6f/0cf6bb1b22c77b2daab263ee4082a5d4cf3eb6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/0e452e7046944ea05a4f89e84ab7c197fcebc8 b/.git_backup/objects/6f/0e452e7046944ea05a4f89e84ab7c197fcebc8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/1602e502952779f22eb82dd95cb6ee7d2b3217 b/.git_backup/objects/6f/1602e502952779f22eb82dd95cb6ee7d2b3217 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/1c3137544b15246c47f878a30aa23a2abfdd46 b/.git_backup/objects/6f/1c3137544b15246c47f878a30aa23a2abfdd46 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/2f80656484c4c50e3607c221c6b1fa8bf10e37 b/.git_backup/objects/6f/2f80656484c4c50e3607c221c6b1fa8bf10e37 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/335e0232baa5d6a98b045b8487de5c1e92ff20 b/.git_backup/objects/6f/335e0232baa5d6a98b045b8487de5c1e92ff20 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/34cee47b34770d43b31cf4762a6ff97ff07b80 b/.git_backup/objects/6f/34cee47b34770d43b31cf4762a6ff97ff07b80 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/3807017ecfc57a963b93e1ac9007e2b707a434 b/.git_backup/objects/6f/3807017ecfc57a963b93e1ac9007e2b707a434 deleted file mode 100644 index 0662c1fb..00000000 Binary files a/.git_backup/objects/6f/3807017ecfc57a963b93e1ac9007e2b707a434 and /dev/null differ diff --git a/.git_backup/objects/6f/3c9539a22171cc2f12639492e346d97a9078e8 b/.git_backup/objects/6f/3c9539a22171cc2f12639492e346d97a9078e8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/3d6ffde113b70736b44d3777009caeec1c3ea7 b/.git_backup/objects/6f/3d6ffde113b70736b44d3777009caeec1c3ea7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/3fb58c9f20959dca7a003033e3cfa70f0d1ecd b/.git_backup/objects/6f/3fb58c9f20959dca7a003033e3cfa70f0d1ecd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/43811cf19999cc1fc6e96607427831b28b2c50 b/.git_backup/objects/6f/43811cf19999cc1fc6e96607427831b28b2c50 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/61c88b8e9e226f78acb963b1ae0e0c484334b2 b/.git_backup/objects/6f/61c88b8e9e226f78acb963b1ae0e0c484334b2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/62d44e4ef733c0e713afcd2371fed7f2b3de67 b/.git_backup/objects/6f/62d44e4ef733c0e713afcd2371fed7f2b3de67 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/6477fbc9d2fe6780f47dab914c784ec3e3ae10 b/.git_backup/objects/6f/6477fbc9d2fe6780f47dab914c784ec3e3ae10 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/6dba15d30981d5e0059c46871303f086759ebe b/.git_backup/objects/6f/6dba15d30981d5e0059c46871303f086759ebe deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/6e2c2c69d25dba4d1038a2d548fbf68017f91b b/.git_backup/objects/6f/6e2c2c69d25dba4d1038a2d548fbf68017f91b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/7153fced98ed66a6d2b64d0c799c9830ea792f b/.git_backup/objects/6f/7153fced98ed66a6d2b64d0c799c9830ea792f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/802f1c2acf9cc73481ae86c9e099fcfc28cf25 b/.git_backup/objects/6f/802f1c2acf9cc73481ae86c9e099fcfc28cf25 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/82f756dc75dfedcd11f75d568c6ca21a7a88c0 b/.git_backup/objects/6f/82f756dc75dfedcd11f75d568c6ca21a7a88c0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/8c033af34e01af74d60a05aed1f49fc8fc63ad b/.git_backup/objects/6f/8c033af34e01af74d60a05aed1f49fc8fc63ad deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/8e295032ca46d00fa49a4c890a25e23db83d85 b/.git_backup/objects/6f/8e295032ca46d00fa49a4c890a25e23db83d85 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/8e50a24749f9d3d65157ac0bfd29371860f4b7 b/.git_backup/objects/6f/8e50a24749f9d3d65157ac0bfd29371860f4b7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/8f6d638dd56ea3a3418e2f8f077884d92c1050 b/.git_backup/objects/6f/8f6d638dd56ea3a3418e2f8f077884d92c1050 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/905edc1131fdfea01064db1962cd46258ab6dd b/.git_backup/objects/6f/905edc1131fdfea01064db1962cd46258ab6dd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/95d1492bec69d9de501cd7e389e7dc4f698bb9 b/.git_backup/objects/6f/95d1492bec69d9de501cd7e389e7dc4f698bb9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/96408d6c0d5468e6e226545cc0712be54c5a22 b/.git_backup/objects/6f/96408d6c0d5468e6e226545cc0712be54c5a22 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/a9937e6c57a8429a15411340ab44bf380e4d1c b/.git_backup/objects/6f/a9937e6c57a8429a15411340ab44bf380e4d1c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/aa0aac09c360862f0bd19858cb902b142d32b9 b/.git_backup/objects/6f/aa0aac09c360862f0bd19858cb902b142d32b9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/b19b30bb53c18f38a9ef02dd7c4478670fb962 b/.git_backup/objects/6f/b19b30bb53c18f38a9ef02dd7c4478670fb962 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/b1e9e37095fdf485ce87722d24db8f400f8ce3 b/.git_backup/objects/6f/b1e9e37095fdf485ce87722d24db8f400f8ce3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/b4cf2753d4d5d0fbc2021624c70ed505103fe4 b/.git_backup/objects/6f/b4cf2753d4d5d0fbc2021624c70ed505103fe4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/b9dd2e30973220f32f50b0fa5dbb2602604bb4 b/.git_backup/objects/6f/b9dd2e30973220f32f50b0fa5dbb2602604bb4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/c35aced7135e51aa5382ab4b8d499211391d4e b/.git_backup/objects/6f/c35aced7135e51aa5382ab4b8d499211391d4e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/c7504c79a37872388a99e2abe498e9e9c5b41a b/.git_backup/objects/6f/c7504c79a37872388a99e2abe498e9e9c5b41a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/cdf07b2aa0ece6471a15425a123b8ea7cf9e8d b/.git_backup/objects/6f/cdf07b2aa0ece6471a15425a123b8ea7cf9e8d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/d03962d053509a5b7e9d00f31f709dd8902cca b/.git_backup/objects/6f/d03962d053509a5b7e9d00f31f709dd8902cca deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/d12d884d19df65f1534c13944e988e636166f1 b/.git_backup/objects/6f/d12d884d19df65f1534c13944e988e636166f1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/d494ada5d12b3bfedaff570dc7f6e248949080 b/.git_backup/objects/6f/d494ada5d12b3bfedaff570dc7f6e248949080 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/d5d8f07e4e41410f03af6f47b7dd924f968ea9 b/.git_backup/objects/6f/d5d8f07e4e41410f03af6f47b7dd924f968ea9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/dc9fb1448d7f92d0e9a473c677800491018f14 b/.git_backup/objects/6f/dc9fb1448d7f92d0e9a473c677800491018f14 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/e2cd952d2371a44bcd755af25c8ddeb706012a b/.git_backup/objects/6f/e2cd952d2371a44bcd755af25c8ddeb706012a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/e8da8499399d7c0484847967ad49e4b165589b b/.git_backup/objects/6f/e8da8499399d7c0484847967ad49e4b165589b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/eb6e42375ebebf6dd9440ee09312204cbf1a33 b/.git_backup/objects/6f/eb6e42375ebebf6dd9440ee09312204cbf1a33 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/f3c766f7dd9f4111cbd9d2a5f668e4435798b5 b/.git_backup/objects/6f/f3c766f7dd9f4111cbd9d2a5f668e4435798b5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/6f/f9fe36e7be454cd46ff2a3a1491294058924bc b/.git_backup/objects/6f/f9fe36e7be454cd46ff2a3a1491294058924bc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/085d896fe71b1d6213fa043524fd76890a0f88 b/.git_backup/objects/70/085d896fe71b1d6213fa043524fd76890a0f88 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/156092eeabe9583036d8800ede3208ce7afe75 b/.git_backup/objects/70/156092eeabe9583036d8800ede3208ce7afe75 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/163414c9fc5763506a2ccd1a1c0578f1d094fd b/.git_backup/objects/70/163414c9fc5763506a2ccd1a1c0578f1d094fd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/22edfe3f685804baed2965f120cbc320a3e10a b/.git_backup/objects/70/22edfe3f685804baed2965f120cbc320a3e10a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/2ab3916d77aadcf9682db29b677b25658e2645 b/.git_backup/objects/70/2ab3916d77aadcf9682db29b677b25658e2645 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/30686916cb70fe227a142a0a35a57f082532ac b/.git_backup/objects/70/30686916cb70fe227a142a0a35a57f082532ac deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/3942a6db5bf1e1fe85f0c8cb88eebc06b1304a b/.git_backup/objects/70/3942a6db5bf1e1fe85f0c8cb88eebc06b1304a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/3baf47561b5c624973bb59aba1ab2ce8e991ee b/.git_backup/objects/70/3baf47561b5c624973bb59aba1ab2ce8e991ee deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/3eea56fbd97737bec3c40d10d5a254d725f269 b/.git_backup/objects/70/3eea56fbd97737bec3c40d10d5a254d725f269 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/3f163b71948a3082de9a84209ff80f97c05d47 b/.git_backup/objects/70/3f163b71948a3082de9a84209ff80f97c05d47 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/40f3b4b8bd53cb9a4c1ddb880b2a05a4bc28d3 b/.git_backup/objects/70/40f3b4b8bd53cb9a4c1ddb880b2a05a4bc28d3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/45044bc723c25ce448f0ec9373a088d94cd284 b/.git_backup/objects/70/45044bc723c25ce448f0ec9373a088d94cd284 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/45a0abbeb81905acad61d5931a671c603d807a b/.git_backup/objects/70/45a0abbeb81905acad61d5931a671c603d807a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/5138fc88a952316fc52f884c5762a4785cd798 b/.git_backup/objects/70/5138fc88a952316fc52f884c5762a4785cd798 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/52504cc202c27e3c4f471c683c6b89d41f55cc b/.git_backup/objects/70/52504cc202c27e3c4f471c683c6b89d41f55cc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/596dc09b1828e43c6264e5ff5293bd692ce863 b/.git_backup/objects/70/596dc09b1828e43c6264e5ff5293bd692ce863 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/5c6bab8ee1661ed904afe1d01d7196aba43499 b/.git_backup/objects/70/5c6bab8ee1661ed904afe1d01d7196aba43499 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/5dd67f78590b2f359b5a2ad1d882ed90e7bd20 b/.git_backup/objects/70/5dd67f78590b2f359b5a2ad1d882ed90e7bd20 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/5e3b474808ba5637237eb0dc4fee87c258eb04 b/.git_backup/objects/70/5e3b474808ba5637237eb0dc4fee87c258eb04 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/6ba600a93c1b72594d96d3026daaa1998935b6 b/.git_backup/objects/70/6ba600a93c1b72594d96d3026daaa1998935b6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/727c228f4e70d425873589c154dfd3c463c253 b/.git_backup/objects/70/727c228f4e70d425873589c154dfd3c463c253 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/72dec22958ad5ac74ba3457a178a4faadaf570 b/.git_backup/objects/70/72dec22958ad5ac74ba3457a178a4faadaf570 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/730927ecaed778ebbdee98eb37c24ec3f1a8e6 b/.git_backup/objects/70/730927ecaed778ebbdee98eb37c24ec3f1a8e6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/7609d3d811b2ab106d1c93fca99ab43192dae1 b/.git_backup/objects/70/7609d3d811b2ab106d1c93fca99ab43192dae1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/7e500d7fbf6a8a9a0423349ffab99cb1dd62b6 b/.git_backup/objects/70/7e500d7fbf6a8a9a0423349ffab99cb1dd62b6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/820436b11d6414270a43f74fc3fb929159b59d b/.git_backup/objects/70/820436b11d6414270a43f74fc3fb929159b59d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/835816d5927b43225c32122bd6d3db405a25de b/.git_backup/objects/70/835816d5927b43225c32122bd6d3db405a25de deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/84015a6dfc8150e8654af75301fdfd791a8b57 b/.git_backup/objects/70/84015a6dfc8150e8654af75301fdfd791a8b57 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/87392792451ba4361e640cb38ce11250e1ca84 b/.git_backup/objects/70/87392792451ba4361e640cb38ce11250e1ca84 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/9008194a30544056b82971df02b275bd04c570 b/.git_backup/objects/70/9008194a30544056b82971df02b275bd04c570 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/93e5803dd4de2b05cb9fab7ef0a7ae0980997a b/.git_backup/objects/70/93e5803dd4de2b05cb9fab7ef0a7ae0980997a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/9c6d2b68ca8d94c407466df69861dd6226b648 b/.git_backup/objects/70/9c6d2b68ca8d94c407466df69861dd6226b648 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/aa72f4252e3b04e6372159f91cf8a23cedb552 b/.git_backup/objects/70/aa72f4252e3b04e6372159f91cf8a23cedb552 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/aebd5d539256e0abd453bb45828b691c6abdf0 b/.git_backup/objects/70/aebd5d539256e0abd453bb45828b691c6abdf0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/b0cd7909b2fd6bb38880b03d939c61920efa8f b/.git_backup/objects/70/b0cd7909b2fd6bb38880b03d939c61920efa8f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/b2bee0f1fe34b7c1b5637360b94ee4eeb08a7d b/.git_backup/objects/70/b2bee0f1fe34b7c1b5637360b94ee4eeb08a7d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/b335d39d1812ecfdb3c6e99d97e0d20e35a2f1 b/.git_backup/objects/70/b335d39d1812ecfdb3c6e99d97e0d20e35a2f1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/b9af358c1b9d5bbe7945e829e67c8c56ab2148 b/.git_backup/objects/70/b9af358c1b9d5bbe7945e829e67c8c56ab2148 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/bc82af741b7f110c28454ed6e449f5bd939ece b/.git_backup/objects/70/bc82af741b7f110c28454ed6e449f5bd939ece deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/c198baf743457c58a8fe4d1f28186d8541a505 b/.git_backup/objects/70/c198baf743457c58a8fe4d1f28186d8541a505 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/d747d302a7f47093c71fa3c62932b81e4ca792 b/.git_backup/objects/70/d747d302a7f47093c71fa3c62932b81e4ca792 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/dea36dbab5e2983cb67af484c97627ea14912b b/.git_backup/objects/70/dea36dbab5e2983cb67af484c97627ea14912b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/ede9513672084527f253d0061a97d9242fc5c6 b/.git_backup/objects/70/ede9513672084527f253d0061a97d9242fc5c6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/ee90e6be5d5f5eb7670caae8c3ebafc7ef1a66 b/.git_backup/objects/70/ee90e6be5d5f5eb7670caae8c3ebafc7ef1a66 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/f576d4aa86b02c06b2ef8e9a61a1b1897c8c8e b/.git_backup/objects/70/f576d4aa86b02c06b2ef8e9a61a1b1897c8c8e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/70/fbb11ea7842f72661b7ce88c736d4e7463505a b/.git_backup/objects/70/fbb11ea7842f72661b7ce88c736d4e7463505a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/050e76b1b0b94ccb3607ca4aabf38c0cebbba5 b/.git_backup/objects/71/050e76b1b0b94ccb3607ca4aabf38c0cebbba5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/0ad23f8ed660c17f4f5e902da7793825f84521 b/.git_backup/objects/71/0ad23f8ed660c17f4f5e902da7793825f84521 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/0ddcb5e1569b3bbcf46549cbeabdb1130c25be b/.git_backup/objects/71/0ddcb5e1569b3bbcf46549cbeabdb1130c25be deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/0f486438651dcaedb650edefd818d023277150 b/.git_backup/objects/71/0f486438651dcaedb650edefd818d023277150 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/1a438bdb77ea04b4dfa48641b14efa929dc38f b/.git_backup/objects/71/1a438bdb77ea04b4dfa48641b14efa929dc38f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/2ba4fd8ef700f371ac8c106d8b2e223c2d7998 b/.git_backup/objects/71/2ba4fd8ef700f371ac8c106d8b2e223c2d7998 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/2c691627c38b9e22a9331d481520f89bdd041b b/.git_backup/objects/71/2c691627c38b9e22a9331d481520f89bdd041b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/2e9785f47f7368ee32c18f770e2a757afad934 b/.git_backup/objects/71/2e9785f47f7368ee32c18f770e2a757afad934 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/35103b3352082d4bf55828cb8ff567f36800d2 b/.git_backup/objects/71/35103b3352082d4bf55828cb8ff567f36800d2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/40e384641f6586d53c3ec5d0e21b034b9ef7cf b/.git_backup/objects/71/40e384641f6586d53c3ec5d0e21b034b9ef7cf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/434482ad8e82e702b2d2024952fe871ed419cd b/.git_backup/objects/71/434482ad8e82e702b2d2024952fe871ed419cd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/487fd5b8fdfa9ff5dc123bac98f8e76d344ec9 b/.git_backup/objects/71/487fd5b8fdfa9ff5dc123bac98f8e76d344ec9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/48bf698ef74ecda40ffed82e94f689e1ebe077 b/.git_backup/objects/71/48bf698ef74ecda40ffed82e94f689e1ebe077 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/4b0c562889a8a774d9aa27810d8400164d00e6 b/.git_backup/objects/71/4b0c562889a8a774d9aa27810d8400164d00e6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/4e70d902db98c22619f7ae0e09288b71d6acd7 b/.git_backup/objects/71/4e70d902db98c22619f7ae0e09288b71d6acd7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/5ce69a2dc66a5c0486adf3a9e5b664d871846f b/.git_backup/objects/71/5ce69a2dc66a5c0486adf3a9e5b664d871846f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/63e44290b3506229ce948ebf43776d11db078d b/.git_backup/objects/71/63e44290b3506229ce948ebf43776d11db078d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/65616af7e6493439f65fa637a9d1388d5aefaf b/.git_backup/objects/71/65616af7e6493439f65fa637a9d1388d5aefaf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/66b1920e127e5ec2dd98da57ec8374cb946163 b/.git_backup/objects/71/66b1920e127e5ec2dd98da57ec8374cb946163 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/73f9d46b03eb7d59962aa8ebdc6b73ed2419ad b/.git_backup/objects/71/73f9d46b03eb7d59962aa8ebdc6b73ed2419ad deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/7e5e155c2dd058299a450bfb4ef72e18ce8bb6 b/.git_backup/objects/71/7e5e155c2dd058299a450bfb4ef72e18ce8bb6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/7f2d77d13c22ee920540c364444830321f0468 b/.git_backup/objects/71/7f2d77d13c22ee920540c364444830321f0468 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/831b48902809d34a1f22c1296c7ce5ee61406e b/.git_backup/objects/71/831b48902809d34a1f22c1296c7ce5ee61406e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/85e5376944e2e7f4947d160ad56fc92fc90aa6 b/.git_backup/objects/71/85e5376944e2e7f4947d160ad56fc92fc90aa6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/88c1ced805beda13edb73e2cf5d0fdf89eec1e b/.git_backup/objects/71/88c1ced805beda13edb73e2cf5d0fdf89eec1e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/88c49e0b3ffa223f319b368a9e315d80950911 b/.git_backup/objects/71/88c49e0b3ffa223f319b368a9e315d80950911 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/8aa5200cd310b3bc76b8b156083faaeef3c1f5 b/.git_backup/objects/71/8aa5200cd310b3bc76b8b156083faaeef3c1f5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/93509d5399f0f78db99c93b5a70415514d1fe7 b/.git_backup/objects/71/93509d5399f0f78db99c93b5a70415514d1fe7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/9912aae043ad5b4a2805ce73a6407926c12eff b/.git_backup/objects/71/9912aae043ad5b4a2805ce73a6407926c12eff deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/9a4472fb9e302282fd7fb70c39c7ae70a7f4e9 b/.git_backup/objects/71/9a4472fb9e302282fd7fb70c39c7ae70a7f4e9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/9a9b41edcd86e8167f0bc89dd7dc0c95516fc5 b/.git_backup/objects/71/9a9b41edcd86e8167f0bc89dd7dc0c95516fc5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/9d69dd801b78b360c6c2234080eee638b8de82 b/.git_backup/objects/71/9d69dd801b78b360c6c2234080eee638b8de82 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/9ea72a4db2d0c74c5340e1bcb98554b05eac38 b/.git_backup/objects/71/9ea72a4db2d0c74c5340e1bcb98554b05eac38 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/a02d30984ff185355b60c694cc7dc4a961275c b/.git_backup/objects/71/a02d30984ff185355b60c694cc7dc4a961275c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/a1f56fe3022dd77ba557645448ed504401f645 b/.git_backup/objects/71/a1f56fe3022dd77ba557645448ed504401f645 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/a47a5d6a443590ce252b0054ee3441011715d5 b/.git_backup/objects/71/a47a5d6a443590ce252b0054ee3441011715d5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/aa7eafe95d64f82afe719c479e3aac32f0bd6c b/.git_backup/objects/71/aa7eafe95d64f82afe719c479e3aac32f0bd6c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/b19dbe75fe08279dfb00de7de7679b7eeda51b b/.git_backup/objects/71/b19dbe75fe08279dfb00de7de7679b7eeda51b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/b4eeabbaaf59878d9bf68f104f0f638f8c0350 b/.git_backup/objects/71/b4eeabbaaf59878d9bf68f104f0f638f8c0350 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/c5c57e10a5ecdb61ef295f8e59f2f06370c06e b/.git_backup/objects/71/c5c57e10a5ecdb61ef295f8e59f2f06370c06e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/c852b6ca15a398c64ff8e6b2ac3d2cf1bdeb76 b/.git_backup/objects/71/c852b6ca15a398c64ff8e6b2ac3d2cf1bdeb76 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/cb2f66073e2f2f7c60ccd93086c0b4b280f2ce b/.git_backup/objects/71/cb2f66073e2f2f7c60ccd93086c0b4b280f2ce deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/ce496cca030fc38566374a5c0fd0976575e4bd b/.git_backup/objects/71/ce496cca030fc38566374a5c0fd0976575e4bd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/d1fa775fd5550dfacecea0a8928e1d75899ef1 b/.git_backup/objects/71/d1fa775fd5550dfacecea0a8928e1d75899ef1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/d8aa1cf4430690e10fcdd8bacff27b0c8eacb7 b/.git_backup/objects/71/d8aa1cf4430690e10fcdd8bacff27b0c8eacb7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/db7164af8c627a6256d393cd3e027d101d9486 b/.git_backup/objects/71/db7164af8c627a6256d393cd3e027d101d9486 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/de9bbc4814ca5a78727be8d98856f8fa56f253 b/.git_backup/objects/71/de9bbc4814ca5a78727be8d98856f8fa56f253 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/dec0e6292590bc3b9c65ef557b55015397b8c6 b/.git_backup/objects/71/dec0e6292590bc3b9c65ef557b55015397b8c6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/ee82981721db171a0793038ee91d2ab1819774 b/.git_backup/objects/71/ee82981721db171a0793038ee91d2ab1819774 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/f1d03ea6d1fad7351311a60323430c3b49788f b/.git_backup/objects/71/f1d03ea6d1fad7351311a60323430c3b49788f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/f2c7c59d226a71ec9e78c12c912c7a0433842e b/.git_backup/objects/71/f2c7c59d226a71ec9e78c12c912c7a0433842e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/f66bd03cb713a2190853bdf7170c4ea80d2425 b/.git_backup/objects/71/f66bd03cb713a2190853bdf7170c4ea80d2425 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/71/fc07bc0669bcc78553215af0d3419e440290d5 b/.git_backup/objects/71/fc07bc0669bcc78553215af0d3419e440290d5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/0977be8d44ce95e822fa673696e0e3a677fadd b/.git_backup/objects/72/0977be8d44ce95e822fa673696e0e3a677fadd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/0cd81db6f47175609b527beff5bcf4bacd869c b/.git_backup/objects/72/0cd81db6f47175609b527beff5bcf4bacd869c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/106b308a9465d47f223cbb264745414d5493c5 b/.git_backup/objects/72/106b308a9465d47f223cbb264745414d5493c5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/107d849f59818ff21ff04ab541faac01f96e00 b/.git_backup/objects/72/107d849f59818ff21ff04ab541faac01f96e00 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/10eb093dfcbff544a3419f914c3ef39cf8e7b4 b/.git_backup/objects/72/10eb093dfcbff544a3419f914c3ef39cf8e7b4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/21e560c1112dbd68c26780d87666daecd3ab79 b/.git_backup/objects/72/21e560c1112dbd68c26780d87666daecd3ab79 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/27b2af04eaf7faada4fe9e33d1893fbb105d40 b/.git_backup/objects/72/27b2af04eaf7faada4fe9e33d1893fbb105d40 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/2d1225b910cfa4020b332ff78c653d8b83ff37 b/.git_backup/objects/72/2d1225b910cfa4020b332ff78c653d8b83ff37 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/352865b38787bd08a606c63334a4c62750240c b/.git_backup/objects/72/352865b38787bd08a606c63334a4c62750240c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/3fcdd1565295a46b09730c9985885da3f636b8 b/.git_backup/objects/72/3fcdd1565295a46b09730c9985885da3f636b8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/431f8be229b578f6231e24263e1eaabaa24649 b/.git_backup/objects/72/431f8be229b578f6231e24263e1eaabaa24649 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/442c4fec61dc20079231dedd233b6791907867 b/.git_backup/objects/72/442c4fec61dc20079231dedd233b6791907867 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/48ad3ab643735f107dafc16e653c804a4fe81f b/.git_backup/objects/72/48ad3ab643735f107dafc16e653c804a4fe81f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/4b573425364ca7cca69ef21aa42470ef33593f b/.git_backup/objects/72/4b573425364ca7cca69ef21aa42470ef33593f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/4fb25211d368e9b31b12a5ae0fe83aa8a11cb3 b/.git_backup/objects/72/4fb25211d368e9b31b12a5ae0fe83aa8a11cb3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/58f5eceb54af9b17327aa92b14a94581e05cbd b/.git_backup/objects/72/58f5eceb54af9b17327aa92b14a94581e05cbd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/5978d53720202bf7b1a64f356f47c49d42fd92 b/.git_backup/objects/72/5978d53720202bf7b1a64f356f47c49d42fd92 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/5f821a64adb5d7ef7b3d9ca7025b1c80fe5093 b/.git_backup/objects/72/5f821a64adb5d7ef7b3d9ca7025b1c80fe5093 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/61ed3a60d3470cd2761427ccc519ca2e8f937c b/.git_backup/objects/72/61ed3a60d3470cd2761427ccc519ca2e8f937c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/629b910ace9c9f9bab1b90d39dbc5e043409b7 b/.git_backup/objects/72/629b910ace9c9f9bab1b90d39dbc5e043409b7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/641a5827daf66dcf1f34c2dc79d16f50c14dc5 b/.git_backup/objects/72/641a5827daf66dcf1f34c2dc79d16f50c14dc5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/66ecf8fffdf4f6ec08d844506bfee7f8803bfd b/.git_backup/objects/72/66ecf8fffdf4f6ec08d844506bfee7f8803bfd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/67effed2413ba315d0a1af8490ec677c227662 b/.git_backup/objects/72/67effed2413ba315d0a1af8490ec677c227662 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/68eb3738e5b3ba906f962533f48016cf3dcabc b/.git_backup/objects/72/68eb3738e5b3ba906f962533f48016cf3dcabc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/6b78fbd43bd34086e43a0b68bd1d9323299791 b/.git_backup/objects/72/6b78fbd43bd34086e43a0b68bd1d9323299791 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/71fdd2e62c10bdc2e5c0d95efac9d9fc2131c0 b/.git_backup/objects/72/71fdd2e62c10bdc2e5c0d95efac9d9fc2131c0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/748e3299f35b0e7f550e1afb05daf25323a610 b/.git_backup/objects/72/748e3299f35b0e7f550e1afb05daf25323a610 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/76b125492a79f0acf99a0981867f0b5871777e b/.git_backup/objects/72/76b125492a79f0acf99a0981867f0b5871777e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/77595f1d63184c996a64e1f75c23d1a0c8cbc1 b/.git_backup/objects/72/77595f1d63184c996a64e1f75c23d1a0c8cbc1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/77b33ad37c8e8c9ed6b97e9ba98cba089a0696 b/.git_backup/objects/72/77b33ad37c8e8c9ed6b97e9ba98cba089a0696 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/788a5c7f13d4f29b76a6e5e59f6522df5a6558 b/.git_backup/objects/72/788a5c7f13d4f29b76a6e5e59f6522df5a6558 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/7b023dfea42a575870a5327ab9d39007f61c17 b/.git_backup/objects/72/7b023dfea42a575870a5327ab9d39007f61c17 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/7c0c7866843c3b065c7bb4121223c54617f75e b/.git_backup/objects/72/7c0c7866843c3b065c7bb4121223c54617f75e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/803107e0c2d90928ea84d1c24cd9e963195999 b/.git_backup/objects/72/803107e0c2d90928ea84d1c24cd9e963195999 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/85461e04d3206f7539670d98860377b25db718 b/.git_backup/objects/72/85461e04d3206f7539670d98860377b25db718 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/8ce620f945be978b0ec61e26288a319a76e320 b/.git_backup/objects/72/8ce620f945be978b0ec61e26288a319a76e320 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/93bd3260b1aa9e9c8ac2231336652ae2233233 b/.git_backup/objects/72/93bd3260b1aa9e9c8ac2231336652ae2233233 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/95c4283549033b021ee96132cd6b3cd747804a b/.git_backup/objects/72/95c4283549033b021ee96132cd6b3cd747804a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/961a6d94c761d7cb5e367f5acc4e816a47c735 b/.git_backup/objects/72/961a6d94c761d7cb5e367f5acc4e816a47c735 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/a271c9243e97bbd61812b079a86185d4a8550f b/.git_backup/objects/72/a271c9243e97bbd61812b079a86185d4a8550f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/aa5bfd4b60d8e6ef6ed0cf2ae4f763d12195cc b/.git_backup/objects/72/aa5bfd4b60d8e6ef6ed0cf2ae4f763d12195cc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/b939b79c321cb860c27cdf1a6aecf33f6c32f5 b/.git_backup/objects/72/b939b79c321cb860c27cdf1a6aecf33f6c32f5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/b9a3e424707633c7e31a347170f358cfa3f87a b/.git_backup/objects/72/b9a3e424707633c7e31a347170f358cfa3f87a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/bb643f23340da63b79cac48d341eceb88af99a b/.git_backup/objects/72/bb643f23340da63b79cac48d341eceb88af99a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/c171434a159a189800de18ddfac347d9a7cac8 b/.git_backup/objects/72/c171434a159a189800de18ddfac347d9a7cac8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/c91836ff2b4493dc7c98bcfacc6cbc75e7e293 b/.git_backup/objects/72/c91836ff2b4493dc7c98bcfacc6cbc75e7e293 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/c9ceaefd54d3c4958ebcca6a587318dd4063d2 b/.git_backup/objects/72/c9ceaefd54d3c4958ebcca6a587318dd4063d2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/d1a7e30b673c69ba6b6fc02a46030ed8f56e59 b/.git_backup/objects/72/d1a7e30b673c69ba6b6fc02a46030ed8f56e59 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/d8e9de4f75036506905b0bd491a773ae44b39f b/.git_backup/objects/72/d8e9de4f75036506905b0bd491a773ae44b39f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/e38af268e81892f37e42c8fb6ff4cd186a9262 b/.git_backup/objects/72/e38af268e81892f37e42c8fb6ff4cd186a9262 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/f2587d956f0d6ce2166133d4b383b5c6e98bae b/.git_backup/objects/72/f2587d956f0d6ce2166133d4b383b5c6e98bae deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/72/fe7e47a610f82067e7e16b828d5429457622f3 b/.git_backup/objects/72/fe7e47a610f82067e7e16b828d5429457622f3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/0172ca569382be6d18c30203829e9368d048f6 b/.git_backup/objects/73/0172ca569382be6d18c30203829e9368d048f6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/04ea23ba882ab2349c490e8bccfc3ee719f741 b/.git_backup/objects/73/04ea23ba882ab2349c490e8bccfc3ee719f741 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/081ec5031cdaad3c2656fbcf8bfa816045757f b/.git_backup/objects/73/081ec5031cdaad3c2656fbcf8bfa816045757f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/0cad5e8250ec46417f3bf634008d8074430c3e b/.git_backup/objects/73/0cad5e8250ec46417f3bf634008d8074430c3e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/10ff8b33b17c1d3fc3b885c5cdd80f38af30d2 b/.git_backup/objects/73/10ff8b33b17c1d3fc3b885c5cdd80f38af30d2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/18423e48058194997e763a7d9a3a8bed8ad7ed b/.git_backup/objects/73/18423e48058194997e763a7d9a3a8bed8ad7ed deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/18f18755982c7ee341c27bb3a092b44c946ad6 b/.git_backup/objects/73/18f18755982c7ee341c27bb3a092b44c946ad6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/196b6ebe31f6cda8d0f64c5e8ce8e10a040753 b/.git_backup/objects/73/196b6ebe31f6cda8d0f64c5e8ce8e10a040753 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/2bb31663200f0a57121fe3a47644b9f9454746 b/.git_backup/objects/73/2bb31663200f0a57121fe3a47644b9f9454746 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/2dd2cbfa9c7fd029bb59b4cfcb630cc1077f54 b/.git_backup/objects/73/2dd2cbfa9c7fd029bb59b4cfcb630cc1077f54 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/318485d0e338c8cd9801840f1dc17612719d03 b/.git_backup/objects/73/318485d0e338c8cd9801840f1dc17612719d03 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/36609d9dbe3010869f54db2849bb0a091a0c39 b/.git_backup/objects/73/36609d9dbe3010869f54db2849bb0a091a0c39 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/3b3329f5011005695a27c8ca066301baf8e2b8 b/.git_backup/objects/73/3b3329f5011005695a27c8ca066301baf8e2b8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/3f51c7239467da0f967b2aa790a2df76cfa185 b/.git_backup/objects/73/3f51c7239467da0f967b2aa790a2df76cfa185 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/3fa7bffc29762c809c346d953f8fddbac2ffb6 b/.git_backup/objects/73/3fa7bffc29762c809c346d953f8fddbac2ffb6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/445ab175ac3916fbcfa655e91c73698ba673e5 b/.git_backup/objects/73/445ab175ac3916fbcfa655e91c73698ba673e5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/4bbe8df759f1b1bf0fd380d52fff8577f98cd8 b/.git_backup/objects/73/4bbe8df759f1b1bf0fd380d52fff8577f98cd8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/5d1c31615d2632dbddd03b38366aac3e6f7110 b/.git_backup/objects/73/5d1c31615d2632dbddd03b38366aac3e6f7110 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/5d56435a3793b4839dc4c0f2aa3db8b6b744af b/.git_backup/objects/73/5d56435a3793b4839dc4c0f2aa3db8b6b744af deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/6109a7c99415a9fefb9d4d515f799a66d9edfa b/.git_backup/objects/73/6109a7c99415a9fefb9d4d515f799a66d9edfa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/61a55aeada1b5d0702466f33b919c8a83e6246 b/.git_backup/objects/73/61a55aeada1b5d0702466f33b919c8a83e6246 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/684e300ed772f63d8bb5a5cf31ad02ee6db569 b/.git_backup/objects/73/684e300ed772f63d8bb5a5cf31ad02ee6db569 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/6d4509359a4ee454cbfe1530fb0597a2118c5e b/.git_backup/objects/73/6d4509359a4ee454cbfe1530fb0597a2118c5e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/6e112327cd05e3d1cdc21b33662a1290b5d776 b/.git_backup/objects/73/6e112327cd05e3d1cdc21b33662a1290b5d776 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/75c173cdde027cf87cc58d3c7166099dba46c8 b/.git_backup/objects/73/75c173cdde027cf87cc58d3c7166099dba46c8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/7da29da46a4e70c2e9b1735aafbba067fa48af b/.git_backup/objects/73/7da29da46a4e70c2e9b1735aafbba067fa48af deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/7f50944ce9a1db2de7a1867225c37a81b0d66e b/.git_backup/objects/73/7f50944ce9a1db2de7a1867225c37a81b0d66e deleted file mode 100644 index 02d99347..00000000 Binary files a/.git_backup/objects/73/7f50944ce9a1db2de7a1867225c37a81b0d66e and /dev/null differ diff --git a/.git_backup/objects/73/811236aa5ddaea4ff5c07f80df12ee2b6949d1 b/.git_backup/objects/73/811236aa5ddaea4ff5c07f80df12ee2b6949d1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/8fc4d0bcdbfdbea8792433e3ba0235c461ae2b b/.git_backup/objects/73/8fc4d0bcdbfdbea8792433e3ba0235c461ae2b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/90cc45f201998aaae502664fe7423a42f0b766 b/.git_backup/objects/73/90cc45f201998aaae502664fe7423a42f0b766 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/91cac57bed6aa5d8a8bb591edcae5c5349173d b/.git_backup/objects/73/91cac57bed6aa5d8a8bb591edcae5c5349173d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/96b44dea1c5f7b333b77e3ffc6361194311ee4 b/.git_backup/objects/73/96b44dea1c5f7b333b77e3ffc6361194311ee4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/97c978297b3f64c7e6540b23f448f280e30bcc b/.git_backup/objects/73/97c978297b3f64c7e6540b23f448f280e30bcc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/9bd905ba1389543b030db12e18564728209ff3 b/.git_backup/objects/73/9bd905ba1389543b030db12e18564728209ff3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/9d03ddc852d2adf4efe8243b33ca944f0238dd b/.git_backup/objects/73/9d03ddc852d2adf4efe8243b33ca944f0238dd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/9e44823171447c0c2398ba9fe7364fb7ca24b6 b/.git_backup/objects/73/9e44823171447c0c2398ba9fe7364fb7ca24b6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/a1de740585904d9f3ade9adfc0be684546704c b/.git_backup/objects/73/a1de740585904d9f3ade9adfc0be684546704c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/a5e2762c70a64047bbba2bad7b2659fa7a78d2 b/.git_backup/objects/73/a5e2762c70a64047bbba2bad7b2659fa7a78d2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/a889215b074132b74725d98a7f3c44d79fc063 b/.git_backup/objects/73/a889215b074132b74725d98a7f3c44d79fc063 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/ada498663e2f9af11161919e8dd3cd07f5c1b5 b/.git_backup/objects/73/ada498663e2f9af11161919e8dd3cd07f5c1b5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/b15a031363144337e634f369a6a8f3d279bf7d b/.git_backup/objects/73/b15a031363144337e634f369a6a8f3d279bf7d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/b15a30fdf57f84f1cd7a7045236eff641d7a99 b/.git_backup/objects/73/b15a30fdf57f84f1cd7a7045236eff641d7a99 deleted file mode 100644 index 801e889f..00000000 Binary files a/.git_backup/objects/73/b15a30fdf57f84f1cd7a7045236eff641d7a99 and /dev/null differ diff --git a/.git_backup/objects/73/b2d8ac2c1f5fca6bd14a4f97fe01ec750d79f6 b/.git_backup/objects/73/b2d8ac2c1f5fca6bd14a4f97fe01ec750d79f6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/b4b336ab55544e6061409261c16cacc39aff61 b/.git_backup/objects/73/b4b336ab55544e6061409261c16cacc39aff61 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/b5f23cb3d18d24a76578ef181f373b2fe930cc b/.git_backup/objects/73/b5f23cb3d18d24a76578ef181f373b2fe930cc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/b60928c61f97ffd236d7e51021817f7f54e4a6 b/.git_backup/objects/73/b60928c61f97ffd236d7e51021817f7f54e4a6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/bd60e6772db727c452dbbbd82ca611505c8e68 b/.git_backup/objects/73/bd60e6772db727c452dbbbd82ca611505c8e68 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/c5ebe90d532ca6d88c5d906eeb0bb29f44bd23 b/.git_backup/objects/73/c5ebe90d532ca6d88c5d906eeb0bb29f44bd23 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/c7079981e6e2d8bbc880785461d655bb4d4f0e b/.git_backup/objects/73/c7079981e6e2d8bbc880785461d655bb4d4f0e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/c74ceecbd6a3a35f0cb7e1f4de8fea07143bfe b/.git_backup/objects/73/c74ceecbd6a3a35f0cb7e1f4de8fea07143bfe deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/cb0026561b228254398f642879bebf07e398c4 b/.git_backup/objects/73/cb0026561b228254398f642879bebf07e398c4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/ccc1e2cbaa15855dc21b33dd5473ae3222e2ea b/.git_backup/objects/73/ccc1e2cbaa15855dc21b33dd5473ae3222e2ea deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/d086fdcfc143dfc73a186c438b6412c3dbb901 b/.git_backup/objects/73/d086fdcfc143dfc73a186c438b6412c3dbb901 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/d0afb5e95f099f8b04253177e8a3ab3d80d0c4 b/.git_backup/objects/73/d0afb5e95f099f8b04253177e8a3ab3d80d0c4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/d479181d21c5857520a57d59cd3c43e21afa28 b/.git_backup/objects/73/d479181d21c5857520a57d59cd3c43e21afa28 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/dc401b3b350e04571798e6daf50e998a12337b b/.git_backup/objects/73/dc401b3b350e04571798e6daf50e998a12337b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/df2e1aed6c4b9a371072adafa69b17850c6b09 b/.git_backup/objects/73/df2e1aed6c4b9a371072adafa69b17850c6b09 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/e17937e91ffd1dd75b88dbdb6e838d195c4dd6 b/.git_backup/objects/73/e17937e91ffd1dd75b88dbdb6e838d195c4dd6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/e3a1312548db7ba6c8f98e99aa61753aebc566 b/.git_backup/objects/73/e3a1312548db7ba6c8f98e99aa61753aebc566 deleted file mode 100644 index 1b3901e2..00000000 Binary files a/.git_backup/objects/73/e3a1312548db7ba6c8f98e99aa61753aebc566 and /dev/null differ diff --git a/.git_backup/objects/73/f58d7740813264d20047ffe918c82e1acc84eb b/.git_backup/objects/73/f58d7740813264d20047ffe918c82e1acc84eb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/f88c8a3a5f4c633d69a1e97a36f31f10f81beb b/.git_backup/objects/73/f88c8a3a5f4c633d69a1e97a36f31f10f81beb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/73/ffd4ccc969bc68414ae885266a559e19ec1aad b/.git_backup/objects/73/ffd4ccc969bc68414ae885266a559e19ec1aad deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/051ac7b46c70dc01919a362d05a8bbbe11333a b/.git_backup/objects/74/051ac7b46c70dc01919a362d05a8bbbe11333a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/0657a44ad017048c6e9263a42ce0389270f5c2 b/.git_backup/objects/74/0657a44ad017048c6e9263a42ce0389270f5c2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/14fdf190936121f59332eccb0e2e23eee88737 b/.git_backup/objects/74/14fdf190936121f59332eccb0e2e23eee88737 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/1eb0aceebbf36ac18a71172a237ca481386ae1 b/.git_backup/objects/74/1eb0aceebbf36ac18a71172a237ca481386ae1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/20741bc027e4447a531ee7def554b70ec4d575 b/.git_backup/objects/74/20741bc027e4447a531ee7def554b70ec4d575 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/26c4554de37100d3903fe9ff58936fc6763a37 b/.git_backup/objects/74/26c4554de37100d3903fe9ff58936fc6763a37 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/2b52ab9c3f32b8f0a804524987378cc7d01780 b/.git_backup/objects/74/2b52ab9c3f32b8f0a804524987378cc7d01780 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/30a623294a4ea5dc032bda1c186c9edb86d65a b/.git_backup/objects/74/30a623294a4ea5dc032bda1c186c9edb86d65a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/34707e750f5b9c2ccc4283cfb054f49d3fbed1 b/.git_backup/objects/74/34707e750f5b9c2ccc4283cfb054f49d3fbed1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/3576a080a0af8d0995f307ea6afc645b13ca61 b/.git_backup/objects/74/3576a080a0af8d0995f307ea6afc645b13ca61 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/3f5588faf3ad79850df7bd196749e7a6c03f93 b/.git_backup/objects/74/3f5588faf3ad79850df7bd196749e7a6c03f93 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/404487d88f185da72e8b9f0da769dacffe6a3c b/.git_backup/objects/74/404487d88f185da72e8b9f0da769dacffe6a3c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/40a4b6e0f5c3d9506d03d5fb1b156962b35c05 b/.git_backup/objects/74/40a4b6e0f5c3d9506d03d5fb1b156962b35c05 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/44ac9453b9f4be9046067cf049b1d9b2081fe9 b/.git_backup/objects/74/44ac9453b9f4be9046067cf049b1d9b2081fe9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/4bd7ef58b4870406fcef8cb3b3667548a0ccea b/.git_backup/objects/74/4bd7ef58b4870406fcef8cb3b3667548a0ccea deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/4ff709170773f638a0b7dac9bdf4f2018bee0c b/.git_backup/objects/74/4ff709170773f638a0b7dac9bdf4f2018bee0c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/52a8f22faee515b73a7abedf6c44ac915f7ee8 b/.git_backup/objects/74/52a8f22faee515b73a7abedf6c44ac915f7ee8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/53f98ab3735e924dd7601622d23b4bafdd2176 b/.git_backup/objects/74/53f98ab3735e924dd7601622d23b4bafdd2176 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/5572515057ea88a97fde2f102947de70af18d5 b/.git_backup/objects/74/5572515057ea88a97fde2f102947de70af18d5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/5c286ab357d5583718bf4e7371d05cd1569052 b/.git_backup/objects/74/5c286ab357d5583718bf4e7371d05cd1569052 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/5d2e793c4bd1e411e9cad53eb4ee7501a513dc b/.git_backup/objects/74/5d2e793c4bd1e411e9cad53eb4ee7501a513dc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/5ff7fca1bc633ed4ec93223612330632f2a14c b/.git_backup/objects/74/5ff7fca1bc633ed4ec93223612330632f2a14c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/6e8ae8755dffe0749cd39a0521916d20d6a662 b/.git_backup/objects/74/6e8ae8755dffe0749cd39a0521916d20d6a662 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/71f8d20326ff09749ec09914feeb09c18fd8ff b/.git_backup/objects/74/71f8d20326ff09749ec09914feeb09c18fd8ff deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/7aafa33fbcf9f2e40f7d2db50a6f36c355b57e b/.git_backup/objects/74/7aafa33fbcf9f2e40f7d2db50a6f36c355b57e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/7c3a918ad17b86053f89324c4cf42530898a88 b/.git_backup/objects/74/7c3a918ad17b86053f89324c4cf42530898a88 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/8d16923ffb680a2d1f862bc130f77232c885aa b/.git_backup/objects/74/8d16923ffb680a2d1f862bc130f77232c885aa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/8ff1bcc1f5b7fefd6e42e6208de2eae25619ad b/.git_backup/objects/74/8ff1bcc1f5b7fefd6e42e6208de2eae25619ad deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/9aa375c8ef1859ee376632361f77269bddf0e9 b/.git_backup/objects/74/9aa375c8ef1859ee376632361f77269bddf0e9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/9e55b15b07522e02f3de832620811c9ce43b58 b/.git_backup/objects/74/9e55b15b07522e02f3de832620811c9ce43b58 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/a166036ea95d54dadfc3af5551cbd197b5f5a8 b/.git_backup/objects/74/a166036ea95d54dadfc3af5551cbd197b5f5a8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/a30879bc6180d588a706451226cb4c95faf79d b/.git_backup/objects/74/a30879bc6180d588a706451226cb4c95faf79d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/a6a0555472690b98be1aafb6e8a23019199d3f b/.git_backup/objects/74/a6a0555472690b98be1aafb6e8a23019199d3f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/b2e8e53bba5de24b43dc4b6efef57ea305d45f b/.git_backup/objects/74/b2e8e53bba5de24b43dc4b6efef57ea305d45f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/b4740fe96a0f722c056f9f95651cba8f9694d1 b/.git_backup/objects/74/b4740fe96a0f722c056f9f95651cba8f9694d1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/b50ea507d0cfc7a3347d2228a592ab8499f81e b/.git_backup/objects/74/b50ea507d0cfc7a3347d2228a592ab8499f81e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/b71e3fb168581018bea797021475d49de25a21 b/.git_backup/objects/74/b71e3fb168581018bea797021475d49de25a21 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/bbf26afe7daefd2e6d9b78cb737bebf1ee48f6 b/.git_backup/objects/74/bbf26afe7daefd2e6d9b78cb737bebf1ee48f6 deleted file mode 100644 index 2895e7e4..00000000 Binary files a/.git_backup/objects/74/bbf26afe7daefd2e6d9b78cb737bebf1ee48f6 and /dev/null differ diff --git a/.git_backup/objects/74/c2d002f3ba87f625f1d7be33f909ed883a52aa b/.git_backup/objects/74/c2d002f3ba87f625f1d7be33f909ed883a52aa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/c588fa81d9d61d46dacb5d08336fec50144235 b/.git_backup/objects/74/c588fa81d9d61d46dacb5d08336fec50144235 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/cdc143dab0482844b34200903a61f3b6391131 b/.git_backup/objects/74/cdc143dab0482844b34200903a61f3b6391131 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/dbaa28a06c0f959396e8ef130f0e0029682b9c b/.git_backup/objects/74/dbaa28a06c0f959396e8ef130f0e0029682b9c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/dec7b8933418d30d17c83d617443a73ceef0c6 b/.git_backup/objects/74/dec7b8933418d30d17c83d617443a73ceef0c6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/ee0b9da3cdee26f85046ebd945bcbbcf2cf5d4 b/.git_backup/objects/74/ee0b9da3cdee26f85046ebd945bcbbcf2cf5d4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/f627478a29cd55ac2ab33635a63c44d143dd42 b/.git_backup/objects/74/f627478a29cd55ac2ab33635a63c44d143dd42 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/f80dee144943a35d0363326b6c7de697a074f3 b/.git_backup/objects/74/f80dee144943a35d0363326b6c7de697a074f3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/74/fea6b7389c05fe1a3b12a320cae2f509761dbc b/.git_backup/objects/74/fea6b7389c05fe1a3b12a320cae2f509761dbc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/09a1315395752aa7d8e11d1078b0a3a83e77d2 b/.git_backup/objects/75/09a1315395752aa7d8e11d1078b0a3a83e77d2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/0b986a2a7fd57cfd6255c8561df2a998ba8ecd b/.git_backup/objects/75/0b986a2a7fd57cfd6255c8561df2a998ba8ecd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/0cf965cd92747abf3e4e68a40309fc418479c4 b/.git_backup/objects/75/0cf965cd92747abf3e4e68a40309fc418479c4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/18fc99b96a4047b473931a3a7e2a70d76294e9 b/.git_backup/objects/75/18fc99b96a4047b473931a3a7e2a70d76294e9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/1cf4a8939e898f8abe4358a98b2a5f59f65e21 b/.git_backup/objects/75/1cf4a8939e898f8abe4358a98b2a5f59f65e21 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/1f9e4cc9eeee873da647af213b9c9670266cef b/.git_backup/objects/75/1f9e4cc9eeee873da647af213b9c9670266cef deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/206d240007cb467ad708b59682b29a39735103 b/.git_backup/objects/75/206d240007cb467ad708b59682b29a39735103 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/20b72d7ac02d17b8baecd98918082397632a14 b/.git_backup/objects/75/20b72d7ac02d17b8baecd98918082397632a14 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/288fcc5ee3219abd675b77e080b61975c31fe3 b/.git_backup/objects/75/288fcc5ee3219abd675b77e080b61975c31fe3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/2976862baa69cb6cdfccac8a5601111b6dd319 b/.git_backup/objects/75/2976862baa69cb6cdfccac8a5601111b6dd319 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/3186ee4b7382fec7081435c8826bb5cd0d35ec b/.git_backup/objects/75/3186ee4b7382fec7081435c8826bb5cd0d35ec deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/31f889b90a5f87a66a138c09f93c0020651dd3 b/.git_backup/objects/75/31f889b90a5f87a66a138c09f93c0020651dd3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/3258c1368385cfdc4bc908006a62f954561701 b/.git_backup/objects/75/3258c1368385cfdc4bc908006a62f954561701 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/372500ed943aefb1197b662b8212dd44e4537c b/.git_backup/objects/75/372500ed943aefb1197b662b8212dd44e4537c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/3d6d80fa87eeb5d55e51e483da389c2f0961ad b/.git_backup/objects/75/3d6d80fa87eeb5d55e51e483da389c2f0961ad deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/3ec99e683e6987e3990db409784d58b2416295 b/.git_backup/objects/75/3ec99e683e6987e3990db409784d58b2416295 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/43a6acb7375872388cb9f2ced109db5faa17b0 b/.git_backup/objects/75/43a6acb7375872388cb9f2ced109db5faa17b0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/48de031cbd45526b49325f6d00629818c5ef2c b/.git_backup/objects/75/48de031cbd45526b49325f6d00629818c5ef2c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/5081349170d0166384ceb095a56d2da84b7b5d b/.git_backup/objects/75/5081349170d0166384ceb095a56d2da84b7b5d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/5c992f98c6b85213bf11f71ccd92760906bbad b/.git_backup/objects/75/5c992f98c6b85213bf11f71ccd92760906bbad deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/5f3c04c65829485f698a2a037c40d8cbfa4161 b/.git_backup/objects/75/5f3c04c65829485f698a2a037c40d8cbfa4161 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/6099abe6cee44295a5566ad6cd0c352fb82e64 b/.git_backup/objects/75/6099abe6cee44295a5566ad6cd0c352fb82e64 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/682355865695c471e17df907d5adc9039d8b90 b/.git_backup/objects/75/682355865695c471e17df907d5adc9039d8b90 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/6f7dda49e530c4c0b4da37b05a0eac54c73aab b/.git_backup/objects/75/6f7dda49e530c4c0b4da37b05a0eac54c73aab deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/762971db75542bbf8f15cf58bddaa7d7f33437 b/.git_backup/objects/75/762971db75542bbf8f15cf58bddaa7d7f33437 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/7bdfe7550381572061148c10617c3546e00320 b/.git_backup/objects/75/7bdfe7550381572061148c10617c3546e00320 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/7cabdbbc730eb3a8be0934adccd8831e328117 b/.git_backup/objects/75/7cabdbbc730eb3a8be0934adccd8831e328117 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/893c5ac0c35ee9da2d4846a355b2294f624dfe b/.git_backup/objects/75/893c5ac0c35ee9da2d4846a355b2294f624dfe deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/9382be346d2c4e0d05c401d524e473170ff8dc b/.git_backup/objects/75/9382be346d2c4e0d05c401d524e473170ff8dc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/9c2e64fa034c6ddbdbe6181efae1e699a0c314 b/.git_backup/objects/75/9c2e64fa034c6ddbdbe6181efae1e699a0c314 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/b04f332e05414b5fdd2355ef3f37786077ad7d b/.git_backup/objects/75/b04f332e05414b5fdd2355ef3f37786077ad7d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/b3631c3879294549f1f27418859aefb63925a7 b/.git_backup/objects/75/b3631c3879294549f1f27418859aefb63925a7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/b3d7b3a6b3bf2b7459532fce1142912b897efd b/.git_backup/objects/75/b3d7b3a6b3bf2b7459532fce1142912b897efd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/bf729258f9daef77370b6df1a57940f90fc23f b/.git_backup/objects/75/bf729258f9daef77370b6df1a57940f90fc23f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/c61da03795af0d4f60cd4d4a8b8e0dd45e3d5e b/.git_backup/objects/75/c61da03795af0d4f60cd4d4a8b8e0dd45e3d5e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/ce2dc9057a20a957abe2fbd4ef094dc4196684 b/.git_backup/objects/75/ce2dc9057a20a957abe2fbd4ef094dc4196684 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/ce74c45dbbddc7d71a0ab2fc2f9f8d29b9b69a b/.git_backup/objects/75/ce74c45dbbddc7d71a0ab2fc2f9f8d29b9b69a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/cf8b34c38e032e49a958d1d39bcb1454a1e1ee b/.git_backup/objects/75/cf8b34c38e032e49a958d1d39bcb1454a1e1ee deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/d2d9b16c531e65c1f94e4ba78134ac2f44eb96 b/.git_backup/objects/75/d2d9b16c531e65c1f94e4ba78134ac2f44eb96 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/d47e3daa10339f4c4cc7b35c52f24bbb20277a b/.git_backup/objects/75/d47e3daa10339f4c4cc7b35c52f24bbb20277a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/d5692a597aa6d7ffb8b77d866ad5b2e7d6182c b/.git_backup/objects/75/d5692a597aa6d7ffb8b77d866ad5b2e7d6182c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/db5928b288760a6b0b07ef219697a915384924 b/.git_backup/objects/75/db5928b288760a6b0b07ef219697a915384924 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/e07a0b55e008b070f41dabba7480a4e463b67a b/.git_backup/objects/75/e07a0b55e008b070f41dabba7480a4e463b67a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/ec8e8ec57268eb55f6c870add25de54d78e983 b/.git_backup/objects/75/ec8e8ec57268eb55f6c870add25de54d78e983 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/75/f2dcacf244d502c15b6ad4f028c80ccf12e5a9 b/.git_backup/objects/75/f2dcacf244d502c15b6ad4f028c80ccf12e5a9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/052389770d5f609b044d054581eced927128b6 b/.git_backup/objects/76/052389770d5f609b044d054581eced927128b6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/07095eda75dfa8b628bc16796ebd0b80b7ec8a b/.git_backup/objects/76/07095eda75dfa8b628bc16796ebd0b80b7ec8a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/0c6f7092a9f7b66ffeaa4e1f965dbcb9d3cf45 b/.git_backup/objects/76/0c6f7092a9f7b66ffeaa4e1f965dbcb9d3cf45 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/0ec25ee4ce5b3c2c8191c1670de08b8ecf6cc3 b/.git_backup/objects/76/0ec25ee4ce5b3c2c8191c1670de08b8ecf6cc3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/13c554e1506f61ab0a883940a8731b3ae7e202 b/.git_backup/objects/76/13c554e1506f61ab0a883940a8731b3ae7e202 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/1c8535e6b4abaf18b68607b10a2cf33e53429b b/.git_backup/objects/76/1c8535e6b4abaf18b68607b10a2cf33e53429b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/20337e0ec1bedfd97576d978d276c4aaadb2ce b/.git_backup/objects/76/20337e0ec1bedfd97576d978d276c4aaadb2ce deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/24ae99c63cc01c0f97663df848875289943bae b/.git_backup/objects/76/24ae99c63cc01c0f97663df848875289943bae deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/268fe625956786cc95b2542183a0ba3f89283e b/.git_backup/objects/76/268fe625956786cc95b2542183a0ba3f89283e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/320767a6b01dbe02b992d6829dc1a70619e04e b/.git_backup/objects/76/320767a6b01dbe02b992d6829dc1a70619e04e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/324621fcaec820d0d561d2f1beae6f614451d9 b/.git_backup/objects/76/324621fcaec820d0d561d2f1beae6f614451d9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/3313599f4c6e60300245f31f4430c45e7fc5ac b/.git_backup/objects/76/3313599f4c6e60300245f31f4430c45e7fc5ac deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/4c7e9e8f397725ec03c919531998a4e6b0613f b/.git_backup/objects/76/4c7e9e8f397725ec03c919531998a4e6b0613f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/50f4bd9701653e82f06c61485bed310ccf6d74 b/.git_backup/objects/76/50f4bd9701653e82f06c61485bed310ccf6d74 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/52a94a2660c2e64919295fa88dfd7699385cbe b/.git_backup/objects/76/52a94a2660c2e64919295fa88dfd7699385cbe deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/537f63e9afff459eaf4388991c18bf60cc6d0d b/.git_backup/objects/76/537f63e9afff459eaf4388991c18bf60cc6d0d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/54381a823c6d9b2e611ef6173e640662a08ffd b/.git_backup/objects/76/54381a823c6d9b2e611ef6173e640662a08ffd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/6a39949fcf7c3dd1625a90ad42d19235973a5a b/.git_backup/objects/76/6a39949fcf7c3dd1625a90ad42d19235973a5a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/6bc3a3df746bbb256a968056269495585ead83 b/.git_backup/objects/76/6bc3a3df746bbb256a968056269495585ead83 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/6d286bee8e6186341c9e4d5b783fb3390bc16e b/.git_backup/objects/76/6d286bee8e6186341c9e4d5b783fb3390bc16e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/727306a4c2b9fa47f1c3ed97c4941b2619cabe b/.git_backup/objects/76/727306a4c2b9fa47f1c3ed97c4941b2619cabe deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/730cfad99afab0a0e398c72dfb2105d1bd9e84 b/.git_backup/objects/76/730cfad99afab0a0e398c72dfb2105d1bd9e84 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/79a62fe961a7dacea49cbd65e24db7426d7071 b/.git_backup/objects/76/79a62fe961a7dacea49cbd65e24db7426d7071 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/7a6b27e291c25a255ad27075a6bae296eaef6a b/.git_backup/objects/76/7a6b27e291c25a255ad27075a6bae296eaef6a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/7d3cffe950fb77ed610eed447baf74eefa0ef9 b/.git_backup/objects/76/7d3cffe950fb77ed610eed447baf74eefa0ef9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/8429a62a2b23a4c0b9c5d2ac12dd313e2d6c4b b/.git_backup/objects/76/8429a62a2b23a4c0b9c5d2ac12dd313e2d6c4b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/8560ee09488d0294731d5056570ada3e58d4c3 b/.git_backup/objects/76/8560ee09488d0294731d5056570ada3e58d4c3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/86fe85a7cc94188da76bfb1c10ad2a10821256 b/.git_backup/objects/76/86fe85a7cc94188da76bfb1c10ad2a10821256 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/88f52397dfa5411e5d0920fd9e78c81fe99304 b/.git_backup/objects/76/88f52397dfa5411e5d0920fd9e78c81fe99304 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/8f801c8ba36e0c154466b1cfb7e0c7a9b24a20 b/.git_backup/objects/76/8f801c8ba36e0c154466b1cfb7e0c7a9b24a20 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/91eaf67bb14eef339617575d98e10e0c1ce6a9 b/.git_backup/objects/76/91eaf67bb14eef339617575d98e10e0c1ce6a9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/95ff649148d087b1b4a9321448da8bd2e8757f b/.git_backup/objects/76/95ff649148d087b1b4a9321448da8bd2e8757f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/967cdc9b52e861028dd9fd0a6d837a7f4e5074 b/.git_backup/objects/76/967cdc9b52e861028dd9fd0a6d837a7f4e5074 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/9af1223f632eb3f43422197bdcc22c3d982c9d b/.git_backup/objects/76/9af1223f632eb3f43422197bdcc22c3d982c9d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/9b7f990644edb9b3e57a0ce0612cf2531e514d b/.git_backup/objects/76/9b7f990644edb9b3e57a0ce0612cf2531e514d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/a112ea71d4e98dd1fa6c4f9dce5a7911c14868 b/.git_backup/objects/76/a112ea71d4e98dd1fa6c4f9dce5a7911c14868 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/a6f3aa25362e889c8aff6f8130e7461b9b7522 b/.git_backup/objects/76/a6f3aa25362e889c8aff6f8130e7461b9b7522 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/ac86d7980863e1575e54ff0cb85e1c9db52d6c b/.git_backup/objects/76/ac86d7980863e1575e54ff0cb85e1c9db52d6c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/b8574a5405488af3fad3b9919b21224c998aeb b/.git_backup/objects/76/b8574a5405488af3fad3b9919b21224c998aeb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/bb1f89cc2cc8e9804d7c14607de27a60caca13 b/.git_backup/objects/76/bb1f89cc2cc8e9804d7c14607de27a60caca13 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/bc6a487fa11ff3ace0598eae00ca8a930e72fe b/.git_backup/objects/76/bc6a487fa11ff3ace0598eae00ca8a930e72fe deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/c01537014de3d86e66a5043e45c5b48bca5d3b b/.git_backup/objects/76/c01537014de3d86e66a5043e45c5b48bca5d3b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/c51d01388a1770b348bc603ebfdd51bc011f0c b/.git_backup/objects/76/c51d01388a1770b348bc603ebfdd51bc011f0c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/d259707787df5f2f45304030dd7d40be3fd8c5 b/.git_backup/objects/76/d259707787df5f2f45304030dd7d40be3fd8c5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/e6f199c0042cec6500f53c062ff9ea1033e79d b/.git_backup/objects/76/e6f199c0042cec6500f53c062ff9ea1033e79d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/edb891f63cdc465d40b5bb160808df52562157 b/.git_backup/objects/76/edb891f63cdc465d40b5bb160808df52562157 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/fd4f899fac1ed42649b185a80adea9d4a95857 b/.git_backup/objects/76/fd4f899fac1ed42649b185a80adea9d4a95857 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/76/ff658a8dab1922b880b7fd0c5fb7de165e5264 b/.git_backup/objects/76/ff658a8dab1922b880b7fd0c5fb7de165e5264 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/0a6950182414bf1c2501d6f44fde22ec541d67 b/.git_backup/objects/77/0a6950182414bf1c2501d6f44fde22ec541d67 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/0f9addcb0267d0dc57285400157d949398e655 b/.git_backup/objects/77/0f9addcb0267d0dc57285400157d949398e655 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/1b28dad1ca9b1b35cef21307c416777bb1bbee b/.git_backup/objects/77/1b28dad1ca9b1b35cef21307c416777bb1bbee deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/2144676beec44061c14a504968285e1b088da4 b/.git_backup/objects/77/2144676beec44061c14a504968285e1b088da4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/265e87453156727616502ada0676f82bb3dad2 b/.git_backup/objects/77/265e87453156727616502ada0676f82bb3dad2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/2c23d813dd53a431d7421dcf664c1bf1c6583f b/.git_backup/objects/77/2c23d813dd53a431d7421dcf664c1bf1c6583f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/3291cfb691e5e6c7857fba40629977e9049a09 b/.git_backup/objects/77/3291cfb691e5e6c7857fba40629977e9049a09 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/3314a385d40c05618654a8d3712e4037212b48 b/.git_backup/objects/77/3314a385d40c05618654a8d3712e4037212b48 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/3a0bb70672ed81ead7a6fb3b98b699ddc5ad5f b/.git_backup/objects/77/3a0bb70672ed81ead7a6fb3b98b699ddc5ad5f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/4ddfb24d04d7c02413548ca1846a8caddab95b b/.git_backup/objects/77/4ddfb24d04d7c02413548ca1846a8caddab95b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/582c46977c1a768866b35935e3e6e097c7678a b/.git_backup/objects/77/582c46977c1a768866b35935e3e6e097c7678a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/58916818b53c3883ca59ac5047d58f4d5605ae b/.git_backup/objects/77/58916818b53c3883ca59ac5047d58f4d5605ae deleted file mode 100644 index c3c63ae2..00000000 Binary files a/.git_backup/objects/77/58916818b53c3883ca59ac5047d58f4d5605ae and /dev/null differ diff --git a/.git_backup/objects/77/5a5a38768e62d0c583cd57d073bc4462a365ef b/.git_backup/objects/77/5a5a38768e62d0c583cd57d073bc4462a365ef deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/640843e993e4973d68eb5222e70051f881ed06 b/.git_backup/objects/77/640843e993e4973d68eb5222e70051f881ed06 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/65a4b6b44124c82015b6a84908d709fc81f1ec b/.git_backup/objects/77/65a4b6b44124c82015b6a84908d709fc81f1ec deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/68ae4f058e3596b5d74d05bc9f3ffc22045202 b/.git_backup/objects/77/68ae4f058e3596b5d74d05bc9f3ffc22045202 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/68ebbfb73261c06c1da301666dc030b3c0f8bf b/.git_backup/objects/77/68ebbfb73261c06c1da301666dc030b3c0f8bf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/6deb4c9e7550eafdb26d16826f5651da37ef12 b/.git_backup/objects/77/6deb4c9e7550eafdb26d16826f5651da37ef12 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/6f9dbc2333fbdf51c93f082bce414fb383beb5 b/.git_backup/objects/77/6f9dbc2333fbdf51c93f082bce414fb383beb5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/7325fc6c6da8795d89aed5206c60f8bf80b0ab b/.git_backup/objects/77/7325fc6c6da8795d89aed5206c60f8bf80b0ab deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/82ca4bcabc8fa5a8293c439eade2809547b0d4 b/.git_backup/objects/77/82ca4bcabc8fa5a8293c439eade2809547b0d4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/847904c7e1c621c985fa87dc978fd517ec00b1 b/.git_backup/objects/77/847904c7e1c621c985fa87dc978fd517ec00b1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/85d0f99ed4d6d3bc0e37442e72765a1f4bc5db b/.git_backup/objects/77/85d0f99ed4d6d3bc0e37442e72765a1f4bc5db deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/86d8a1604a7b18c0106a8f95587afa381680a3 b/.git_backup/objects/77/86d8a1604a7b18c0106a8f95587afa381680a3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/89f67879a6f1d1c619f346427d626c904931e1 b/.git_backup/objects/77/89f67879a6f1d1c619f346427d626c904931e1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/8c72cfb8319cc22622355f6bf9da18feb05f2a b/.git_backup/objects/77/8c72cfb8319cc22622355f6bf9da18feb05f2a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/8f1dccc44c4530bd174b0c0c63582538c911f6 b/.git_backup/objects/77/8f1dccc44c4530bd174b0c0c63582538c911f6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/983a68ac5431708148afea4da385ec32e6a6f5 b/.git_backup/objects/77/983a68ac5431708148afea4da385ec32e6a6f5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/9bf72cd2c6db70a838f23e7cf04821e86256a0 b/.git_backup/objects/77/9bf72cd2c6db70a838f23e7cf04821e86256a0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/9d2c5d77a53491b04a95a7c520a1a4496fe310 b/.git_backup/objects/77/9d2c5d77a53491b04a95a7c520a1a4496fe310 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/a547098036c6ba4e4cda6ed0a3876717f44a1d b/.git_backup/objects/77/a547098036c6ba4e4cda6ed0a3876717f44a1d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/aa2f6e19260fb7444f4fe95e1fd7439d0837a4 b/.git_backup/objects/77/aa2f6e19260fb7444f4fe95e1fd7439d0837a4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/ad40bac93193bcf6912424c7b75e51ea5f037b b/.git_backup/objects/77/ad40bac93193bcf6912424c7b75e51ea5f037b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/afcdcecf708039f3cf92b9bbab858162d94f1d b/.git_backup/objects/77/afcdcecf708039f3cf92b9bbab858162d94f1d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/b92cee512d5e29e33c2d8e640563b2a65a32c0 b/.git_backup/objects/77/b92cee512d5e29e33c2d8e640563b2a65a32c0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/bac7f47011bb5e58b8fbc05322caf4686759fc b/.git_backup/objects/77/bac7f47011bb5e58b8fbc05322caf4686759fc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/be35c02d9a5fb40222e0658d1deef623806142 b/.git_backup/objects/77/be35c02d9a5fb40222e0658d1deef623806142 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/c45c9e90cdf2bcd60eea3cac9c8cf56cca2c08 b/.git_backup/objects/77/c45c9e90cdf2bcd60eea3cac9c8cf56cca2c08 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/cc2fe9bf06461c0fa1dbaa1548d26981ce8bf1 b/.git_backup/objects/77/cc2fe9bf06461c0fa1dbaa1548d26981ce8bf1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/d1dfe9ce4862247a4b8f6297f3f49f7c9e470c b/.git_backup/objects/77/d1dfe9ce4862247a4b8f6297f3f49f7c9e470c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/da86f449509983e44967565050c0a79e7945e1 b/.git_backup/objects/77/da86f449509983e44967565050c0a79e7945e1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/dabce491f72789caa84115939631aabf93c2ed b/.git_backup/objects/77/dabce491f72789caa84115939631aabf93c2ed deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/dd8def1aed951e1b18b2fe4c810a61539fa3f3 b/.git_backup/objects/77/dd8def1aed951e1b18b2fe4c810a61539fa3f3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/e0ea83902fedd0a5c9ae4b2f86f341f0386153 b/.git_backup/objects/77/e0ea83902fedd0a5c9ae4b2f86f341f0386153 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/ec054d4bed35f2800fc9688f049e90cc0cb049 b/.git_backup/objects/77/ec054d4bed35f2800fc9688f049e90cc0cb049 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/f4e8adbeb21f09d3a3a90854ed4f41016c9379 b/.git_backup/objects/77/f4e8adbeb21f09d3a3a90854ed4f41016c9379 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/f7d72a26a31d023f57e1030dffbadacf427c1e b/.git_backup/objects/77/f7d72a26a31d023f57e1030dffbadacf427c1e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/77/f955b38106b75a66733e206ea4435739c3fad3 b/.git_backup/objects/77/f955b38106b75a66733e206ea4435739c3fad3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/01262554a5e075b22da03d18e8898c07cd4877 b/.git_backup/objects/78/01262554a5e075b22da03d18e8898c07cd4877 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/0480c7c6b9a68bf71aaf357c7d3f7a5b3b3f57 b/.git_backup/objects/78/0480c7c6b9a68bf71aaf357c7d3f7a5b3b3f57 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/082deeb3d34872bfdbf6da1617391e9142b839 b/.git_backup/objects/78/082deeb3d34872bfdbf6da1617391e9142b839 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/127ef7cc847a7938442489b9b66619c7d98ce6 b/.git_backup/objects/78/127ef7cc847a7938442489b9b66619c7d98ce6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/1b2c0713f0385a734bd4b3ec766112d660c22c b/.git_backup/objects/78/1b2c0713f0385a734bd4b3ec766112d660c22c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/207a824bae6ee2c0516b25b7964dad0a7d7e82 b/.git_backup/objects/78/207a824bae6ee2c0516b25b7964dad0a7d7e82 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/264160fb97c4e5b41b1baa91d8da79045453e7 b/.git_backup/objects/78/264160fb97c4e5b41b1baa91d8da79045453e7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/27e7762928cff6a56a17601337588e62f482d2 b/.git_backup/objects/78/27e7762928cff6a56a17601337588e62f482d2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/2a7dfe5e38abc734adad65176549347ab220c1 b/.git_backup/objects/78/2a7dfe5e38abc734adad65176549347ab220c1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/35314f79c132c4fdc927186b3282347d681792 b/.git_backup/objects/78/35314f79c132c4fdc927186b3282347d681792 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/38f8d3cb68104e3a809a24b264cd6b3f1e7ded b/.git_backup/objects/78/38f8d3cb68104e3a809a24b264cd6b3f1e7ded deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/3d45c2fbfc0564b8f7439ebde1637d736a8411 b/.git_backup/objects/78/3d45c2fbfc0564b8f7439ebde1637d736a8411 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/3f68d7b37eecb26030de9a329e1b62701c772a b/.git_backup/objects/78/3f68d7b37eecb26030de9a329e1b62701c772a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/43fa41d74aeda2ceb77602383443a9723e5564 b/.git_backup/objects/78/43fa41d74aeda2ceb77602383443a9723e5564 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/4551f685119764dc367c0874d8d7c5033f9793 b/.git_backup/objects/78/4551f685119764dc367c0874d8d7c5033f9793 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/4906bd310e5bc612bd564f8c04681ab5874ce2 b/.git_backup/objects/78/4906bd310e5bc612bd564f8c04681ab5874ce2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/4b217eb81083d12b15d3a1be7375969ff60885 b/.git_backup/objects/78/4b217eb81083d12b15d3a1be7375969ff60885 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/4cfa08aa43d1e7e79519af631d2f0588232c61 b/.git_backup/objects/78/4cfa08aa43d1e7e79519af631d2f0588232c61 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/54a2d7651d06fa1c2b8dd5a8e93e25a74943d7 b/.git_backup/objects/78/54a2d7651d06fa1c2b8dd5a8e93e25a74943d7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/55226e4b500142deef8fb247cd33a9a991d122 b/.git_backup/objects/78/55226e4b500142deef8fb247cd33a9a991d122 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/5d0057bcc0ea74a4b8d65ab7a0de78474bf892 b/.git_backup/objects/78/5d0057bcc0ea74a4b8d65ab7a0de78474bf892 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/620c472c9d799a14ccb02a0233f4669b3bcdcb b/.git_backup/objects/78/620c472c9d799a14ccb02a0233f4669b3bcdcb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/62d2eebb59780cfd5f0ad04238d2a50645b7c8 b/.git_backup/objects/78/62d2eebb59780cfd5f0ad04238d2a50645b7c8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/6486295935319c03a60a349f03328c127935b9 b/.git_backup/objects/78/6486295935319c03a60a349f03328c127935b9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/65969f515f8ece7244c1223b1cc3fa1cfa14fe b/.git_backup/objects/78/65969f515f8ece7244c1223b1cc3fa1cfa14fe deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/6e6bda63699b72d588ba91dd73df017570aee5 b/.git_backup/objects/78/6e6bda63699b72d588ba91dd73df017570aee5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/7681b03e9ec2fd4490de10cdc95e58c893c8b5 b/.git_backup/objects/78/7681b03e9ec2fd4490de10cdc95e58c893c8b5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/7f5854b8efd6bb49c6c000cbe0e36b8ef0aaba b/.git_backup/objects/78/7f5854b8efd6bb49c6c000cbe0e36b8ef0aaba deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/86e28cb69f15a152a837a727f5d9d7486aae65 b/.git_backup/objects/78/86e28cb69f15a152a837a727f5d9d7486aae65 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/88cdc2cdcc5f002c792f648f6e4bbff0a714cd b/.git_backup/objects/78/88cdc2cdcc5f002c792f648f6e4bbff0a714cd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/894607b6474ba4b3cb820209fa00b54e5285bf b/.git_backup/objects/78/894607b6474ba4b3cb820209fa00b54e5285bf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/8e8afa02d1a90b0cabc69454058cadf9d27f82 b/.git_backup/objects/78/8e8afa02d1a90b0cabc69454058cadf9d27f82 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/96eec2b6af43f60c667ce56bdf1a9480c76df7 b/.git_backup/objects/78/96eec2b6af43f60c667ce56bdf1a9480c76df7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/98363f2ccdce626199291caa1c2f5f7ac78962 b/.git_backup/objects/78/98363f2ccdce626199291caa1c2f5f7ac78962 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/9ad4213774e887c5aa712d762d70b72f38c303 b/.git_backup/objects/78/9ad4213774e887c5aa712d762d70b72f38c303 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/9fccf2b969163cd7856b77cf20721632ee6ab4 b/.git_backup/objects/78/9fccf2b969163cd7856b77cf20721632ee6ab4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/a336ae07a20e436b13f39571e1baa82f532981 b/.git_backup/objects/78/a336ae07a20e436b13f39571e1baa82f532981 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/a920b3bc305f957be0657fceed87ca01847f1c b/.git_backup/objects/78/a920b3bc305f957be0657fceed87ca01847f1c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/ad8bd07ab3ba8f0cefd298fc956437fadb42f3 b/.git_backup/objects/78/ad8bd07ab3ba8f0cefd298fc956437fadb42f3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/b0e411047e738c58747e79b8d6fd597c5a501d b/.git_backup/objects/78/b0e411047e738c58747e79b8d6fd597c5a501d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/b5c13ced3d0a429b6d292e2b0b985d50909942 b/.git_backup/objects/78/b5c13ced3d0a429b6d292e2b0b985d50909942 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/b9daa373d2aa2856eafcc92ebc6d899cafde5c b/.git_backup/objects/78/b9daa373d2aa2856eafcc92ebc6d899cafde5c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/bee0a8cc3edaa2e9d7fc172d28480980e8007d b/.git_backup/objects/78/bee0a8cc3edaa2e9d7fc172d28480980e8007d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/d64b88e62176cb112949ed409d8a5b318f4179 b/.git_backup/objects/78/d64b88e62176cb112949ed409d8a5b318f4179 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/d8c29642ea32f92a7f5da220446085424b3c70 b/.git_backup/objects/78/d8c29642ea32f92a7f5da220446085424b3c70 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/e4c558b8e2c67e1e9e0bab7d334c28fb958325 b/.git_backup/objects/78/e4c558b8e2c67e1e9e0bab7d334c28fb958325 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/e6f14b71a52a1bf9cc7e908c13bd3aec2fbed0 b/.git_backup/objects/78/e6f14b71a52a1bf9cc7e908c13bd3aec2fbed0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/ef47758edcc8e35ed15ceed3355959b60b3537 b/.git_backup/objects/78/ef47758edcc8e35ed15ceed3355959b60b3537 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/f121f826db7bc8398b4d2e6d849bc734c42cc0 b/.git_backup/objects/78/f121f826db7bc8398b4d2e6d849bc734c42cc0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/f93cedd2b529f7c5223ecefe6a4f1b7fcb852b b/.git_backup/objects/78/f93cedd2b529f7c5223ecefe6a4f1b7fcb852b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/78/fa9a1f4ef3c6d3f8dbb379763942da453bee0c b/.git_backup/objects/78/fa9a1f4ef3c6d3f8dbb379763942da453bee0c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/04e56215887b382a340fb0acf47bf362658014 b/.git_backup/objects/79/04e56215887b382a340fb0acf47bf362658014 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/10bd56f6b0c37276c9dff5a15cd3ddf755840e b/.git_backup/objects/79/10bd56f6b0c37276c9dff5a15cd3ddf755840e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/11cd7f12e0cc19434de20a29788031aee863f1 b/.git_backup/objects/79/11cd7f12e0cc19434de20a29788031aee863f1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/13a66215ed9de78c585001f46842c536ba73c6 b/.git_backup/objects/79/13a66215ed9de78c585001f46842c536ba73c6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/14a1f2b3fa90fa9b44b0f8be1603eb1d0a47b7 b/.git_backup/objects/79/14a1f2b3fa90fa9b44b0f8be1603eb1d0a47b7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/17e0eff022726c4fc82f6170f67c7d8a22fa14 b/.git_backup/objects/79/17e0eff022726c4fc82f6170f67c7d8a22fa14 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/1cc382242c6632534de00e2f42990eef5e872f b/.git_backup/objects/79/1cc382242c6632534de00e2f42990eef5e872f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/1ec32baba89a52209587774e257ea03ca0577b b/.git_backup/objects/79/1ec32baba89a52209587774e257ea03ca0577b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/1f0465de136088e33cdc6ef5696590df1e4f86 b/.git_backup/objects/79/1f0465de136088e33cdc6ef5696590df1e4f86 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/219014f20be3188e43638b02b242ba8f4eec25 b/.git_backup/objects/79/219014f20be3188e43638b02b242ba8f4eec25 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/245bc9d34a8801cd2d48a60a31bde087199cb6 b/.git_backup/objects/79/245bc9d34a8801cd2d48a60a31bde087199cb6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/24cb1ec2bb9de908ae90cec72ad6dd775a1d15 b/.git_backup/objects/79/24cb1ec2bb9de908ae90cec72ad6dd775a1d15 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/298a4e749627134e177a97095b8626e2f5a1da b/.git_backup/objects/79/298a4e749627134e177a97095b8626e2f5a1da deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/299fda8828438f5bb8288276ffeb4b9024f3f2 b/.git_backup/objects/79/299fda8828438f5bb8288276ffeb4b9024f3f2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/2caaf0025b2fae9fff1f7a70d5d1e8137130b7 b/.git_backup/objects/79/2caaf0025b2fae9fff1f7a70d5d1e8137130b7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/2ff158cb362d54ebdb846af4d0b4154da31ea8 b/.git_backup/objects/79/2ff158cb362d54ebdb846af4d0b4154da31ea8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/3351777aaa789cab8beb880122142f3a5ae511 b/.git_backup/objects/79/3351777aaa789cab8beb880122142f3a5ae511 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/33ea31fff87473bd9e37ffd5b2396c69fb8e05 b/.git_backup/objects/79/33ea31fff87473bd9e37ffd5b2396c69fb8e05 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/34f64e6dddbe095c36cf88128bc064137a454f b/.git_backup/objects/79/34f64e6dddbe095c36cf88128bc064137a454f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/36d9c241f4059298ea592f046f52c411aef869 b/.git_backup/objects/79/36d9c241f4059298ea592f046f52c411aef869 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/3f17404768cd78c5c8c4fc424e5c2e2630826c b/.git_backup/objects/79/3f17404768cd78c5c8c4fc424e5c2e2630826c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/4815359f7adf6ff62a5081cf302bd847bac339 b/.git_backup/objects/79/4815359f7adf6ff62a5081cf302bd847bac339 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/50f6088d314f0ad41e46e38621d8f687d515b6 b/.git_backup/objects/79/50f6088d314f0ad41e46e38621d8f687d515b6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/5b9aed14504aa9bc42189bb4fe9638c17d6620 b/.git_backup/objects/79/5b9aed14504aa9bc42189bb4fe9638c17d6620 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/5bb08b7882836ccb1bc7e26ecc7a9da1d881b3 b/.git_backup/objects/79/5bb08b7882836ccb1bc7e26ecc7a9da1d881b3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/65288d1e7c71e5be5f4c3ecd059f7bf81d79a7 b/.git_backup/objects/79/65288d1e7c71e5be5f4c3ecd059f7bf81d79a7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/67f44888cc455c61e06263bf2deddd6973a9f2 b/.git_backup/objects/79/67f44888cc455c61e06263bf2deddd6973a9f2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/6f36fd225ee1724ba20855e2e445e78e62b003 b/.git_backup/objects/79/6f36fd225ee1724ba20855e2e445e78e62b003 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/701f4d2f6ff63ffb00db4f4255ab0859b41801 b/.git_backup/objects/79/701f4d2f6ff63ffb00db4f4255ab0859b41801 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/70b324337819bf7422c7983554055ae4e2e45c b/.git_backup/objects/79/70b324337819bf7422c7983554055ae4e2e45c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/807c8bae12a027c76feb5212aad4b4ca23300e b/.git_backup/objects/79/807c8bae12a027c76feb5212aad4b4ca23300e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/889e0ce174e028ce5628f2af35f55796873f59 b/.git_backup/objects/79/889e0ce174e028ce5628f2af35f55796873f59 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/9446cf40dea8314085a27127d1e559177c5d43 b/.git_backup/objects/79/9446cf40dea8314085a27127d1e559177c5d43 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/97135bb07ab47de534e105e52b6326027bb353 b/.git_backup/objects/79/97135bb07ab47de534e105e52b6326027bb353 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/974d1c220a147159873079b5350f29739206bc b/.git_backup/objects/79/974d1c220a147159873079b5350f29739206bc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/990deed261deb875dfb10603300a3a435738fd b/.git_backup/objects/79/990deed261deb875dfb10603300a3a435738fd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/a5fc31203a2df278120887b847e2024812c065 b/.git_backup/objects/79/a5fc31203a2df278120887b847e2024812c065 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/a604892ea77b6a18d2d38c17fe9e8a4936d053 b/.git_backup/objects/79/a604892ea77b6a18d2d38c17fe9e8a4936d053 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/a663fb46b98533c65788f10a738cc7133c4211 b/.git_backup/objects/79/a663fb46b98533c65788f10a738cc7133c4211 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/b1f0c2b94fcda21bd458cf0d561f5d3ef59168 b/.git_backup/objects/79/b1f0c2b94fcda21bd458cf0d561f5d3ef59168 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/b82a570e5be5ce4f8e4dcc4906da8c18f08ef6 b/.git_backup/objects/79/b82a570e5be5ce4f8e4dcc4906da8c18f08ef6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/b9511b88ab9ee112261bdeeb210a525b6b335f b/.git_backup/objects/79/b9511b88ab9ee112261bdeeb210a525b6b335f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/bb131cb91d10814fdb23dda3cc5468a1d4ffd6 b/.git_backup/objects/79/bb131cb91d10814fdb23dda3cc5468a1d4ffd6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/c6dbe54e3a4d43521403b15df32ade8d133b2c b/.git_backup/objects/79/c6dbe54e3a4d43521403b15df32ade8d133b2c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/c77884aec76201161234e42423e084676699ec b/.git_backup/objects/79/c77884aec76201161234e42423e084676699ec deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/d17dd0b67602decfb6d5ab1e5e63a9c7fbbf6b b/.git_backup/objects/79/d17dd0b67602decfb6d5ab1e5e63a9c7fbbf6b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/d2f55a9b8ffb65e933c70b3abcfe5f9009e53b b/.git_backup/objects/79/d2f55a9b8ffb65e933c70b3abcfe5f9009e53b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/e0fbcfd9ee8bde0ed2287a599a019246bfb9a3 b/.git_backup/objects/79/e0fbcfd9ee8bde0ed2287a599a019246bfb9a3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/e1b0944e03935aac1de49d29e44962e8fa5fa9 b/.git_backup/objects/79/e1b0944e03935aac1de49d29e44962e8fa5fa9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/e2168e3437e886b5b423353f33844613452ece b/.git_backup/objects/79/e2168e3437e886b5b423353f33844613452ece deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/e3ad1384269f5f20f6f45b8be8dda2454f6b74 b/.git_backup/objects/79/e3ad1384269f5f20f6f45b8be8dda2454f6b74 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/eb2d342ecdb94de48744cb588185e4b41f01ac b/.git_backup/objects/79/eb2d342ecdb94de48744cb588185e4b41f01ac deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/ecee793fb06bca0776e54bb2a269ee992004e0 b/.git_backup/objects/79/ecee793fb06bca0776e54bb2a269ee992004e0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/f0c1b15494c81a7153ba341292d042ee2820aa b/.git_backup/objects/79/f0c1b15494c81a7153ba341292d042ee2820aa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/79/f551c9ebf6f2d1c1d2cbc08d5956a7988eb10e b/.git_backup/objects/79/f551c9ebf6f2d1c1d2cbc08d5956a7988eb10e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/014bb28db52a5d0ac7b9f03e533892dfbbc2cc b/.git_backup/objects/7a/014bb28db52a5d0ac7b9f03e533892dfbbc2cc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/0175e0a56eba40776997a3f44a0ce9f8393776 b/.git_backup/objects/7a/0175e0a56eba40776997a3f44a0ce9f8393776 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/0786b29150dafe108c3e5e4578224ae194c7cf b/.git_backup/objects/7a/0786b29150dafe108c3e5e4578224ae194c7cf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/1139172cd36cac3f8b47737d3b5258c6f7d43a b/.git_backup/objects/7a/1139172cd36cac3f8b47737d3b5258c6f7d43a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/1363099e7a0b535d2005b556976df4c4d8ffb7 b/.git_backup/objects/7a/1363099e7a0b535d2005b556976df4c4d8ffb7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/14a47380314c28303084e0699e822fd0295a1d b/.git_backup/objects/7a/14a47380314c28303084e0699e822fd0295a1d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/17b7b3b6ad49157ee41f3da304fec3d32342d3 b/.git_backup/objects/7a/17b7b3b6ad49157ee41f3da304fec3d32342d3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/1d4772728627501fa2f14481bb67cbeff86359 b/.git_backup/objects/7a/1d4772728627501fa2f14481bb67cbeff86359 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/2411b7755f9f88865dbc02cb7583cab593ee70 b/.git_backup/objects/7a/2411b7755f9f88865dbc02cb7583cab593ee70 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/2681de70d7c8a3fefcc9b65af1766b25472288 b/.git_backup/objects/7a/2681de70d7c8a3fefcc9b65af1766b25472288 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/27294eb64c7b76cc16a1ba18d858d163167889 b/.git_backup/objects/7a/27294eb64c7b76cc16a1ba18d858d163167889 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/2f08a23ad69a571e6e89cb9a4b8aa711549bfc b/.git_backup/objects/7a/2f08a23ad69a571e6e89cb9a4b8aa711549bfc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/35afc30c73f1be17eb91efedd0d443835bfe8b b/.git_backup/objects/7a/35afc30c73f1be17eb91efedd0d443835bfe8b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/3c4c7e3fe16e91225a87cbc58b8bbd798f9cc1 b/.git_backup/objects/7a/3c4c7e3fe16e91225a87cbc58b8bbd798f9cc1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/3f68fd3d990c8566e9aecd86ec5149c1b3a65d b/.git_backup/objects/7a/3f68fd3d990c8566e9aecd86ec5149c1b3a65d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/4ba52cdfdd5022eee06dc05edc216e94534d54 b/.git_backup/objects/7a/4ba52cdfdd5022eee06dc05edc216e94534d54 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/4d232f7c6e5d15ada1980a488c3e007ec22747 b/.git_backup/objects/7a/4d232f7c6e5d15ada1980a488c3e007ec22747 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/4e90277d1a055e41cd42c1f7786db84c435ad7 b/.git_backup/objects/7a/4e90277d1a055e41cd42c1f7786db84c435ad7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/517bc93a06bbc4d0c869a9d152bc5aade0aab5 b/.git_backup/objects/7a/517bc93a06bbc4d0c869a9d152bc5aade0aab5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/51ae3279854b4b3f47eeccd93ef0483549fd39 b/.git_backup/objects/7a/51ae3279854b4b3f47eeccd93ef0483549fd39 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/5306661b19c47bc335f26eaea9f5c0669e07d6 b/.git_backup/objects/7a/5306661b19c47bc335f26eaea9f5c0669e07d6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/545378ef40264db59db999733b57ce2ea5087a b/.git_backup/objects/7a/545378ef40264db59db999733b57ce2ea5087a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/57a96d6513bbda226e104752db9b1c8aa8621e b/.git_backup/objects/7a/57a96d6513bbda226e104752db9b1c8aa8621e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/5c2677307e27ad53bd7a3f3759208fa4045495 b/.git_backup/objects/7a/5c2677307e27ad53bd7a3f3759208fa4045495 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/616ff19008db6c753c0f4cbffc8d94ab56d84c b/.git_backup/objects/7a/616ff19008db6c753c0f4cbffc8d94ab56d84c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/6a8c03165546fefa4320dc668e288f58822f29 b/.git_backup/objects/7a/6a8c03165546fefa4320dc668e288f58822f29 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/6c9932654043b16da6bd17884000a49bec3c7d b/.git_backup/objects/7a/6c9932654043b16da6bd17884000a49bec3c7d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/6df4e4f6cf2a357aa48dfb9e02a78a7976bdcf b/.git_backup/objects/7a/6df4e4f6cf2a357aa48dfb9e02a78a7976bdcf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/6ef07a8fb73872c45793315b2b3b458620fdde b/.git_backup/objects/7a/6ef07a8fb73872c45793315b2b3b458620fdde deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/71d73fd7feb5db88e2da1d5ba1a63240e3650e b/.git_backup/objects/7a/71d73fd7feb5db88e2da1d5ba1a63240e3650e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/77021775ddb61d226aa8c4ba60f0af013e4a6c b/.git_backup/objects/7a/77021775ddb61d226aa8c4ba60f0af013e4a6c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/7bf0f7999c052aad4e3b7f75172d370c8748aa b/.git_backup/objects/7a/7bf0f7999c052aad4e3b7f75172d370c8748aa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/7e7177cd78d3a2b76b9acd0d0608193b9e4614 b/.git_backup/objects/7a/7e7177cd78d3a2b76b9acd0d0608193b9e4614 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/8a459f414312978a6ae247c39e3bac2bfc4182 b/.git_backup/objects/7a/8a459f414312978a6ae247c39e3bac2bfc4182 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/9288ed5ff2ba67668b0144ff344f5035a78d1c b/.git_backup/objects/7a/9288ed5ff2ba67668b0144ff344f5035a78d1c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/95c2e6211064d09c8d4cb621da1b3cad2c6d02 b/.git_backup/objects/7a/95c2e6211064d09c8d4cb621da1b3cad2c6d02 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/ae194c9932128c14a1f3bbcc024136b40f3353 b/.git_backup/objects/7a/ae194c9932128c14a1f3bbcc024136b40f3353 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/b19a05159a49dd7eb830e242fc434f2fbba168 b/.git_backup/objects/7a/b19a05159a49dd7eb830e242fc434f2fbba168 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/bb8c2d9027d0c7b85c946ec43333b0e2020a14 b/.git_backup/objects/7a/bb8c2d9027d0c7b85c946ec43333b0e2020a14 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/bb97ec70a2b3aa00bc08e8303f401a0b56fc66 b/.git_backup/objects/7a/bb97ec70a2b3aa00bc08e8303f401a0b56fc66 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/bd63fa608e0186b9f154d9fcc32472c28f6759 b/.git_backup/objects/7a/bd63fa608e0186b9f154d9fcc32472c28f6759 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/bd7a96f3ae0dcedaf023ea002cd0e07bc470f5 b/.git_backup/objects/7a/bd7a96f3ae0dcedaf023ea002cd0e07bc470f5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/c330cadc62053126c410eb1716b243d9d48473 b/.git_backup/objects/7a/c330cadc62053126c410eb1716b243d9d48473 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/c9c25abe5a2782b76c2f9f06aa3c62f803ec73 b/.git_backup/objects/7a/c9c25abe5a2782b76c2f9f06aa3c62f803ec73 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/cf1506035df091ac91dd4e219c6ef63845b7ea b/.git_backup/objects/7a/cf1506035df091ac91dd4e219c6ef63845b7ea deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/d0c194d6b583051a907e0d0edf0c96a8d04e62 b/.git_backup/objects/7a/d0c194d6b583051a907e0d0edf0c96a8d04e62 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/d7e0b2cf8fa4fc844fe8cc9c58e4f3018cead1 b/.git_backup/objects/7a/d7e0b2cf8fa4fc844fe8cc9c58e4f3018cead1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/e4e77ae3097695613f8a3b4acd96194c709b4b b/.git_backup/objects/7a/e4e77ae3097695613f8a3b4acd96194c709b4b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/ebf93ca4a46f91abae294d0d69a87183322b85 b/.git_backup/objects/7a/ebf93ca4a46f91abae294d0d69a87183322b85 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7a/eca770e9129486499078e92007e5ccd2bf1ebd b/.git_backup/objects/7a/eca770e9129486499078e92007e5ccd2bf1ebd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7b/0c8ec364cf8e11bc0a8d1b3806ba35220a7731 b/.git_backup/objects/7b/0c8ec364cf8e11bc0a8d1b3806ba35220a7731 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7b/190ca6712aa09eede3e6de79f68d7fa29072da b/.git_backup/objects/7b/190ca6712aa09eede3e6de79f68d7fa29072da deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7b/3193139b4005e3191b94418e917af60148881f b/.git_backup/objects/7b/3193139b4005e3191b94418e917af60148881f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7b/3666dcad182259de23679ffd0525898a0df6a3 b/.git_backup/objects/7b/3666dcad182259de23679ffd0525898a0df6a3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7b/37890abde27f929b8e95ca260e975c4a2942c8 b/.git_backup/objects/7b/37890abde27f929b8e95ca260e975c4a2942c8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7b/4d32977fb11d065e04c6ae00b80136920a6804 b/.git_backup/objects/7b/4d32977fb11d065e04c6ae00b80136920a6804 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7b/553b17284eff70c428f6256aaa2e8096c9d4f1 b/.git_backup/objects/7b/553b17284eff70c428f6256aaa2e8096c9d4f1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7b/586752132ebba15b04bf3c9985494d4a456433 b/.git_backup/objects/7b/586752132ebba15b04bf3c9985494d4a456433 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7b/68d437a6f84ee5f6a5b3bfb29c30048e1eb70a b/.git_backup/objects/7b/68d437a6f84ee5f6a5b3bfb29c30048e1eb70a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7b/6cc9412e03d0a425d92f8202fe2f7af3bed02e b/.git_backup/objects/7b/6cc9412e03d0a425d92f8202fe2f7af3bed02e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7b/7044e0b93b03d97969ddd38bf890d7c075252c b/.git_backup/objects/7b/7044e0b93b03d97969ddd38bf890d7c075252c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7b/7108b0b2556a195b1c9f89300eaefaf0d921fe b/.git_backup/objects/7b/7108b0b2556a195b1c9f89300eaefaf0d921fe deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7b/786e9c0493d3d7692d53ccae6357da589d2718 b/.git_backup/objects/7b/786e9c0493d3d7692d53ccae6357da589d2718 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7b/81f46b3a2bbf5331a85e8f85cd62dc089c3cae b/.git_backup/objects/7b/81f46b3a2bbf5331a85e8f85cd62dc089c3cae deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7b/8404aa9c1f18a9874649e003d6f29a2fe1963a b/.git_backup/objects/7b/8404aa9c1f18a9874649e003d6f29a2fe1963a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7b/879d2bcf554e7e016d490a0523663f68be5dfe b/.git_backup/objects/7b/879d2bcf554e7e016d490a0523663f68be5dfe deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7b/8a82ba25654e6b4c06f903c9398b662783b331 b/.git_backup/objects/7b/8a82ba25654e6b4c06f903c9398b662783b331 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7b/8b15b1cf552b9a5f6450a08e58a110d9e061c0 b/.git_backup/objects/7b/8b15b1cf552b9a5f6450a08e58a110d9e061c0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7b/8fac03871d5011e7fe25f7184476d0897da5df b/.git_backup/objects/7b/8fac03871d5011e7fe25f7184476d0897da5df deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7b/9309329ac83f83a97ec1bf3c2752e8ad4691f5 b/.git_backup/objects/7b/9309329ac83f83a97ec1bf3c2752e8ad4691f5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7b/9666c8ea311ea0f0cfe7bed861aaa5469f92bb b/.git_backup/objects/7b/9666c8ea311ea0f0cfe7bed861aaa5469f92bb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7b/9eb662f094af45ac3630a6bbc6f1617f2d707b b/.git_backup/objects/7b/9eb662f094af45ac3630a6bbc6f1617f2d707b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7b/acf3a544f8c222c79986fb2f53bd42179fcdf0 b/.git_backup/objects/7b/acf3a544f8c222c79986fb2f53bd42179fcdf0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7b/ad59344fb7de4aae8d2e35665eec7810eb280c b/.git_backup/objects/7b/ad59344fb7de4aae8d2e35665eec7810eb280c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7b/bbe6f4bc3e95a9ba59370458627f79decbf902 b/.git_backup/objects/7b/bbe6f4bc3e95a9ba59370458627f79decbf902 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7b/be97e6665356327814e2b797ffcc5724974a46 b/.git_backup/objects/7b/be97e6665356327814e2b797ffcc5724974a46 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7b/d29e48c215f540971b4e62e746fc18e9992b5d b/.git_backup/objects/7b/d29e48c215f540971b4e62e746fc18e9992b5d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7b/d31c5fff81a1fd08c31a7d7760c7579f082d3e b/.git_backup/objects/7b/d31c5fff81a1fd08c31a7d7760c7579f082d3e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7b/d3c20681d865cb4fa42617cf939b5512c7663f b/.git_backup/objects/7b/d3c20681d865cb4fa42617cf939b5512c7663f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7b/dafdd17f3972a676d68ee5a70ba2d9263e2f4e b/.git_backup/objects/7b/dafdd17f3972a676d68ee5a70ba2d9263e2f4e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7b/e02aceef15c6e75137075890163bd22ca00cab b/.git_backup/objects/7b/e02aceef15c6e75137075890163bd22ca00cab deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7b/e2474dd91c8a7da181fcda09d838254b890d75 b/.git_backup/objects/7b/e2474dd91c8a7da181fcda09d838254b890d75 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7b/e617de63a40e0c3fcea79417051f44dbc77e11 b/.git_backup/objects/7b/e617de63a40e0c3fcea79417051f44dbc77e11 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7b/e7bc3c84edfd829447e9ccdec77cec2d3be745 b/.git_backup/objects/7b/e7bc3c84edfd829447e9ccdec77cec2d3be745 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7b/eabfe973deba51a5f08a24e43c3a9821804776 b/.git_backup/objects/7b/eabfe973deba51a5f08a24e43c3a9821804776 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7b/f7297898cb4b4140f56545fb83bddb4c0e49af b/.git_backup/objects/7b/f7297898cb4b4140f56545fb83bddb4c0e49af deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7b/fb7f2ae31f4de73a065aef8c79e8df4c38253b b/.git_backup/objects/7b/fb7f2ae31f4de73a065aef8c79e8df4c38253b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/031661ba88faf2aac90a9ff556c7ec9c1b6692 b/.git_backup/objects/7c/031661ba88faf2aac90a9ff556c7ec9c1b6692 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/0e9f2aace2be036ef8c6aa0999b5c2d00d9249 b/.git_backup/objects/7c/0e9f2aace2be036ef8c6aa0999b5c2d00d9249 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/0ec8501b42dda760415a093bc679401a2a0db6 b/.git_backup/objects/7c/0ec8501b42dda760415a093bc679401a2a0db6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/134448f1f39f9033d6f475aa97992daa1cf515 b/.git_backup/objects/7c/134448f1f39f9033d6f475aa97992daa1cf515 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/13e3172d0e7798200f58cde9362ad0bd4a22e1 b/.git_backup/objects/7c/13e3172d0e7798200f58cde9362ad0bd4a22e1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/2034c9257c3c0941769f4683cae06db17a1c5e b/.git_backup/objects/7c/2034c9257c3c0941769f4683cae06db17a1c5e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/2336dd80c3c9cbf71cb53d2b2c1f89a65a8ba5 b/.git_backup/objects/7c/2336dd80c3c9cbf71cb53d2b2c1f89a65a8ba5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/346b8bf6ac279fe3bff2561b0f2ea9c8ce9b1d b/.git_backup/objects/7c/346b8bf6ac279fe3bff2561b0f2ea9c8ce9b1d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/36189dcea014ff1f0fd92bccdc2b0b25062e98 b/.git_backup/objects/7c/36189dcea014ff1f0fd92bccdc2b0b25062e98 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/385bef830f82c8c6d5af20fbe08623870456d3 b/.git_backup/objects/7c/385bef830f82c8c6d5af20fbe08623870456d3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/436219fa9932055667cee3d34ca8da886373f7 b/.git_backup/objects/7c/436219fa9932055667cee3d34ca8da886373f7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/44658a65b00d9a8182c3a6dc67ea9ce7a8f3ce b/.git_backup/objects/7c/44658a65b00d9a8182c3a6dc67ea9ce7a8f3ce deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/48df2bbe14da2f1341d7e40b95a0d2204fa5cc b/.git_backup/objects/7c/48df2bbe14da2f1341d7e40b95a0d2204fa5cc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/4a5a3d8d730c0828471315efb084143d240381 b/.git_backup/objects/7c/4a5a3d8d730c0828471315efb084143d240381 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/5087aaefdf20b7afe8c64952b0e9278503c6f3 b/.git_backup/objects/7c/5087aaefdf20b7afe8c64952b0e9278503c6f3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/5ad2693aa1e85d62570a029b5b7bbc06d1e55b b/.git_backup/objects/7c/5ad2693aa1e85d62570a029b5b7bbc06d1e55b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/5ef3b334fbd8a63bb1a0e6ad72577f767dbaf6 b/.git_backup/objects/7c/5ef3b334fbd8a63bb1a0e6ad72577f767dbaf6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/5f7cc505dbcd08db6b887bc591f8c5c6162783 b/.git_backup/objects/7c/5f7cc505dbcd08db6b887bc591f8c5c6162783 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/5fef5f2656583c9d6d669d82a8412cbcfb9b04 b/.git_backup/objects/7c/5fef5f2656583c9d6d669d82a8412cbcfb9b04 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/63efd20b350358ab25c079166dbb00ef49f8d2 b/.git_backup/objects/7c/63efd20b350358ab25c079166dbb00ef49f8d2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/6997dd69eef019d6745dee125e92434b7954e3 b/.git_backup/objects/7c/6997dd69eef019d6745dee125e92434b7954e3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/6b67fa43c5fef11101d28dd46f4c1b325b65ee b/.git_backup/objects/7c/6b67fa43c5fef11101d28dd46f4c1b325b65ee deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/77f7cd717b9fdeb98b6e98e340e330894de372 b/.git_backup/objects/7c/77f7cd717b9fdeb98b6e98e340e330894de372 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/79f9e9dd6e7ba6d2cf71889c98c2b8ae45421b b/.git_backup/objects/7c/79f9e9dd6e7ba6d2cf71889c98c2b8ae45421b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/7fec149236f24d1ab7f7e837d0fabe6d285d6c b/.git_backup/objects/7c/7fec149236f24d1ab7f7e837d0fabe6d285d6c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/80238a3bc1809cdec133c057b1bf0ff46ce64e b/.git_backup/objects/7c/80238a3bc1809cdec133c057b1bf0ff46ce64e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/84e373cc3188c6152d335f7c91cb9af331752d b/.git_backup/objects/7c/84e373cc3188c6152d335f7c91cb9af331752d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/88530cb05a02b7cbe4ef11b084a8b4c41eace3 b/.git_backup/objects/7c/88530cb05a02b7cbe4ef11b084a8b4c41eace3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/9367a1011a28afa769cd2129376700a25a0043 b/.git_backup/objects/7c/9367a1011a28afa769cd2129376700a25a0043 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/94d54463908c0dc602835dcd6711e5c0dbc1cd b/.git_backup/objects/7c/94d54463908c0dc602835dcd6711e5c0dbc1cd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/978ab3da80f549484a53d39ba42c320f72268b b/.git_backup/objects/7c/978ab3da80f549484a53d39ba42c320f72268b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/99ae573b6051dd8337a01f6ae944c1afa32406 b/.git_backup/objects/7c/99ae573b6051dd8337a01f6ae944c1afa32406 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/a0b46f680b80780981aab0699e64dd04070fe7 b/.git_backup/objects/7c/a0b46f680b80780981aab0699e64dd04070fe7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/a9f253bd501ac47410610c268f84417ca52315 b/.git_backup/objects/7c/a9f253bd501ac47410610c268f84417ca52315 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/b01c515f6e864e21599ea36a4063acf586195f b/.git_backup/objects/7c/b01c515f6e864e21599ea36a4063acf586195f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/b9a6698a14d5337eaa093cbc9697bfd69cabf7 b/.git_backup/objects/7c/b9a6698a14d5337eaa093cbc9697bfd69cabf7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/baf98d75438af40772c60206a2431613af74b5 b/.git_backup/objects/7c/baf98d75438af40772c60206a2431613af74b5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/be6e91319c9546b16fbe8f32144850183c07cc b/.git_backup/objects/7c/be6e91319c9546b16fbe8f32144850183c07cc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/d16d1ef9b50cc1194d034ef4d458ef3cf0d417 b/.git_backup/objects/7c/d16d1ef9b50cc1194d034ef4d458ef3cf0d417 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/d2bf4f1ca19ec5c549eb7e40501bf5de70ef64 b/.git_backup/objects/7c/d2bf4f1ca19ec5c549eb7e40501bf5de70ef64 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/d319480083bb2abb279b9d02c3e25baafc045c b/.git_backup/objects/7c/d319480083bb2abb279b9d02c3e25baafc045c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/dc99a9803f4e1ce3c5f7f9e6cd761f178536ae b/.git_backup/objects/7c/dc99a9803f4e1ce3c5f7f9e6cd761f178536ae deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/e589c0c93795535793f823a02f7f92046e79d4 b/.git_backup/objects/7c/e589c0c93795535793f823a02f7f92046e79d4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/eeb08a213820c04950b80e2a7a07fa674338bf b/.git_backup/objects/7c/eeb08a213820c04950b80e2a7a07fa674338bf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/eed1da1279f79b6e43649ea5c2c19c7d41c50c b/.git_backup/objects/7c/eed1da1279f79b6e43649ea5c2c19c7d41c50c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/f319e1d134c953e14c2a4639e10c486a9fb7fe b/.git_backup/objects/7c/f319e1d134c953e14c2a4639e10c486a9fb7fe deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/f34635ce9c1b6aa5d15eb0d47d8400b01cdff4 b/.git_backup/objects/7c/f34635ce9c1b6aa5d15eb0d47d8400b01cdff4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/f8bf0b05353449fb82bcca8f0e86f38eea7693 b/.git_backup/objects/7c/f8bf0b05353449fb82bcca8f0e86f38eea7693 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7c/fd8ab07645451e84987d3d79ec1a2388f30207 b/.git_backup/objects/7c/fd8ab07645451e84987d3d79ec1a2388f30207 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/008a27869269e92bf5e6031e178e22df3a8a75 b/.git_backup/objects/7d/008a27869269e92bf5e6031e178e22df3a8a75 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/0744f8500b82184a56c8eeb920a747d1050110 b/.git_backup/objects/7d/0744f8500b82184a56c8eeb920a747d1050110 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/0a9c22a4656951910a9fbb70af59a0706cadde b/.git_backup/objects/7d/0a9c22a4656951910a9fbb70af59a0706cadde deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/0c602de1245ac283ace06dda7b8cdb223bfd97 b/.git_backup/objects/7d/0c602de1245ac283ace06dda7b8cdb223bfd97 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/158d7a26bc44e0cadcac06a165659d8883a06c b/.git_backup/objects/7d/158d7a26bc44e0cadcac06a165659d8883a06c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/17628c48eb3d6f4bb4d84320ec999c86e29c07 b/.git_backup/objects/7d/17628c48eb3d6f4bb4d84320ec999c86e29c07 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/17aa6c39ae3a8ced143c08444a92c461b5e8da b/.git_backup/objects/7d/17aa6c39ae3a8ced143c08444a92c461b5e8da deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/248e65c44360a2eb2ee9e4fcccd6623acb05d7 b/.git_backup/objects/7d/248e65c44360a2eb2ee9e4fcccd6623acb05d7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/262b560a0e6f0319ae3276ce377adb544f7cd6 b/.git_backup/objects/7d/262b560a0e6f0319ae3276ce377adb544f7cd6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/27b617c0e6e4946a78726906b82f94f1b27c28 b/.git_backup/objects/7d/27b617c0e6e4946a78726906b82f94f1b27c28 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/296aa078faa13fb5d70305709b4a2b41e67bb0 b/.git_backup/objects/7d/296aa078faa13fb5d70305709b4a2b41e67bb0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/29bc1b4d87ac02422b171b2a7a89eb0cb91b97 b/.git_backup/objects/7d/29bc1b4d87ac02422b171b2a7a89eb0cb91b97 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/2bb75934c335d6a2b88268d5cfdf485e4892a6 b/.git_backup/objects/7d/2bb75934c335d6a2b88268d5cfdf485e4892a6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/366c6098c49ecd546e1cc1538919e1414a3aee b/.git_backup/objects/7d/366c6098c49ecd546e1cc1538919e1414a3aee deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/36e64c467ca8d9cadc88ab03da71faf1aa8abb b/.git_backup/objects/7d/36e64c467ca8d9cadc88ab03da71faf1aa8abb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/38658d0202272f7da2cd98e1bd155aa029257f b/.git_backup/objects/7d/38658d0202272f7da2cd98e1bd155aa029257f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/3cb7a3d0a2d766a36f8cd399e029483b2cded5 b/.git_backup/objects/7d/3cb7a3d0a2d766a36f8cd399e029483b2cded5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/44945e4b6035daeb844fdba7b5e20e7f2020af b/.git_backup/objects/7d/44945e4b6035daeb844fdba7b5e20e7f2020af deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/485ee62c7d2000dcdb25e8034029edec4bc19b b/.git_backup/objects/7d/485ee62c7d2000dcdb25e8034029edec4bc19b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/49de8cf12b9746bced57d3e5f9e753c1aba0a5 b/.git_backup/objects/7d/49de8cf12b9746bced57d3e5f9e753c1aba0a5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/594d803edbfcf70924c1cb48ba1f546b0ad690 b/.git_backup/objects/7d/594d803edbfcf70924c1cb48ba1f546b0ad690 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/71f47e5c55ccf4ae55cbfb46aa2ef92d05e36d b/.git_backup/objects/7d/71f47e5c55ccf4ae55cbfb46aa2ef92d05e36d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/725165b2fbd496e8ef3a257a2798805d0af215 b/.git_backup/objects/7d/725165b2fbd496e8ef3a257a2798805d0af215 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/76f63643737834053f80539188c9dad75ed0cb b/.git_backup/objects/7d/76f63643737834053f80539188c9dad75ed0cb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/7bb6a8927e3660c2da2160700189d8ff8775b7 b/.git_backup/objects/7d/7bb6a8927e3660c2da2160700189d8ff8775b7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/8684f2b3bea75de4558a9413d55bde0b679f47 b/.git_backup/objects/7d/8684f2b3bea75de4558a9413d55bde0b679f47 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/874ca5eb7141a44559307d1c28dd412171396f b/.git_backup/objects/7d/874ca5eb7141a44559307d1c28dd412171396f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/9ee9355fe8d78ea40ebabac12eb032408c577b b/.git_backup/objects/7d/9ee9355fe8d78ea40ebabac12eb032408c577b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/a02bb9f196edc70b23c267e74ec5e5f34589e0 b/.git_backup/objects/7d/a02bb9f196edc70b23c267e74ec5e5f34589e0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/a2994168c94b0d097313dddc3ab746b29ded34 b/.git_backup/objects/7d/a2994168c94b0d097313dddc3ab746b29ded34 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/a97e04a1493367c2ca4300fa397abedf2af711 b/.git_backup/objects/7d/a97e04a1493367c2ca4300fa397abedf2af711 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/abe343e6f9efc3fd834d5d13d5e3de464d0a15 b/.git_backup/objects/7d/abe343e6f9efc3fd834d5d13d5e3de464d0a15 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/b30dc1ba9b94c39892634974aca07fc1c15a37 b/.git_backup/objects/7d/b30dc1ba9b94c39892634974aca07fc1c15a37 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/b63e0696809c62f8b7d351e03d5798df0a4fe5 b/.git_backup/objects/7d/b63e0696809c62f8b7d351e03d5798df0a4fe5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/bc427d101c5567c56d85779b26462cd724459a b/.git_backup/objects/7d/bc427d101c5567c56d85779b26462cd724459a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/c3b10387d1c3d2da8b4e27e917ee2a85086e0c b/.git_backup/objects/7d/c3b10387d1c3d2da8b4e27e917ee2a85086e0c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/c824b691a015d4f785f26795f65b7c1385ad9e b/.git_backup/objects/7d/c824b691a015d4f785f26795f65b7c1385ad9e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/c9aeda78c8f7144469e415ba692009ad9a7dd9 b/.git_backup/objects/7d/c9aeda78c8f7144469e415ba692009ad9a7dd9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/c9bc53360e95abfa99fe1ebd205a3d3ac620e6 b/.git_backup/objects/7d/c9bc53360e95abfa99fe1ebd205a3d3ac620e6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/cdc18a276d4ea8cb34270025dbe1f0c191c97e b/.git_backup/objects/7d/cdc18a276d4ea8cb34270025dbe1f0c191c97e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/ce49447b0fe2b13f8693feb63c54c19fde38e7 b/.git_backup/objects/7d/ce49447b0fe2b13f8693feb63c54c19fde38e7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/cec4be852d8b5adbc8269eb7e6b4d05b35eb6e b/.git_backup/objects/7d/cec4be852d8b5adbc8269eb7e6b4d05b35eb6e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/d3ed125139f5248859c4f8e41c4e66e25cdb9d b/.git_backup/objects/7d/d3ed125139f5248859c4f8e41c4e66e25cdb9d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/dab91a24ec0f556770e5137a30ad893a5e4818 b/.git_backup/objects/7d/dab91a24ec0f556770e5137a30ad893a5e4818 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/dcd883fedcb493b7ab527483c7d4a6d4fc5055 b/.git_backup/objects/7d/dcd883fedcb493b7ab527483c7d4a6d4fc5055 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/dd1c8f70abebc9e8513dfc53adf0d69bd2c708 b/.git_backup/objects/7d/dd1c8f70abebc9e8513dfc53adf0d69bd2c708 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/e31822eb7f969e66f1daf68edda9c6a06f930e b/.git_backup/objects/7d/e31822eb7f969e66f1daf68edda9c6a06f930e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/ef61d17eb666d9504d28ce9e852b31faf321a5 b/.git_backup/objects/7d/ef61d17eb666d9504d28ce9e852b31faf321a5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/eff6b081051e661d8c26e9682570cf4b1df2d6 b/.git_backup/objects/7d/eff6b081051e661d8c26e9682570cf4b1df2d6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/f27f16a8756f4dc5347e48c498992b3f24d426 b/.git_backup/objects/7d/f27f16a8756f4dc5347e48c498992b3f24d426 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/f5b6a979127e88573ac94d36a2231255d6fb86 b/.git_backup/objects/7d/f5b6a979127e88573ac94d36a2231255d6fb86 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/f8ffe2ce303737b32533988a8f9132d48e546c b/.git_backup/objects/7d/f8ffe2ce303737b32533988a8f9132d48e546c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/f94b5820e5d46a72e2b753fac500233ed9514c b/.git_backup/objects/7d/f94b5820e5d46a72e2b753fac500233ed9514c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/fda0463ecaf841c0b572d136bdb16fb59cd99a b/.git_backup/objects/7d/fda0463ecaf841c0b572d136bdb16fb59cd99a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7d/fe08cd4ef92164b6dc27099f94060b0cc5a1e0 b/.git_backup/objects/7d/fe08cd4ef92164b6dc27099f94060b0cc5a1e0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/087184d3cc7cbc2adaa42d4b45ae48e00f9917 b/.git_backup/objects/7e/087184d3cc7cbc2adaa42d4b45ae48e00f9917 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/0dd3e057a66c5a9573f689f4950e8ff0a7be4f b/.git_backup/objects/7e/0dd3e057a66c5a9573f689f4950e8ff0a7be4f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/1060246fd6746a14204539a72e199a25469a05 b/.git_backup/objects/7e/1060246fd6746a14204539a72e199a25469a05 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/115fa647ed8364e3659a0f416855a98a32137b b/.git_backup/objects/7e/115fa647ed8364e3659a0f416855a98a32137b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/133ef9bb8ff6439ffe563a86fa6fdc8d5a963a b/.git_backup/objects/7e/133ef9bb8ff6439ffe563a86fa6fdc8d5a963a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/14b515836cf0dcf9f9d8bd5c69dfdafab0720d b/.git_backup/objects/7e/14b515836cf0dcf9f9d8bd5c69dfdafab0720d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/166ea507c0afad7a7430757c19cc9482ae2642 b/.git_backup/objects/7e/166ea507c0afad7a7430757c19cc9482ae2642 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/168a27c1a1180c09d52ce51db512361070a69c b/.git_backup/objects/7e/168a27c1a1180c09d52ce51db512361070a69c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/2bee4d09ccfc02e1798a1df674d31daa9f69a2 b/.git_backup/objects/7e/2bee4d09ccfc02e1798a1df674d31daa9f69a2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/2f53f7e816b320cdfaf255834ee2295c4af92b b/.git_backup/objects/7e/2f53f7e816b320cdfaf255834ee2295c4af92b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/324aa86a052246a074950082e272fee7e505e3 b/.git_backup/objects/7e/324aa86a052246a074950082e272fee7e505e3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/41463a903e0238d18c553b295c39b6ed8af938 b/.git_backup/objects/7e/41463a903e0238d18c553b295c39b6ed8af938 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/445650133aceadb0ec34021517d5855820d165 b/.git_backup/objects/7e/445650133aceadb0ec34021517d5855820d165 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/4600da6de4f14664e661813c961f63ba0e2aa2 b/.git_backup/objects/7e/4600da6de4f14664e661813c961f63ba0e2aa2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/5331b087ecaafdf99aa3a2e0ab7446c08ba5fb b/.git_backup/objects/7e/5331b087ecaafdf99aa3a2e0ab7446c08ba5fb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/54bbc3268808dc2f7e395c81a49be4a82c969c b/.git_backup/objects/7e/54bbc3268808dc2f7e395c81a49be4a82c969c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/551688b40993776c1d23ca96ded2da71177b5a b/.git_backup/objects/7e/551688b40993776c1d23ca96ded2da71177b5a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/57cc02627fc3c3bb49613731a51c72452f96ba b/.git_backup/objects/7e/57cc02627fc3c3bb49613731a51c72452f96ba deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/57e7eeb7dac77921080cdd0452bb262b654980 b/.git_backup/objects/7e/57e7eeb7dac77921080cdd0452bb262b654980 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/582752081df3ff9a3acdb609c73d3d7d28c0eb b/.git_backup/objects/7e/582752081df3ff9a3acdb609c73d3d7d28c0eb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/58a203c6bdc9045092f879f8f58aa960084cad b/.git_backup/objects/7e/58a203c6bdc9045092f879f8f58aa960084cad deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/5b6b344939c660b71e449ce9c178e8234dcd81 b/.git_backup/objects/7e/5b6b344939c660b71e449ce9c178e8234dcd81 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/5b6fcf018efb106dbf8fc6b462f810e413d60b b/.git_backup/objects/7e/5b6fcf018efb106dbf8fc6b462f810e413d60b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/5da7cd0ead73042e7e495bf4c403da36c22b9e b/.git_backup/objects/7e/5da7cd0ead73042e7e495bf4c403da36c22b9e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/5f6ce869e7096efa0ea40b8d85e4adbf652a96 b/.git_backup/objects/7e/5f6ce869e7096efa0ea40b8d85e4adbf652a96 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/76eb05491b2fa41c68a6b2d96a82171e641f69 b/.git_backup/objects/7e/76eb05491b2fa41c68a6b2d96a82171e641f69 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/7a61ecbb90fd731ee4855a96ea9bc8314ef1ac b/.git_backup/objects/7e/7a61ecbb90fd731ee4855a96ea9bc8314ef1ac deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/7d9725bb8062b86f5e0cbeff53cc3fc2538bc3 b/.git_backup/objects/7e/7d9725bb8062b86f5e0cbeff53cc3fc2538bc3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/84b2afeeeab8a581ba309ed5e593636e224ea9 b/.git_backup/objects/7e/84b2afeeeab8a581ba309ed5e593636e224ea9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/86b58f35d0296da3ab3285721c1450702e1dff b/.git_backup/objects/7e/86b58f35d0296da3ab3285721c1450702e1dff deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/87f4767c86d458c16d8ba41150011a0858b639 b/.git_backup/objects/7e/87f4767c86d458c16d8ba41150011a0858b639 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/933537dbf308ee9a869bee8427ad408a902004 b/.git_backup/objects/7e/933537dbf308ee9a869bee8427ad408a902004 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/989a91a1b117d87888cfe49c8c925b9a2c7ee8 b/.git_backup/objects/7e/989a91a1b117d87888cfe49c8c925b9a2c7ee8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/9f9c465ce6211c65d617f60472c9b55b5052c5 b/.git_backup/objects/7e/9f9c465ce6211c65d617f60472c9b55b5052c5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/a7968fe935182bd17a697b316569546937b715 b/.git_backup/objects/7e/a7968fe935182bd17a697b316569546937b715 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/aa85863f2dee3967714eff025f45a684f0e6e2 b/.git_backup/objects/7e/aa85863f2dee3967714eff025f45a684f0e6e2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/ac89e8f9aac8c32c54c9e88183e05721a82325 b/.git_backup/objects/7e/ac89e8f9aac8c32c54c9e88183e05721a82325 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/aff9c3ea9113edf08147456a828dc89b78bbd5 b/.git_backup/objects/7e/aff9c3ea9113edf08147456a828dc89b78bbd5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/b55e2607df2dd43fdfad1f70c67fc17c68c47f b/.git_backup/objects/7e/b55e2607df2dd43fdfad1f70c67fc17c68c47f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/b5c4fae788021b8178716023de4119972e701a b/.git_backup/objects/7e/b5c4fae788021b8178716023de4119972e701a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/bfd54a5b0d6bf1ff2c4602ed72f5214e32608f b/.git_backup/objects/7e/bfd54a5b0d6bf1ff2c4602ed72f5214e32608f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/c5846ef4acf7b370cf0823d7206a6eea032a36 b/.git_backup/objects/7e/c5846ef4acf7b370cf0823d7206a6eea032a36 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/c69d3453cfcfce7e84e12c930f0cf212c7ba53 b/.git_backup/objects/7e/c69d3453cfcfce7e84e12c930f0cf212c7ba53 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/c7a249744ba26b526e5fb761ea6e9f83edeca6 b/.git_backup/objects/7e/c7a249744ba26b526e5fb761ea6e9f83edeca6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/cca3f59da3a306d5b8f67f709ed565c842fdf0 b/.git_backup/objects/7e/cca3f59da3a306d5b8f67f709ed565c842fdf0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/d51dc316bc113e65243d38a0a3a6de124cc6be b/.git_backup/objects/7e/d51dc316bc113e65243d38a0a3a6de124cc6be deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/d7e9297e01b87c4e999d19d48a4265b38b574f b/.git_backup/objects/7e/d7e9297e01b87c4e999d19d48a4265b38b574f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/d932bc928d9911b7d5cc4eb11d3d86c141b36b b/.git_backup/objects/7e/d932bc928d9911b7d5cc4eb11d3d86c141b36b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/e2247ec16cd990f50525fc7ec67d12e1b2aa09 b/.git_backup/objects/7e/e2247ec16cd990f50525fc7ec67d12e1b2aa09 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/e2e03affbdc703d23e95d97dbf601a37d162c9 b/.git_backup/objects/7e/e2e03affbdc703d23e95d97dbf601a37d162c9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7e/ebd1a9f0e613e36f2a76011c834b90bfd9fd25 b/.git_backup/objects/7e/ebd1a9f0e613e36f2a76011c834b90bfd9fd25 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/028fdb966b142732b2d0cdca5cafa698a5aaf7 b/.git_backup/objects/7f/028fdb966b142732b2d0cdca5cafa698a5aaf7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/0c639b18ebd89f1f4ddbe60343744a33924911 b/.git_backup/objects/7f/0c639b18ebd89f1f4ddbe60343744a33924911 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/106f47f3783fb073cdbc8e72d1927ce9e9ef57 b/.git_backup/objects/7f/106f47f3783fb073cdbc8e72d1927ce9e9ef57 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/12ebd776bf8092b8f23d4a53f59edd29f2a30c b/.git_backup/objects/7f/12ebd776bf8092b8f23d4a53f59edd29f2a30c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/19c111c73d139b02dac0d840f5ac1cc3d28911 b/.git_backup/objects/7f/19c111c73d139b02dac0d840f5ac1cc3d28911 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/1fbfc2e133263214528efae2d68e33c595a38c b/.git_backup/objects/7f/1fbfc2e133263214528efae2d68e33c595a38c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/2157d9424a03e3b92797a75f5ab47fb72bd4f3 b/.git_backup/objects/7f/2157d9424a03e3b92797a75f5ab47fb72bd4f3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/216fd6530bcdd299714e62c93b311822fb9374 b/.git_backup/objects/7f/216fd6530bcdd299714e62c93b311822fb9374 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/23529f1155cd3bbfde335ccdb7fc483b9d2d19 b/.git_backup/objects/7f/23529f1155cd3bbfde335ccdb7fc483b9d2d19 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/24c778feb1b4556587773f711e21521efc537c b/.git_backup/objects/7f/24c778feb1b4556587773f711e21521efc537c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/255e8f181c87be8f7132e4e3e1797c35f02778 b/.git_backup/objects/7f/255e8f181c87be8f7132e4e3e1797c35f02778 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/2677c26523e61ee82e442a4cea6fb3b4cdcc03 b/.git_backup/objects/7f/2677c26523e61ee82e442a4cea6fb3b4cdcc03 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/3b93d0278cdbc27deca6f7b825732f630ca9ed b/.git_backup/objects/7f/3b93d0278cdbc27deca6f7b825732f630ca9ed deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/3bc11f0521a40220a97472d60c77ba45d28c02 b/.git_backup/objects/7f/3bc11f0521a40220a97472d60c77ba45d28c02 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/416e1e799abfbf62382456020cc8e59e5cf01f b/.git_backup/objects/7f/416e1e799abfbf62382456020cc8e59e5cf01f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/4eb9ddd829d09d8d84c8dd0ad0f6870bfc5813 b/.git_backup/objects/7f/4eb9ddd829d09d8d84c8dd0ad0f6870bfc5813 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/50c9f61596191607a5dafe775910cc1f904365 b/.git_backup/objects/7f/50c9f61596191607a5dafe775910cc1f904365 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/54817e5ed2d6bd3003a2f64524ca48b3e102d1 b/.git_backup/objects/7f/54817e5ed2d6bd3003a2f64524ca48b3e102d1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/5a76cfd63f47dcce29b3ea82f59d10f4e8d771 b/.git_backup/objects/7f/5a76cfd63f47dcce29b3ea82f59d10f4e8d771 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/5b71c8f1e13b42de2e8e612a005dec409fc025 b/.git_backup/objects/7f/5b71c8f1e13b42de2e8e612a005dec409fc025 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/6d958f8630cba512d8e58ca8edfbd516291522 b/.git_backup/objects/7f/6d958f8630cba512d8e58ca8edfbd516291522 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/6fa5685c638e3e00e6c1c6ca82b39c37bda182 b/.git_backup/objects/7f/6fa5685c638e3e00e6c1c6ca82b39c37bda182 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/744b665a9fa1ac63d418630163e04630daa4b0 b/.git_backup/objects/7f/744b665a9fa1ac63d418630163e04630daa4b0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/7afbf3bf54b346092be6a72070fcbd305ead1e b/.git_backup/objects/7f/7afbf3bf54b346092be6a72070fcbd305ead1e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/826c6891732eb0a26a17625deea3e2e152ad13 b/.git_backup/objects/7f/826c6891732eb0a26a17625deea3e2e152ad13 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/8ca389050cd4bac7fd23d84e399a242d35d309 b/.git_backup/objects/7f/8ca389050cd4bac7fd23d84e399a242d35d309 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/8da907c6fb8fdb67326493437d7ad9fcc8b953 b/.git_backup/objects/7f/8da907c6fb8fdb67326493437d7ad9fcc8b953 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/9eb2e6794dbf3584ccaf60a23ca6e7330e6f3f b/.git_backup/objects/7f/9eb2e6794dbf3584ccaf60a23ca6e7330e6f3f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/a89541cdbc98b868f2edf01e0dfcb62306d952 b/.git_backup/objects/7f/a89541cdbc98b868f2edf01e0dfcb62306d952 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/b07827dbeb97d16eb2e2dbe612425073d08baf b/.git_backup/objects/7f/b07827dbeb97d16eb2e2dbe612425073d08baf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/b0bd009d981ab6ddeeffd25889ff7be7ddec85 b/.git_backup/objects/7f/b0bd009d981ab6ddeeffd25889ff7be7ddec85 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/bb1ccbf78614ab3e12f9dbbb2c9e75d16bdc22 b/.git_backup/objects/7f/bb1ccbf78614ab3e12f9dbbb2c9e75d16bdc22 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/bcb89c5015b88f60c3ee25dbb987f816beb604 b/.git_backup/objects/7f/bcb89c5015b88f60c3ee25dbb987f816beb604 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/c4962774a4651db7a739a3f143633b6215a9bd b/.git_backup/objects/7f/c4962774a4651db7a739a3f143633b6215a9bd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/d8bae91ef2d2b714e2b731e824f0306b725c59 b/.git_backup/objects/7f/d8bae91ef2d2b714e2b731e824f0306b725c59 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/da3533d6a0f2fc0abbea17b57e08036c92ccab b/.git_backup/objects/7f/da3533d6a0f2fc0abbea17b57e08036c92ccab deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/e0a5e7c9895748782999bd7ee2a6d3f1f9fd83 b/.git_backup/objects/7f/e0a5e7c9895748782999bd7ee2a6d3f1f9fd83 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/e1a3e33a3adbfd9ad1126a22d7175154ebc200 b/.git_backup/objects/7f/e1a3e33a3adbfd9ad1126a22d7175154ebc200 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/ea528b8ae65ad6be2e75e5c034a38ed5a4a24a b/.git_backup/objects/7f/ea528b8ae65ad6be2e75e5c034a38ed5a4a24a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/f2f40540c48938928539d4872a83c5e351b4ba b/.git_backup/objects/7f/f2f40540c48938928539d4872a83c5e351b4ba deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/f9949ffa93e44835ab133998b89e440094f909 b/.git_backup/objects/7f/f9949ffa93e44835ab133998b89e440094f909 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/fd5fc61c60504ad8ec759e0d2be0f6fade7087 b/.git_backup/objects/7f/fd5fc61c60504ad8ec759e0d2be0f6fade7087 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/7f/ff6b162d552ea8e1f5a257ebf033d6d162d328 b/.git_backup/objects/7f/ff6b162d552ea8e1f5a257ebf033d6d162d328 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/80/08c6c98acc9fbf4cbdd4622bec7221f18e2e16 b/.git_backup/objects/80/08c6c98acc9fbf4cbdd4622bec7221f18e2e16 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/80/0cf29dbca9795e32668014f2bcea016551d554 b/.git_backup/objects/80/0cf29dbca9795e32668014f2bcea016551d554 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/80/24399fbc81ccd86fd58baa02aeb49b7491f6fe b/.git_backup/objects/80/24399fbc81ccd86fd58baa02aeb49b7491f6fe deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/80/26fc82c1ec7cc31f62218cdbd5e944af07dcaa b/.git_backup/objects/80/26fc82c1ec7cc31f62218cdbd5e944af07dcaa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/80/32962dc994bd2b62e98f02016c88d0994e2f58 b/.git_backup/objects/80/32962dc994bd2b62e98f02016c88d0994e2f58 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/80/352f534bf1f142d0527645de709a63f292b6e9 b/.git_backup/objects/80/352f534bf1f142d0527645de709a63f292b6e9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/80/4d8b1a8a90636c880e974b6f85bd385033306b b/.git_backup/objects/80/4d8b1a8a90636c880e974b6f85bd385033306b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/80/4fa226fe3ed9e6cc2bd044a848f33a2d7b4e4f b/.git_backup/objects/80/4fa226fe3ed9e6cc2bd044a848f33a2d7b4e4f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/80/5477f1f167f3eb3a3c04c49e97e492fcde46fa b/.git_backup/objects/80/5477f1f167f3eb3a3c04c49e97e492fcde46fa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/80/5b086a90cebbb58965e16609b00d311b6ae68f b/.git_backup/objects/80/5b086a90cebbb58965e16609b00d311b6ae68f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/80/5b5029eefa0d973f9da9fa37d465b09648e61b b/.git_backup/objects/80/5b5029eefa0d973f9da9fa37d465b09648e61b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/80/6e2abe83a9226bfa17c99e3841c339a6092a1b b/.git_backup/objects/80/6e2abe83a9226bfa17c99e3841c339a6092a1b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/80/6f30c87f518fe82a326039a189e3d06e0edc3f b/.git_backup/objects/80/6f30c87f518fe82a326039a189e3d06e0edc3f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/80/72a45d292ca4376b9f03a679f7b3ab331e8136 b/.git_backup/objects/80/72a45d292ca4376b9f03a679f7b3ab331e8136 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/80/7565e38b25349fbd87ab05bc23aca9b84c1084 b/.git_backup/objects/80/7565e38b25349fbd87ab05bc23aca9b84c1084 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/80/78188f737de05c50013666aea3ccca2e45d1b7 b/.git_backup/objects/80/78188f737de05c50013666aea3ccca2e45d1b7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/80/78e9815818db1edbc4e5b7600df7d90e05f966 b/.git_backup/objects/80/78e9815818db1edbc4e5b7600df7d90e05f966 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/80/79d86bed397809828eacbbe3c1b35792636a22 b/.git_backup/objects/80/79d86bed397809828eacbbe3c1b35792636a22 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/80/7c0168300cbcd5b2b24fc110970a096edd7fee b/.git_backup/objects/80/7c0168300cbcd5b2b24fc110970a096edd7fee deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/80/7fd672b02e1d171dc0dda168327902a516fca4 b/.git_backup/objects/80/7fd672b02e1d171dc0dda168327902a516fca4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/80/81ffa432a9e88dd9aa718da12b7ccf972e3347 b/.git_backup/objects/80/81ffa432a9e88dd9aa718da12b7ccf972e3347 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/80/88a235889371d74e69cd52900ccd8cb120fed5 b/.git_backup/objects/80/88a235889371d74e69cd52900ccd8cb120fed5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/80/8a91a4f83d27bfb5749d8dc1d27697a0608644 b/.git_backup/objects/80/8a91a4f83d27bfb5749d8dc1d27697a0608644 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/80/9d21db805e0e1dcc97075843929eaf2d20c8ac b/.git_backup/objects/80/9d21db805e0e1dcc97075843929eaf2d20c8ac deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/80/a7cc1c4fc909062ad6098659fdccd7c25d5882 b/.git_backup/objects/80/a7cc1c4fc909062ad6098659fdccd7c25d5882 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/80/b4b8a46bb0bd9b846ec5cc72ed022f2c20a257 b/.git_backup/objects/80/b4b8a46bb0bd9b846ec5cc72ed022f2c20a257 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/80/b5954fa0d9189ceb782bd963d2cb8a3e65fdf9 b/.git_backup/objects/80/b5954fa0d9189ceb782bd963d2cb8a3e65fdf9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/80/b94000f04e02211bd3458373cd22e25cd37766 b/.git_backup/objects/80/b94000f04e02211bd3458373cd22e25cd37766 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/80/be93f877bac5f4c27f438c08cf87a77e44498e b/.git_backup/objects/80/be93f877bac5f4c27f438c08cf87a77e44498e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/80/cdad90cec56de2226979fa0c9b0f9dfa39c7c9 b/.git_backup/objects/80/cdad90cec56de2226979fa0c9b0f9dfa39c7c9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/80/d2b460f6825324e808722a3aa20ef5bc16cbee b/.git_backup/objects/80/d2b460f6825324e808722a3aa20ef5bc16cbee deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/80/d7ab58dc559ac0e1008985dc1a9892cac63dc2 b/.git_backup/objects/80/d7ab58dc559ac0e1008985dc1a9892cac63dc2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/80/e1e70df4c6bcc454d14d1d9df15eb797d7222c b/.git_backup/objects/80/e1e70df4c6bcc454d14d1d9df15eb797d7222c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/80/e1fda5c08e84ae7ddae6f4736829d27d970751 b/.git_backup/objects/80/e1fda5c08e84ae7ddae6f4736829d27d970751 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/80/e7f84372ebad1748c35f0642f9f52ef6db2433 b/.git_backup/objects/80/e7f84372ebad1748c35f0642f9f52ef6db2433 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/80/f97ecaee121e9477aebfcc71ed464f314c01c4 b/.git_backup/objects/80/f97ecaee121e9477aebfcc71ed464f314c01c4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/057b7b43de92de4a185c113aa71eb2ff6a20be b/.git_backup/objects/81/057b7b43de92de4a185c113aa71eb2ff6a20be deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/0973a624a224b289bf56552ea1412e1139041c b/.git_backup/objects/81/0973a624a224b289bf56552ea1412e1139041c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/0cbfb4d4878c7b764a7f21207f30659b8ffc7e b/.git_backup/objects/81/0cbfb4d4878c7b764a7f21207f30659b8ffc7e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/122c0477de8ae1f3ad5538a07b90aba5c61bc4 b/.git_backup/objects/81/122c0477de8ae1f3ad5538a07b90aba5c61bc4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/1312ad704ac00c06ce5fc234b3bd4588a09300 b/.git_backup/objects/81/1312ad704ac00c06ce5fc234b3bd4588a09300 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/17b2716d110074d9a81365c59343e81396b7f5 b/.git_backup/objects/81/17b2716d110074d9a81365c59343e81396b7f5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/1821debbd28efc93b355606636238cf7babd8f b/.git_backup/objects/81/1821debbd28efc93b355606636238cf7babd8f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/1845f54bd2b02833aefecb3edf9b2891278a65 b/.git_backup/objects/81/1845f54bd2b02833aefecb3edf9b2891278a65 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/19d2acc3ed96b78cf063945aab46ab1aadc9b2 b/.git_backup/objects/81/19d2acc3ed96b78cf063945aab46ab1aadc9b2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/1f3fd2e8dc97031b91c546cd3ddfdbdc9d3b52 b/.git_backup/objects/81/1f3fd2e8dc97031b91c546cd3ddfdbdc9d3b52 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/327fd9efb06a9ceaa06202b92d854da8c24c87 b/.git_backup/objects/81/327fd9efb06a9ceaa06202b92d854da8c24c87 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/3485300d464e6a7e2c5097ad28338de1d9ac4c b/.git_backup/objects/81/3485300d464e6a7e2c5097ad28338de1d9ac4c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/3c461f05b36b52c855f31d621a23ab7ee0c642 b/.git_backup/objects/81/3c461f05b36b52c855f31d621a23ab7ee0c642 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/503b7e267cf9f74999d283b0d33b012fd0f77c b/.git_backup/objects/81/503b7e267cf9f74999d283b0d33b012fd0f77c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/535534b3ef6d87d401fbc53bfd4696ebeec39f b/.git_backup/objects/81/535534b3ef6d87d401fbc53bfd4696ebeec39f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/58fa64596cfb95267abccc0c643d3126dd1ab0 b/.git_backup/objects/81/58fa64596cfb95267abccc0c643d3126dd1ab0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/5e3ac17a89cc1364c973a1fe8a14c185fc1bdd b/.git_backup/objects/81/5e3ac17a89cc1364c973a1fe8a14c185fc1bdd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/6f8ae928b1e934dabc0b87a155fb2dbd899e84 b/.git_backup/objects/81/6f8ae928b1e934dabc0b87a155fb2dbd899e84 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/75ca55b2d67421dbbd756ebfcc9331686faaef b/.git_backup/objects/81/75ca55b2d67421dbbd756ebfcc9331686faaef deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/7aaae0ffd364533176b3971a1cbb12e45e8506 b/.git_backup/objects/81/7aaae0ffd364533176b3971a1cbb12e45e8506 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/7e996f49162f434dbc173ca04fa260f8685dc4 b/.git_backup/objects/81/7e996f49162f434dbc173ca04fa260f8685dc4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/8023c01e4e764c464312b0eafcf7d2b681de2b b/.git_backup/objects/81/8023c01e4e764c464312b0eafcf7d2b681de2b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/8569c64a13a81c5754d1520247f26eafb776ee b/.git_backup/objects/81/8569c64a13a81c5754d1520247f26eafb776ee deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/8ce0cac3a99e4f2bc656ed3cfc3ca55d80f718 b/.git_backup/objects/81/8ce0cac3a99e4f2bc656ed3cfc3ca55d80f718 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/91fcf2dce045bef19cff480dda1353a7bf76a5 b/.git_backup/objects/81/91fcf2dce045bef19cff480dda1353a7bf76a5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/92589f6735095f2f2d74e7164877682dee9e2e b/.git_backup/objects/81/92589f6735095f2f2d74e7164877682dee9e2e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/957cbff10fc7dfb9d6ddb85c38e2ba2b44148a b/.git_backup/objects/81/957cbff10fc7dfb9d6ddb85c38e2ba2b44148a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/a066f782c51b69699d16edba1bc9c14eff267e b/.git_backup/objects/81/a066f782c51b69699d16edba1bc9c14eff267e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/a4b53cf8f590c6098d3be0652e7f11909b9fb7 b/.git_backup/objects/81/a4b53cf8f590c6098d3be0652e7f11909b9fb7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/b1082905338a74b72b9de432ece50a456687bc b/.git_backup/objects/81/b1082905338a74b72b9de432ece50a456687bc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/c465e1b7c1ce6bc8b9d5b13b56345754730e3d b/.git_backup/objects/81/c465e1b7c1ce6bc8b9d5b13b56345754730e3d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/c536d0b067b92cae1b7a2ee71824e2c5e730d9 b/.git_backup/objects/81/c536d0b067b92cae1b7a2ee71824e2c5e730d9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/c739cc3771fb1c69f533cd018775f371d828b1 b/.git_backup/objects/81/c739cc3771fb1c69f533cd018775f371d828b1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/ca947cd381739aec05bcb764dac0e4badc4886 b/.git_backup/objects/81/ca947cd381739aec05bcb764dac0e4badc4886 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/cbacdf08ab8326d6a9b02b2f57810fa478d9d9 b/.git_backup/objects/81/cbacdf08ab8326d6a9b02b2f57810fa478d9d9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/cdc0b7102e8201c762fed18e429e681697f353 b/.git_backup/objects/81/cdc0b7102e8201c762fed18e429e681697f353 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/d5c84e81ba15d4c47cd9f46af1be6d4bf129e8 b/.git_backup/objects/81/d5c84e81ba15d4c47cd9f46af1be6d4bf129e8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/db4ee04b0a2626a23c71e2c6e820c2399c19e7 b/.git_backup/objects/81/db4ee04b0a2626a23c71e2c6e820c2399c19e7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/e1032d72430c33ee1b1ccee76f24ab18ac366a b/.git_backup/objects/81/e1032d72430c33ee1b1ccee76f24ab18ac366a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/e142cda27edbe9a1b45db6de7b00d64ee4ce7d b/.git_backup/objects/81/e142cda27edbe9a1b45db6de7b00d64ee4ce7d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/e88fe943c06d5c360f31977d762c09fe059e15 b/.git_backup/objects/81/e88fe943c06d5c360f31977d762c09fe059e15 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/edcd06700518269420f0cf6192e552581c17d8 b/.git_backup/objects/81/edcd06700518269420f0cf6192e552581c17d8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/ede162e08e48e8e6e5b83bb1b578e6190e72dc b/.git_backup/objects/81/ede162e08e48e8e6e5b83bb1b578e6190e72dc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/f373807b866f093b4d3eaa4d07b84f939ebf68 b/.git_backup/objects/81/f373807b866f093b4d3eaa4d07b84f939ebf68 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/81/f3d358fa3e4d1248c633c1c1212fae7400891b b/.git_backup/objects/81/f3d358fa3e4d1248c633c1c1212fae7400891b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/0153053dc59ba8bed2281ab29a4a802e6c6e92 b/.git_backup/objects/82/0153053dc59ba8bed2281ab29a4a802e6c6e92 deleted file mode 100644 index 55d017d9..00000000 Binary files a/.git_backup/objects/82/0153053dc59ba8bed2281ab29a4a802e6c6e92 and /dev/null differ diff --git a/.git_backup/objects/82/07884b0216075c1110dc5d7f9a2d3fe93b3b8d b/.git_backup/objects/82/07884b0216075c1110dc5d7f9a2d3fe93b3b8d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/0c662403566a4cbd443541c22a7211d0812f5b b/.git_backup/objects/82/0c662403566a4cbd443541c22a7211d0812f5b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/0ed71f5808a1345070a6452404c2745591cb0b b/.git_backup/objects/82/0ed71f5808a1345070a6452404c2745591cb0b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/17dbfbda65550380a43400acf11546dda95b28 b/.git_backup/objects/82/17dbfbda65550380a43400acf11546dda95b28 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/19e8355f5395e642e1e243aa89e06b8c667361 b/.git_backup/objects/82/19e8355f5395e642e1e243aa89e06b8c667361 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/1bbad8e51f6671906a2a70290b0cbd0e4512eb b/.git_backup/objects/82/1bbad8e51f6671906a2a70290b0cbd0e4512eb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/1f4544413af0679ca34185c48d9ac2a22a668a b/.git_backup/objects/82/1f4544413af0679ca34185c48d9ac2a22a668a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/20c2e1e3fe8e6b7a69450150c321ba6347582c b/.git_backup/objects/82/20c2e1e3fe8e6b7a69450150c321ba6347582c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/27ee83604bc87bc37f7e892739466474940ae6 b/.git_backup/objects/82/27ee83604bc87bc37f7e892739466474940ae6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/293dffc492ea50b16335fd411b255dd5dfca57 b/.git_backup/objects/82/293dffc492ea50b16335fd411b255dd5dfca57 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/2c34898c3a5fe39c50499dad21610ec8537a27 b/.git_backup/objects/82/2c34898c3a5fe39c50499dad21610ec8537a27 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/2cf6b78e20a345cfd95367236eeda63d6fd2e0 b/.git_backup/objects/82/2cf6b78e20a345cfd95367236eeda63d6fd2e0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/2dc348cf5fc6c9a9af788901c6756eaa2cd056 b/.git_backup/objects/82/2dc348cf5fc6c9a9af788901c6756eaa2cd056 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/2e1cbb69e9c24c0b66b109c784a4f98294bc3d b/.git_backup/objects/82/2e1cbb69e9c24c0b66b109c784a4f98294bc3d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/3c85c399d576da2a5be1b804755e7959985530 b/.git_backup/objects/82/3c85c399d576da2a5be1b804755e7959985530 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/3ca38e205d107b5dbb8a8f3d0dbc4fbed1b698 b/.git_backup/objects/82/3ca38e205d107b5dbb8a8f3d0dbc4fbed1b698 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/3d1553609089b3528a41d4fe9fffaab2d5b40d b/.git_backup/objects/82/3d1553609089b3528a41d4fe9fffaab2d5b40d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/3d8db169db8ca21dfd91049a58fcb09bddc8fd b/.git_backup/objects/82/3d8db169db8ca21dfd91049a58fcb09bddc8fd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/3db3149b674fd9bfca31f5b6d803bf0115fb26 b/.git_backup/objects/82/3db3149b674fd9bfca31f5b6d803bf0115fb26 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/44124c3e298098c71785966543d0ba809324a5 b/.git_backup/objects/82/44124c3e298098c71785966543d0ba809324a5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/479e85b4e39ef49aa7d6a816db2eb38364ac5f b/.git_backup/objects/82/479e85b4e39ef49aa7d6a816db2eb38364ac5f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/48a18a894a4575b3a68b103eb0c6410e5dabc7 b/.git_backup/objects/82/48a18a894a4575b3a68b103eb0c6410e5dabc7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/48f378e2c1acea37bdc2d41065c591360b902a b/.git_backup/objects/82/48f378e2c1acea37bdc2d41065c591360b902a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/597a92b466dbbb84eae49cc2b04899f2cd07af b/.git_backup/objects/82/597a92b466dbbb84eae49cc2b04899f2cd07af deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/5a6bde9d9d11ffa7c4ae3fccf8759e25b16588 b/.git_backup/objects/82/5a6bde9d9d11ffa7c4ae3fccf8759e25b16588 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/60f0a49aec21d309dd119316a9adc8e6ae1d76 b/.git_backup/objects/82/60f0a49aec21d309dd119316a9adc8e6ae1d76 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/6649358e663c727d063cda7dc0f0da05886b37 b/.git_backup/objects/82/6649358e663c727d063cda7dc0f0da05886b37 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/7384e8f22190fb9740b9b6fb1311adcf63e3f1 b/.git_backup/objects/82/7384e8f22190fb9740b9b6fb1311adcf63e3f1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/7771ee2f25736617a2a83f368d41c97bef5a8e b/.git_backup/objects/82/7771ee2f25736617a2a83f368d41c97bef5a8e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/8177e672eb3f983a9a572bd744f78f506c0581 b/.git_backup/objects/82/8177e672eb3f983a9a572bd744f78f506c0581 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/83788ace64e92ef77e3a7d1ff6aea5fda1854e b/.git_backup/objects/82/83788ace64e92ef77e3a7d1ff6aea5fda1854e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/8c9ccdb67da25ffa554c64f634510edb53d1d3 b/.git_backup/objects/82/8c9ccdb67da25ffa554c64f634510edb53d1d3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/8d80d2f9a51d57d5d28fcb87ec57b914cacb59 b/.git_backup/objects/82/8d80d2f9a51d57d5d28fcb87ec57b914cacb59 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/933a5d2c420bc7a9536cd05f1d48e9e9bb3d0e b/.git_backup/objects/82/933a5d2c420bc7a9536cd05f1d48e9e9bb3d0e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/981079d8e3c1d69cfe44b0377038e7ed681346 b/.git_backup/objects/82/981079d8e3c1d69cfe44b0377038e7ed681346 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/9acbfc14043b94934386a7d372bd030964e9e3 b/.git_backup/objects/82/9acbfc14043b94934386a7d372bd030964e9e3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/9df1f3bfe2f324f065326496614b209e315b2a b/.git_backup/objects/82/9df1f3bfe2f324f065326496614b209e315b2a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/9e5f43170bee326182b49f9242f1f1d94820cb b/.git_backup/objects/82/9e5f43170bee326182b49f9242f1f1d94820cb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/a3721b0cbb9eedf939ffd1ba3be87bb28fa2ea b/.git_backup/objects/82/a3721b0cbb9eedf939ffd1ba3be87bb28fa2ea deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/a5f3a1d091f9cd6119c74f36ba07fd46fbf4fd b/.git_backup/objects/82/a5f3a1d091f9cd6119c74f36ba07fd46fbf4fd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/a7b92f2e70ffcf14ebf81939d910ae7e60978f b/.git_backup/objects/82/a7b92f2e70ffcf14ebf81939d910ae7e60978f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/a9c4151074daa82bc1681c81c386c7e1ed41e3 b/.git_backup/objects/82/a9c4151074daa82bc1681c81c386c7e1ed41e3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/aba409af4a00497a65a74b6445ab16a801568f b/.git_backup/objects/82/aba409af4a00497a65a74b6445ab16a801568f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/abad2f05dddff84dfc00943560bafc862e3e12 b/.git_backup/objects/82/abad2f05dddff84dfc00943560bafc862e3e12 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/abd5f4e0fee8e3241a90d587026b1f97ec2bfe b/.git_backup/objects/82/abd5f4e0fee8e3241a90d587026b1f97ec2bfe deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/ac095ec58dd54f633d24415aba2ec71dc9dad1 b/.git_backup/objects/82/ac095ec58dd54f633d24415aba2ec71dc9dad1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/b113fd096f451a73501f142f26f5431cf6f2cb b/.git_backup/objects/82/b113fd096f451a73501f142f26f5431cf6f2cb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/b3245cac5399e5d6877fe2d8b2ddad585e9c2a b/.git_backup/objects/82/b3245cac5399e5d6877fe2d8b2ddad585e9c2a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/b48b55f0be1814d7103632b4ee21bc57552118 b/.git_backup/objects/82/b48b55f0be1814d7103632b4ee21bc57552118 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/bafacbbd9eea612abd6bf07e23009b9e803b85 b/.git_backup/objects/82/bafacbbd9eea612abd6bf07e23009b9e803b85 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/bd8ed69ed5ce4e6d609c3c4aceb13a09cb43db b/.git_backup/objects/82/bd8ed69ed5ce4e6d609c3c4aceb13a09cb43db deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/bf82d3d00c403b5f3f76d707956f3ee6e5a15b b/.git_backup/objects/82/bf82d3d00c403b5f3f76d707956f3ee6e5a15b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/c43a1ff2469951b730e8c2ab040bb4463e99a1 b/.git_backup/objects/82/c43a1ff2469951b730e8c2ab040bb4463e99a1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/c8a57c884b8ebbb7585e53dd15a20ec7e60840 b/.git_backup/objects/82/c8a57c884b8ebbb7585e53dd15a20ec7e60840 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/c94e99b9b5f03a17ff9f4027c0246316264262 b/.git_backup/objects/82/c94e99b9b5f03a17ff9f4027c0246316264262 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/d46d0d472ecaa3ec09d435a8486e2d1d1916ed b/.git_backup/objects/82/d46d0d472ecaa3ec09d435a8486e2d1d1916ed deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/d53613b6293d0a9d37a8e241f2bda68e5640b6 b/.git_backup/objects/82/d53613b6293d0a9d37a8e241f2bda68e5640b6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/d907163c75876c73e1b2b932791e9e3880a7f0 b/.git_backup/objects/82/d907163c75876c73e1b2b932791e9e3880a7f0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/e02ec14513dbd2c6e60f7ccbd11e5f251b5bb4 b/.git_backup/objects/82/e02ec14513dbd2c6e60f7ccbd11e5f251b5bb4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/e0efd88a2c2ed604bfeb29925aa1dec9628d18 b/.git_backup/objects/82/e0efd88a2c2ed604bfeb29925aa1dec9628d18 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/e65afe74b7a65647eb99607fe9b189a302e419 b/.git_backup/objects/82/e65afe74b7a65647eb99607fe9b189a302e419 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/e6c4daf951541ae85a8c27932c4d00bc024d3d b/.git_backup/objects/82/e6c4daf951541ae85a8c27932c4d00bc024d3d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/ea5aaf0c6ae2b3ec582013b6d16e6d6f29eb0a b/.git_backup/objects/82/ea5aaf0c6ae2b3ec582013b6d16e6d6f29eb0a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/ebc2eeadb093dbc64462fd8ca1d64102510726 b/.git_backup/objects/82/ebc2eeadb093dbc64462fd8ca1d64102510726 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/82/ec8e7320a70c5f7d94dae174e06c74fac1e66d b/.git_backup/objects/82/ec8e7320a70c5f7d94dae174e06c74fac1e66d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/038ad254b77daee6667bd269a8775016649d39 b/.git_backup/objects/83/038ad254b77daee6667bd269a8775016649d39 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/04a0f92241025803fc08b8d2ce6b7e42154b2e b/.git_backup/objects/83/04a0f92241025803fc08b8d2ce6b7e42154b2e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/093145e6ff662cc3caf53c330e7104110c8084 b/.git_backup/objects/83/093145e6ff662cc3caf53c330e7104110c8084 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/18353bf63087368346dc1bd7b4109272c6c6fe b/.git_backup/objects/83/18353bf63087368346dc1bd7b4109272c6c6fe deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/2cda315171b88aaac34f1e1c5c72e0642ba5df b/.git_backup/objects/83/2cda315171b88aaac34f1e1c5c72e0642ba5df deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/30656254d38a93de32797de66ab3eca0d13745 b/.git_backup/objects/83/30656254d38a93de32797de66ab3eca0d13745 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/33c02799af462869ca7897ebe9a9978fcd92b8 b/.git_backup/objects/83/33c02799af462869ca7897ebe9a9978fcd92b8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/33d9366640fcfc5040a859b53535cdd55409c1 b/.git_backup/objects/83/33d9366640fcfc5040a859b53535cdd55409c1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/36e435e8b143db9be16ecbbeaf66fafb49ff0e b/.git_backup/objects/83/36e435e8b143db9be16ecbbeaf66fafb49ff0e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/378024d34e20c1d08aef546d11399ee78f32b2 b/.git_backup/objects/83/378024d34e20c1d08aef546d11399ee78f32b2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/37bf35b49f2b188a18f6ee04c10911e059824f b/.git_backup/objects/83/37bf35b49f2b188a18f6ee04c10911e059824f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/3d5bdf2a344f585c5f34faa3e22716b1aa363c b/.git_backup/objects/83/3d5bdf2a344f585c5f34faa3e22716b1aa363c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/555c9676d528492e54dd5352cf068bb9804d79 b/.git_backup/objects/83/555c9676d528492e54dd5352cf068bb9804d79 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/5728539edd65040a786dd33d30856bcebcebaa b/.git_backup/objects/83/5728539edd65040a786dd33d30856bcebcebaa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/57d126986c42db3b0f1c212495aecb0a0fc2fd b/.git_backup/objects/83/57d126986c42db3b0f1c212495aecb0a0fc2fd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/592bc8736b4eb6f4c8d70ef8a3c5aa2a164a91 b/.git_backup/objects/83/592bc8736b4eb6f4c8d70ef8a3c5aa2a164a91 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/5b28877847360fb58a38558886c1773fd4195e b/.git_backup/objects/83/5b28877847360fb58a38558886c1773fd4195e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/5cb1c0f6d816b7b9c11c07d132dc3c9560e960 b/.git_backup/objects/83/5cb1c0f6d816b7b9c11c07d132dc3c9560e960 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/5ed9ea445fc7fc1b739b1c6f15ea060a8bd1d4 b/.git_backup/objects/83/5ed9ea445fc7fc1b739b1c6f15ea060a8bd1d4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/6101f91ea77cfbe16b43d2a649112fe32f9fd8 b/.git_backup/objects/83/6101f91ea77cfbe16b43d2a649112fe32f9fd8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/61d37d4d914d617466c4e0010af7bcc1ae63f7 b/.git_backup/objects/83/61d37d4d914d617466c4e0010af7bcc1ae63f7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/62bec652a2ef9a6f11f4be0fab9d508898d4af b/.git_backup/objects/83/62bec652a2ef9a6f11f4be0fab9d508898d4af deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/64a5b0fcbc64f5363f39e89ea1907d35150784 b/.git_backup/objects/83/64a5b0fcbc64f5363f39e89ea1907d35150784 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/6bbdc74ae88ad0a5134eb8efd40023791abe2d b/.git_backup/objects/83/6bbdc74ae88ad0a5134eb8efd40023791abe2d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/6e6b948ff0f29a07b3c1c382274bd9062dea14 b/.git_backup/objects/83/6e6b948ff0f29a07b3c1c382274bd9062dea14 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/6f69dc9abf9a6bd0ffefd194e06d0bcebda642 b/.git_backup/objects/83/6f69dc9abf9a6bd0ffefd194e06d0bcebda642 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/7bd63f004a4c069cdc4a23d2ddfcd3bc0652b7 b/.git_backup/objects/83/7bd63f004a4c069cdc4a23d2ddfcd3bc0652b7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/87b474329d7ba735800a2ffefb810555932e80 b/.git_backup/objects/83/87b474329d7ba735800a2ffefb810555932e80 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/98b3cad1f05608349dbf2eb7f43b053a28ea43 b/.git_backup/objects/83/98b3cad1f05608349dbf2eb7f43b053a28ea43 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/a1baa9d13d6e9f05bd728ea89ef7e3e4b546e5 b/.git_backup/objects/83/a1baa9d13d6e9f05bd728ea89ef7e3e4b546e5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/a84e6f91193e5b9a35f9f400e91f05f2c84e86 b/.git_backup/objects/83/a84e6f91193e5b9a35f9f400e91f05f2c84e86 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/b3653d0c7337d3f800dc43452ec2783813377a b/.git_backup/objects/83/b3653d0c7337d3f800dc43452ec2783813377a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/b5ee8c5efadf22ce2f16ff08c8a8d75f1eb5df b/.git_backup/objects/83/b5ee8c5efadf22ce2f16ff08c8a8d75f1eb5df deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/c2858ddf1dd5de3bdb988c752ec2bf8427281c b/.git_backup/objects/83/c2858ddf1dd5de3bdb988c752ec2bf8427281c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/c2df75b963e5866b63aaf0f4446a8ca61aebce b/.git_backup/objects/83/c2df75b963e5866b63aaf0f4446a8ca61aebce deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/c62e38ce90081a5c3b44b803d1f42a6c3a2a01 b/.git_backup/objects/83/c62e38ce90081a5c3b44b803d1f42a6c3a2a01 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/c82c18f3d1e9b27a269f26ffdf05080c8b7ef6 b/.git_backup/objects/83/c82c18f3d1e9b27a269f26ffdf05080c8b7ef6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/c89df39ab3bcab5edb0ff1d7702f8182c540ca b/.git_backup/objects/83/c89df39ab3bcab5edb0ff1d7702f8182c540ca deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/dcad34249afa543bf66dae9b836276246aab4a b/.git_backup/objects/83/dcad34249afa543bf66dae9b836276246aab4a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/dd365f8937d5f5bc6e5efeb4be4663401f4e99 b/.git_backup/objects/83/dd365f8937d5f5bc6e5efeb4be4663401f4e99 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/e74d98cb2913fe73af0432f728556469154b80 b/.git_backup/objects/83/e74d98cb2913fe73af0432f728556469154b80 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/ea669df8af657d6c1e8403b42d719ecbdee46e b/.git_backup/objects/83/ea669df8af657d6c1e8403b42d719ecbdee46e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/ecb35b3c40af12a535fea4729b4c12551b28cb b/.git_backup/objects/83/ecb35b3c40af12a535fea4729b4c12551b28cb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/ee25757b61f6125eb181950a2ed5e6ce5623ef b/.git_backup/objects/83/ee25757b61f6125eb181950a2ed5e6ce5623ef deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/f24f01583f0e9b6d77d119428886a647d78338 b/.git_backup/objects/83/f24f01583f0e9b6d77d119428886a647d78338 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/f28f6b5dc016e6963eb04292d19ee2d6c610ad b/.git_backup/objects/83/f28f6b5dc016e6963eb04292d19ee2d6c610ad deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/f7616435bb56d0fd5629fd572d5eff240ddcaf b/.git_backup/objects/83/f7616435bb56d0fd5629fd572d5eff240ddcaf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/fae4f629a73b541d656d1ae962a50dee51283c b/.git_backup/objects/83/fae4f629a73b541d656d1ae962a50dee51283c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/fbbe8745ddaf3814a7324a7322b047d40740d3 b/.git_backup/objects/83/fbbe8745ddaf3814a7324a7322b047d40740d3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/fd6951244f99faf1f27a0124a697d32f3c33d8 b/.git_backup/objects/83/fd6951244f99faf1f27a0124a697d32f3c33d8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/83/fddbf21c4e923fd670896823e154a186f5ff11 b/.git_backup/objects/83/fddbf21c4e923fd670896823e154a186f5ff11 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/07acc45cef21736047edc832a7e9560f6e0c15 b/.git_backup/objects/84/07acc45cef21736047edc832a7e9560f6e0c15 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/12606b4601f9e9636186882547ff6c80f6c5d3 b/.git_backup/objects/84/12606b4601f9e9636186882547ff6c80f6c5d3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/176d7175f079781e8235e1d4386eddf038c3b7 b/.git_backup/objects/84/176d7175f079781e8235e1d4386eddf038c3b7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/18abc46e3f1b2f2cd6b77a98bb52454235a7e5 b/.git_backup/objects/84/18abc46e3f1b2f2cd6b77a98bb52454235a7e5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/1a4926adec63881026d563b6d586562861edeb b/.git_backup/objects/84/1a4926adec63881026d563b6d586562861edeb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/1b0e270a381cdfaca544a9be976d7276d83b1e b/.git_backup/objects/84/1b0e270a381cdfaca544a9be976d7276d83b1e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/1b55df48556561904b9144a05f747d889ea621 b/.git_backup/objects/84/1b55df48556561904b9144a05f747d889ea621 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/1b893f9ec0d90040a469fcb50048faad7b5198 b/.git_backup/objects/84/1b893f9ec0d90040a469fcb50048faad7b5198 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/1c0859b1b0a412724b789373f3f18b1388b4d8 b/.git_backup/objects/84/1c0859b1b0a412724b789373f3f18b1388b4d8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/25bca15c03ad585399341b624521be1718f67d b/.git_backup/objects/84/25bca15c03ad585399341b624521be1718f67d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/263b81700efcbe6803d9e073b765534d40c1e5 b/.git_backup/objects/84/263b81700efcbe6803d9e073b765534d40c1e5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/38721668855d4f73964795e09e2ec805cbe037 b/.git_backup/objects/84/38721668855d4f73964795e09e2ec805cbe037 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/40d400ea9178bb17efc68fde1f8cca1f66c189 b/.git_backup/objects/84/40d400ea9178bb17efc68fde1f8cca1f66c189 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/423ccae4eba4dcd37df45904fc1f5a853942da b/.git_backup/objects/84/423ccae4eba4dcd37df45904fc1f5a853942da deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/43899339e45e3d9d971e9fc4ab656aeb5b8e64 b/.git_backup/objects/84/43899339e45e3d9d971e9fc4ab656aeb5b8e64 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/4398cce5e929de28264fa5fd99bcb5cdd10b34 b/.git_backup/objects/84/4398cce5e929de28264fa5fd99bcb5cdd10b34 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/4bdd4bd1944e35067ccfb9c75f6b01554b16e3 b/.git_backup/objects/84/4bdd4bd1944e35067ccfb9c75f6b01554b16e3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/5246d8e638ca2269ea05ddada8deffcdf5ef1a b/.git_backup/objects/84/5246d8e638ca2269ea05ddada8deffcdf5ef1a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/5a12099593c46037a56047d9a1b5436d99bee9 b/.git_backup/objects/84/5a12099593c46037a56047d9a1b5436d99bee9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/6347e42bef4e1486a6daeafabd9b1c6ca0f53f b/.git_backup/objects/84/6347e42bef4e1486a6daeafabd9b1c6ca0f53f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/63ba8b9f763e0b8a673e1f4f43ac536f0461ff b/.git_backup/objects/84/63ba8b9f763e0b8a673e1f4f43ac536f0461ff deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/65d116805c72f2b02816455558685cab415b33 b/.git_backup/objects/84/65d116805c72f2b02816455558685cab415b33 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/6929621767476398799cbeff31ac8ae954578f b/.git_backup/objects/84/6929621767476398799cbeff31ac8ae954578f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/70297b9f07ddfea00e7e7e82930f6d83c2e997 b/.git_backup/objects/84/70297b9f07ddfea00e7e7e82930f6d83c2e997 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/7b558c9c4b435287fc9b0564d0d2ba1033438e b/.git_backup/objects/84/7b558c9c4b435287fc9b0564d0d2ba1033438e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/81dcdb8b1fbc3c88db71b11c0e39b95dcb45c1 b/.git_backup/objects/84/81dcdb8b1fbc3c88db71b11c0e39b95dcb45c1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/841ad7a634ececffd506ca6cab5c6149070582 b/.git_backup/objects/84/841ad7a634ececffd506ca6cab5c6149070582 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/84b5525a92a8c2eba4a71d47445bdf8a641ea3 b/.git_backup/objects/84/84b5525a92a8c2eba4a71d47445bdf8a641ea3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/86be4740cca98090183694844ec246bcc7e3b0 b/.git_backup/objects/84/86be4740cca98090183694844ec246bcc7e3b0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/8792e00bf21d57e7cb680ab5199123093ca96c b/.git_backup/objects/84/8792e00bf21d57e7cb680ab5199123093ca96c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/91efcb580898af9b10c4cbecdac39713c265a6 b/.git_backup/objects/84/91efcb580898af9b10c4cbecdac39713c265a6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/9356ea9a03a031abce367b955a30fce26c9845 b/.git_backup/objects/84/9356ea9a03a031abce367b955a30fce26c9845 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/992982a104a26f1c25c78d54b14b85b4c084a7 b/.git_backup/objects/84/992982a104a26f1c25c78d54b14b85b4c084a7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/9aea93558a8fa83eea450d517b10b682287bd1 b/.git_backup/objects/84/9aea93558a8fa83eea450d517b10b682287bd1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/a0ef17078c99e5917db41e3dbaf035fe206d7c b/.git_backup/objects/84/a0ef17078c99e5917db41e3dbaf035fe206d7c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/abbc20599f034626779702abc2303901d83ee5 b/.git_backup/objects/84/abbc20599f034626779702abc2303901d83ee5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/acaf41520d2d302f75e300e2b47c5527218df4 b/.git_backup/objects/84/acaf41520d2d302f75e300e2b47c5527218df4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/ae28e54f92d0227c4fd375b7b83b6f6a79f646 b/.git_backup/objects/84/ae28e54f92d0227c4fd375b7b83b6f6a79f646 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/b043fdf4611c6ee879eaeb5392cb9b2d55954b b/.git_backup/objects/84/b043fdf4611c6ee879eaeb5392cb9b2d55954b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/b12aa6538fdcdf14eaed7fefe47067bf53de35 b/.git_backup/objects/84/b12aa6538fdcdf14eaed7fefe47067bf53de35 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/b134e490b081d661daf69f98e0b9b1fdddd36f b/.git_backup/objects/84/b134e490b081d661daf69f98e0b9b1fdddd36f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/b2b8d4df3fea044d6c41ac2fde3228ade60c1e b/.git_backup/objects/84/b2b8d4df3fea044d6c41ac2fde3228ade60c1e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/bfe8524634b13f1cd272614f1cfbcb13068405 b/.git_backup/objects/84/bfe8524634b13f1cd272614f1cfbcb13068405 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/d3940c31354ae558c9bdd9962e52a5d7faff36 b/.git_backup/objects/84/d3940c31354ae558c9bdd9962e52a5d7faff36 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/daa5526eed0c98345daeb9381611200800f9d3 b/.git_backup/objects/84/daa5526eed0c98345daeb9381611200800f9d3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/e11db8fd843d581bbf1f3625c77531cf4eef6e b/.git_backup/objects/84/e11db8fd843d581bbf1f3625c77531cf4eef6e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/e6aecfa2c5aa8bedb81967dace7126b98bddec b/.git_backup/objects/84/e6aecfa2c5aa8bedb81967dace7126b98bddec deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/ec8aa2cb46bc448c5c94d92a437a0f6c586f64 b/.git_backup/objects/84/ec8aa2cb46bc448c5c94d92a437a0f6c586f64 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/84/f366ab8182722249f88ce810f92982b19281eb b/.git_backup/objects/84/f366ab8182722249f88ce810f92982b19281eb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/01893bd153b7216524084cad23e90aeac0b1f8 b/.git_backup/objects/85/01893bd153b7216524084cad23e90aeac0b1f8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/0496f6376ffd2973690cb86915b529beb2c696 b/.git_backup/objects/85/0496f6376ffd2973690cb86915b529beb2c696 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/08802cde732fcd1d4a0dc262fb89b72dc1b386 b/.git_backup/objects/85/08802cde732fcd1d4a0dc262fb89b72dc1b386 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/1cd3081aeeff6516320d056e019c80760c7bf6 b/.git_backup/objects/85/1cd3081aeeff6516320d056e019c80760c7bf6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/313fcdcc3f99924080d64cddb3243407c69245 b/.git_backup/objects/85/313fcdcc3f99924080d64cddb3243407c69245 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/4a6fa1fdc818061f47d55faa5c78b7b26eac45 b/.git_backup/objects/85/4a6fa1fdc818061f47d55faa5c78b7b26eac45 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/4ae36228614f3eb8849e9f95abf0dd387b5d35 b/.git_backup/objects/85/4ae36228614f3eb8849e9f95abf0dd387b5d35 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/4ae8b62db30ece53cfe9d447f47487405620f9 b/.git_backup/objects/85/4ae8b62db30ece53cfe9d447f47487405620f9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/4aee270e32b8e692f2f6da8aae77c2cc6bdac3 b/.git_backup/objects/85/4aee270e32b8e692f2f6da8aae77c2cc6bdac3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/4bdb9e0db206a81d598fd686411d7280c08c7f b/.git_backup/objects/85/4bdb9e0db206a81d598fd686411d7280c08c7f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/4e2a1ec3a734174c37f4b47420c51262190fea b/.git_backup/objects/85/4e2a1ec3a734174c37f4b47420c51262190fea deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/52a12a7818f3593f99a20cd8439698bd9c5d01 b/.git_backup/objects/85/52a12a7818f3593f99a20cd8439698bd9c5d01 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/5326feafdef0e0092446f9f149edef0472d1ff b/.git_backup/objects/85/5326feafdef0e0092446f9f149edef0472d1ff deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/5d54285fe15aa114e1760008001da051bcd1b7 b/.git_backup/objects/85/5d54285fe15aa114e1760008001da051bcd1b7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/5da446444329d7548855737d3a4db125ac139c b/.git_backup/objects/85/5da446444329d7548855737d3a4db125ac139c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/63970d41520eb14d69744f9acd74f6b5dded45 b/.git_backup/objects/85/63970d41520eb14d69744f9acd74f6b5dded45 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/6a2ca15ec4a93b2fda73041ed96f3fe98f0f0f b/.git_backup/objects/85/6a2ca15ec4a93b2fda73041ed96f3fe98f0f0f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/6ef4d7fa5b72094734ddb9fc255193ac345065 b/.git_backup/objects/85/6ef4d7fa5b72094734ddb9fc255193ac345065 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/6fe6e7c4f04c7957cf9a445cea690669895b18 b/.git_backup/objects/85/6fe6e7c4f04c7957cf9a445cea690669895b18 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/7080004889885048cd39b20d2a7a357e2f8828 b/.git_backup/objects/85/7080004889885048cd39b20d2a7a357e2f8828 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/716377a294287fbaf70f2c717571633890a55c b/.git_backup/objects/85/716377a294287fbaf70f2c717571633890a55c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/7526535aa8ff728d8ccd055d766bf4581c6eed b/.git_backup/objects/85/7526535aa8ff728d8ccd055d766bf4581c6eed deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/8320143ca90451734d76eb9e98a476e0a15a4a b/.git_backup/objects/85/8320143ca90451734d76eb9e98a476e0a15a4a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/85905557b3a2d6d97e5840da99e36ee4e976dc b/.git_backup/objects/85/85905557b3a2d6d97e5840da99e36ee4e976dc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/879a88a530375b71f2f310cc0f3ce0cbfcc91b b/.git_backup/objects/85/879a88a530375b71f2f310cc0f3ce0cbfcc91b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/88f55f64389c53efe452f275c9c769fbfc5617 b/.git_backup/objects/85/88f55f64389c53efe452f275c9c769fbfc5617 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/8a41014169b8f0eb1b905fa3bb69c753a1bda5 b/.git_backup/objects/85/8a41014169b8f0eb1b905fa3bb69c753a1bda5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/92c982937fe2d1eb8488624c8b5b5f3ff7d858 b/.git_backup/objects/85/92c982937fe2d1eb8488624c8b5b5f3ff7d858 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/94054953919f05f61de92806903f946e5d02b8 b/.git_backup/objects/85/94054953919f05f61de92806903f946e5d02b8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/949632a6713708412e3a387e540d82b4f992da b/.git_backup/objects/85/949632a6713708412e3a387e540d82b4f992da deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/97e286d85513c26d50d9d2e3adfa78166a56c1 b/.git_backup/objects/85/97e286d85513c26d50d9d2e3adfa78166a56c1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/a29f9ef520f76819f4787324117cd95322c661 b/.git_backup/objects/85/a29f9ef520f76819f4787324117cd95322c661 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/b3b5d453622647f0d44b31209ef5225f615a22 b/.git_backup/objects/85/b3b5d453622647f0d44b31209ef5225f615a22 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/b47cb5af0280c000e7a13bbf85b7f37a8ab62f b/.git_backup/objects/85/b47cb5af0280c000e7a13bbf85b7f37a8ab62f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/ba5b60f4197a252760d93aeab1f4a47d13b12a b/.git_backup/objects/85/ba5b60f4197a252760d93aeab1f4a47d13b12a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/c149871fee1dfc81c298d4952abc68bfd523f1 b/.git_backup/objects/85/c149871fee1dfc81c298d4952abc68bfd523f1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/c39c22143eef5afe044908b5113ef9922ce133 b/.git_backup/objects/85/c39c22143eef5afe044908b5113ef9922ce133 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/c8a6ed9b9d933975675e361945a94e7ba638e3 b/.git_backup/objects/85/c8a6ed9b9d933975675e361945a94e7ba638e3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/d3cff1efc6f6d7aaeb93304081b7436f93ed0e b/.git_backup/objects/85/d3cff1efc6f6d7aaeb93304081b7436f93ed0e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/dbbed5b672990af8036d7b89a14f07a0af378f b/.git_backup/objects/85/dbbed5b672990af8036d7b89a14f07a0af378f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/dcff6a53a49d3c9bc1ff2b1702604d66efdbf6 b/.git_backup/objects/85/dcff6a53a49d3c9bc1ff2b1702604d66efdbf6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/dfbd6d24d0593ab56a6c941bc80df9597e8138 b/.git_backup/objects/85/dfbd6d24d0593ab56a6c941bc80df9597e8138 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/e0cf0e30f6bd168ece1fc9a143040c3b85a9f8 b/.git_backup/objects/85/e0cf0e30f6bd168ece1fc9a143040c3b85a9f8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/e445a8d35c84a6af9e9d5f1e5576af01fb3f2f b/.git_backup/objects/85/e445a8d35c84a6af9e9d5f1e5576af01fb3f2f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/e5bffee8e946cff77445ac7f295695be19cb75 b/.git_backup/objects/85/e5bffee8e946cff77445ac7f295695be19cb75 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/e6f8b2ca7c45fd62980aeceae5763c41b571d9 b/.git_backup/objects/85/e6f8b2ca7c45fd62980aeceae5763c41b571d9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/fb5201db77d0f31ba359a59e8efbae96db3086 b/.git_backup/objects/85/fb5201db77d0f31ba359a59e8efbae96db3086 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/85/ff192bf64da4042f30f5f87d4a165e69968587 b/.git_backup/objects/85/ff192bf64da4042f30f5f87d4a165e69968587 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/013549a3ef517534e1346a66af7be61a2a9569 b/.git_backup/objects/86/013549a3ef517534e1346a66af7be61a2a9569 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/04e68fdbc397a57c1cc94203291ac421b26f7b b/.git_backup/objects/86/04e68fdbc397a57c1cc94203291ac421b26f7b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/0560e6f93c84baf2cf157ca158255882303c77 b/.git_backup/objects/86/0560e6f93c84baf2cf157ca158255882303c77 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/0a3f3579dfaa9e7d801c45f30786e78368cb20 b/.git_backup/objects/86/0a3f3579dfaa9e7d801c45f30786e78368cb20 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/0a9048e50b13dec453a433678ee91bfb435024 b/.git_backup/objects/86/0a9048e50b13dec453a433678ee91bfb435024 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/0f4fecf30ee6396add1dad2eec34c21400e49c b/.git_backup/objects/86/0f4fecf30ee6396add1dad2eec34c21400e49c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/1813a95d1f9004d3350b1b1d559e23ddebaa79 b/.git_backup/objects/86/1813a95d1f9004d3350b1b1d559e23ddebaa79 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/1f59c708974b72ac96e61a725575bba20161a4 b/.git_backup/objects/86/1f59c708974b72ac96e61a725575bba20161a4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/24c54fbfc5f88f0c441aa57d0690d6c49fab9e b/.git_backup/objects/86/24c54fbfc5f88f0c441aa57d0690d6c49fab9e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/25482c1d48a8961ce42fcb3e06a501519827b6 b/.git_backup/objects/86/25482c1d48a8961ce42fcb3e06a501519827b6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/28b76f54b1d48a2f06221c76c62b44ea9a7093 b/.git_backup/objects/86/28b76f54b1d48a2f06221c76c62b44ea9a7093 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/297a0b24a4b6b7e9c6962be7607b760412411a b/.git_backup/objects/86/297a0b24a4b6b7e9c6962be7607b760412411a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/2e30ba2d5aa4246c4eac70ab4a288a67f124f2 b/.git_backup/objects/86/2e30ba2d5aa4246c4eac70ab4a288a67f124f2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/3673c1eb3e9667fe28bb7e7285d6d375760917 b/.git_backup/objects/86/3673c1eb3e9667fe28bb7e7285d6d375760917 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/3d60220937b491d2b38011b0f2f7e49f531556 b/.git_backup/objects/86/3d60220937b491d2b38011b0f2f7e49f531556 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/44ea19ca8665878d961a4a2c8b7ad00dfc0602 b/.git_backup/objects/86/44ea19ca8665878d961a4a2c8b7ad00dfc0602 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/464e134b8c7ccfc54f6de5d6daa1d8cd8b5724 b/.git_backup/objects/86/464e134b8c7ccfc54f6de5d6daa1d8cd8b5724 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/47e1192d44724ae98afe05918c15e88d770641 b/.git_backup/objects/86/47e1192d44724ae98afe05918c15e88d770641 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/4b590021f0678a78d9eddcdf6822f7c76961fe b/.git_backup/objects/86/4b590021f0678a78d9eddcdf6822f7c76961fe deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/5185f9acea7f72db85f50b2dfa60b782234233 b/.git_backup/objects/86/5185f9acea7f72db85f50b2dfa60b782234233 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/5dc924a147c542fec9c577eebebfb4a00c4d20 b/.git_backup/objects/86/5dc924a147c542fec9c577eebebfb4a00c4d20 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/5f696b7a73a916c53a7310dddd27428619d3de b/.git_backup/objects/86/5f696b7a73a916c53a7310dddd27428619d3de deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/62646936c9e593edf3b7c430f77a01b7d4df73 b/.git_backup/objects/86/62646936c9e593edf3b7c430f77a01b7d4df73 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/63097b447cdd80c52e2b2abde33a4736ddb9c2 b/.git_backup/objects/86/63097b447cdd80c52e2b2abde33a4736ddb9c2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/68b3b0ec1deec2aeb7ff6bd94265d6705e05bf b/.git_backup/objects/86/68b3b0ec1deec2aeb7ff6bd94265d6705e05bf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/6a82110c31766e319f8fbe70fdd3aa4696f894 b/.git_backup/objects/86/6a82110c31766e319f8fbe70fdd3aa4696f894 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/70a97e911c48ff2cae2cf83dd14f42f8a7004a b/.git_backup/objects/86/70a97e911c48ff2cae2cf83dd14f42f8a7004a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/8341ff298cac6ff9694817495af525be2a2e59 b/.git_backup/objects/86/8341ff298cac6ff9694817495af525be2a2e59 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/8526b4231af2dcd87ee5f5e1eddc248ba8d525 b/.git_backup/objects/86/8526b4231af2dcd87ee5f5e1eddc248ba8d525 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/860ad33773bca7b29c2aeb72decc6dbaca6611 b/.git_backup/objects/86/860ad33773bca7b29c2aeb72decc6dbaca6611 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/891367e9bd6b8f142118b43e9b3fbc0f43d260 b/.git_backup/objects/86/891367e9bd6b8f142118b43e9b3fbc0f43d260 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/9480632fa3ed4237e0922929deb6f0b4b1c18f b/.git_backup/objects/86/9480632fa3ed4237e0922929deb6f0b4b1c18f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/9b8b874998e58982fbaf7c6b5206b3080f8c08 b/.git_backup/objects/86/9b8b874998e58982fbaf7c6b5206b3080f8c08 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/9b91597dc9a7010fcf2bd128fd87f89f6561cf b/.git_backup/objects/86/9b91597dc9a7010fcf2bd128fd87f89f6561cf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/9e86cec7ce463d69ba221e4a0165e3d36b4f06 b/.git_backup/objects/86/9e86cec7ce463d69ba221e4a0165e3d36b4f06 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/9fe6674d21736340a9907af809666c7d87249e b/.git_backup/objects/86/9fe6674d21736340a9907af809666c7d87249e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/a6f13e7d2cfa2abd6ef47b249da1d810965961 b/.git_backup/objects/86/a6f13e7d2cfa2abd6ef47b249da1d810965961 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/aef179304e731c5edd363d1ea427209b0d764e b/.git_backup/objects/86/aef179304e731c5edd363d1ea427209b0d764e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/bd1a20a3fca3908723ffbe0201d3b162474066 b/.git_backup/objects/86/bd1a20a3fca3908723ffbe0201d3b162474066 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/c2da6935d6a4bf0bb462c49d27156dcd219e9f b/.git_backup/objects/86/c2da6935d6a4bf0bb462c49d27156dcd219e9f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/c59c12565618f847e04f0406fd00e5a76b698c b/.git_backup/objects/86/c59c12565618f847e04f0406fd00e5a76b698c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/c7e91a13ab7222f790aa75e2f0a48ab848a446 b/.git_backup/objects/86/c7e91a13ab7222f790aa75e2f0a48ab848a446 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/ccbc9ea612ccf204f2cca99f84e331d84b9cdc b/.git_backup/objects/86/ccbc9ea612ccf204f2cca99f84e331d84b9cdc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/d5b67ed53d0d1697a7aa336cd0520428499e89 b/.git_backup/objects/86/d5b67ed53d0d1697a7aa336cd0520428499e89 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/d600b67b50f5b177964ec3ecc4444d99ca58dc b/.git_backup/objects/86/d600b67b50f5b177964ec3ecc4444d99ca58dc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/de3c7592893bdb4438c9a0e7e60b2e7e5e1727 b/.git_backup/objects/86/de3c7592893bdb4438c9a0e7e60b2e7e5e1727 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/dfabd136fd74e154b200b4f4eb35054347d066 b/.git_backup/objects/86/dfabd136fd74e154b200b4f4eb35054347d066 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/dffceaa240c4f4bbc57a218adedf938893a0ef b/.git_backup/objects/86/dffceaa240c4f4bbc57a218adedf938893a0ef deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/ea47d8c2546de5e398ceca428237a3d35813f5 b/.git_backup/objects/86/ea47d8c2546de5e398ceca428237a3d35813f5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/86/f79e12d872375c1d57d591e9c07bb45f3c8ee7 b/.git_backup/objects/86/f79e12d872375c1d57d591e9c07bb45f3c8ee7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/87/7f8d428ae795536d0f087672ac17d85486703b b/.git_backup/objects/87/7f8d428ae795536d0f087672ac17d85486703b deleted file mode 100644 index a3f7556d..00000000 Binary files a/.git_backup/objects/87/7f8d428ae795536d0f087672ac17d85486703b and /dev/null differ diff --git a/.git_backup/objects/88/0458e8dfd0f266876a40a4790d84a19368f743 b/.git_backup/objects/88/0458e8dfd0f266876a40a4790d84a19368f743 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/88/04a3aa717543a11fe355f960eef655a3630fc0 b/.git_backup/objects/88/04a3aa717543a11fe355f960eef655a3630fc0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/88/06a4342d6e95d56d21cf6503db8867ece377b4 b/.git_backup/objects/88/06a4342d6e95d56d21cf6503db8867ece377b4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/88/07a53884e49df29b29c687f91f95ae8f6d52f7 b/.git_backup/objects/88/07a53884e49df29b29c687f91f95ae8f6d52f7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/88/0e64bebd42fb448dd0645db85e404da51252ce b/.git_backup/objects/88/0e64bebd42fb448dd0645db85e404da51252ce deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/88/0e67beb0f11b7df7426a02dbf07bb46fe64482 b/.git_backup/objects/88/0e67beb0f11b7df7426a02dbf07bb46fe64482 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/88/1404d7671b256b9a1f03dcc086fc4b400f2c5f b/.git_backup/objects/88/1404d7671b256b9a1f03dcc086fc4b400f2c5f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/88/1ad5eca4fe78c8182767d40514f920d3d2a806 b/.git_backup/objects/88/1ad5eca4fe78c8182767d40514f920d3d2a806 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/88/2226f9c9034834c44707afe5728dde898a8fc8 b/.git_backup/objects/88/2226f9c9034834c44707afe5728dde898a8fc8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/88/2362d2316b2660cb192f188c1506703332db1b b/.git_backup/objects/88/2362d2316b2660cb192f188c1506703332db1b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/88/2515799f943ddcb02f86a940dd8ae271648bdd b/.git_backup/objects/88/2515799f943ddcb02f86a940dd8ae271648bdd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/88/2e36f5c1de19a8200000c216cf80119b37c96d b/.git_backup/objects/88/2e36f5c1de19a8200000c216cf80119b37c96d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/88/30b814743c35ba471ae96012c54600aca9f280 b/.git_backup/objects/88/30b814743c35ba471ae96012c54600aca9f280 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/88/32baafeeea4e74146fa9d24ea328542d98413a b/.git_backup/objects/88/32baafeeea4e74146fa9d24ea328542d98413a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/88/33a611b0722270a47c09c4366f81f3c4352d8c b/.git_backup/objects/88/33a611b0722270a47c09c4366f81f3c4352d8c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/88/34d38c039fc1081865e52a6b035f5e0e996c75 b/.git_backup/objects/88/34d38c039fc1081865e52a6b035f5e0e996c75 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/88/3dfa055532c8319a833d80c82707b3ca5d4d5a b/.git_backup/objects/88/3dfa055532c8319a833d80c82707b3ca5d4d5a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/88/40efb7e5eefcb762b69bf8d40b79406f6798a5 b/.git_backup/objects/88/40efb7e5eefcb762b69bf8d40b79406f6798a5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/88/418786933b8bc5f6179b8e191f60f79efd7074 b/.git_backup/objects/88/418786933b8bc5f6179b8e191f60f79efd7074 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/88/4543f1623da2874b5fc0adf2c880695638ee3f b/.git_backup/objects/88/4543f1623da2874b5fc0adf2c880695638ee3f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/88/4e20159f2bc4837c281c7b001527dbb15adabe b/.git_backup/objects/88/4e20159f2bc4837c281c7b001527dbb15adabe deleted file mode 100644 index 1faa7e01..00000000 Binary files a/.git_backup/objects/88/4e20159f2bc4837c281c7b001527dbb15adabe and /dev/null differ diff --git a/.git_backup/objects/88/52577725eb82d87b9974f430ec1f20a9b88221 b/.git_backup/objects/88/52577725eb82d87b9974f430ec1f20a9b88221 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/88/57598ef80de8888878107b1b585b3b18013771 b/.git_backup/objects/88/57598ef80de8888878107b1b585b3b18013771 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/88/68f66c47ce0d4bbb21c78435a6c89d44065252 b/.git_backup/objects/88/68f66c47ce0d4bbb21c78435a6c89d44065252 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/88/71f441456421fe441a13365e1ea76c8d197fee b/.git_backup/objects/88/71f441456421fe441a13365e1ea76c8d197fee deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/88/7889bce1eaa7b08291a903997fba2e3d48573b b/.git_backup/objects/88/7889bce1eaa7b08291a903997fba2e3d48573b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/88/7905e355a2a13801f1b004187631f2301f7eef b/.git_backup/objects/88/7905e355a2a13801f1b004187631f2301f7eef deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/88/7e9a216b449277f15355e1bdf0c4f4d75c1f3d b/.git_backup/objects/88/7e9a216b449277f15355e1bdf0c4f4d75c1f3d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/88/898811c53f5c32ad8cee09d7302cd1122aa4f3 b/.git_backup/objects/88/898811c53f5c32ad8cee09d7302cd1122aa4f3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/88/90b871c9018d94e9ce7541c5b2c0838a96cfdd b/.git_backup/objects/88/90b871c9018d94e9ce7541c5b2c0838a96cfdd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/88/994ce9da494df319b4f6f6352324a540191e75 b/.git_backup/objects/88/994ce9da494df319b4f6f6352324a540191e75 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/88/a32df725f56f267069c52237816524be1be22c b/.git_backup/objects/88/a32df725f56f267069c52237816524be1be22c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/88/a70468cd46f235e23b0e01fa9bde5eb52e514c b/.git_backup/objects/88/a70468cd46f235e23b0e01fa9bde5eb52e514c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/88/c0f6acf4727b96d43ae9aa12957d8494d3b8ce b/.git_backup/objects/88/c0f6acf4727b96d43ae9aa12957d8494d3b8ce deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/88/c6fe87033b1f072ed8536bf21137ed62289caf b/.git_backup/objects/88/c6fe87033b1f072ed8536bf21137ed62289caf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/88/d53ffcb86685f9153ceffffb55ce92a75df8bc b/.git_backup/objects/88/d53ffcb86685f9153ceffffb55ce92a75df8bc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/88/db113d6d5a35c96ecc0a6a36ab42d74be49153 b/.git_backup/objects/88/db113d6d5a35c96ecc0a6a36ab42d74be49153 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/88/dcc98e6c80d145e3807f00a6e5ed91ce5371e4 b/.git_backup/objects/88/dcc98e6c80d145e3807f00a6e5ed91ce5371e4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/88/e2b5f080282b59be11f00a558ad6dfe7d0695d b/.git_backup/objects/88/e2b5f080282b59be11f00a558ad6dfe7d0695d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/88/e627a4bc6b911bba460682347704056c6611d2 b/.git_backup/objects/88/e627a4bc6b911bba460682347704056c6611d2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/88/f0d7d60d1730f5e2c5367afcf6a8bb6908519e b/.git_backup/objects/88/f0d7d60d1730f5e2c5367afcf6a8bb6908519e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/88/f7e2da3ba8f5cae4a6f3d85f7d828bc732636a b/.git_backup/objects/88/f7e2da3ba8f5cae4a6f3d85f7d828bc732636a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/88/fcb9295164f4e18827ef61fff6723e94ef7381 b/.git_backup/objects/88/fcb9295164f4e18827ef61fff6723e94ef7381 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/0083e673cf59a16521fe02f5ef1306705c4715 b/.git_backup/objects/89/0083e673cf59a16521fe02f5ef1306705c4715 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/021dd82810861dbfeef234dea91197396e20b8 b/.git_backup/objects/89/021dd82810861dbfeef234dea91197396e20b8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/02a270bad953d35882899180ff421a0abbca5b b/.git_backup/objects/89/02a270bad953d35882899180ff421a0abbca5b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/0363f2752ebd7c6d24a43e991a47898078529e b/.git_backup/objects/89/0363f2752ebd7c6d24a43e991a47898078529e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/09f8454e94752d188ed13cf36c35f93fc6c3f2 b/.git_backup/objects/89/09f8454e94752d188ed13cf36c35f93fc6c3f2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/0ae8465c5b0ad2a5f99464fe5f5c0be49809f1 b/.git_backup/objects/89/0ae8465c5b0ad2a5f99464fe5f5c0be49809f1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/1279d4db7f89ee8cf063b64b6e87a29ea86821 b/.git_backup/objects/89/1279d4db7f89ee8cf063b64b6e87a29ea86821 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/132735de306c4d70a43eb7346e15842e7dbcd7 b/.git_backup/objects/89/132735de306c4d70a43eb7346e15842e7dbcd7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/1e257bcbcb47f96b939b081fa3dcd899b54d43 b/.git_backup/objects/89/1e257bcbcb47f96b939b081fa3dcd899b54d43 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/2ba96065d634265ddffe26d3b5210650bcfbaf b/.git_backup/objects/89/2ba96065d634265ddffe26d3b5210650bcfbaf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/2c07882ced73ab71d5f73871f0a2cd739433c9 b/.git_backup/objects/89/2c07882ced73ab71d5f73871f0a2cd739433c9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/2c10e76f479a237ca42d26c5f06c74c579f960 b/.git_backup/objects/89/2c10e76f479a237ca42d26c5f06c74c579f960 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/2e578edd4b992cc2996c31d9deb13af73d62c0 b/.git_backup/objects/89/2e578edd4b992cc2996c31d9deb13af73d62c0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/3db2e6d76480e3268273fc44cbc87369a1f1ea b/.git_backup/objects/89/3db2e6d76480e3268273fc44cbc87369a1f1ea deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/45b5da857f4a7dec2b84f1225f012f6098418c b/.git_backup/objects/89/45b5da857f4a7dec2b84f1225f012f6098418c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/53d3303e84f76bdc45dfe0475f1c984d85915b b/.git_backup/objects/89/53d3303e84f76bdc45dfe0475f1c984d85915b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/5587baf7191f06c346e76ddf979dcc60f0df26 b/.git_backup/objects/89/5587baf7191f06c346e76ddf979dcc60f0df26 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/62e3b75cbbc9f2e2b8b26718ac3dd42e4c43c3 b/.git_backup/objects/89/62e3b75cbbc9f2e2b8b26718ac3dd42e4c43c3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/64765f7bd207bfab63b4d16569cb1c3763bda7 b/.git_backup/objects/89/64765f7bd207bfab63b4d16569cb1c3763bda7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/67c824515257dab9e0c2285db07b92bb8a8f23 b/.git_backup/objects/89/67c824515257dab9e0c2285db07b92bb8a8f23 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/72291c0cc6b211855c0a998fbdd85461fc78eb b/.git_backup/objects/89/72291c0cc6b211855c0a998fbdd85461fc78eb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/81b8205572a0fe12c88034315a342571d05638 b/.git_backup/objects/89/81b8205572a0fe12c88034315a342571d05638 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/81f581ec7b7b9c15daa6083f4a8cf2bb2eecd1 b/.git_backup/objects/89/81f581ec7b7b9c15daa6083f4a8cf2bb2eecd1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/87dd5adf5d3a51ab2b62fcde1b58d4c104fef2 b/.git_backup/objects/89/87dd5adf5d3a51ab2b62fcde1b58d4c104fef2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/887be34c6508d404a6b486c838ddcc2dcc10fb b/.git_backup/objects/89/887be34c6508d404a6b486c838ddcc2dcc10fb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/913204097c0115c9e31ed4f720de5888de2e3f b/.git_backup/objects/89/913204097c0115c9e31ed4f720de5888de2e3f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/a8b48bfdee058299aacb6a58e38151455cd05d b/.git_backup/objects/89/a8b48bfdee058299aacb6a58e38151455cd05d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/ae54369657f511aafb160645d11d786098f84a b/.git_backup/objects/89/ae54369657f511aafb160645d11d786098f84a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/b663b8514bb564650d9c67164c54c798670b81 b/.git_backup/objects/89/b663b8514bb564650d9c67164c54c798670b81 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/c217b40e9fa2e0b3966680b2e2c2c913b19e49 b/.git_backup/objects/89/c217b40e9fa2e0b3966680b2e2c2c913b19e49 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/c75176953c14555c48fe8ce4602f321ba9b0dd b/.git_backup/objects/89/c75176953c14555c48fe8ce4602f321ba9b0dd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/c85a4da9e0d17d56ab0543ad423d93c405e7dc b/.git_backup/objects/89/c85a4da9e0d17d56ab0543ad423d93c405e7dc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/c9f528567d7143a97ccfccefd62c139c41c8fc b/.git_backup/objects/89/c9f528567d7143a97ccfccefd62c139c41c8fc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/ca7bcdd9878b8122f4ec598566af2be13cea41 b/.git_backup/objects/89/ca7bcdd9878b8122f4ec598566af2be13cea41 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/cb3702808702c19ca363fe82bdbec5b9a3aa8f b/.git_backup/objects/89/cb3702808702c19ca363fe82bdbec5b9a3aa8f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/d362eb77e688c0c5eb0994f4f59de0447b698c b/.git_backup/objects/89/d362eb77e688c0c5eb0994f4f59de0447b698c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/d9ada392a46f68ede672446e3295269487a8b7 b/.git_backup/objects/89/d9ada392a46f68ede672446e3295269487a8b7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/dfc75fdabad1c95bb1f968d6dcb827459e1005 b/.git_backup/objects/89/dfc75fdabad1c95bb1f968d6dcb827459e1005 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/e1868047225bbcdfe04bdc4bea3281bf91bc20 b/.git_backup/objects/89/e1868047225bbcdfe04bdc4bea3281bf91bc20 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/e875beaef780b2ceae08ee4703cd813f33d6a4 b/.git_backup/objects/89/e875beaef780b2ceae08ee4703cd813f33d6a4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/f10ef956dead62d95143ada413f9316f3f3ec4 b/.git_backup/objects/89/f10ef956dead62d95143ada413f9316f3f3ec4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/f72bdfb5263e4b6644555ed78a795536906194 b/.git_backup/objects/89/f72bdfb5263e4b6644555ed78a795536906194 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/f7d4c70fa7fa2626d28be743e5da6ffcba62eb b/.git_backup/objects/89/f7d4c70fa7fa2626d28be743e5da6ffcba62eb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/f9b07511c8fee74686d9cc434bf66345a46d6d b/.git_backup/objects/89/f9b07511c8fee74686d9cc434bf66345a46d6d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/fbe033e2efe365b870887b1fc76ff4b1d0fb08 b/.git_backup/objects/89/fbe033e2efe365b870887b1fc76ff4b1d0fb08 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/fccf0abab5812f1303dd55ca818732427b586c b/.git_backup/objects/89/fccf0abab5812f1303dd55ca818732427b586c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/89/fea94d3be73195906d837d8fae973874c5b2d6 b/.git_backup/objects/89/fea94d3be73195906d837d8fae973874c5b2d6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8a/0c2cb9be06e633b26c7205d6efe42827835910 b/.git_backup/objects/8a/0c2cb9be06e633b26c7205d6efe42827835910 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8a/0f0b5e7e44b9c92049ed76210345791c425e34 b/.git_backup/objects/8a/0f0b5e7e44b9c92049ed76210345791c425e34 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8a/1cb383c0ef2cb2cf10cdf643645ade029013e9 b/.git_backup/objects/8a/1cb383c0ef2cb2cf10cdf643645ade029013e9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8a/2660ffdcff867f8ce2770ea4bbe513f0e3ae9a b/.git_backup/objects/8a/2660ffdcff867f8ce2770ea4bbe513f0e3ae9a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8a/27ceeec662e7ea17a84867aefd292ae2aac59b b/.git_backup/objects/8a/27ceeec662e7ea17a84867aefd292ae2aac59b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8a/29df6857ec83e3afd518d3b91c431515413ed9 b/.git_backup/objects/8a/29df6857ec83e3afd518d3b91c431515413ed9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8a/2e80c652a85b4fa44173b4bb18db219b5c3356 b/.git_backup/objects/8a/2e80c652a85b4fa44173b4bb18db219b5c3356 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8a/409c0fe05cbabe659dda201e93773a3681df00 b/.git_backup/objects/8a/409c0fe05cbabe659dda201e93773a3681df00 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8a/4395440e50a491a5c0eec8182e15722052fe0d b/.git_backup/objects/8a/4395440e50a491a5c0eec8182e15722052fe0d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8a/48da91ef31df2fc98734e13ffcb47d4e938272 b/.git_backup/objects/8a/48da91ef31df2fc98734e13ffcb47d4e938272 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8a/4bfde1ac7343ed297c609088bdf622e1bd5cd6 b/.git_backup/objects/8a/4bfde1ac7343ed297c609088bdf622e1bd5cd6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8a/4c61c2ce8c35a12f3e33b970dc02f439369a57 b/.git_backup/objects/8a/4c61c2ce8c35a12f3e33b970dc02f439369a57 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8a/517af28f6313bec3e5abb4b42ee6ba2ae4fe5e b/.git_backup/objects/8a/517af28f6313bec3e5abb4b42ee6ba2ae4fe5e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8a/531aab6e1607de3f2d5066f6895d9cef88b74c b/.git_backup/objects/8a/531aab6e1607de3f2d5066f6895d9cef88b74c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8a/56593d0ef7964d8984fd58b3e70c6ed18bab70 b/.git_backup/objects/8a/56593d0ef7964d8984fd58b3e70c6ed18bab70 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8a/7a0fe62d2e1b54405a688c77c118d494250ba1 b/.git_backup/objects/8a/7a0fe62d2e1b54405a688c77c118d494250ba1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8a/7d00542f224e29a7728280c6ec28309e96be94 b/.git_backup/objects/8a/7d00542f224e29a7728280c6ec28309e96be94 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8a/8d9eb84c93ee9dff198cdfde557fc0bf3d12fe b/.git_backup/objects/8a/8d9eb84c93ee9dff198cdfde557fc0bf3d12fe deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8a/8f89755a363e303021ed0503c84f0a0a9f07db b/.git_backup/objects/8a/8f89755a363e303021ed0503c84f0a0a9f07db deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8a/93767bfef2cecbeee15db413a0a7c277e761a1 b/.git_backup/objects/8a/93767bfef2cecbeee15db413a0a7c277e761a1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8a/944fecd865487e489ecefb90700f5eed38cd44 b/.git_backup/objects/8a/944fecd865487e489ecefb90700f5eed38cd44 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8a/9583c465f50da0855555deb491e2014c2b334d b/.git_backup/objects/8a/9583c465f50da0855555deb491e2014c2b334d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8a/9a8649d2035b06f540f8d517d93859f94b4779 b/.git_backup/objects/8a/9a8649d2035b06f540f8d517d93859f94b4779 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8a/a5c14812dc03685e5caa25ec28bb15cda1d093 b/.git_backup/objects/8a/a5c14812dc03685e5caa25ec28bb15cda1d093 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8a/a6589b7bba9cce3cfb3901bae3b9e53de4f7dc b/.git_backup/objects/8a/a6589b7bba9cce3cfb3901bae3b9e53de4f7dc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8a/ae8e2c6aba3ce8ccceb9bea7efa5d23223c06b b/.git_backup/objects/8a/ae8e2c6aba3ce8ccceb9bea7efa5d23223c06b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8a/c3059ba3c246b9a5a6fb8d14936bb07777191e b/.git_backup/objects/8a/c3059ba3c246b9a5a6fb8d14936bb07777191e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8a/c5c32b3ff4c65902232491a9a1dbae57a40428 b/.git_backup/objects/8a/c5c32b3ff4c65902232491a9a1dbae57a40428 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8a/d126518eb5bdef48b3fbf125593af91b92c12a b/.git_backup/objects/8a/d126518eb5bdef48b3fbf125593af91b92c12a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8a/d9aeeb4f93033eef8cdbebb7aa9cd87641b1de b/.git_backup/objects/8a/d9aeeb4f93033eef8cdbebb7aa9cd87641b1de deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8a/e3f542d7bfe61e2c81d22c3d8c034419fe18d4 b/.git_backup/objects/8a/e3f542d7bfe61e2c81d22c3d8c034419fe18d4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8a/e56c072fb91552dd5e13b5365ce680b43c8ec2 b/.git_backup/objects/8a/e56c072fb91552dd5e13b5365ce680b43c8ec2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8a/edfb9b26f389bc5a008b6aa4c5bab5c7cff5b8 b/.git_backup/objects/8a/edfb9b26f389bc5a008b6aa4c5bab5c7cff5b8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8a/f062bd8abca29806f94ecb13a8b9bd1ac7d6fd b/.git_backup/objects/8a/f062bd8abca29806f94ecb13a8b9bd1ac7d6fd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8a/f0706b0d48699241b1ae49e4c24d5eff89d3da b/.git_backup/objects/8a/f0706b0d48699241b1ae49e4c24d5eff89d3da deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8a/f296dfa82d84ceb1fa386035f8dea30943383e b/.git_backup/objects/8a/f296dfa82d84ceb1fa386035f8dea30943383e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8a/f78f3dde615e2b2892a1e36b9f94754a9f2fa7 b/.git_backup/objects/8a/f78f3dde615e2b2892a1e36b9f94754a9f2fa7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8a/fccccadc76075f7607420326297db46c2eaf3b b/.git_backup/objects/8a/fccccadc76075f7607420326297db46c2eaf3b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8a/fd9d06e0e66e4c1ef469a3ba4b3566366129d6 b/.git_backup/objects/8a/fd9d06e0e66e4c1ef469a3ba4b3566366129d6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/0055a522e2525224017cbcd8fbe742214b11be b/.git_backup/objects/8b/0055a522e2525224017cbcd8fbe742214b11be deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/0ba454cf9c2eec79b3ba2956ed8d56310f1160 b/.git_backup/objects/8b/0ba454cf9c2eec79b3ba2956ed8d56310f1160 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/1367046f47987c7c05ea8bafeac672c3bd6d07 b/.git_backup/objects/8b/1367046f47987c7c05ea8bafeac672c3bd6d07 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/137891791fe96927ad78e64b0aad7bded08bdc b/.git_backup/objects/8b/137891791fe96927ad78e64b0aad7bded08bdc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/13e21a3305f0bf81652f3dc0db4774a42f158c b/.git_backup/objects/8b/13e21a3305f0bf81652f3dc0db4774a42f158c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/1a2816ab136098d10a3d294993ea56b6c432dc b/.git_backup/objects/8b/1a2816ab136098d10a3d294993ea56b6c432dc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/1da4c8767d0e5b140e3041216a24d6b4b9c5a3 b/.git_backup/objects/8b/1da4c8767d0e5b140e3041216a24d6b4b9c5a3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/244044cf3028df9a019a259d8fc533b80f7fb7 b/.git_backup/objects/8b/244044cf3028df9a019a259d8fc533b80f7fb7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/30c00d5a1b61f75ecab1b0c07c2d06ade9c209 b/.git_backup/objects/8b/30c00d5a1b61f75ecab1b0c07c2d06ade9c209 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/35f3f95c19fc98fe57767c64fdc373e9155605 b/.git_backup/objects/8b/35f3f95c19fc98fe57767c64fdc373e9155605 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/3aea7ceeb981c37d29926fbaf8a6de7405360a b/.git_backup/objects/8b/3aea7ceeb981c37d29926fbaf8a6de7405360a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/3fffbe7776a70fd4f0a1bf0ba8d4ae378cd3d7 b/.git_backup/objects/8b/3fffbe7776a70fd4f0a1bf0ba8d4ae378cd3d7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/433407df4c7d73550d848824411361a88b0b0d b/.git_backup/objects/8b/433407df4c7d73550d848824411361a88b0b0d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/4b1e4785819874b826263844d9d6c2d51b6a9b b/.git_backup/objects/8b/4b1e4785819874b826263844d9d6c2d51b6a9b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/526671d4e76f6b002c907784a2c96cb87bb9f7 b/.git_backup/objects/8b/526671d4e76f6b002c907784a2c96cb87bb9f7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/563d467caf131b5ccf4f09332714d497eac227 b/.git_backup/objects/8b/563d467caf131b5ccf4f09332714d497eac227 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/590bb67b3eac30c3065f05a9d1233d674a4a77 b/.git_backup/objects/8b/590bb67b3eac30c3065f05a9d1233d674a4a77 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/5b3ec44f5ae6c6bb2dad5fb5eb36abc5121488 b/.git_backup/objects/8b/5b3ec44f5ae6c6bb2dad5fb5eb36abc5121488 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/61e2eae34a5de2f2d6f759f441fc705a6a4f52 b/.git_backup/objects/8b/61e2eae34a5de2f2d6f759f441fc705a6a4f52 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/629d7886fe29f4747918c276b70989c7a96b61 b/.git_backup/objects/8b/629d7886fe29f4747918c276b70989c7a96b61 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/633e8db883625ca12a4596982337330b5daab1 b/.git_backup/objects/8b/633e8db883625ca12a4596982337330b5daab1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/653abfa65f46348eaa199f66a09de7fabbb67c b/.git_backup/objects/8b/653abfa65f46348eaa199f66a09de7fabbb67c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/69c528fd60d488e33625ab97e0351a4ed6855c b/.git_backup/objects/8b/69c528fd60d488e33625ab97e0351a4ed6855c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/6cf53f1680dd8a67966dddf61b58475eca58b6 b/.git_backup/objects/8b/6cf53f1680dd8a67966dddf61b58475eca58b6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/705b348fc3de5041ad9e3d6a1686af61046b2a b/.git_backup/objects/8b/705b348fc3de5041ad9e3d6a1686af61046b2a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/7f7c212add60cd8fdc8e24942798d2466cd47b b/.git_backup/objects/8b/7f7c212add60cd8fdc8e24942798d2466cd47b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/85cdb47c9e01bf98e9b0b775ce97a357328836 b/.git_backup/objects/8b/85cdb47c9e01bf98e9b0b775ce97a357328836 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/8d91a0583128f573c8b69a0a4badd9c185eb44 b/.git_backup/objects/8b/8d91a0583128f573c8b69a0a4badd9c185eb44 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/9abca344daf199b554888fc4fff562a7a18e4a b/.git_backup/objects/8b/9abca344daf199b554888fc4fff562a7a18e4a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/a6f15e5a6d2d5e2b210c37b8d5da411d81e77c b/.git_backup/objects/8b/a6f15e5a6d2d5e2b210c37b8d5da411d81e77c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/abd56306f09fa612f731ce593ae13c75f84f4c b/.git_backup/objects/8b/abd56306f09fa612f731ce593ae13c75f84f4c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/b37e2910163b30a176d31242d6845d8215efc0 b/.git_backup/objects/8b/b37e2910163b30a176d31242d6845d8215efc0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/b528c559849bf8f3bfbdd523e7ade7d81ad857 b/.git_backup/objects/8b/b528c559849bf8f3bfbdd523e7ade7d81ad857 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/b8e963746e54e08515e24263e2587073d4e793 b/.git_backup/objects/8b/b8e963746e54e08515e24263e2587073d4e793 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/b95712e198eef0c0a4b3d39ae073d3f68d4128 b/.git_backup/objects/8b/b95712e198eef0c0a4b3d39ae073d3f68d4128 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/c3a0a39f30bf48a5892368046a122fa8bc12e3 b/.git_backup/objects/8b/c3a0a39f30bf48a5892368046a122fa8bc12e3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/c72cc6d57a5c825421b99bbe4b6e6f026ffe34 b/.git_backup/objects/8b/c72cc6d57a5c825421b99bbe4b6e6f026ffe34 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/cb44f9e91c3a7ea167de60934c59b44f032103 b/.git_backup/objects/8b/cb44f9e91c3a7ea167de60934c59b44f032103 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/cece8c4b69a0e6f5bf7a65122b1109ab2b0460 b/.git_backup/objects/8b/cece8c4b69a0e6f5bf7a65122b1109ab2b0460 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/d56eca1fd1b395856829cb6a1a25a5621d8bea b/.git_backup/objects/8b/d56eca1fd1b395856829cb6a1a25a5621d8bea deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/d8f1f3dc574d60ea6ed6c76d6bdf48b3da6ae9 b/.git_backup/objects/8b/d8f1f3dc574d60ea6ed6c76d6bdf48b3da6ae9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/da19f59cd2b4e4085841b2be3749eec5e51f01 b/.git_backup/objects/8b/da19f59cd2b4e4085841b2be3749eec5e51f01 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/dadfcc8a4ce38035686c949bc31b8a9e2d0955 b/.git_backup/objects/8b/dadfcc8a4ce38035686c949bc31b8a9e2d0955 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/e1336d2db1cf2a1ef0e10c6c2ea868777b186f b/.git_backup/objects/8b/e1336d2db1cf2a1ef0e10c6c2ea868777b186f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/e721c13eea83a576b0079d1a779b847c5c6782 b/.git_backup/objects/8b/e721c13eea83a576b0079d1a779b847c5c6782 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/e951efc8bd4bf6cb0627413a2060d76f02929a b/.git_backup/objects/8b/e951efc8bd4bf6cb0627413a2060d76f02929a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/f8fb1b0bb7a1c795bf66d173b5679c67d807c3 b/.git_backup/objects/8b/f8fb1b0bb7a1c795bf66d173b5679c67d807c3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8b/fe41e4d59354707bb48d820a21d33c2a5676a3 b/.git_backup/objects/8b/fe41e4d59354707bb48d820a21d33c2a5676a3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/05008b33e0acd63e5e33ca0abcae1d5c0261a9 b/.git_backup/objects/8c/05008b33e0acd63e5e33ca0abcae1d5c0261a9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/11619edd0b7965d7e3e4b14b9411b6c30c7902 b/.git_backup/objects/8c/11619edd0b7965d7e3e4b14b9411b6c30c7902 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/11b3f7bb22b46075d664cfb3a5786add6257b7 b/.git_backup/objects/8c/11b3f7bb22b46075d664cfb3a5786add6257b7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/12bd6a22f676276f6b8229e637a76b34772281 b/.git_backup/objects/8c/12bd6a22f676276f6b8229e637a76b34772281 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/23069f918e3269a28a1c7aa21c854a9cd1d23d b/.git_backup/objects/8c/23069f918e3269a28a1c7aa21c854a9cd1d23d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/2dcbb79c763d9d3a3574c7e8a5b3694da4b071 b/.git_backup/objects/8c/2dcbb79c763d9d3a3574c7e8a5b3694da4b071 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/2f0b09c461eb117618d77c09be1afa4642fc62 b/.git_backup/objects/8c/2f0b09c461eb117618d77c09be1afa4642fc62 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/312f4f6336bcd1f4283c0a3e2453f4d28b9a41 b/.git_backup/objects/8c/312f4f6336bcd1f4283c0a3e2453f4d28b9a41 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/3438eaa6c995a5e52440b4692116593e6ca62b b/.git_backup/objects/8c/3438eaa6c995a5e52440b4692116593e6ca62b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/34af0c560c5d202cdb1ee1fda86513b109fe61 b/.git_backup/objects/8c/34af0c560c5d202cdb1ee1fda86513b109fe61 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/3b240d0418e17b0fef37016d4b84d6f63b03cf b/.git_backup/objects/8c/3b240d0418e17b0fef37016d4b84d6f63b03cf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/3b3e45085235f1d4aca057688a10f6d66bdcbb b/.git_backup/objects/8c/3b3e45085235f1d4aca057688a10f6d66bdcbb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/4037aa67081ceef094eb44f3d38dbc8204169e b/.git_backup/objects/8c/4037aa67081ceef094eb44f3d38dbc8204169e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/4204d0df90b40c5cb37c620be6a2b15c4c2088 b/.git_backup/objects/8c/4204d0df90b40c5cb37c620be6a2b15c4c2088 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/44061e2a4f821583ac9ff8968bb7e561f8c090 b/.git_backup/objects/8c/44061e2a4f821583ac9ff8968bb7e561f8c090 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/45677317bc62d41bf68ef78be1223a3580b3d8 b/.git_backup/objects/8c/45677317bc62d41bf68ef78be1223a3580b3d8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/4a572604b039fdc33ea4119906655287bf0487 b/.git_backup/objects/8c/4a572604b039fdc33ea4119906655287bf0487 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/51cd1c47f99567359f4abb51c901740f75e0dd b/.git_backup/objects/8c/51cd1c47f99567359f4abb51c901740f75e0dd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/529f9d74cf1dfe261958c4466b307315dcdadc b/.git_backup/objects/8c/529f9d74cf1dfe261958c4466b307315dcdadc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/52c035810a531966e053a8d1f9081b68ec64c1 b/.git_backup/objects/8c/52c035810a531966e053a8d1f9081b68ec64c1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/5661e93a205bf4fb22404d4fc50f902cc31369 b/.git_backup/objects/8c/5661e93a205bf4fb22404d4fc50f902cc31369 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/5c816250dbeb8d9c93b2c6c6e680a302b763e4 b/.git_backup/objects/8c/5c816250dbeb8d9c93b2c6c6e680a302b763e4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/62330c65d12f22d9dd91e26a2ca8748e17007c b/.git_backup/objects/8c/62330c65d12f22d9dd91e26a2ca8748e17007c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/63be3ad788a8abddf3588b2b9dd6d6126f5df3 b/.git_backup/objects/8c/63be3ad788a8abddf3588b2b9dd6d6126f5df3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/6fea29613961656dc4392f7743e3100474475f b/.git_backup/objects/8c/6fea29613961656dc4392f7743e3100474475f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/758c848f474db9669e95bc6016e496025dfba8 b/.git_backup/objects/8c/758c848f474db9669e95bc6016e496025dfba8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/8062471dce91a5be827d6908795ee7391a4afc b/.git_backup/objects/8c/8062471dce91a5be827d6908795ee7391a4afc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/81310edae61578485872c49d2f4f58b5713c9a b/.git_backup/objects/8c/81310edae61578485872c49d2f4f58b5713c9a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/83593c8dda0ea037fca283cbcf668c7b5ed310 b/.git_backup/objects/8c/83593c8dda0ea037fca283cbcf668c7b5ed310 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/84cbda404725d8b6b3ac33b12f1deb752e3acd b/.git_backup/objects/8c/84cbda404725d8b6b3ac33b12f1deb752e3acd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/858a4cb86f644eb0c680ff148a5737ed8449df b/.git_backup/objects/8c/858a4cb86f644eb0c680ff148a5737ed8449df deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/85fdb0244daa77341334303d851d42006a1650 b/.git_backup/objects/8c/85fdb0244daa77341334303d851d42006a1650 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/8a2b7af0b523f39a0ec5d674c1bdc5e4096269 b/.git_backup/objects/8c/8a2b7af0b523f39a0ec5d674c1bdc5e4096269 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/8c50c60371d59d207cf95000d3ae3782683127 b/.git_backup/objects/8c/8c50c60371d59d207cf95000d3ae3782683127 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/8e02a2615b1562580cd64e08d4a68a1abc4499 b/.git_backup/objects/8c/8e02a2615b1562580cd64e08d4a68a1abc4499 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/9a15e2bbda0ecb1442d1792627b695509e3330 b/.git_backup/objects/8c/9a15e2bbda0ecb1442d1792627b695509e3330 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/9ef58afd5f8c32739b1913e7cc4ba388de02d9 b/.git_backup/objects/8c/9ef58afd5f8c32739b1913e7cc4ba388de02d9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/a2d37016691d33a10401254cdca5bafcdddcd8 b/.git_backup/objects/8c/a2d37016691d33a10401254cdca5bafcdddcd8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/a9daf2474dd22da5026a2819bd1535398cdf3e b/.git_backup/objects/8c/a9daf2474dd22da5026a2819bd1535398cdf3e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/adaaf3ab504cd5e3b5b0d306a1bc9f8680eb4a b/.git_backup/objects/8c/adaaf3ab504cd5e3b5b0d306a1bc9f8680eb4a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/b2c6375b5b7ba7c939fb2ea55a470a80ef99b3 b/.git_backup/objects/8c/b2c6375b5b7ba7c939fb2ea55a470a80ef99b3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/bf7bbfe0368d9455635b409906ad237bbbba83 b/.git_backup/objects/8c/bf7bbfe0368d9455635b409906ad237bbbba83 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/c2804be7109d60dcc70b86a01f4bad0960f6aa b/.git_backup/objects/8c/c2804be7109d60dcc70b86a01f4bad0960f6aa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/c4ade3d7e95c4f0974fddc23aa7de0c36b56c5 b/.git_backup/objects/8c/c4ade3d7e95c4f0974fddc23aa7de0c36b56c5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/ca81e41c3935441fa7de738da9c7d477c1ea48 b/.git_backup/objects/8c/ca81e41c3935441fa7de738da9c7d477c1ea48 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/ce1105eac934d52fdb3c792112f0d91d5af43a b/.git_backup/objects/8c/ce1105eac934d52fdb3c792112f0d91d5af43a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/d173f9ace5b4038aab80f9b33882ad86e46191 b/.git_backup/objects/8c/d173f9ace5b4038aab80f9b33882ad86e46191 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/d512b75c0712df9c30a2b4dc3bf946ab005cb0 b/.git_backup/objects/8c/d512b75c0712df9c30a2b4dc3bf946ab005cb0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/d5c48fc9f655fce84f07e959b2a474362c6f99 b/.git_backup/objects/8c/d5c48fc9f655fce84f07e959b2a474362c6f99 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/dc70e423fc94266292c0a16246899887dcb119 b/.git_backup/objects/8c/dc70e423fc94266292c0a16246899887dcb119 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/de03af1ff923164bbbda4fd99ce429da596915 b/.git_backup/objects/8c/de03af1ff923164bbbda4fd99ce429da596915 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/e05100e16c574b1155e417c55e8fd54ce0916a b/.git_backup/objects/8c/e05100e16c574b1155e417c55e8fd54ce0916a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/e7de8ab263996e8c2527627367f932a350c489 b/.git_backup/objects/8c/e7de8ab263996e8c2527627367f932a350c489 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/ecf1fc981eefa40c40661fafd2bb70e3c3d7dc b/.git_backup/objects/8c/ecf1fc981eefa40c40661fafd2bb70e3c3d7dc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/ee5ebecc3bef248ed37c438e0731160b31a310 b/.git_backup/objects/8c/ee5ebecc3bef248ed37c438e0731160b31a310 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/ef2dd7ea6df8aac26ed067a9427935b81c7ac7 b/.git_backup/objects/8c/ef2dd7ea6df8aac26ed067a9427935b81c7ac7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/efd6bc1f4cabb10cf4ef293072e1fd57b3b19e b/.git_backup/objects/8c/efd6bc1f4cabb10cf4ef293072e1fd57b3b19e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/f3e6c141716e733bd4198b837df9e473a9a8ee b/.git_backup/objects/8c/f3e6c141716e733bd4198b837df9e473a9a8ee deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/f7abe4a167bbe6f89c51f00ac37f1c4bfd0790 b/.git_backup/objects/8c/f7abe4a167bbe6f89c51f00ac37f1c4bfd0790 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/f8692ddcd230de14bcd52d28e240ab61816897 b/.git_backup/objects/8c/f8692ddcd230de14bcd52d28e240ab61816897 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8c/fd0cd5956082bc2de86ad58871028a3832d982 b/.git_backup/objects/8c/fd0cd5956082bc2de86ad58871028a3832d982 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/124695657e7b56ace8cb37f8eabe252832545f b/.git_backup/objects/8d/124695657e7b56ace8cb37f8eabe252832545f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/150c8f6ad3d1481455393237c680bfb81e060b b/.git_backup/objects/8d/150c8f6ad3d1481455393237c680bfb81e060b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/1d499376744954308bdf96f80e5b5a39a24195 b/.git_backup/objects/8d/1d499376744954308bdf96f80e5b5a39a24195 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/234c60cc19871fb7744c3be0a7fde298ff9e9a b/.git_backup/objects/8d/234c60cc19871fb7744c3be0a7fde298ff9e9a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/2d0058dcb64c32a16fd0a2658535e49f339805 b/.git_backup/objects/8d/2d0058dcb64c32a16fd0a2658535e49f339805 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/361dcdebd4f5d8bd3d2cdc03d9816b50c3f396 b/.git_backup/objects/8d/361dcdebd4f5d8bd3d2cdc03d9816b50c3f396 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/3653ab13813033bc8e59526e5faeab89198cef b/.git_backup/objects/8d/3653ab13813033bc8e59526e5faeab89198cef deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/3abcc4e01f25d023db55a01b0fc71dbf1fbe83 b/.git_backup/objects/8d/3abcc4e01f25d023db55a01b0fc71dbf1fbe83 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/42ff759cfb75596811aef677afc67f5eabccd7 b/.git_backup/objects/8d/42ff759cfb75596811aef677afc67f5eabccd7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/449d0654541024e163ec652c974d2185f5caff b/.git_backup/objects/8d/449d0654541024e163ec652c974d2185f5caff deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/45ef8aeb578e2682a0c07185e7bc54b6077aed b/.git_backup/objects/8d/45ef8aeb578e2682a0c07185e7bc54b6077aed deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/4ae5793981b14b923ddf3b0c55dd316a3b413e b/.git_backup/objects/8d/4ae5793981b14b923ddf3b0c55dd316a3b413e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/56359666869463527be82a7de2e7a04eec165b b/.git_backup/objects/8d/56359666869463527be82a7de2e7a04eec165b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/6176137244f5535d7782359ba9648baa8571df b/.git_backup/objects/8d/6176137244f5535d7782359ba9648baa8571df deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/68e736b5bb8a4f0208feb5c5a2362bb8851d40 b/.git_backup/objects/8d/68e736b5bb8a4f0208feb5c5a2362bb8851d40 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/6ace937592dd150cadacd8c44e61bfaf5408b0 b/.git_backup/objects/8d/6ace937592dd150cadacd8c44e61bfaf5408b0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/713b6ae7c4a5d6457f2d045c8e5ae7988025f9 b/.git_backup/objects/8d/713b6ae7c4a5d6457f2d045c8e5ae7988025f9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/7461d978fa1f2ff0267429d32ca58193b3b73e b/.git_backup/objects/8d/7461d978fa1f2ff0267429d32ca58193b3b73e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/7bdd2b993c6dfd535575bd527ed37a98758b98 b/.git_backup/objects/8d/7bdd2b993c6dfd535575bd527ed37a98758b98 deleted file mode 100644 index a273d3e3..00000000 Binary files a/.git_backup/objects/8d/7bdd2b993c6dfd535575bd527ed37a98758b98 and /dev/null differ diff --git a/.git_backup/objects/8d/7d4fc674b2320423e760fe43c1f366e67e47a3 b/.git_backup/objects/8d/7d4fc674b2320423e760fe43c1f366e67e47a3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/82b57cee6c36809652873c9b2afc8b806f8d57 b/.git_backup/objects/8d/82b57cee6c36809652873c9b2afc8b806f8d57 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/861d9a37954af9fe9b5a06c2c3efa2e49f1b9f b/.git_backup/objects/8d/861d9a37954af9fe9b5a06c2c3efa2e49f1b9f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/8b2369ef3bf6dd262077540c64a9f9bc15e619 b/.git_backup/objects/8d/8b2369ef3bf6dd262077540c64a9f9bc15e619 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/8c79ff34365da351ed83fbd824b7e7ffeb5197 b/.git_backup/objects/8d/8c79ff34365da351ed83fbd824b7e7ffeb5197 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/8dbc56de450ad0f1f65f544698ba11cf74ebd4 b/.git_backup/objects/8d/8dbc56de450ad0f1f65f544698ba11cf74ebd4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/8ef8ca531f69de09080dbcaa57bae1ed2ca6ed b/.git_backup/objects/8d/8ef8ca531f69de09080dbcaa57bae1ed2ca6ed deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/90232c33c9a0a8d1f534c7d53c89ecd2585bce b/.git_backup/objects/8d/90232c33c9a0a8d1f534c7d53c89ecd2585bce deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/94349816fda6aa0f23d3edd831c8909060df53 b/.git_backup/objects/8d/94349816fda6aa0f23d3edd831c8909060df53 deleted file mode 100644 index 6daaeb93..00000000 Binary files a/.git_backup/objects/8d/94349816fda6aa0f23d3edd831c8909060df53 and /dev/null differ diff --git a/.git_backup/objects/8d/9df5cf5084996936d8ff0223c349b328da49ef b/.git_backup/objects/8d/9df5cf5084996936d8ff0223c349b328da49ef deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/a902ea830d12ad2be0b28db023b47b25c896e9 b/.git_backup/objects/8d/a902ea830d12ad2be0b28db023b47b25c896e9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/a93c20d182659a5e9628b8cc3b99a4955d5843 b/.git_backup/objects/8d/a93c20d182659a5e9628b8cc3b99a4955d5843 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/b11bcaea79d7b803982765186c7427c151b70f b/.git_backup/objects/8d/b11bcaea79d7b803982765186c7427c151b70f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/b477d01736445cafce8af7a7085d226d81f546 b/.git_backup/objects/8d/b477d01736445cafce8af7a7085d226d81f546 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/bacf1c7e1d506d36cade6b84956d0cd84cfd74 b/.git_backup/objects/8d/bacf1c7e1d506d36cade6b84956d0cd84cfd74 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/bbdf12584fe7f548117437daec3938093a3bdd b/.git_backup/objects/8d/bbdf12584fe7f548117437daec3938093a3bdd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/c5d769e06d4c349faf94cef05ae2beae51ab41 b/.git_backup/objects/8d/c5d769e06d4c349faf94cef05ae2beae51ab41 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/c6645f05585aabbd27afae7b02e757c633728f b/.git_backup/objects/8d/c6645f05585aabbd27afae7b02e757c633728f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/c93c71fe5ec32dcb9217a7ba3633c19c6ac718 b/.git_backup/objects/8d/c93c71fe5ec32dcb9217a7ba3633c19c6ac718 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/cd55c79c8a020fd702d0eb0a49d6c3e0a530b5 b/.git_backup/objects/8d/cd55c79c8a020fd702d0eb0a49d6c3e0a530b5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/cf912bd063066fbec90b983b57acf3120482aa b/.git_backup/objects/8d/cf912bd063066fbec90b983b57acf3120482aa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/e5341d785cca4ec0db2d11eada7bb5f4d41818 b/.git_backup/objects/8d/e5341d785cca4ec0db2d11eada7bb5f4d41818 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/e8011b2154124ae1857151f55741b616153de8 b/.git_backup/objects/8d/e8011b2154124ae1857151f55741b616153de8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/e914da448bebd9908ab6af7f15e2cf9a78265a b/.git_backup/objects/8d/e914da448bebd9908ab6af7f15e2cf9a78265a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/ea0d6a24ac3af3b7ae90c0011a78e1871846a7 b/.git_backup/objects/8d/ea0d6a24ac3af3b7ae90c0011a78e1871846a7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/ec166f50b10edfaeb0d4e864d1abda63de040f b/.git_backup/objects/8d/ec166f50b10edfaeb0d4e864d1abda63de040f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/ef6cea53f4ab450770ce6e14cbb41ed1ea4fec b/.git_backup/objects/8d/ef6cea53f4ab450770ce6e14cbb41ed1ea4fec deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/f28a3e17a4a1dd3363124dd5a6231a5263db47 b/.git_backup/objects/8d/f28a3e17a4a1dd3363124dd5a6231a5263db47 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/f2bb1505225819aaa8ba4c4f00e00e59f1363d b/.git_backup/objects/8d/f2bb1505225819aaa8ba4c4f00e00e59f1363d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/f43dcf1c9f63d3ea9f056f062ea97e5c7c0b57 b/.git_backup/objects/8d/f43dcf1c9f63d3ea9f056f062ea97e5c7c0b57 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/f50a03f349f50bbf11813d315ecb4ed3181e16 b/.git_backup/objects/8d/f50a03f349f50bbf11813d315ecb4ed3181e16 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/f556b6c303bff2a977c6665a7a2e4339b9bd31 b/.git_backup/objects/8d/f556b6c303bff2a977c6665a7a2e4339b9bd31 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8d/f5d0c5ca941dbd8f6bcdb34d90d2552fd0f30e b/.git_backup/objects/8d/f5d0c5ca941dbd8f6bcdb34d90d2552fd0f30e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/04d2875bad2b7b263e77ca2f165782f4abe31c b/.git_backup/objects/8e/04d2875bad2b7b263e77ca2f165782f4abe31c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/069b32169b75c68211c988a9ecbd87b23115f3 b/.git_backup/objects/8e/069b32169b75c68211c988a9ecbd87b23115f3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/0ace7775868c9586274ebeb109d98cc89a8694 b/.git_backup/objects/8e/0ace7775868c9586274ebeb109d98cc89a8694 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/0dd47cb077b8d9db3a457dc6cbb0c204b0a759 b/.git_backup/objects/8e/0dd47cb077b8d9db3a457dc6cbb0c204b0a759 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/0e35ff9e21f35c992ff4c2c6ff5e9e67edbcf7 b/.git_backup/objects/8e/0e35ff9e21f35c992ff4c2c6ff5e9e67edbcf7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/1426dbb6c6762a673db2691ecd7ac124d46ec8 b/.git_backup/objects/8e/1426dbb6c6762a673db2691ecd7ac124d46ec8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/1a3a7877d7482b2f84853c8956b761e64099cc b/.git_backup/objects/8e/1a3a7877d7482b2f84853c8956b761e64099cc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/2d453095127f85c6409d8c413010ac901d20ec b/.git_backup/objects/8e/2d453095127f85c6409d8c413010ac901d20ec deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/2e2fc84739fd92bc7f9c8f9ecf622f97130455 b/.git_backup/objects/8e/2e2fc84739fd92bc7f9c8f9ecf622f97130455 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/2f09828878c472441e597754583b4b44b79c41 b/.git_backup/objects/8e/2f09828878c472441e597754583b4b44b79c41 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/326ba8b6a1a32c1115d463072af31a9a6feedf b/.git_backup/objects/8e/326ba8b6a1a32c1115d463072af31a9a6feedf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/32b6a3113e923c4a66035a3aae1ef6444b6486 b/.git_backup/objects/8e/32b6a3113e923c4a66035a3aae1ef6444b6486 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/36c0c8ce62d7559b60fde454a96e8eefcbcb92 b/.git_backup/objects/8e/36c0c8ce62d7559b60fde454a96e8eefcbcb92 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/3a402c60a515149811e2ca21628e97180c4956 b/.git_backup/objects/8e/3a402c60a515149811e2ca21628e97180c4956 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/3fd7ca0a1582937fdb99a1af422f04fb9d4581 b/.git_backup/objects/8e/3fd7ca0a1582937fdb99a1af422f04fb9d4581 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/42ffdeef246fdcdc51204fcc46dc96c2920cee b/.git_backup/objects/8e/42ffdeef246fdcdc51204fcc46dc96c2920cee deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/4452cd61c5400c13f4f239055352bae754ad7e b/.git_backup/objects/8e/4452cd61c5400c13f4f239055352bae754ad7e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/46fbf91ae16d2e7511299f1c0ac6b67b36e27f b/.git_backup/objects/8e/46fbf91ae16d2e7511299f1c0ac6b67b36e27f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/49c72f879f4de2f1576f729734723d2ac78ef6 b/.git_backup/objects/8e/49c72f879f4de2f1576f729734723d2ac78ef6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/5022a8ec97fa8b2d83c155af8834cf27e7f5ae b/.git_backup/objects/8e/5022a8ec97fa8b2d83c155af8834cf27e7f5ae deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/50548af900d3eeb65b2c236f32478060085d8d b/.git_backup/objects/8e/50548af900d3eeb65b2c236f32478060085d8d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/5a05010f672eca8217be63459e23f246142b3d b/.git_backup/objects/8e/5a05010f672eca8217be63459e23f246142b3d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/5dc1e0a6930f015f9dd87546e4a1ce6fa17ab3 b/.git_backup/objects/8e/5dc1e0a6930f015f9dd87546e4a1ce6fa17ab3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/64d8adf3b8cdc3daff48e13e8ecd884444773d b/.git_backup/objects/8e/64d8adf3b8cdc3daff48e13e8ecd884444773d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/692b7970856e271d85639f957b6e9c8311af39 b/.git_backup/objects/8e/692b7970856e271d85639f957b6e9c8311af39 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/6cba2cae293b754dab6c087575619997bd9d23 b/.git_backup/objects/8e/6cba2cae293b754dab6c087575619997bd9d23 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/71a19459bca2074c7e60af33aef6561aad6929 b/.git_backup/objects/8e/71a19459bca2074c7e60af33aef6561aad6929 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/774291a361442009e9f8409fd680a30a9e589d b/.git_backup/objects/8e/774291a361442009e9f8409fd680a30a9e589d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/79d54dee97945acbb35198f228c5cefdba80e5 b/.git_backup/objects/8e/79d54dee97945acbb35198f228c5cefdba80e5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/7b65eaf628360e6f32f4140fcdd7ec7c2b7077 b/.git_backup/objects/8e/7b65eaf628360e6f32f4140fcdd7ec7c2b7077 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/8b5d17b8b8042396e44b8f1040c89666907a58 b/.git_backup/objects/8e/8b5d17b8b8042396e44b8f1040c89666907a58 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/8dcfa565d9f78a20e1c6c7d789118c5e25dd45 b/.git_backup/objects/8e/8dcfa565d9f78a20e1c6c7d789118c5e25dd45 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/9bf105a35b50178ccbf2d94ff3d0485d0426e5 b/.git_backup/objects/8e/9bf105a35b50178ccbf2d94ff3d0485d0426e5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/9de3e39b1f4f53a7b0b1d2c8cb0d0eca9304dc b/.git_backup/objects/8e/9de3e39b1f4f53a7b0b1d2c8cb0d0eca9304dc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/9ef255eeb11515b84126d9ee5c0c6b3c72f2a0 b/.git_backup/objects/8e/9ef255eeb11515b84126d9ee5c0c6b3c72f2a0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/9f1683558aab5f81f7f4d4268973a177e02628 b/.git_backup/objects/8e/9f1683558aab5f81f7f4d4268973a177e02628 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/a642c50c7e62815d2fecd787a5a424d7349136 b/.git_backup/objects/8e/a642c50c7e62815d2fecd787a5a424d7349136 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/aeb6afb2ad990a745a921a7c42bcdde71ff577 b/.git_backup/objects/8e/aeb6afb2ad990a745a921a7c42bcdde71ff577 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/b323b010bdb67f25502a9f0a6a22962c43fd46 b/.git_backup/objects/8e/b323b010bdb67f25502a9f0a6a22962c43fd46 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/b474eae545ddc3cbbeb962937213e4445a5e94 b/.git_backup/objects/8e/b474eae545ddc3cbbeb962937213e4445a5e94 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/b6d87dd1c523650454bcc95c435317d9537730 b/.git_backup/objects/8e/b6d87dd1c523650454bcc95c435317d9537730 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/bbd4e4b6449f643e07e65e2d9c58eb8d49d2e7 b/.git_backup/objects/8e/bbd4e4b6449f643e07e65e2d9c58eb8d49d2e7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/c25ed48343e9955f694ddf4ad2e039d848ffb6 b/.git_backup/objects/8e/c25ed48343e9955f694ddf4ad2e039d848ffb6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/c727ac1825230c3979296e564b530ef484e4be b/.git_backup/objects/8e/c727ac1825230c3979296e564b530ef484e4be deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/cb196a66651908fc1e37256922116d43ef9735 b/.git_backup/objects/8e/cb196a66651908fc1e37256922116d43ef9735 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/cba0f07b364b6b3966b09f6bf5866bb99849b7 b/.git_backup/objects/8e/cba0f07b364b6b3966b09f6bf5866bb99849b7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/d1b42b83db05fa14f703e18280208b10495d07 b/.git_backup/objects/8e/d1b42b83db05fa14f703e18280208b10495d07 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/d1c27087b02a7f40e7597cb4c9bef7bc0bf689 b/.git_backup/objects/8e/d1c27087b02a7f40e7597cb4c9bef7bc0bf689 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/d44dc0eaac01abba5a58209f0cfe3f8c344f87 b/.git_backup/objects/8e/d44dc0eaac01abba5a58209f0cfe3f8c344f87 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/d4a8773b8404c2705aa8728e5fd692362ba168 b/.git_backup/objects/8e/d4a8773b8404c2705aa8728e5fd692362ba168 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/d5b9653f4ed88e146d2d5dc5b032537b426f8b b/.git_backup/objects/8e/d5b9653f4ed88e146d2d5dc5b032537b426f8b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/d83d419b3760f535cbb03989dd6803c67ed8e9 b/.git_backup/objects/8e/d83d419b3760f535cbb03989dd6803c67ed8e9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/e1a42d252eaca06b398ff4e47b701e4103c830 b/.git_backup/objects/8e/e1a42d252eaca06b398ff4e47b701e4103c830 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/e8a1cb18017880cd0bebd66bc2cec5702118c6 b/.git_backup/objects/8e/e8a1cb18017880cd0bebd66bc2cec5702118c6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/e8cb92e72d9c507ad0ee06dc6a38406ab06f34 b/.git_backup/objects/8e/e8cb92e72d9c507ad0ee06dc6a38406ab06f34 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/f1f20a06f7ef25c5fcc60ea239c4326fe45708 b/.git_backup/objects/8e/f1f20a06f7ef25c5fcc60ea239c4326fe45708 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/f7d82c180bab960545af7709dd809133cf39cb b/.git_backup/objects/8e/f7d82c180bab960545af7709dd809133cf39cb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/f8e73bbce7d6fd6d636a6a7d83ac08b28e2afa b/.git_backup/objects/8e/f8e73bbce7d6fd6d636a6a7d83ac08b28e2afa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/fce88d9f8d05c77098ebce4fc1cee4e89b463c b/.git_backup/objects/8e/fce88d9f8d05c77098ebce4fc1cee4e89b463c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8e/fdfb719bbfac2a530a2403ca74dce364415bb1 b/.git_backup/objects/8e/fdfb719bbfac2a530a2403ca74dce364415bb1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/01c3a7c69902de165fd8c71d855de1fe700f87 b/.git_backup/objects/8f/01c3a7c69902de165fd8c71d855de1fe700f87 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/139bb3872ae1a6c10a376d861a0eba5e490686 b/.git_backup/objects/8f/139bb3872ae1a6c10a376d861a0eba5e490686 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/1bee7e880fa0fe0a4989950b76e1ba79e091b2 b/.git_backup/objects/8f/1bee7e880fa0fe0a4989950b76e1ba79e091b2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/22ea6e69436f08b77297ff20d00eeb9376bce5 b/.git_backup/objects/8f/22ea6e69436f08b77297ff20d00eeb9376bce5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/241679d510880c7c409ca0431111561366875a b/.git_backup/objects/8f/241679d510880c7c409ca0431111561366875a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/2903d7810fa4f3b9396b9e46c189e76d4294a1 b/.git_backup/objects/8f/2903d7810fa4f3b9396b9e46c189e76d4294a1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/2933670655f44858f71b0eb4645da0dd875f02 b/.git_backup/objects/8f/2933670655f44858f71b0eb4645da0dd875f02 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/2b1927ed0591f95502aa46510f936df7eccdb7 b/.git_backup/objects/8f/2b1927ed0591f95502aa46510f936df7eccdb7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/2e41d985a1cf220ac33cad13d1b8b93d4b8ec8 b/.git_backup/objects/8f/2e41d985a1cf220ac33cad13d1b8b93d4b8ec8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/34ead4a1fc4edbb3c2ab50a204aa9a3cc21cff b/.git_backup/objects/8f/34ead4a1fc4edbb3c2ab50a204aa9a3cc21cff deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/3589e9acf5912ea0f3f886352fb0e873819685 b/.git_backup/objects/8f/3589e9acf5912ea0f3f886352fb0e873819685 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/35b2d23d0bafc258cc28dd644950c8c5255281 b/.git_backup/objects/8f/35b2d23d0bafc258cc28dd644950c8c5255281 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/35e6b55faccfe300fefb5d21a8daf942ecd50f b/.git_backup/objects/8f/35e6b55faccfe300fefb5d21a8daf942ecd50f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/36d410e95adc36c78361fc81c669fdb695e56f b/.git_backup/objects/8f/36d410e95adc36c78361fc81c669fdb695e56f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/3d6b859b4fd03231306b756122dbaf14538aaa b/.git_backup/objects/8f/3d6b859b4fd03231306b756122dbaf14538aaa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/42587876aa2df5a71764e0f22f3dffa7b051d2 b/.git_backup/objects/8f/42587876aa2df5a71764e0f22f3dffa7b051d2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/42cd782c67f0e8442e60ccf523f1b9e37f1161 b/.git_backup/objects/8f/42cd782c67f0e8442e60ccf523f1b9e37f1161 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/589b4a61f145013ce735d46ba34a9b5e60072a b/.git_backup/objects/8f/589b4a61f145013ce735d46ba34a9b5e60072a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/5a8b9bc4e01b348dc8c552d34b23009685ef7c b/.git_backup/objects/8f/5a8b9bc4e01b348dc8c552d34b23009685ef7c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/6a53e10acd527b3f1b1bd82c53b6e1952af662 b/.git_backup/objects/8f/6a53e10acd527b3f1b1bd82c53b6e1952af662 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/6b38abfe72d07245d42c8daa46c30371c760e0 b/.git_backup/objects/8f/6b38abfe72d07245d42c8daa46c30371c760e0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/736b00d3d82d6ee2725305be70064b78ed09a2 b/.git_backup/objects/8f/736b00d3d82d6ee2725305be70064b78ed09a2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/7731af0e62a985dbe4c77771a80525848e793c b/.git_backup/objects/8f/7731af0e62a985dbe4c77771a80525848e793c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/7de42c0d059d14d6f30301e490a0f059b38000 b/.git_backup/objects/8f/7de42c0d059d14d6f30301e490a0f059b38000 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/7e8f46e9235b16891f8be6b756e7c84cd85fce b/.git_backup/objects/8f/7e8f46e9235b16891f8be6b756e7c84cd85fce deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/81352e6aecbf1bfea1fde1e53bc3ead3f1d162 b/.git_backup/objects/8f/81352e6aecbf1bfea1fde1e53bc3ead3f1d162 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/867812a5eb3454f31362237b90792d433a8c0b b/.git_backup/objects/8f/867812a5eb3454f31362237b90792d433a8c0b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/86b807f21c0b6cf3f06de97ac6cb6b61a9ccf1 b/.git_backup/objects/8f/86b807f21c0b6cf3f06de97ac6cb6b61a9ccf1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/9062e5254567bad6454d578d32112c3bd279fe b/.git_backup/objects/8f/9062e5254567bad6454d578d32112c3bd279fe deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/9170cf45b5bf2a26fdbaa76e354766f82d8044 b/.git_backup/objects/8f/9170cf45b5bf2a26fdbaa76e354766f82d8044 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/93bca1144391548a53fe138c1c9cfce787cb61 b/.git_backup/objects/8f/93bca1144391548a53fe138c1c9cfce787cb61 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/93c37337f77e4c36690e29a010fd824b78cddc b/.git_backup/objects/8f/93c37337f77e4c36690e29a010fd824b78cddc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/9d93e32fee466659d1e20d67df98d7be18ac19 b/.git_backup/objects/8f/9d93e32fee466659d1e20d67df98d7be18ac19 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/afed1b77051964ae02c72987e9a920639f93e0 b/.git_backup/objects/8f/afed1b77051964ae02c72987e9a920639f93e0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/b22e62200894f9693010ebf45fb23751f4e3a6 b/.git_backup/objects/8f/b22e62200894f9693010ebf45fb23751f4e3a6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/bcd6560a8fe2c8a07e3bd1441a81e0db9cb689 b/.git_backup/objects/8f/bcd6560a8fe2c8a07e3bd1441a81e0db9cb689 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/cf2c3e55ad2a2a5187d49ceffd48aff9ab81f9 b/.git_backup/objects/8f/cf2c3e55ad2a2a5187d49ceffd48aff9ab81f9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/cf87299deb85fe8d7d04cdc0107027abf5d590 b/.git_backup/objects/8f/cf87299deb85fe8d7d04cdc0107027abf5d590 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/d25f5882419ff4eba7b7a0042ff8e34fd4b0fd b/.git_backup/objects/8f/d25f5882419ff4eba7b7a0042ff8e34fd4b0fd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/d2bf934563947c8d4effa024672ccaa848a754 b/.git_backup/objects/8f/d2bf934563947c8d4effa024672ccaa848a754 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/d46c9b8e0dbab8716c33d349f55a494613ba8f b/.git_backup/objects/8f/d46c9b8e0dbab8716c33d349f55a494613ba8f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/dfc8f9d4e8e28087d1eeb1ec190abecf7341ce b/.git_backup/objects/8f/dfc8f9d4e8e28087d1eeb1ec190abecf7341ce deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/e1d8c39d7b607e976508fc7eab2820a56d1dbe b/.git_backup/objects/8f/e1d8c39d7b607e976508fc7eab2820a56d1dbe deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/e47ce9f72771ca9440ae7d7acf5f5c74265da6 b/.git_backup/objects/8f/e47ce9f72771ca9440ae7d7acf5f5c74265da6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/e8dd2704fb3d15e0ccd98f8c59caef778a57ca b/.git_backup/objects/8f/e8dd2704fb3d15e0ccd98f8c59caef778a57ca deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/ececd0885b4d7a989b25884ba1231d112c2d7e b/.git_backup/objects/8f/ececd0885b4d7a989b25884ba1231d112c2d7e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/efcd93cfffdd321042e1ed6a73b755a8a325a6 b/.git_backup/objects/8f/efcd93cfffdd321042e1ed6a73b755a8a325a6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/f5ade93e84fdf92b35044becca2d45a4770bd6 b/.git_backup/objects/8f/f5ade93e84fdf92b35044becca2d45a4770bd6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/f75d5c4a75ce6de112182d3184c50061975d6c b/.git_backup/objects/8f/f75d5c4a75ce6de112182d3184c50061975d6c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/8f/f7ee8365e7d396174bb3cae96bd7956162d756 b/.git_backup/objects/8f/f7ee8365e7d396174bb3cae96bd7956162d756 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/005fd11f40b2b9e193935daba66a14084b0437 b/.git_backup/objects/90/005fd11f40b2b9e193935daba66a14084b0437 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/065d20e1a59875af6e59a8e36c770fd708db9d b/.git_backup/objects/90/065d20e1a59875af6e59a8e36c770fd708db9d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/0ba856a068884a5ea04a56ba7b30219590d6e6 b/.git_backup/objects/90/0ba856a068884a5ea04a56ba7b30219590d6e6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/0ddc34cd604cd85f91592775b31ec328585f49 b/.git_backup/objects/90/0ddc34cd604cd85f91592775b31ec328585f49 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/0e25223a3ee36f2033f924404f2f22b24626f3 b/.git_backup/objects/90/0e25223a3ee36f2033f924404f2f22b24626f3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/0e42b98863195c0077fcd47db266af4ec81e7c b/.git_backup/objects/90/0e42b98863195c0077fcd47db266af4ec81e7c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/1bf4fb121e0f5609ebf05428c2301ce6a7aa90 b/.git_backup/objects/90/1bf4fb121e0f5609ebf05428c2301ce6a7aa90 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/3abe70f1dff404028b80b2ed8f6e3bab12caf9 b/.git_backup/objects/90/3abe70f1dff404028b80b2ed8f6e3bab12caf9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/4085abf1fe7627a04fe17757d72c6e9b0aa267 b/.git_backup/objects/90/4085abf1fe7627a04fe17757d72c6e9b0aa267 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/4466d0717c89e6d9ff846af723ca72b589846a b/.git_backup/objects/90/4466d0717c89e6d9ff846af723ca72b589846a deleted file mode 100644 index d8739412..00000000 Binary files a/.git_backup/objects/90/4466d0717c89e6d9ff846af723ca72b589846a and /dev/null differ diff --git a/.git_backup/objects/90/458b54da68877d269390155a911ceeb735d072 b/.git_backup/objects/90/458b54da68877d269390155a911ceeb735d072 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/4dbee9dd2fc01bf6b29e7b1149513ddda72ed1 b/.git_backup/objects/90/4dbee9dd2fc01bf6b29e7b1149513ddda72ed1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/4ee98d35df9a287654065991ec86fdd6409e93 b/.git_backup/objects/90/4ee98d35df9a287654065991ec86fdd6409e93 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/54eccfb277aba467e4ed661899c1c3d3691522 b/.git_backup/objects/90/54eccfb277aba467e4ed661899c1c3d3691522 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/54f81f298e6c00fbf00df45716d3ffa10400c3 b/.git_backup/objects/90/54f81f298e6c00fbf00df45716d3ffa10400c3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/5cbd5d37c1c6169d4413d6bfd79a004d20ec1d b/.git_backup/objects/90/5cbd5d37c1c6169d4413d6bfd79a004d20ec1d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/62049029e4d4a3b0f2855091ee3d024238afad b/.git_backup/objects/90/62049029e4d4a3b0f2855091ee3d024238afad deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/6891e4a828ec1ab7611b68f867a7ac1d783b5d b/.git_backup/objects/90/6891e4a828ec1ab7611b68f867a7ac1d783b5d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/6b2222415e66fbe5df1e4e8340882e931c3299 b/.git_backup/objects/90/6b2222415e66fbe5df1e4e8340882e931c3299 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/6b7be9d36c500a56b4d3c1fc65369d5f6defed b/.git_backup/objects/90/6b7be9d36c500a56b4d3c1fc65369d5f6defed deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/6d2fb92878cf18d1f75314b1429dc36002df29 b/.git_backup/objects/90/6d2fb92878cf18d1f75314b1429dc36002df29 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/6d35c4d0a41d31ad4901b48ddc3a82aade5ea0 b/.git_backup/objects/90/6d35c4d0a41d31ad4901b48ddc3a82aade5ea0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/6d4362907b87214f3402df95d4be378240dc80 b/.git_backup/objects/90/6d4362907b87214f3402df95d4be378240dc80 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/72f8ac63bcccee2fa15c9b72727b6fde268236 b/.git_backup/objects/90/72f8ac63bcccee2fa15c9b72727b6fde268236 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/730e4742ce3baa54070f6e1576f4c91bfdc5cf b/.git_backup/objects/90/730e4742ce3baa54070f6e1576f4c91bfdc5cf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/75930dc8f9a382c0bd7663e546fa2a93a4d257 b/.git_backup/objects/90/75930dc8f9a382c0bd7663e546fa2a93a4d257 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/8a313ca88efad78640abb88daeba6471148c44 b/.git_backup/objects/90/8a313ca88efad78640abb88daeba6471148c44 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/8d0a181feac587acc30111b836cc70d6def2fe b/.git_backup/objects/90/8d0a181feac587acc30111b836cc70d6def2fe deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/90298fddaa64e312d3ccfbe52a69b3d42c6c14 b/.git_backup/objects/90/90298fddaa64e312d3ccfbe52a69b3d42c6c14 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/95a0d498b15b82b8b5930498d061b137464c10 b/.git_backup/objects/90/95a0d498b15b82b8b5930498d061b137464c10 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/97bb08712d5bfccf172b0366573f503136228d b/.git_backup/objects/90/97bb08712d5bfccf172b0366573f503136228d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/99980995f40608a15f1363645856fa82df049e b/.git_backup/objects/90/99980995f40608a15f1363645856fa82df049e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/a08bae851802113a0f74fa9ef2c479706c1f36 b/.git_backup/objects/90/a08bae851802113a0f74fa9ef2c479706c1f36 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/a6465f9682c886363eea5327dac64bf623a6ff b/.git_backup/objects/90/a6465f9682c886363eea5327dac64bf623a6ff deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/ab17e6744a751c4d60e9b86e150cdbc3f6ff2e b/.git_backup/objects/90/ab17e6744a751c4d60e9b86e150cdbc3f6ff2e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/ad65c46046f0e4eaa3b62339e7d3ece5be9bdc b/.git_backup/objects/90/ad65c46046f0e4eaa3b62339e7d3ece5be9bdc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/bda69eaf13936093a7b21167f96dba6abf75d6 b/.git_backup/objects/90/bda69eaf13936093a7b21167f96dba6abf75d6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/c9b5e18bb90f7fb9c14508f53653ed0000c514 b/.git_backup/objects/90/c9b5e18bb90f7fb9c14508f53653ed0000c514 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/cae89a666319cb30be0ba687b44cdb421bfdff b/.git_backup/objects/90/cae89a666319cb30be0ba687b44cdb421bfdff deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/cafd93426f6fb2e8ad57b140b7ae163a67a4a4 b/.git_backup/objects/90/cafd93426f6fb2e8ad57b140b7ae163a67a4a4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/d1f4c384c7807c621eada8ed7685e5845c5c56 b/.git_backup/objects/90/d1f4c384c7807c621eada8ed7685e5845c5c56 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/d44faf1fdab855bc617ea7f5db3f161b09e9f0 b/.git_backup/objects/90/d44faf1fdab855bc617ea7f5db3f161b09e9f0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/e3c65c9052fc382277f23419818fcada27e25a b/.git_backup/objects/90/e3c65c9052fc382277f23419818fcada27e25a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/e9076a3b3f6cc3ad3b816482e3e9d9c32ca639 b/.git_backup/objects/90/e9076a3b3f6cc3ad3b816482e3e9d9c32ca639 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/f5f3f5b4f92bf4c3b01f2a525bf3d326e93712 b/.git_backup/objects/90/f5f3f5b4f92bf4c3b01f2a525bf3d326e93712 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/90/f697741021b34614ac2cce0e70548f7c4241d9 b/.git_backup/objects/90/f697741021b34614ac2cce0e70548f7c4241d9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/0307f557dc29b1dd2d84864bff0a1f4b695a64 b/.git_backup/objects/91/0307f557dc29b1dd2d84864bff0a1f4b695a64 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/0537bd33412dd9b70c4d07cedd41b519be7fb5 b/.git_backup/objects/91/0537bd33412dd9b70c4d07cedd41b519be7fb5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/0b43a2cd14860a238c8a0bd03c5a4b09cd9ab3 b/.git_backup/objects/91/0b43a2cd14860a238c8a0bd03c5a4b09cd9ab3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/10352d33c26809338a8202ea34f4bcb6553fb8 b/.git_backup/objects/91/10352d33c26809338a8202ea34f4bcb6553fb8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/17dce3092e3e6a39b67da9a7ad1dcfc3ded385 b/.git_backup/objects/91/17dce3092e3e6a39b67da9a7ad1dcfc3ded385 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/188e15b7d9ab3262dfbbe1a69eaa8128407c07 b/.git_backup/objects/91/188e15b7d9ab3262dfbbe1a69eaa8128407c07 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/18e0064982f26070eede94620fb0d8873dca2d b/.git_backup/objects/91/18e0064982f26070eede94620fb0d8873dca2d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/1af5e837e255cb2d05b02cc96178d9fa8f921b b/.git_backup/objects/91/1af5e837e255cb2d05b02cc96178d9fa8f921b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/1b650e90b54caf4bf0eaa04a148df8711f100b b/.git_backup/objects/91/1b650e90b54caf4bf0eaa04a148df8711f100b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/1cf07862acc5e9a2cc00bec226d44af1b58bc4 b/.git_backup/objects/91/1cf07862acc5e9a2cc00bec226d44af1b58bc4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/2580711376d413fb3fa8143f97462b305d1de9 b/.git_backup/objects/91/2580711376d413fb3fa8143f97462b305d1de9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/2c839c32e1f8c4a662083e4c6219119b39980a b/.git_backup/objects/91/2c839c32e1f8c4a662083e4c6219119b39980a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/330b0b541ccf7efc60276c0bd9ef14da1add9e b/.git_backup/objects/91/330b0b541ccf7efc60276c0bd9ef14da1add9e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/3440e9687d53e151e4337d38a142fbc6b4b77c b/.git_backup/objects/91/3440e9687d53e151e4337d38a142fbc6b4b77c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/34ec7a73beac6408baf0c57569fdd17433f6be b/.git_backup/objects/91/34ec7a73beac6408baf0c57569fdd17433f6be deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/34f1c5db951460d42cde0906b0824131dd9c7d b/.git_backup/objects/91/34f1c5db951460d42cde0906b0824131dd9c7d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/368dda78aad590837aa12023dee67e224709ba b/.git_backup/objects/91/368dda78aad590837aa12023dee67e224709ba deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/4a55d6e253db83f5bb392874d9015b11d98e99 b/.git_backup/objects/91/4a55d6e253db83f5bb392874d9015b11d98e99 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/4e4c27d65244512a2cea9e6fa87f73905c7648 b/.git_backup/objects/91/4e4c27d65244512a2cea9e6fa87f73905c7648 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/4f68b90ad370c72f77c6c0a1a459022995714a b/.git_backup/objects/91/4f68b90ad370c72f77c6c0a1a459022995714a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/505c9f6535288ab055a8599dd69ef7fdaa4ec5 b/.git_backup/objects/91/505c9f6535288ab055a8599dd69ef7fdaa4ec5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/5140f2026bef5914e5a303d8fd437a4fdbc66d b/.git_backup/objects/91/5140f2026bef5914e5a303d8fd437a4fdbc66d deleted file mode 100644 index 6c192540..00000000 Binary files a/.git_backup/objects/91/5140f2026bef5914e5a303d8fd437a4fdbc66d and /dev/null differ diff --git a/.git_backup/objects/91/558be0c2bf903b2364215ba26d5227d6126508 b/.git_backup/objects/91/558be0c2bf903b2364215ba26d5227d6126508 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/588d348d5f89af354209840062202d5b28c1df b/.git_backup/objects/91/588d348d5f89af354209840062202d5b28c1df deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/62eaad918d05ba130edb92d3fb1ce6eb4f4d92 b/.git_backup/objects/91/62eaad918d05ba130edb92d3fb1ce6eb4f4d92 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/6fd74f710f83408704d067265ee77a4b42ab51 b/.git_backup/objects/91/6fd74f710f83408704d067265ee77a4b42ab51 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/7571334548f9d681d48a4277144b48334dd18d b/.git_backup/objects/91/7571334548f9d681d48a4277144b48334dd18d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/7e07c93eada0d2d717b8c911fa75d5880646c8 b/.git_backup/objects/91/7e07c93eada0d2d717b8c911fa75d5880646c8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/7fa065b3c7feccdef5bc666a5109c855217260 b/.git_backup/objects/91/7fa065b3c7feccdef5bc666a5109c855217260 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/7fa157e087319c2be6b56115b6343d7981b9ef b/.git_backup/objects/91/7fa157e087319c2be6b56115b6343d7981b9ef deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/7fb6df4446eb91a72ab44416f15fd3f7557542 b/.git_backup/objects/91/7fb6df4446eb91a72ab44416f15fd3f7557542 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/83d36d52422af602d4b4028bf029077ab2d7f5 b/.git_backup/objects/91/83d36d52422af602d4b4028bf029077ab2d7f5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/8d4acdc5f57d93f5f4ec89f4f443a25627935d b/.git_backup/objects/91/8d4acdc5f57d93f5f4ec89f4f443a25627935d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/8f9957289055584bc4f606d56ed25f5463fae0 b/.git_backup/objects/91/8f9957289055584bc4f606d56ed25f5463fae0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/9723dc2ca581b4f95154d4192d8f732cc55a45 b/.git_backup/objects/91/9723dc2ca581b4f95154d4192d8f732cc55a45 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/9957d2ce576c6342272d67afe8d8ac34de4565 b/.git_backup/objects/91/9957d2ce576c6342272d67afe8d8ac34de4565 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/9c521a316d945f9dec68984f8a1bcdee40afcb b/.git_backup/objects/91/9c521a316d945f9dec68984f8a1bcdee40afcb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/a19ed6aec2abe3cc8e4bb52662e36f39e64794 b/.git_backup/objects/91/a19ed6aec2abe3cc8e4bb52662e36f39e64794 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/ac14f96e4cf183c99a0170d4ac3b4856764be1 b/.git_backup/objects/91/ac14f96e4cf183c99a0170d4ac3b4856764be1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/b5a4dbaaebc177191d3189f12e4e20d56ca0fa b/.git_backup/objects/91/b5a4dbaaebc177191d3189f12e4e20d56ca0fa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/b831bcbb6842903b3a7c5c08e49630e533044a b/.git_backup/objects/91/b831bcbb6842903b3a7c5c08e49630e533044a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/c246fc9ee2d408d7ed3dca3b7272125bc2f442 b/.git_backup/objects/91/c246fc9ee2d408d7ed3dca3b7272125bc2f442 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/c916a3a5d7949cc304532fe3fb2eac117ab2ef b/.git_backup/objects/91/c916a3a5d7949cc304532fe3fb2eac117ab2ef deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/ca551f97b4576c680711e826a1855fb944c872 b/.git_backup/objects/91/ca551f97b4576c680711e826a1855fb944c872 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/cd0db31c14e30d4c1e2e9f36382b7a5e022870 b/.git_backup/objects/91/cd0db31c14e30d4c1e2e9f36382b7a5e022870 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/d099333a0ba806938b18123e0dae29fff7f6c9 b/.git_backup/objects/91/d099333a0ba806938b18123e0dae29fff7f6c9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/d93b2885fc45043477637cf701cf59e358bd7b b/.git_backup/objects/91/d93b2885fc45043477637cf701cf59e358bd7b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/dc4bd5781055b96ed38c7132900ea02876477d b/.git_backup/objects/91/dc4bd5781055b96ed38c7132900ea02876477d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/df077961b6310b8e1c708b74003d5343bff6a8 b/.git_backup/objects/91/df077961b6310b8e1c708b74003d5343bff6a8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/ea0f39f0a2feb361f1b1ee84e0c35c06d20089 b/.git_backup/objects/91/ea0f39f0a2feb361f1b1ee84e0c35c06d20089 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/eadf3a53d95c74710bf35b3b8712c18626efb1 b/.git_backup/objects/91/eadf3a53d95c74710bf35b3b8712c18626efb1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/ed7cf9cfb57dd2d60c6ab7db0f68c831deabff b/.git_backup/objects/91/ed7cf9cfb57dd2d60c6ab7db0f68c831deabff deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/f686db1b4e900e0ee55c4aca46c299fdfa91aa b/.git_backup/objects/91/f686db1b4e900e0ee55c4aca46c299fdfa91aa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/f6f8bc2e234bafd484146986bdb289082c3588 b/.git_backup/objects/91/f6f8bc2e234bafd484146986bdb289082c3588 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/91/f8092f1b536999b78599c3e03daebe5487cb73 b/.git_backup/objects/91/f8092f1b536999b78599c3e03daebe5487cb73 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/03cf625d43a8e1051ab52a0786462b590a717a b/.git_backup/objects/92/03cf625d43a8e1051ab52a0786462b590a717a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/116d4747ee018734460236cde9cf95f9716418 b/.git_backup/objects/92/116d4747ee018734460236cde9cf95f9716418 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/16a3f5fdfacba9e91c93dc1052705054264f64 b/.git_backup/objects/92/16a3f5fdfacba9e91c93dc1052705054264f64 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/16d13bd42212bb38da2acea3c7bbfb5858b419 b/.git_backup/objects/92/16d13bd42212bb38da2acea3c7bbfb5858b419 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/1a68fd74fff06f8b9bc16bb5dab833cb162042 b/.git_backup/objects/92/1a68fd74fff06f8b9bc16bb5dab833cb162042 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/1e6d4202eefd652c0c31900c397992dca2f257 b/.git_backup/objects/92/1e6d4202eefd652c0c31900c397992dca2f257 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/26adced9df43db78385ddfffe847ac964290e3 b/.git_backup/objects/92/26adced9df43db78385ddfffe847ac964290e3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/28c3916eab57b3275c7786ab0572619044596c b/.git_backup/objects/92/28c3916eab57b3275c7786ab0572619044596c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/33ac51e2f3e04e2b6696835e23dd178e25cb0f b/.git_backup/objects/92/33ac51e2f3e04e2b6696835e23dd178e25cb0f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/381faf76ae0938b1fea0a30ed902d415b9b2d0 b/.git_backup/objects/92/381faf76ae0938b1fea0a30ed902d415b9b2d0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/399c160ecb75fbb1f9a5a7f2bba0fe90d84a54 b/.git_backup/objects/92/399c160ecb75fbb1f9a5a7f2bba0fe90d84a54 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/3a89b749862ef85b9420634e29e1f7c863113a b/.git_backup/objects/92/3a89b749862ef85b9420634e29e1f7c863113a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/4c993259b6b4986cad0ba2e7da8718201eeeca b/.git_backup/objects/92/4c993259b6b4986cad0ba2e7da8718201eeeca deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/4f32b5ac9ac360622623a13ebabcf92d159d54 b/.git_backup/objects/92/4f32b5ac9ac360622623a13ebabcf92d159d54 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/516a1609f10ad289b3792833b4c76cb1ed6a14 b/.git_backup/objects/92/516a1609f10ad289b3792833b4c76cb1ed6a14 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/575a96f88d2ae59a2d5f370cedcc9c7daaea2c b/.git_backup/objects/92/575a96f88d2ae59a2d5f370cedcc9c7daaea2c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/61874d565ac475cb78ea5d2a514d0962ccb809 b/.git_backup/objects/92/61874d565ac475cb78ea5d2a514d0962ccb809 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/63c6d7999de788707e973f1c96a2624c60d349 b/.git_backup/objects/92/63c6d7999de788707e973f1c96a2624c60d349 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/65fb7c2071ec0e66c657ad2ae42d5dd525fe97 b/.git_backup/objects/92/65fb7c2071ec0e66c657ad2ae42d5dd525fe97 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/66baa287e2f00d6f5291d3268de09ba850ee7c b/.git_backup/objects/92/66baa287e2f00d6f5291d3268de09ba850ee7c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/6823f2aecfc2f25442a8886eb285b27836df2a b/.git_backup/objects/92/6823f2aecfc2f25442a8886eb285b27836df2a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/6e1ab2be8d3d9c5e05d8001a4220054535b60d b/.git_backup/objects/92/6e1ab2be8d3d9c5e05d8001a4220054535b60d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/72dd7be44cd49beadbf1f6ede13ef10d7a3c2d b/.git_backup/objects/92/72dd7be44cd49beadbf1f6ede13ef10d7a3c2d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/73fedec0a2130f35e2e70da8c3ebddb6fe37f8 b/.git_backup/objects/92/73fedec0a2130f35e2e70da8c3ebddb6fe37f8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/7799bc6df34cd724490a89a56738bc363c2d32 b/.git_backup/objects/92/7799bc6df34cd724490a89a56738bc363c2d32 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/785f08dbec30a4db286fcb85b42d7221e2228e b/.git_backup/objects/92/785f08dbec30a4db286fcb85b42d7221e2228e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/795245103d036f1dac971c66d3b2d4f2cd1bd4 b/.git_backup/objects/92/795245103d036f1dac971c66d3b2d4f2cd1bd4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/79672476187eceb0a34c405d6f91a81119da04 b/.git_backup/objects/92/79672476187eceb0a34c405d6f91a81119da04 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/7ee1af1622c14c0d35bdc20660cfff77d6b6b7 b/.git_backup/objects/92/7ee1af1622c14c0d35bdc20660cfff77d6b6b7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/83c4d9e5efbedd7adb3cfd219f84db2d0d7af2 b/.git_backup/objects/92/83c4d9e5efbedd7adb3cfd219f84db2d0d7af2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/8ac13860923d1bb70a2ae076ff824fca4cc5c1 b/.git_backup/objects/92/8ac13860923d1bb70a2ae076ff824fca4cc5c1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/8b56c2069b213d83d7bd1e8aa8ffc3a0f0f39c b/.git_backup/objects/92/8b56c2069b213d83d7bd1e8aa8ffc3a0f0f39c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/8c1503c7d414a8a86bbf5a82c68d42cb089bd2 b/.git_backup/objects/92/8c1503c7d414a8a86bbf5a82c68d42cb089bd2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/914e514f761961f7d9f506aa6b3a6083aa0e70 b/.git_backup/objects/92/914e514f761961f7d9f506aa6b3a6083aa0e70 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/91e2bf80da23efad2ea996f65143e2e54ec45a b/.git_backup/objects/92/91e2bf80da23efad2ea996f65143e2e54ec45a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/94b3fc3319b78b59d5637acdf3fd75737cd836 b/.git_backup/objects/92/94b3fc3319b78b59d5637acdf3fd75737cd836 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/95392a9e35fc7c0775a983c073ac871231c434 b/.git_backup/objects/92/95392a9e35fc7c0775a983c073ac871231c434 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/959b794b0a07902897bb0a59d59a4f436ec169 b/.git_backup/objects/92/959b794b0a07902897bb0a59d59a4f436ec169 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/a1647ba43708084ce85e0b986cb9d71329b842 b/.git_backup/objects/92/a1647ba43708084ce85e0b986cb9d71329b842 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/acdd95675978ef8265e261f770749eb68d6f7c b/.git_backup/objects/92/acdd95675978ef8265e261f770749eb68d6f7c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/adb51db3b1c5834ee610532de1403a70aed6a3 b/.git_backup/objects/92/adb51db3b1c5834ee610532de1403a70aed6a3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/b1ec26c48bd3ab68c97a60b00d8085a72a94e8 b/.git_backup/objects/92/b1ec26c48bd3ab68c97a60b00d8085a72a94e8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/b55d370c8ca0074f05dcdca1374895ce57d58a b/.git_backup/objects/92/b55d370c8ca0074f05dcdca1374895ce57d58a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/b8c864f16191a9ad7988215c18179102ae73a3 b/.git_backup/objects/92/b8c864f16191a9ad7988215c18179102ae73a3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/bd93179c5cd3cb377c8b9f1e9d22d13fd7d003 b/.git_backup/objects/92/bd93179c5cd3cb377c8b9f1e9d22d13fd7d003 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/be7b9a1dfe94fbd4808994723fbba668a683f8 b/.git_backup/objects/92/be7b9a1dfe94fbd4808994723fbba668a683f8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/c2156d814a96e3b8167dedb2e0590cdbe5fac6 b/.git_backup/objects/92/c2156d814a96e3b8167dedb2e0590cdbe5fac6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/c4c6a193873ce09629f6cfaa2dabc4f14ecb03 b/.git_backup/objects/92/c4c6a193873ce09629f6cfaa2dabc4f14ecb03 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/c5a66ce51ac88d336e696c54565941ed90a958 b/.git_backup/objects/92/c5a66ce51ac88d336e696c54565941ed90a958 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/c70c7ebd616d98ccac2f4c6b063967ae23d298 b/.git_backup/objects/92/c70c7ebd616d98ccac2f4c6b063967ae23d298 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/d5afb897e2741ec65452269daf18390e51666b b/.git_backup/objects/92/d5afb897e2741ec65452269daf18390e51666b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/d795b15aac4d9166e4a5fbb8cc1bb6fc3abe0e b/.git_backup/objects/92/d795b15aac4d9166e4a5fbb8cc1bb6fc3abe0e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/e5e709a9b2e74fb16d721dc50602c778c1acdb b/.git_backup/objects/92/e5e709a9b2e74fb16d721dc50602c778c1acdb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/ef388d73fde17a2bd92f275d3f0f845cc56948 b/.git_backup/objects/92/ef388d73fde17a2bd92f275d3f0f845cc56948 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/ef51941171a7d04b48ddd4725f61f633335450 b/.git_backup/objects/92/ef51941171a7d04b48ddd4725f61f633335450 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/f3f71442c55ded239e6c419706a623e901be3f b/.git_backup/objects/92/f3f71442c55ded239e6c419706a623e901be3f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/f82a18fcecd62891e9bc16019eedc537dc1808 b/.git_backup/objects/92/f82a18fcecd62891e9bc16019eedc537dc1808 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/92/fa6004853df1605304d65111020eb5407a72ef b/.git_backup/objects/92/fa6004853df1605304d65111020eb5407a72ef deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/93/040ac414ce3e087b2277e522bee1af0df5ecfd b/.git_backup/objects/93/040ac414ce3e087b2277e522bee1af0df5ecfd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/93/0d4c6005ea87c498711bd8facfc4981bfed3fe b/.git_backup/objects/93/0d4c6005ea87c498711bd8facfc4981bfed3fe deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/93/0d890ee91d4dc1aa4cd311fd3e3cfbd6fad713 b/.git_backup/objects/93/0d890ee91d4dc1aa4cd311fd3e3cfbd6fad713 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/93/0f1c243c7ede6f66aadfca77248dc03d0ff036 b/.git_backup/objects/93/0f1c243c7ede6f66aadfca77248dc03d0ff036 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/93/0fac273ad22403681473196faa3f3d84c55b91 b/.git_backup/objects/93/0fac273ad22403681473196faa3f3d84c55b91 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/93/1419954d999b3a4b718fe4378af1b60e468a44 b/.git_backup/objects/93/1419954d999b3a4b718fe4378af1b60e468a44 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/93/1caef95039da520a2aaca6358e0ce901fb6d46 b/.git_backup/objects/93/1caef95039da520a2aaca6358e0ce901fb6d46 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/93/24ce2af66079172ad4080c782ed08790121f4a b/.git_backup/objects/93/24ce2af66079172ad4080c782ed08790121f4a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/93/2b050fb1a0a0f888c4817b62746a53560ddda7 b/.git_backup/objects/93/2b050fb1a0a0f888c4817b62746a53560ddda7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/93/2bb1dec1c8d972975df7451a1e22a85f47dd28 b/.git_backup/objects/93/2bb1dec1c8d972975df7451a1e22a85f47dd28 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/93/44016468f2ec910d642e4b5b55ac4abe74570e b/.git_backup/objects/93/44016468f2ec910d642e4b5b55ac4abe74570e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/93/447148a3ec5b1481142dde260004b77b925161 b/.git_backup/objects/93/447148a3ec5b1481142dde260004b77b925161 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/93/4e95b586ffd3407f237edb1df12605780103b9 b/.git_backup/objects/93/4e95b586ffd3407f237edb1df12605780103b9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/93/51127d15cbfe0c426094ce585817eb5265caf6 b/.git_backup/objects/93/51127d15cbfe0c426094ce585817eb5265caf6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/93/54c22b2f6bf4643cc8dc699fb21576f253da9b b/.git_backup/objects/93/54c22b2f6bf4643cc8dc699fb21576f253da9b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/93/59c8485985e5f4637ce2bc9b6f53eb5c7e7067 b/.git_backup/objects/93/59c8485985e5f4637ce2bc9b6f53eb5c7e7067 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/93/5dfaa7a8e04491e3935238364180850e7871bd b/.git_backup/objects/93/5dfaa7a8e04491e3935238364180850e7871bd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/93/6a4c34c49d5984e3f9f6f25105ffb951b09849 b/.git_backup/objects/93/6a4c34c49d5984e3f9f6f25105ffb951b09849 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/93/6c1f7bc9aef28179c4d7527e1ec2214441b777 b/.git_backup/objects/93/6c1f7bc9aef28179c4d7527e1ec2214441b777 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/93/76c602ba98d236edb85c2869b25de965fe7aba b/.git_backup/objects/93/76c602ba98d236edb85c2869b25de965fe7aba deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/93/7866b54c874e1db7ea193e24f26ac0faf5f627 b/.git_backup/objects/93/7866b54c874e1db7ea193e24f26ac0faf5f627 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/93/797525df6fcb4cc4660c190dbd7631d3185a77 b/.git_backup/objects/93/797525df6fcb4cc4660c190dbd7631d3185a77 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/93/7d8bc723bdc5711a053388268fc6bff5050047 b/.git_backup/objects/93/7d8bc723bdc5711a053388268fc6bff5050047 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/93/88e3046b9d7ffa86a9709bfecf594f0d2079af b/.git_backup/objects/93/88e3046b9d7ffa86a9709bfecf594f0d2079af deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/93/90d164e949e1e72175e922fc36d0c7d0be0bcd b/.git_backup/objects/93/90d164e949e1e72175e922fc36d0c7d0be0bcd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/93/943de3896c135dde00080d30fd6cbe55a86e5d b/.git_backup/objects/93/943de3896c135dde00080d30fd6cbe55a86e5d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/93/987294cf5b06580e3682f6849ef5293eae5292 b/.git_backup/objects/93/987294cf5b06580e3682f6849ef5293eae5292 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/93/9b836a11556527631367a70b243b3543eade9d b/.git_backup/objects/93/9b836a11556527631367a70b243b3543eade9d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/93/b248c3faf415c42d33549f4afdda3e1d8bf233 b/.git_backup/objects/93/b248c3faf415c42d33549f4afdda3e1d8bf233 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/93/b8bc97721aa13f7f138f38c75c2705d8274aa5 b/.git_backup/objects/93/b8bc97721aa13f7f138f38c75c2705d8274aa5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/93/ba16c5fda2222df59fe71bccf76d560eb06e8c b/.git_backup/objects/93/ba16c5fda2222df59fe71bccf76d560eb06e8c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/93/c10f8f01966b97fd498b85377db6df5c941769 b/.git_backup/objects/93/c10f8f01966b97fd498b85377db6df5c941769 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/93/c513f2248c1e7c287df0995054645ee626ccbc b/.git_backup/objects/93/c513f2248c1e7c287df0995054645ee626ccbc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/93/ccf5ee81affee79f5309c8aa013ac07d8c2a91 b/.git_backup/objects/93/ccf5ee81affee79f5309c8aa013ac07d8c2a91 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/93/d1568bd4d5d63281b798b09cedbafdfaa158ee b/.git_backup/objects/93/d1568bd4d5d63281b798b09cedbafdfaa158ee deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/93/d5131f585438a6c1cabbe79022c2b584457838 b/.git_backup/objects/93/d5131f585438a6c1cabbe79022c2b584457838 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/93/daeec300ee18c0eb540401959e4dc9283ffc31 b/.git_backup/objects/93/daeec300ee18c0eb540401959e4dc9283ffc31 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/93/df98d45f26e78bc191a16b2dc860ff73ee937d b/.git_backup/objects/93/df98d45f26e78bc191a16b2dc860ff73ee937d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/93/e83fe45e4ac5eaf31bfe3d682d595817aa7f12 b/.git_backup/objects/93/e83fe45e4ac5eaf31bfe3d682d595817aa7f12 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/93/f2ad07bb8ae938acb235ca3979084584ce3ec1 b/.git_backup/objects/93/f2ad07bb8ae938acb235ca3979084584ce3ec1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/0d0781040acb95284bcc7720a504504c1cee24 b/.git_backup/objects/94/0d0781040acb95284bcc7720a504504c1cee24 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/0dfea3a791fd5ec63365598211f1b55aae32d7 b/.git_backup/objects/94/0dfea3a791fd5ec63365598211f1b55aae32d7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/0eed5e38d515c90efc2a288eda6e7a43f09eef b/.git_backup/objects/94/0eed5e38d515c90efc2a288eda6e7a43f09eef deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/112ff0ac41a185bd2b1afa44fab13c54795ece b/.git_backup/objects/94/112ff0ac41a185bd2b1afa44fab13c54795ece deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/1ba86c6131905b94d2e4ba0d48dac2d0347e82 b/.git_backup/objects/94/1ba86c6131905b94d2e4ba0d48dac2d0347e82 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/1c59592dbbd9e6389bbfc0533242dcd9ab56eb b/.git_backup/objects/94/1c59592dbbd9e6389bbfc0533242dcd9ab56eb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/2387cef5d75f299a769b1eb43b6c7679e7a3a0 b/.git_backup/objects/94/2387cef5d75f299a769b1eb43b6c7679e7a3a0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/255610ca35c1217054f4beb2eedf85c5083a21 b/.git_backup/objects/94/255610ca35c1217054f4beb2eedf85c5083a21 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/26baceafde2abd4846260d553227c785683be4 b/.git_backup/objects/94/26baceafde2abd4846260d553227c785683be4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/2ce9dd025b20f74e32b7c2b9ee937a8f32f881 b/.git_backup/objects/94/2ce9dd025b20f74e32b7c2b9ee937a8f32f881 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/3637631f01fd757c40caca10e2aa439f210b76 b/.git_backup/objects/94/3637631f01fd757c40caca10e2aa439f210b76 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/38a6a829fa325b759d8cbe46c6dbe96e514baf b/.git_backup/objects/94/38a6a829fa325b759d8cbe46c6dbe96e514baf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/4205c66c3e6b14aabe3b0c7aae6e8c95439a8d b/.git_backup/objects/94/4205c66c3e6b14aabe3b0c7aae6e8c95439a8d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/4741819894687e0251c1c97fe28a3082f64795 b/.git_backup/objects/94/4741819894687e0251c1c97fe28a3082f64795 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/4898627e0d4a73728ad9d5e871091bb97859fa b/.git_backup/objects/94/4898627e0d4a73728ad9d5e871091bb97859fa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/49f897596154821425508718870eba48b209ff b/.git_backup/objects/94/49f897596154821425508718870eba48b209ff deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/537a23b682c6959906f487de0aca115c96ee2a b/.git_backup/objects/94/537a23b682c6959906f487de0aca115c96ee2a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/5b24bf35422152a5faba73ed054ab78fda1bdf b/.git_backup/objects/94/5b24bf35422152a5faba73ed054ab78fda1bdf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/61664ebbcf9b7f993896b964e9b368b26ab660 b/.git_backup/objects/94/61664ebbcf9b7f993896b964e9b368b26ab660 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/6948350c9b4669cb18d3edfce4c0854ec2fd7e b/.git_backup/objects/94/6948350c9b4669cb18d3edfce4c0854ec2fd7e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/6db6be8e2a55b36537d1bcf490167a3de29c3d b/.git_backup/objects/94/6db6be8e2a55b36537d1bcf490167a3de29c3d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/72fe918a4443bda026516e6013f38964516e4f b/.git_backup/objects/94/72fe918a4443bda026516e6013f38964516e4f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/79203086e8184bb8deb692473e5bba6665420a b/.git_backup/objects/94/79203086e8184bb8deb692473e5bba6665420a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/840b363f9fd4ee31b2aa022779f0996d3fbbf7 b/.git_backup/objects/94/840b363f9fd4ee31b2aa022779f0996d3fbbf7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/90b307666d1b5e8bbc973c19f169b6bc5af69c b/.git_backup/objects/94/90b307666d1b5e8bbc973c19f169b6bc5af69c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/924c8a6080417d286ff805d3acf62b2b7133d3 b/.git_backup/objects/94/924c8a6080417d286ff805d3acf62b2b7133d3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/94fecdc49b20e366c04c3b485492a82514aebc b/.git_backup/objects/94/94fecdc49b20e366c04c3b485492a82514aebc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/99b02b57b9c02f1028fdfe2406a8ea711fe29d b/.git_backup/objects/94/99b02b57b9c02f1028fdfe2406a8ea711fe29d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/9b043dbf5df47483eee9a57cbebf538c4e98cb b/.git_backup/objects/94/9b043dbf5df47483eee9a57cbebf538c4e98cb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/9c1c8d434343a3ff8e8dc79be4ed572be665a8 b/.git_backup/objects/94/9c1c8d434343a3ff8e8dc79be4ed572be665a8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/9dc4a2098b3704e17c031a2b268822d42dc53c b/.git_backup/objects/94/9dc4a2098b3704e17c031a2b268822d42dc53c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/a5470b4741cbf9d695486cce157ac101de8983 b/.git_backup/objects/94/a5470b4741cbf9d695486cce157ac101de8983 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/ad6f4f03bb16433a09546054e89c722858b7fb b/.git_backup/objects/94/ad6f4f03bb16433a09546054e89c722858b7fb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/b2ac8c62515e2e361bc03a10b5027b2fd24e62 b/.git_backup/objects/94/b2ac8c62515e2e361bc03a10b5027b2fd24e62 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/b6aab078105c34e6478e3517c1bf8246931a1a b/.git_backup/objects/94/b6aab078105c34e6478e3517c1bf8246931a1a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/b6cfbaacbf4bf6c87dd3196990bebe11f39be8 b/.git_backup/objects/94/b6cfbaacbf4bf6c87dd3196990bebe11f39be8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/ba6b4e896a6a0b46d6f30b654df57e845e99bd b/.git_backup/objects/94/ba6b4e896a6a0b46d6f30b654df57e845e99bd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/c75e1a05b47922945c5233e90e9f936b108b66 b/.git_backup/objects/94/c75e1a05b47922945c5233e90e9f936b108b66 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/cbd9e1dd834d8f6cab8eba57dbda73bb5b461d b/.git_backup/objects/94/cbd9e1dd834d8f6cab8eba57dbda73bb5b461d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/cfd004491b24c5fe0eca5bcff683e1b2f8d5db b/.git_backup/objects/94/cfd004491b24c5fe0eca5bcff683e1b2f8d5db deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/d5ac91d6cb21cf3c2f1bed8b7f8fdb02ea4432 b/.git_backup/objects/94/d5ac91d6cb21cf3c2f1bed8b7f8fdb02ea4432 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/d7814151a251f7a6568105c852ffab5cca2a29 b/.git_backup/objects/94/d7814151a251f7a6568105c852ffab5cca2a29 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/d9551fb8fd1ae61ccf6e0e03443d0575ac7ff9 b/.git_backup/objects/94/d9551fb8fd1ae61ccf6e0e03443d0575ac7ff9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/e31a072a4f7669698310812f0a0257178e4157 b/.git_backup/objects/94/e31a072a4f7669698310812f0a0257178e4157 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/ec9f7adbe8c5b194ff581d110c5e55f6002f3f b/.git_backup/objects/94/ec9f7adbe8c5b194ff581d110c5e55f6002f3f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/ecc6e63b3b0dd5ad7397bf8ddae3646b0174ed b/.git_backup/objects/94/ecc6e63b3b0dd5ad7397bf8ddae3646b0174ed deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/f763f7d90ba03233b0ced8bf360d614eca354a b/.git_backup/objects/94/f763f7d90ba03233b0ced8bf360d614eca354a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/faec1a9d9e2ab752df28d335c0bf5dbf90aedc b/.git_backup/objects/94/faec1a9d9e2ab752df28d335c0bf5dbf90aedc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/94/fcf550c0f7ce51f3ca7e74f4164b66ef7a7912 b/.git_backup/objects/94/fcf550c0f7ce51f3ca7e74f4164b66ef7a7912 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/01047415e9ede9de97e3fc176b0341f3475252 b/.git_backup/objects/95/01047415e9ede9de97e3fc176b0341f3475252 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/08b38cb88191d1a6c426b39002612e7b87bead b/.git_backup/objects/95/08b38cb88191d1a6c426b39002612e7b87bead deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/10875c9fad7fea57244e344ab54bf033f3052d b/.git_backup/objects/95/10875c9fad7fea57244e344ab54bf033f3052d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/157a1f78c26829ffbe1bd2463f7735b636d16f b/.git_backup/objects/95/157a1f78c26829ffbe1bd2463f7735b636d16f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/15a7cc10c8c3271405ec78dff74f6effcba881 b/.git_backup/objects/95/15a7cc10c8c3271405ec78dff74f6effcba881 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/160ae2d28f831f39cb5af52b10d701842472f0 b/.git_backup/objects/95/160ae2d28f831f39cb5af52b10d701842472f0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/1703e04d5a3b8289853cd960561ad0c0b1d21c b/.git_backup/objects/95/1703e04d5a3b8289853cd960561ad0c0b1d21c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/1ce5fb8c125892a8e127a6f8358b2415b7df90 b/.git_backup/objects/95/1ce5fb8c125892a8e127a6f8358b2415b7df90 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/1d5817c9e6d81c94a173a0d9fead7f1f143331 b/.git_backup/objects/95/1d5817c9e6d81c94a173a0d9fead7f1f143331 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/21ae77c4078f9d158e77e947eb4f314536daf1 b/.git_backup/objects/95/21ae77c4078f9d158e77e947eb4f314536daf1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/2681ed46cb60e59baf76a2c43b49d5f67255d1 b/.git_backup/objects/95/2681ed46cb60e59baf76a2c43b49d5f67255d1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/27ded6b19181ce5badb735b3b6fa90cbf8b691 b/.git_backup/objects/95/27ded6b19181ce5badb735b3b6fa90cbf8b691 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/2e335f1c2ec6481f3b3925e19b1ea7af6a732f b/.git_backup/objects/95/2e335f1c2ec6481f3b3925e19b1ea7af6a732f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/2f7177a165e1411899fa3383a2f401ed86300c b/.git_backup/objects/95/2f7177a165e1411899fa3383a2f401ed86300c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/3164dbc3ad6638c056d97eca7e65dccc3b2d54 b/.git_backup/objects/95/3164dbc3ad6638c056d97eca7e65dccc3b2d54 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/43aeedcf8e6830c5e1160983abb4d226e7c987 b/.git_backup/objects/95/43aeedcf8e6830c5e1160983abb4d226e7c987 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/446dd5488651afe65e7d414239564b5070c0ef b/.git_backup/objects/95/446dd5488651afe65e7d414239564b5070c0ef deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/4913164dc61e48260b890bf840aff686cf2a08 b/.git_backup/objects/95/4913164dc61e48260b890bf840aff686cf2a08 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/49adcb657569ea304592a4070ceecb4550a4db b/.git_backup/objects/95/49adcb657569ea304592a4070ceecb4550a4db deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/4e39beb8156b460ca904ff66261d8f2fc338cb b/.git_backup/objects/95/4e39beb8156b460ca904ff66261d8f2fc338cb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/50b7eefda892c33da8db8653f20124032b8ac0 b/.git_backup/objects/95/50b7eefda892c33da8db8653f20124032b8ac0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/52579cf4e63b6d891bb59801b7dc2b9936742c b/.git_backup/objects/95/52579cf4e63b6d891bb59801b7dc2b9936742c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/544964ee35c583c29f878f79ddff19ec91f909 b/.git_backup/objects/95/544964ee35c583c29f878f79ddff19ec91f909 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/5cb88a02e661e38e4f8eb1fc7816a65a0191a0 b/.git_backup/objects/95/5cb88a02e661e38e4f8eb1fc7816a65a0191a0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/5dfdeb5007e7ac59318df1022375ca56cddee9 b/.git_backup/objects/95/5dfdeb5007e7ac59318df1022375ca56cddee9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/5e1be31838c4a4f74160df92bd8feef42af93e b/.git_backup/objects/95/5e1be31838c4a4f74160df92bd8feef42af93e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/6951a6f2f3d14edd05f82c664eedb48f418424 b/.git_backup/objects/95/6951a6f2f3d14edd05f82c664eedb48f418424 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/76fc04b58d9e8642acdbc68db15d2b287c65be b/.git_backup/objects/95/76fc04b58d9e8642acdbc68db15d2b287c65be deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/808eee15c21725d4c7b2ce913a435ef180e5f7 b/.git_backup/objects/95/808eee15c21725d4c7b2ce913a435ef180e5f7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/8152e377cac279491c328bd72ca82148bb8d43 b/.git_backup/objects/95/8152e377cac279491c328bd72ca82148bb8d43 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/82c86166e33287b259bdac0a35e2777d0071a4 b/.git_backup/objects/95/82c86166e33287b259bdac0a35e2777d0071a4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/82fa730f121634348a79c1a8b0cc2df99c616f b/.git_backup/objects/95/82fa730f121634348a79c1a8b0cc2df99c616f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/8385a7752684ac8060998d0d01d977eb89cd9a b/.git_backup/objects/95/8385a7752684ac8060998d0d01d977eb89cd9a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/88b3b780159a2a2d23c7f84a4404ec350e2b65 b/.git_backup/objects/95/88b3b780159a2a2d23c7f84a4404ec350e2b65 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/9098d2a9cdd6140758843e059d4ca529b14279 b/.git_backup/objects/95/9098d2a9cdd6140758843e059d4ca529b14279 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/9cc8cd26f8a7b10a70e0f93bf3b3c9bbc680d2 b/.git_backup/objects/95/9cc8cd26f8a7b10a70e0f93bf3b3c9bbc680d2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/9d83a55d4f38afdc03bc09114f9a254e4293f9 b/.git_backup/objects/95/9d83a55d4f38afdc03bc09114f9a254e4293f9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/9f377ef43e0cef52490d413dfa63988fd2cd5e b/.git_backup/objects/95/9f377ef43e0cef52490d413dfa63988fd2cd5e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/a9de9657f5b8b15aacb6e05c085c7e11bb8f55 b/.git_backup/objects/95/a9de9657f5b8b15aacb6e05c085c7e11bb8f55 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/afc70c1e70956a7589e2cff02c35801c2cdda0 b/.git_backup/objects/95/afc70c1e70956a7589e2cff02c35801c2cdda0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/b0f0de9efb2eea9acfcc9a51aa6ccf64dc97a3 b/.git_backup/objects/95/b0f0de9efb2eea9acfcc9a51aa6ccf64dc97a3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/bbf94528f4961c3fd49ebece9b9d774c2b3168 b/.git_backup/objects/95/bbf94528f4961c3fd49ebece9b9d774c2b3168 deleted file mode 100644 index 90354c44..00000000 Binary files a/.git_backup/objects/95/bbf94528f4961c3fd49ebece9b9d774c2b3168 and /dev/null differ diff --git a/.git_backup/objects/95/c205d54814733b75742231f39ecc57db2bac53 b/.git_backup/objects/95/c205d54814733b75742231f39ecc57db2bac53 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/c46b82738e4a41ecd04052931cc0194dc17f61 b/.git_backup/objects/95/c46b82738e4a41ecd04052931cc0194dc17f61 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/c6cb5e73c35721437ba4e47854376259968d80 b/.git_backup/objects/95/c6cb5e73c35721437ba4e47854376259968d80 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/c9de91e99e678d9d98f8c69ad4c6d444a01bbf b/.git_backup/objects/95/c9de91e99e678d9d98f8c69ad4c6d444a01bbf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/cc9feb5009a21782714ddaee29280942d32d73 b/.git_backup/objects/95/cc9feb5009a21782714ddaee29280942d32d73 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/ce934b9c0b101f88447bed320fbfe43ad83828 b/.git_backup/objects/95/ce934b9c0b101f88447bed320fbfe43ad83828 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/d1401e49bbb9b2cf61b6901de3c49d7ef72948 b/.git_backup/objects/95/d1401e49bbb9b2cf61b6901de3c49d7ef72948 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/d330ef823aa2e12f7846bc63c0955b25df6029 b/.git_backup/objects/95/d330ef823aa2e12f7846bc63c0955b25df6029 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/d3f44b6196817923f455b78ec02bc9a17a967f b/.git_backup/objects/95/d3f44b6196817923f455b78ec02bc9a17a967f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/e1869658566aac3060562d8cd5a6b647887d1e b/.git_backup/objects/95/e1869658566aac3060562d8cd5a6b647887d1e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/e509c0143e14e6371ec3cd1433ffec50c297fc b/.git_backup/objects/95/e509c0143e14e6371ec3cd1433ffec50c297fc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/ef0eb7a025fe199b42b9a877a3dbb1301ba52b b/.git_backup/objects/95/ef0eb7a025fe199b42b9a877a3dbb1301ba52b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/f4cd15dfbad6066c1cfb4fb29df3bcbc888204 b/.git_backup/objects/95/f4cd15dfbad6066c1cfb4fb29df3bcbc888204 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/f73239e2cd40f7d658e24093febbc61a70f25a b/.git_backup/objects/95/f73239e2cd40f7d658e24093febbc61a70f25a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/95/f741289790c4fbf9b87bd9e7f92cb5b3da50a0 b/.git_backup/objects/95/f741289790c4fbf9b87bd9e7f92cb5b3da50a0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/06ac812e5c5559d855db98594b282367dcfd4a b/.git_backup/objects/96/06ac812e5c5559d855db98594b282367dcfd4a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/146b68c661d741e5921f8971ea6988e1ce3988 b/.git_backup/objects/96/146b68c661d741e5921f8971ea6988e1ce3988 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/199e73e73aafacd89e48cb2855a96d7a134e1d b/.git_backup/objects/96/199e73e73aafacd89e48cb2855a96d7a134e1d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/1bf4d7009426aa73071745bfeb5895372c6d0c b/.git_backup/objects/96/1bf4d7009426aa73071745bfeb5895372c6d0c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/2173c8d0a6906b59f2910c9cae759010534786 b/.git_backup/objects/96/2173c8d0a6906b59f2910c9cae759010534786 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/2c3521d47e17c64eeba65613183d6456916818 b/.git_backup/objects/96/2c3521d47e17c64eeba65613183d6456916818 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/30d49709ba5ef144524dc90b16cdaf2d3e48a8 b/.git_backup/objects/96/30d49709ba5ef144524dc90b16cdaf2d3e48a8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/39c899d58c19e821aafeca940a070394f00e60 b/.git_backup/objects/96/39c899d58c19e821aafeca940a070394f00e60 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/3eac530b9bc28d704d1bc410299c68e3216d4d b/.git_backup/objects/96/3eac530b9bc28d704d1bc410299c68e3216d4d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/43eb780dc227ff2e8d5f03d1877f98cffd0955 b/.git_backup/objects/96/43eb780dc227ff2e8d5f03d1877f98cffd0955 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/4b562a47aff5d394fc1cbf814fdf579f2927e5 b/.git_backup/objects/96/4b562a47aff5d394fc1cbf814fdf579f2927e5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/4cc82385502fd660c5be518afe4f201cd40e52 b/.git_backup/objects/96/4cc82385502fd660c5be518afe4f201cd40e52 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/605fd2009fb80512d68497b9957c5c83a30821 b/.git_backup/objects/96/605fd2009fb80512d68497b9957c5c83a30821 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/6a4a10c2957d04c5a02b98accb218c7994fb5c b/.git_backup/objects/96/6a4a10c2957d04c5a02b98accb218c7994fb5c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/6ae22cfecd6deb54b931747a432095ea54b94f b/.git_backup/objects/96/6ae22cfecd6deb54b931747a432095ea54b94f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/6ebc0e37d6104a8e0e1fefe9dc526f39409ce2 b/.git_backup/objects/96/6ebc0e37d6104a8e0e1fefe9dc526f39409ce2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/6fac68279b2c5d290cd77b5b9702cb93b1263d b/.git_backup/objects/96/6fac68279b2c5d290cd77b5b9702cb93b1263d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/7af6238316babe5b32e8a806f64f353c15686f b/.git_backup/objects/96/7af6238316babe5b32e8a806f64f353c15686f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/7b5d9b83a5a876ada3cdac27e010f191a56d5c b/.git_backup/objects/96/7b5d9b83a5a876ada3cdac27e010f191a56d5c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/7d66d3f51dc309cea7eb0ae469a9c425a50962 b/.git_backup/objects/96/7d66d3f51dc309cea7eb0ae469a9c425a50962 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/80b2878c6008a27c8fc9ae6966903ff936cc4a b/.git_backup/objects/96/80b2878c6008a27c8fc9ae6966903ff936cc4a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/8442a40f1d31d61bcb534359878f481339a906 b/.git_backup/objects/96/8442a40f1d31d61bcb534359878f481339a906 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/84546112078395082a111eb9c148ced0220408 b/.git_backup/objects/96/84546112078395082a111eb9c148ced0220408 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/87abfe9c20c91aae2b471ec31651814d627860 b/.git_backup/objects/96/87abfe9c20c91aae2b471ec31651814d627860 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/8813396a6784fd2822ec23bef3f4be934cae36 b/.git_backup/objects/96/8813396a6784fd2822ec23bef3f4be934cae36 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/8ad63eaceefcc43e57d5e6e74b539e19086feb b/.git_backup/objects/96/8ad63eaceefcc43e57d5e6e74b539e19086feb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/907df3c48ad86d107cdb2b31e28411e9c86dfd b/.git_backup/objects/96/907df3c48ad86d107cdb2b31e28411e9c86dfd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/9713f031feeda355d8b24162ec8e5220d141e9 b/.git_backup/objects/96/9713f031feeda355d8b24162ec8e5220d141e9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/9b7143dfff3bb817dbf70c54af8303c3b5822e b/.git_backup/objects/96/9b7143dfff3bb817dbf70c54af8303c3b5822e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/9f25bde5779cab11cadbd39a270347feaf61bf b/.git_backup/objects/96/9f25bde5779cab11cadbd39a270347feaf61bf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/af9f2d33d78593ec45d398f4333a562898ce68 b/.git_backup/objects/96/af9f2d33d78593ec45d398f4333a562898ce68 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/b8739316a812f934cba8996aec9f4b09f32945 b/.git_backup/objects/96/b8739316a812f934cba8996aec9f4b09f32945 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/bd4280f4da49414fa6a584fea1af5709cb7674 b/.git_backup/objects/96/bd4280f4da49414fa6a584fea1af5709cb7674 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/c0495f9cda90bfaa9ccde697601dae4e4d1988 b/.git_backup/objects/96/c0495f9cda90bfaa9ccde697601dae4e4d1988 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/c063062e9475eedf0be61c1c84077a9786b7bb b/.git_backup/objects/96/c063062e9475eedf0be61c1c84077a9786b7bb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/d814d0b830c4d6b5196eb384447a5222ea36a5 b/.git_backup/objects/96/d814d0b830c4d6b5196eb384447a5222ea36a5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/e1c63f13f662f9ec98058409a74bda01f72c49 b/.git_backup/objects/96/e1c63f13f662f9ec98058409a74bda01f72c49 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/e4e08a0ea506cf23fc950f7e08bfa51522b920 b/.git_backup/objects/96/e4e08a0ea506cf23fc950f7e08bfa51522b920 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/e75851e0f2b6848587bc6bd77bfae25227348f b/.git_backup/objects/96/e75851e0f2b6848587bc6bd77bfae25227348f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/ea15dfd2abbbd2721421c92cd9b544a8a9dba3 b/.git_backup/objects/96/ea15dfd2abbbd2721421c92cd9b544a8a9dba3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/ebfbff8c26d8a2cccf1709cd71e18b0f0de9fc b/.git_backup/objects/96/ebfbff8c26d8a2cccf1709cd71e18b0f0de9fc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/f2c5e263e75047457c933573a74b30c4953ee1 b/.git_backup/objects/96/f2c5e263e75047457c933573a74b30c4953ee1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/f5cd4a5afcb13226f9ce7a8a7d16e3f775cd3e b/.git_backup/objects/96/f5cd4a5afcb13226f9ce7a8a7d16e3f775cd3e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/96/f944a174b112663ec6802deff8757ec9da3c5b b/.git_backup/objects/96/f944a174b112663ec6802deff8757ec9da3c5b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/003c93c1e8e2a47996bccf87837f2ebcaaa3bf b/.git_backup/objects/97/003c93c1e8e2a47996bccf87837f2ebcaaa3bf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/00d766256d7c1f6b7ea2e59890e6c5222f6bab b/.git_backup/objects/97/00d766256d7c1f6b7ea2e59890e6c5222f6bab deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/0389abf8e040180a9c62ce88d74231160c989c b/.git_backup/objects/97/0389abf8e040180a9c62ce88d74231160c989c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/0570154a414506a44b8934f3d6fa262c5752d2 b/.git_backup/objects/97/0570154a414506a44b8934f3d6fa262c5752d2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/05e44ce1952cf21d0369b9679b06342fc7e778 b/.git_backup/objects/97/05e44ce1952cf21d0369b9679b06342fc7e778 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/10009aa82453081b0befe73b30ab9a257bc2f0 b/.git_backup/objects/97/10009aa82453081b0befe73b30ab9a257bc2f0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/13a27a2fa5b0e9b572168dcfec787fa6933bb1 b/.git_backup/objects/97/13a27a2fa5b0e9b572168dcfec787fa6933bb1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/1947883801ba5b44973414c91e9980b6f2b8ce b/.git_backup/objects/97/1947883801ba5b44973414c91e9980b6f2b8ce deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/1a447b84cae109dc6485802e80c575f7a454b9 b/.git_backup/objects/97/1a447b84cae109dc6485802e80c575f7a454b9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/1cee3c6b4b52ac39c4994da9fd79bf023eec76 b/.git_backup/objects/97/1cee3c6b4b52ac39c4994da9fd79bf023eec76 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/2261a6e982073fa763b14bc3c0b3d6094f3cc8 b/.git_backup/objects/97/2261a6e982073fa763b14bc3c0b3d6094f3cc8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/2655d0a1d225b30fe618d4b9ab19db8ebe8e78 b/.git_backup/objects/97/2655d0a1d225b30fe618d4b9ab19db8ebe8e78 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/33686ddb36b826ead4f4666d42311397fa6fec b/.git_backup/objects/97/33686ddb36b826ead4f4666d42311397fa6fec deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/39a2a75886abf6e44075f4abfb41bd68614086 b/.git_backup/objects/97/39a2a75886abf6e44075f4abfb41bd68614086 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/4bc0f4eadfc176ec1e91984fc0183757850239 b/.git_backup/objects/97/4bc0f4eadfc176ec1e91984fc0183757850239 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/4e7642c20d6aabe54d999ad6439e0c9bd29faf b/.git_backup/objects/97/4e7642c20d6aabe54d999ad6439e0c9bd29faf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/4ef2400062b8e916a9f6c651f62b59c3933eba b/.git_backup/objects/97/4ef2400062b8e916a9f6c651f62b59c3933eba deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/552ea9ddf1d844d37712be44460791b14b96f0 b/.git_backup/objects/97/552ea9ddf1d844d37712be44460791b14b96f0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/592aa39eb6ab420795c6ff24a8f421bba030fd b/.git_backup/objects/97/592aa39eb6ab420795c6ff24a8f421bba030fd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/5a31b873792c6afe59a23e5fef43b56ce7e46e b/.git_backup/objects/97/5a31b873792c6afe59a23e5fef43b56ce7e46e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/61b52c32fd14c30784654db79fd5e406a73c7b b/.git_backup/objects/97/61b52c32fd14c30784654db79fd5e406a73c7b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/66934f046514b3cccf4db66fbe59628da07644 b/.git_backup/objects/97/66934f046514b3cccf4db66fbe59628da07644 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/7258293a28b18c26eabf8684b7eed025624623 b/.git_backup/objects/97/7258293a28b18c26eabf8684b7eed025624623 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/738d51b5a0e82200de0f60a23704a1de012f6f b/.git_backup/objects/97/738d51b5a0e82200de0f60a23704a1de012f6f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/7456b69ed30977fbd614d2ba31cab1f8c72346 b/.git_backup/objects/97/7456b69ed30977fbd614d2ba31cab1f8c72346 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/776dd9f4f59d80bc55c1f8c9dec49df2711afb b/.git_backup/objects/97/776dd9f4f59d80bc55c1f8c9dec49df2711afb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/776e6dbeb9337ff5e8693ecadc6d0f0ce73226 b/.git_backup/objects/97/776e6dbeb9337ff5e8693ecadc6d0f0ce73226 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/7bc4caa75c1e76156fa97e2841a01332f6fa47 b/.git_backup/objects/97/7bc4caa75c1e76156fa97e2841a01332f6fa47 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/7d49a22f8b8e56d4257f4cefc3e9513daf0e46 b/.git_backup/objects/97/7d49a22f8b8e56d4257f4cefc3e9513daf0e46 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/82120c5768e6a2cb4b72fe64bcbbeb2855a37c b/.git_backup/objects/97/82120c5768e6a2cb4b72fe64bcbbeb2855a37c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/846b47b3543e480f9e671934d04f3f9ec4999d b/.git_backup/objects/97/846b47b3543e480f9e671934d04f3f9ec4999d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/8f3b46238c56ecc2b652472636783a034928a3 b/.git_backup/objects/97/8f3b46238c56ecc2b652472636783a034928a3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/915f5aae10c6e16aa384ca7d7bbe68175f41e8 b/.git_backup/objects/97/915f5aae10c6e16aa384ca7d7bbe68175f41e8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/94eab29aac795ce6affb7c2f49cae873201931 b/.git_backup/objects/97/94eab29aac795ce6affb7c2f49cae873201931 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/a81fc81288ac51a68a60c8ca3e103134c7c1ad b/.git_backup/objects/97/a81fc81288ac51a68a60c8ca3e103134c7c1ad deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/ac97b320eb64d73302debe04497645ce873f68 b/.git_backup/objects/97/ac97b320eb64d73302debe04497645ce873f68 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/ad8590a8650e5a7a48156059f7a56ec64d52b1 b/.git_backup/objects/97/ad8590a8650e5a7a48156059f7a56ec64d52b1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/aef1f1ac237e6ef97b1a1d026818d7b8ab9be9 b/.git_backup/objects/97/aef1f1ac237e6ef97b1a1d026818d7b8ab9be9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/b001249a9980997cfe8579daf725dd8df92efa b/.git_backup/objects/97/b001249a9980997cfe8579daf725dd8df92efa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/b0a7dc40ff87c5479246f34193435f99237246 b/.git_backup/objects/97/b0a7dc40ff87c5479246f34193435f99237246 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/c4cc932ada2dcaa865edc33b8670b4bcd62f8d b/.git_backup/objects/97/c4cc932ada2dcaa865edc33b8670b4bcd62f8d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/c5f88fc22480a45e919de73c4077c4415bdc85 b/.git_backup/objects/97/c5f88fc22480a45e919de73c4077c4415bdc85 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/c83753b8e84b890a03114a49db3b923f525518 b/.git_backup/objects/97/c83753b8e84b890a03114a49db3b923f525518 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/cad8183e589154f9bb897f29cfbe4f000cdeb8 b/.git_backup/objects/97/cad8183e589154f9bb897f29cfbe4f000cdeb8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/d2444b0ddb6770c40feab2d44e6eafd6344a5e b/.git_backup/objects/97/d2444b0ddb6770c40feab2d44e6eafd6344a5e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/d2a94445770e195b9fc73e904b920d5ff04104 b/.git_backup/objects/97/d2a94445770e195b9fc73e904b920d5ff04104 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/d8e7c66dbdb8e8d7ca39fb424bed0b2a2a4667 b/.git_backup/objects/97/d8e7c66dbdb8e8d7ca39fb424bed0b2a2a4667 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/db5cacad7354763ec06acc070b501b908fc5f6 b/.git_backup/objects/97/db5cacad7354763ec06acc070b501b908fc5f6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/e7c7f90e70769c115e219f2f99b6a460893521 b/.git_backup/objects/97/e7c7f90e70769c115e219f2f99b6a460893521 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/e8832a8de439371f99e57087be051dde43ee77 b/.git_backup/objects/97/e8832a8de439371f99e57087be051dde43ee77 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/e933e9821af1c59b561f0e02c768c0c2b111ad b/.git_backup/objects/97/e933e9821af1c59b561f0e02c768c0c2b111ad deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/edc3cdffdf7a9517a54da2f072caf16daece2d b/.git_backup/objects/97/edc3cdffdf7a9517a54da2f072caf16daece2d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/ee2f875b5c467811033e62cf0ac7c7861bbd35 b/.git_backup/objects/97/ee2f875b5c467811033e62cf0ac7c7861bbd35 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/ef54065f942e4bedc83f87405754548ad64780 b/.git_backup/objects/97/ef54065f942e4bedc83f87405754548ad64780 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/f1b0213d91975cb04430efb8b267e6483006ac b/.git_backup/objects/97/f1b0213d91975cb04430efb8b267e6483006ac deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/f365a9b090e2ca1779445c022be134583547d6 b/.git_backup/objects/97/f365a9b090e2ca1779445c022be134583547d6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/97/f3da2e5673c33f9e5c3c14bee2a6e1b0a82411 b/.git_backup/objects/97/f3da2e5673c33f9e5c3c14bee2a6e1b0a82411 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/035457c78706ae01c02273ae1ab458b4ca140d b/.git_backup/objects/98/035457c78706ae01c02273ae1ab458b4ca140d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/077a5b55af08001b582c025d0d44102292d380 b/.git_backup/objects/98/077a5b55af08001b582c025d0d44102292d380 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/1d1d438c3b0badca94cee9c85c36488666e3e3 b/.git_backup/objects/98/1d1d438c3b0badca94cee9c85c36488666e3e3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/1fd763c14f21949957a4833df47bb5b03b048e b/.git_backup/objects/98/1fd763c14f21949957a4833df47bb5b03b048e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/24a372a924a8efe7518618abb3b84fad62eeb4 b/.git_backup/objects/98/24a372a924a8efe7518618abb3b84fad62eeb4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/27292a425eedfab35038d3926d76967218b9ab b/.git_backup/objects/98/27292a425eedfab35038d3926d76967218b9ab deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/313d4c125307dbc5784b5a329c7d113183d3c8 b/.git_backup/objects/98/313d4c125307dbc5784b5a329c7d113183d3c8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/34dd500d62176eda8a4b68f4788cf344db1e55 b/.git_backup/objects/98/34dd500d62176eda8a4b68f4788cf344db1e55 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/3c14da4a1ed62fe127c23a6e053f6a09f03725 b/.git_backup/objects/98/3c14da4a1ed62fe127c23a6e053f6a09f03725 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/3dc9a4ae2044b1559a2268febb440302e775bc b/.git_backup/objects/98/3dc9a4ae2044b1559a2268febb440302e775bc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/4999fe1d4e4f98d48da738d7f2e75731fac2dd b/.git_backup/objects/98/4999fe1d4e4f98d48da738d7f2e75731fac2dd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/4ad7d7ddbf9969c31de888d30d391ee2e53746 b/.git_backup/objects/98/4ad7d7ddbf9969c31de888d30d391ee2e53746 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/4f9ad3f984053e3fc51062d02a866d5d6b813b b/.git_backup/objects/98/4f9ad3f984053e3fc51062d02a866d5d6b813b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/50d80c4a519aabd12dae891bc2deffce91fa41 b/.git_backup/objects/98/50d80c4a519aabd12dae891bc2deffce91fa41 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/50de37cf86af622b759625c15e6b1a9477ce47 b/.git_backup/objects/98/50de37cf86af622b759625c15e6b1a9477ce47 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/5163ebdb47c5627eb6c72f42df949d086f3a76 b/.git_backup/objects/98/5163ebdb47c5627eb6c72f42df949d086f3a76 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/540b053e76c1360a1b4e0782a22e44f4f6dfc1 b/.git_backup/objects/98/540b053e76c1360a1b4e0782a22e44f4f6dfc1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/560d7e28b9a86f358977d847fa1158131ac8fe b/.git_backup/objects/98/560d7e28b9a86f358977d847fa1158131ac8fe deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/56c84a6dabd702cb2899764cd6519f2bbe7cf2 b/.git_backup/objects/98/56c84a6dabd702cb2899764cd6519f2bbe7cf2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/5842b284270bcd52855029f13d3da19d718349 b/.git_backup/objects/98/5842b284270bcd52855029f13d3da19d718349 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/601cb62881f99345e3266d9b2fecb1769db67f b/.git_backup/objects/98/601cb62881f99345e3266d9b2fecb1769db67f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/64f46d5e1fe3d6b1e56754a1c50e9e41140db5 b/.git_backup/objects/98/64f46d5e1fe3d6b1e56754a1c50e9e41140db5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/64f7358018e408370df568f8c9b44edbf47a5d b/.git_backup/objects/98/64f7358018e408370df568f8c9b44edbf47a5d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/662b7e48dfc21b22267bfdc7cd31c40b3a606a b/.git_backup/objects/98/662b7e48dfc21b22267bfdc7cd31c40b3a606a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/67a2ca6a9fee7284bd21f22ca7af801d0cbcd9 b/.git_backup/objects/98/67a2ca6a9fee7284bd21f22ca7af801d0cbcd9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/7f7d53afacc0047c2e0701696a91ac1ca86f49 b/.git_backup/objects/98/7f7d53afacc0047c2e0701696a91ac1ca86f49 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/8f78c5ae843bb8b6edb779b7dcf87a024dc21d b/.git_backup/objects/98/8f78c5ae843bb8b6edb779b7dcf87a024dc21d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/8fc249fd525555c76f57d58371c9eead52e889 b/.git_backup/objects/98/8fc249fd525555c76f57d58371c9eead52e889 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/92671f5c18ca5aacde72f653a31108afeac7bb b/.git_backup/objects/98/92671f5c18ca5aacde72f653a31108afeac7bb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/92a694071e041f2b8d0708d0255390ffbf5548 b/.git_backup/objects/98/92a694071e041f2b8d0708d0255390ffbf5548 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/948c2113bbe45ad6f43cbd82332d6ba8860d67 b/.git_backup/objects/98/948c2113bbe45ad6f43cbd82332d6ba8860d67 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/970525a2e919d2d15ecd63caf5ecbc3aa47133 b/.git_backup/objects/98/970525a2e919d2d15ecd63caf5ecbc3aa47133 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/9a9be181a3f584b0b94508393745700af1de50 b/.git_backup/objects/98/9a9be181a3f584b0b94508393745700af1de50 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/9f4bf99ef8d16434076dc8d04927b0d1f1baec b/.git_backup/objects/98/9f4bf99ef8d16434076dc8d04927b0d1f1baec deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/afe9edec6503055c8ea617bb8d2a5f2897e0c2 b/.git_backup/objects/98/afe9edec6503055c8ea617bb8d2a5f2897e0c2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/c09c2dff6e1ef605e25ed1d00afe94597abddc b/.git_backup/objects/98/c09c2dff6e1ef605e25ed1d00afe94597abddc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/cd03d899fb591ba924a40a1e0f75bb71feeab0 b/.git_backup/objects/98/cd03d899fb591ba924a40a1e0f75bb71feeab0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/da8038401e73152335ffd168f42a2108e8923c b/.git_backup/objects/98/da8038401e73152335ffd168f42a2108e8923c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/e9ab5bfbf32ea9d84d47aab58d131d35734c01 b/.git_backup/objects/98/e9ab5bfbf32ea9d84d47aab58d131d35734c01 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/ee5f9ea720f008a516886cd6bd6d68712845a4 b/.git_backup/objects/98/ee5f9ea720f008a516886cd6bd6d68712845a4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/f3fc859976ed47c63f5fdaeb8096f57ad05d73 b/.git_backup/objects/98/f3fc859976ed47c63f5fdaeb8096f57ad05d73 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/fb34a513ad5e21335a985cb2aacb70c6701aa9 b/.git_backup/objects/98/fb34a513ad5e21335a985cb2aacb70c6701aa9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/98/fbc4437ab6386a87f0d7607e7c95f0c9b42316 b/.git_backup/objects/98/fbc4437ab6386a87f0d7607e7c95f0c9b42316 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/05530757ae803920bb0ae6a76415db3e900863 b/.git_backup/objects/99/05530757ae803920bb0ae6a76415db3e900863 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/11fdb6a310eb459284c036097d8bfbe99ee09e b/.git_backup/objects/99/11fdb6a310eb459284c036097d8bfbe99ee09e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/155b2691c547f31ac5d64f16aceb8dd8176583 b/.git_backup/objects/99/155b2691c547f31ac5d64f16aceb8dd8176583 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/27a0a1f312295999b319512fa3bc3291e31582 b/.git_backup/objects/99/27a0a1f312295999b319512fa3bc3291e31582 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/28975b17f6b4b747e16f183c09d8501f8f4206 b/.git_backup/objects/99/28975b17f6b4b747e16f183c09d8501f8f4206 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/2c1c884ccc5f070a8a19dac3a73bbadbcde7cd b/.git_backup/objects/99/2c1c884ccc5f070a8a19dac3a73bbadbcde7cd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/31f2b9eb4bb3a7664db88c2bcdcab48133fad0 b/.git_backup/objects/99/31f2b9eb4bb3a7664db88c2bcdcab48133fad0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/38660073e187aa9e0c57fd6d8442b89f93b47f b/.git_backup/objects/99/38660073e187aa9e0c57fd6d8442b89f93b47f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/3f18a61d74aaa643e9790df70ede618b917223 b/.git_backup/objects/99/3f18a61d74aaa643e9790df70ede618b917223 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/3fedc4a8fe8cdb91116544f67b55afecaf96a8 b/.git_backup/objects/99/3fedc4a8fe8cdb91116544f67b55afecaf96a8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/45da589dbf893ed927856555cde5b772fa73b9 b/.git_backup/objects/99/45da589dbf893ed927856555cde5b772fa73b9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/4668219dd4def6404e0afd3f538b29a0e50f8b b/.git_backup/objects/99/4668219dd4def6404e0afd3f538b29a0e50f8b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/4bb7493fd92865e6ab87c277ba5741b44c31a9 b/.git_backup/objects/99/4bb7493fd92865e6ab87c277ba5741b44c31a9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/4f0ba3016b58d51e26f84f2542dc1d6e328cd2 b/.git_backup/objects/99/4f0ba3016b58d51e26f84f2542dc1d6e328cd2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/50f70e38f2ca125b02d8b649d8588d780f070a b/.git_backup/objects/99/50f70e38f2ca125b02d8b649d8588d780f070a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/5147f68f1f3501e2896b8dc6e0a065c09e359c b/.git_backup/objects/99/5147f68f1f3501e2896b8dc6e0a065c09e359c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/5c16ae1e51d9e345fee5f8310e8628ae0b533e b/.git_backup/objects/99/5c16ae1e51d9e345fee5f8310e8628ae0b533e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/5d23c6ed05b095442b6247b09191126f797f23 b/.git_backup/objects/99/5d23c6ed05b095442b6247b09191126f797f23 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/5ebaa0c8178ddb9e0479e0e9f6d30ed863a785 b/.git_backup/objects/99/5ebaa0c8178ddb9e0479e0e9f6d30ed863a785 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/61343268b24f8cb373f726ace7148d9270f38e b/.git_backup/objects/99/61343268b24f8cb373f726ace7148d9270f38e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/62a157d8a8395c2cb9ad578629f796eaf39018 b/.git_backup/objects/99/62a157d8a8395c2cb9ad578629f796eaf39018 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/64b9a33452f4b636f43703b7cdec4891cbda5f b/.git_backup/objects/99/64b9a33452f4b636f43703b7cdec4891cbda5f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/6969b03599a9ee86bf46726984c5d9e8bce22e b/.git_backup/objects/99/6969b03599a9ee86bf46726984c5d9e8bce22e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/6f4389f3d036b17435b18284ead557fd624219 b/.git_backup/objects/99/6f4389f3d036b17435b18284ead557fd624219 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/6fc9b7cc95691dad6b0ce29fe061f46097586b b/.git_backup/objects/99/6fc9b7cc95691dad6b0ce29fe061f46097586b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/76d8327f24e7a7e41c3f3469f6bfc4fe7a460e b/.git_backup/objects/99/76d8327f24e7a7e41c3f3469f6bfc4fe7a460e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/776f515fd53a86a6886311d91ff33b401396c3 b/.git_backup/objects/99/776f515fd53a86a6886311d91ff33b401396c3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/7b716c43c73510281af8fe52e9436d6c7c725b b/.git_backup/objects/99/7b716c43c73510281af8fe52e9436d6c7c725b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/86a90e62008f5e06f28508af96e4f4af37d5c6 b/.git_backup/objects/99/86a90e62008f5e06f28508af96e4f4af37d5c6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/8856ec20af5ca9b0022a6e5cbf599946b9303b b/.git_backup/objects/99/8856ec20af5ca9b0022a6e5cbf599946b9303b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/8f4b901be3792d5a5ae53e8db0ec8b14b468c1 b/.git_backup/objects/99/8f4b901be3792d5a5ae53e8db0ec8b14b468c1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/8f805434e99820ccae80b11e1d2eb94fad0fda b/.git_backup/objects/99/8f805434e99820ccae80b11e1d2eb94fad0fda deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/94fc34c69c625ff946e299ed5be95dbbd83678 b/.git_backup/objects/99/94fc34c69c625ff946e299ed5be95dbbd83678 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/98b54d869bb2934f346ba15aa382ec91cb2531 b/.git_backup/objects/99/98b54d869bb2934f346ba15aa382ec91cb2531 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/9bcd2e4cdf78f6e760d3eeea8917109a71b1f5 b/.git_backup/objects/99/9bcd2e4cdf78f6e760d3eeea8917109a71b1f5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/a12d163db39f850f043b7b88a314fcd10b41e1 b/.git_backup/objects/99/a12d163db39f850f043b7b88a314fcd10b41e1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/a5f43bd85379409e4e2acf1f05bf3de19cb3aa b/.git_backup/objects/99/a5f43bd85379409e4e2acf1f05bf3de19cb3aa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/a7ba910eb74c33250ea1bcd3d4fd2e8e97022e b/.git_backup/objects/99/a7ba910eb74c33250ea1bcd3d4fd2e8e97022e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/b0ffbb7b981c55425e8b53264f8a502451b305 b/.git_backup/objects/99/b0ffbb7b981c55425e8b53264f8a502451b305 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/b234ace1d25941be27ef98a14e0f1232246f87 b/.git_backup/objects/99/b234ace1d25941be27ef98a14e0f1232246f87 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/b4d758916059a7bb6e0d3e72627c5a78618f3c b/.git_backup/objects/99/b4d758916059a7bb6e0d3e72627c5a78618f3c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/b8e27878bc52ac2dddbf7e67b24da9f088e1f1 b/.git_backup/objects/99/b8e27878bc52ac2dddbf7e67b24da9f088e1f1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/c19cf844141395a87c34325da3a537f1e95815 b/.git_backup/objects/99/c19cf844141395a87c34325da3a537f1e95815 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/c2848cb59ec44e6e28e6a9b94a81304265a076 b/.git_backup/objects/99/c2848cb59ec44e6e28e6a9b94a81304265a076 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/c2a9f4c9968d7d4edf4b6dc307e838f4d6e461 b/.git_backup/objects/99/c2a9f4c9968d7d4edf4b6dc307e838f4d6e461 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/c725ed8df695b2a4755515972d1f3db73b6bb9 b/.git_backup/objects/99/c725ed8df695b2a4755515972d1f3db73b6bb9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/cb5a9091c3fec8da03cbef475285804a283c66 b/.git_backup/objects/99/cb5a9091c3fec8da03cbef475285804a283c66 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/cb7840c3eb642485e3016b4f0df73749ca6859 b/.git_backup/objects/99/cb7840c3eb642485e3016b4f0df73749ca6859 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/cbe8c88850886ed9d9313c89c09f0e39922341 b/.git_backup/objects/99/cbe8c88850886ed9d9313c89c09f0e39922341 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/ce082f93b0998c55fea4861ad4c484e4c60b2d b/.git_backup/objects/99/ce082f93b0998c55fea4861ad4c484e4c60b2d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/ce502c2f84a5adefff17f7dc2b930b38e523cb b/.git_backup/objects/99/ce502c2f84a5adefff17f7dc2b930b38e523cb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/d2278b896dd657dfe828a73160909b222e385e b/.git_backup/objects/99/d2278b896dd657dfe828a73160909b222e385e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/d246baa35cb9c6f56d50adbec163452e2a47fa b/.git_backup/objects/99/d246baa35cb9c6f56d50adbec163452e2a47fa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/d92a5bbf7748eda458c75a0c134ce6e6df8a49 b/.git_backup/objects/99/d92a5bbf7748eda458c75a0c134ce6e6df8a49 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/e74489b859e21fcaa68e93089035c3d81a73c8 b/.git_backup/objects/99/e74489b859e21fcaa68e93089035c3d81a73c8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/ec0fb42505aabd14a043e2d9279647df92c9db b/.git_backup/objects/99/ec0fb42505aabd14a043e2d9279647df92c9db deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/f118e20103174993b865cfb43ac6b6e00296a4 b/.git_backup/objects/99/f118e20103174993b865cfb43ac6b6e00296a4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/f164f15f17992d1cec69e273eeb5eec7ce759a b/.git_backup/objects/99/f164f15f17992d1cec69e273eeb5eec7ce759a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/f47eced329bacb5d5504f1f43f6379855d00ac b/.git_backup/objects/99/f47eced329bacb5d5504f1f43f6379855d00ac deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/f5717e3aac4d6f561d450e5af1409785e753aa b/.git_backup/objects/99/f5717e3aac4d6f561d450e5af1409785e753aa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/99/fa482c6b1794315369dfd1400007ad5806e36a b/.git_backup/objects/99/fa482c6b1794315369dfd1400007ad5806e36a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/044ce8faa063b6549dd5ad74e2050af19ba151 b/.git_backup/objects/9a/044ce8faa063b6549dd5ad74e2050af19ba151 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/04f9dc5e7ec4eb2533cf869dc9eaa8e1cef62c b/.git_backup/objects/9a/04f9dc5e7ec4eb2533cf869dc9eaa8e1cef62c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/0e4bc0996beb24325d4370f250e426dfaca8f0 b/.git_backup/objects/9a/0e4bc0996beb24325d4370f250e426dfaca8f0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/0e57f9ac7cdcf9c3ba44489f95f3eacacfd4c3 b/.git_backup/objects/9a/0e57f9ac7cdcf9c3ba44489f95f3eacacfd4c3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/11d6a129ccbc7a7590b058f3dc21fdc7049fa1 b/.git_backup/objects/9a/11d6a129ccbc7a7590b058f3dc21fdc7049fa1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/229dc9fa9d1c0a5a90a59fecdd5468450d76f7 b/.git_backup/objects/9a/229dc9fa9d1c0a5a90a59fecdd5468450d76f7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/277783a1b3d5ebdd484e63c59918b1b5b74622 b/.git_backup/objects/9a/277783a1b3d5ebdd484e63c59918b1b5b74622 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/30a4d7875e69f6772e86f7ed23deca08aa8228 b/.git_backup/objects/9a/30a4d7875e69f6772e86f7ed23deca08aa8228 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/36a8e62194fcedf67c178a5406b4eef0c7dfbb b/.git_backup/objects/9a/36a8e62194fcedf67c178a5406b4eef0c7dfbb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/38edf74be9c18030a524c5a54327d7e5a7cb68 b/.git_backup/objects/9a/38edf74be9c18030a524c5a54327d7e5a7cb68 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/3d25a71c75c975291cf987001ecd6882d6417d b/.git_backup/objects/9a/3d25a71c75c975291cf987001ecd6882d6417d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/406c7e31624265b2979330da3edf4d1142cd36 b/.git_backup/objects/9a/406c7e31624265b2979330da3edf4d1142cd36 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/42ce268a29a915d4f1140c2a47b133aee2c5c0 b/.git_backup/objects/9a/42ce268a29a915d4f1140c2a47b133aee2c5c0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/468d89657193996ef9e56fbc03fafe4bcc5ef0 b/.git_backup/objects/9a/468d89657193996ef9e56fbc03fafe4bcc5ef0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/53d35439f4f9ef24b3d02d5b59c7e1ceba389b b/.git_backup/objects/9a/53d35439f4f9ef24b3d02d5b59c7e1ceba389b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/54b5a794392463a28bcd1170baa2241b4213c1 b/.git_backup/objects/9a/54b5a794392463a28bcd1170baa2241b4213c1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/5543566a6031a78865c219646368407ad7f81a b/.git_backup/objects/9a/5543566a6031a78865c219646368407ad7f81a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/57a189c716859ba2f6bb671a65c0dc11958cc9 b/.git_backup/objects/9a/57a189c716859ba2f6bb671a65c0dc11958cc9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/5a9ad68836cc76d7ad22fca58d55822fe2e9ce b/.git_backup/objects/9a/5a9ad68836cc76d7ad22fca58d55822fe2e9ce deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/5bf8ae42200ea2caebc048791f87cb8ecb6b7d b/.git_backup/objects/9a/5bf8ae42200ea2caebc048791f87cb8ecb6b7d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/6025d752c688ff40b22242b821ee059024762f b/.git_backup/objects/9a/6025d752c688ff40b22242b821ee059024762f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/635b910d93ff2d9b1c24b7bc7ce15600b65d31 b/.git_backup/objects/9a/635b910d93ff2d9b1c24b7bc7ce15600b65d31 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/63ad9a21baf765fb54f4590bfe5a3907c91d59 b/.git_backup/objects/9a/63ad9a21baf765fb54f4590bfe5a3907c91d59 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/6d253f45ec6ea8a19c23ca04ec428b7c218501 b/.git_backup/objects/9a/6d253f45ec6ea8a19c23ca04ec428b7c218501 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/742ff8e5e32c0ccf1654ddcd2e4a46454dd44a b/.git_backup/objects/9a/742ff8e5e32c0ccf1654ddcd2e4a46454dd44a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/7f2343984d6363e270609ab95f73fbcb403a57 b/.git_backup/objects/9a/7f2343984d6363e270609ab95f73fbcb403a57 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/874a71dd0a53e25a671c51bfdceec850702bfe b/.git_backup/objects/9a/874a71dd0a53e25a671c51bfdceec850702bfe deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/89a838b9a5cb264e9ae9d269fbedca6e2d6333 b/.git_backup/objects/9a/89a838b9a5cb264e9ae9d269fbedca6e2d6333 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/91cc26c1430e1256f23066a0c9cf956931b656 b/.git_backup/objects/9a/91cc26c1430e1256f23066a0c9cf956931b656 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/948142202291cdc4783a41c44cc5402b8f3b71 b/.git_backup/objects/9a/948142202291cdc4783a41c44cc5402b8f3b71 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/ae35738d36789ff11e97dd9ae75cb29fcececf b/.git_backup/objects/9a/ae35738d36789ff11e97dd9ae75cb29fcececf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/b14a67f7f5c8fa5f4ea3b309ffc15917b3b966 b/.git_backup/objects/9a/b14a67f7f5c8fa5f4ea3b309ffc15917b3b966 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/b2bb48656520a95ec9ac87d090f2e741f0e544 b/.git_backup/objects/9a/b2bb48656520a95ec9ac87d090f2e741f0e544 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/b4e2b74e7f91ead51c74c8dba5f6e1d23a8b04 b/.git_backup/objects/9a/b4e2b74e7f91ead51c74c8dba5f6e1d23a8b04 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/c0c286361f935b00f460bca51a839341ee3c7a b/.git_backup/objects/9a/c0c286361f935b00f460bca51a839341ee3c7a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/c19b6a776f9a7c77b90ab2ea3649a8127d7eb5 b/.git_backup/objects/9a/c19b6a776f9a7c77b90ab2ea3649a8127d7eb5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/ca5a030545d3ba26fa96fbfd7cae1c31dcdd15 b/.git_backup/objects/9a/ca5a030545d3ba26fa96fbfd7cae1c31dcdd15 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/d2ead5f919f5b335b1b734353b7b43d20d1541 b/.git_backup/objects/9a/d2ead5f919f5b335b1b734353b7b43d20d1541 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/d73acc8506dd9e9c2550b78a37f326c127b44c b/.git_backup/objects/9a/d73acc8506dd9e9c2550b78a37f326c127b44c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/db0a6d227da9a1c13875f67740fbe6c607c610 b/.git_backup/objects/9a/db0a6d227da9a1c13875f67740fbe6c607c610 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/dd42a6def203f436c9e82b85311dc2aabf52cb b/.git_backup/objects/9a/dd42a6def203f436c9e82b85311dc2aabf52cb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/df7ec05f8060be6486d1520cbd59fe16f29cde b/.git_backup/objects/9a/df7ec05f8060be6486d1520cbd59fe16f29cde deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/ec2ac6574ab04cb03271d80ac81cb41e993ca6 b/.git_backup/objects/9a/ec2ac6574ab04cb03271d80ac81cb41e993ca6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9a/fc33a36889f548b617983d01f459a3b80eaf15 b/.git_backup/objects/9a/fc33a36889f548b617983d01f459a3b80eaf15 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/0006e43c896cf252aac8fe74c67c38660fecf8 b/.git_backup/objects/9b/0006e43c896cf252aac8fe74c67c38660fecf8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/007dd0c79cfe6cb20ec84fedf8b3e1a52f79ba b/.git_backup/objects/9b/007dd0c79cfe6cb20ec84fedf8b3e1a52f79ba deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/0cee951abd55f9bf9b64e649b60a9203f19d85 b/.git_backup/objects/9b/0cee951abd55f9bf9b64e649b60a9203f19d85 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/0f4c5fd2c08c80d3a33bc899cb9878e4ec26f3 b/.git_backup/objects/9b/0f4c5fd2c08c80d3a33bc899cb9878e4ec26f3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/1154f8e8011a1b5c7bd0397602a93cb10ac7b6 b/.git_backup/objects/9b/1154f8e8011a1b5c7bd0397602a93cb10ac7b6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/1263e4daa439fb50486b19fd23ee4c7c5fa2b2 b/.git_backup/objects/9b/1263e4daa439fb50486b19fd23ee4c7c5fa2b2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/133d5a8e569ffe2db8c1278546effeb6d4ae4b b/.git_backup/objects/9b/133d5a8e569ffe2db8c1278546effeb6d4ae4b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/20507ee92b73c612c519a9a7c84262b0f9a654 b/.git_backup/objects/9b/20507ee92b73c612c519a9a7c84262b0f9a654 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/30ee7d0c50b32458f9bb6ab5bf92fe0a5780af b/.git_backup/objects/9b/30ee7d0c50b32458f9bb6ab5bf92fe0a5780af deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/32cd74eb1572739b67a737a49711171a4594c5 b/.git_backup/objects/9b/32cd74eb1572739b67a737a49711171a4594c5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/3f6d70c90531773bf55f997f26a7eb3a356730 b/.git_backup/objects/9b/3f6d70c90531773bf55f997f26a7eb3a356730 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/3fc5ec0ad917dac61b0a7727ddb390120b8ed0 b/.git_backup/objects/9b/3fc5ec0ad917dac61b0a7727ddb390120b8ed0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/4c3c90bf49c6b8c8342f8e0b1f6b03b70d8a35 b/.git_backup/objects/9b/4c3c90bf49c6b8c8342f8e0b1f6b03b70d8a35 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/5f5a50eb6773c4085f8572a45b3fa351367565 b/.git_backup/objects/9b/5f5a50eb6773c4085f8572a45b3fa351367565 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/6d129ed690361770738bec73f44ba7e10a21c5 b/.git_backup/objects/9b/6d129ed690361770738bec73f44ba7e10a21c5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/7036723053b8e8e3888b0497528fe714b5b735 b/.git_backup/objects/9b/7036723053b8e8e3888b0497528fe714b5b735 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/74d772151a816a505484a3c788703d98f6aa01 b/.git_backup/objects/9b/74d772151a816a505484a3c788703d98f6aa01 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/7628f0e6b73ee171eac5415223f4a9d53ce4b5 b/.git_backup/objects/9b/7628f0e6b73ee171eac5415223f4a9d53ce4b5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/78aec7014b2e28855af0a38d9a0aa62fdb8de5 b/.git_backup/objects/9b/78aec7014b2e28855af0a38d9a0aa62fdb8de5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/87ac8d678701ab5885cf4e267d821b30e28b70 b/.git_backup/objects/9b/87ac8d678701ab5885cf4e267d821b30e28b70 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/a31673f59bf1abfdee81de54d8027a5a2c330f b/.git_backup/objects/9b/a31673f59bf1abfdee81de54d8027a5a2c330f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/a3a1f3683fc8f266c8ef6486a7fb8f7a9063f2 b/.git_backup/objects/9b/a3a1f3683fc8f266c8ef6486a7fb8f7a9063f2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/a4a2c1f77cd38f46fdffb8311237a915349502 b/.git_backup/objects/9b/a4a2c1f77cd38f46fdffb8311237a915349502 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/a940c725b9b2e5b908c344afaf97bfecae0ad5 b/.git_backup/objects/9b/a940c725b9b2e5b908c344afaf97bfecae0ad5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/aa82214e11702cc4906ad2fbda527c4db88ad2 b/.git_backup/objects/9b/aa82214e11702cc4906ad2fbda527c4db88ad2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/ac1cea08ae1673c233358061509d97a4d7ae18 b/.git_backup/objects/9b/ac1cea08ae1673c233358061509d97a4d7ae18 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/afe5b6f09e4e68ee5bb5f0b8ee3afbf76a37aa b/.git_backup/objects/9b/afe5b6f09e4e68ee5bb5f0b8ee3afbf76a37aa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/b025b9629e524f6580b34055a9ba2cba2ef2d4 b/.git_backup/objects/9b/b025b9629e524f6580b34055a9ba2cba2ef2d4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/b2c30f05adc014eb0bee4783d08929522d715f b/.git_backup/objects/9b/b2c30f05adc014eb0bee4783d08929522d715f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/b4637231e0dcc8d831ac5d8fc1c4b4944e6e5a b/.git_backup/objects/9b/b4637231e0dcc8d831ac5d8fc1c4b4944e6e5a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/bb2fd3b361ea8aa4c126d14df5fa370343a63f b/.git_backup/objects/9b/bb2fd3b361ea8aa4c126d14df5fa370343a63f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/c90787cf1c6045e04f3bfbaa182f8ac1235705 b/.git_backup/objects/9b/c90787cf1c6045e04f3bfbaa182f8ac1235705 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/caf4029907a8c5492e2c6d8c34f5ec55eb858f b/.git_backup/objects/9b/caf4029907a8c5492e2c6d8c34f5ec55eb858f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/ce5007d4dbb871974a69cb0f68151c1ee22556 b/.git_backup/objects/9b/ce5007d4dbb871974a69cb0f68151c1ee22556 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/d098a9e4e72ebc321545a9f5c1ba8593943e53 b/.git_backup/objects/9b/d098a9e4e72ebc321545a9f5c1ba8593943e53 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/d7122007a62f57ef9bf4940130a1978e464283 b/.git_backup/objects/9b/d7122007a62f57ef9bf4940130a1978e464283 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/d98fabfd0b88b90c46ede2548e0e172dbefd99 b/.git_backup/objects/9b/d98fabfd0b88b90c46ede2548e0e172dbefd99 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/e065da067c76b11681fdd00bad9140ea1b2a0e b/.git_backup/objects/9b/e065da067c76b11681fdd00bad9140ea1b2a0e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/e6c224d65463a47e9c42399f0d08d080f52e39 b/.git_backup/objects/9b/e6c224d65463a47e9c42399f0d08d080f52e39 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/ecc434d0d1a66b7c9987d8c5dffdf221fd45b1 b/.git_backup/objects/9b/ecc434d0d1a66b7c9987d8c5dffdf221fd45b1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/ed278681b25a2e432f61b948385ce29094a93a b/.git_backup/objects/9b/ed278681b25a2e432f61b948385ce29094a93a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/fc0c13122007d0b2d15a659e64fdc1d3173323 b/.git_backup/objects/9b/fc0c13122007d0b2d15a659e64fdc1d3173323 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9b/fe115139dbbc259609b33e06d388ae23ccef3c b/.git_backup/objects/9b/fe115139dbbc259609b33e06d388ae23ccef3c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/059a4594e287cf136622819d61502223126077 b/.git_backup/objects/9c/059a4594e287cf136622819d61502223126077 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/097ef3579dee48ba0ff7ce8bc11c2901040b72 b/.git_backup/objects/9c/097ef3579dee48ba0ff7ce8bc11c2901040b72 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/0bcb265ed032685b28123531b58db48f0c1584 b/.git_backup/objects/9c/0bcb265ed032685b28123531b58db48f0c1584 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/11b71e4bee6d98464885266d13fbc8f1606d68 b/.git_backup/objects/9c/11b71e4bee6d98464885266d13fbc8f1606d68 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/162905182d7db0aa1ddeda0f79fd8e3d0c3b00 b/.git_backup/objects/9c/162905182d7db0aa1ddeda0f79fd8e3d0c3b00 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/21f717573c1e084fe7f37f51b979971bdabc0a b/.git_backup/objects/9c/21f717573c1e084fe7f37f51b979971bdabc0a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/259f48ab6d4c4512cd985506a673f523090f89 b/.git_backup/objects/9c/259f48ab6d4c4512cd985506a673f523090f89 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/25eb86968e575f323c906c8fff9ea14ac92b68 b/.git_backup/objects/9c/25eb86968e575f323c906c8fff9ea14ac92b68 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/280d2911345bb223ba2c898e79fdacca68f497 b/.git_backup/objects/9c/280d2911345bb223ba2c898e79fdacca68f497 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/2fc2f0986a59d7c1d990d61450fae409972759 b/.git_backup/objects/9c/2fc2f0986a59d7c1d990d61450fae409972759 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/37e5564b5f74b968ea448a7a91c60b9f5f36f1 b/.git_backup/objects/9c/37e5564b5f74b968ea448a7a91c60b9f5f36f1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/4312bce7408f2a39577903527892e4ed1527ed b/.git_backup/objects/9c/4312bce7408f2a39577903527892e4ed1527ed deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/4b50f5644dea0c769bde89498de24b4f760ba0 b/.git_backup/objects/9c/4b50f5644dea0c769bde89498de24b4f760ba0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/4e2a1dfee474d9483417e41196a221aee5d12e b/.git_backup/objects/9c/4e2a1dfee474d9483417e41196a221aee5d12e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/4fbf78de8f6c737a1e6450d2d582566c48caf5 b/.git_backup/objects/9c/4fbf78de8f6c737a1e6450d2d582566c48caf5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/4fcc6e453da7d47b1e10db059bf3e4e4803532 b/.git_backup/objects/9c/4fcc6e453da7d47b1e10db059bf3e4e4803532 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/54bfb438d241ad17ce15d1e1346200ddf46b1c b/.git_backup/objects/9c/54bfb438d241ad17ce15d1e1346200ddf46b1c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/54ed66bbd92fcc598cbdb2fe6d7f7fe5d56d27 b/.git_backup/objects/9c/54ed66bbd92fcc598cbdb2fe6d7f7fe5d56d27 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/59c79f677deb5140c65216b20664f7acfc95f1 b/.git_backup/objects/9c/59c79f677deb5140c65216b20664f7acfc95f1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/5ef548b64804dd0be2292824dee9c6b704b50e b/.git_backup/objects/9c/5ef548b64804dd0be2292824dee9c6b704b50e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/6a2337c0c03df95bd57e925136fcf56ecedc1d b/.git_backup/objects/9c/6a2337c0c03df95bd57e925136fcf56ecedc1d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/6ba793cf41bf36447ab7a1890447fe5e939614 b/.git_backup/objects/9c/6ba793cf41bf36447ab7a1890447fe5e939614 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/6fb0345e3251d690f234c5e68b39275da27d40 b/.git_backup/objects/9c/6fb0345e3251d690f234c5e68b39275da27d40 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/7e607fe30e570326985b786b561e52269d2282 b/.git_backup/objects/9c/7e607fe30e570326985b786b561e52269d2282 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/82d23bab7e72890ca33e366a31a578fde7994b b/.git_backup/objects/9c/82d23bab7e72890ca33e366a31a578fde7994b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/8b16a019a1a9c679a115ffcb59878c358923af b/.git_backup/objects/9c/8b16a019a1a9c679a115ffcb59878c358923af deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/8fd317e0537afd4066001f6700cd6490fbe5a8 b/.git_backup/objects/9c/8fd317e0537afd4066001f6700cd6490fbe5a8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/92f330d2dc0185279b028b4714d3360e41e196 b/.git_backup/objects/9c/92f330d2dc0185279b028b4714d3360e41e196 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/93e1323ed5554777541328408ad1d019c63f80 b/.git_backup/objects/9c/93e1323ed5554777541328408ad1d019c63f80 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/94356f80ee0e035160ec0abb90eba1011d6c8b b/.git_backup/objects/9c/94356f80ee0e035160ec0abb90eba1011d6c8b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/951b2b794dccda15853335da2a484949e6468a b/.git_backup/objects/9c/951b2b794dccda15853335da2a484949e6468a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/9737b581ff1c8e82511cac227ce4ff21462bbe b/.git_backup/objects/9c/9737b581ff1c8e82511cac227ce4ff21462bbe deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/98ed14aa3e4116288ac4c9a3d1eb8b18d1b080 b/.git_backup/objects/9c/98ed14aa3e4116288ac4c9a3d1eb8b18d1b080 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/9c0380c394f61df0cb376a6ddb7a56bd080ff3 b/.git_backup/objects/9c/9c0380c394f61df0cb376a6ddb7a56bd080ff3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/9cc3f1d74cdb508b844c25e2c541973539a7cd b/.git_backup/objects/9c/9cc3f1d74cdb508b844c25e2c541973539a7cd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/9e5c4146afd85c2f2d382b9e2a91b18ae0c024 b/.git_backup/objects/9c/9e5c4146afd85c2f2d382b9e2a91b18ae0c024 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/9fece1e23f167ca1e68c40d031843f28a8ff21 b/.git_backup/objects/9c/9fece1e23f167ca1e68c40d031843f28a8ff21 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/a0cff958ab372e2b23ebf8f2826214e55ae732 b/.git_backup/objects/9c/a0cff958ab372e2b23ebf8f2826214e55ae732 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/a57ccb45d7031426ee0799a4d7d99875ceae76 b/.git_backup/objects/9c/a57ccb45d7031426ee0799a4d7d99875ceae76 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/a6b0882765aa6481211833f45c13427fa0ff61 b/.git_backup/objects/9c/a6b0882765aa6481211833f45c13427fa0ff61 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/a71d6a49bad178c96e0cb5ea2606041df1d2c2 b/.git_backup/objects/9c/a71d6a49bad178c96e0cb5ea2606041df1d2c2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/a77e2cff0a730bf23a1e8338f372a7016a1e36 b/.git_backup/objects/9c/a77e2cff0a730bf23a1e8338f372a7016a1e36 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/b00342dd0c7a9dadd8819f09c32bc0e618bf06 b/.git_backup/objects/9c/b00342dd0c7a9dadd8819f09c32bc0e618bf06 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/b207ca51d29880ef5cfbf8e5ef749203e3b3d8 b/.git_backup/objects/9c/b207ca51d29880ef5cfbf8e5ef749203e3b3d8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/badad491ac58d7658646ee53e69adf7886bedd b/.git_backup/objects/9c/badad491ac58d7658646ee53e69adf7886bedd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/bf4216d818615c5fe9c9f07e9f0d3c34babd30 b/.git_backup/objects/9c/bf4216d818615c5fe9c9f07e9f0d3c34babd30 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/cf9b6bb659d7235c54a4a4f80e85376c62298e b/.git_backup/objects/9c/cf9b6bb659d7235c54a4a4f80e85376c62298e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/d8bd030a89156ed7fd8903ad6fa495239ee91f b/.git_backup/objects/9c/d8bd030a89156ed7fd8903ad6fa495239ee91f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/db4538eb538aaabf22cb9f37fb7a34b28823c6 b/.git_backup/objects/9c/db4538eb538aaabf22cb9f37fb7a34b28823c6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/e65f91116f68332d1c16e21319e965541d0d73 b/.git_backup/objects/9c/e65f91116f68332d1c16e21319e965541d0d73 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/f41073d9f35837e3a62d1852f7fb32dd2b5cd0 b/.git_backup/objects/9c/f41073d9f35837e3a62d1852f7fb32dd2b5cd0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/fa1a552252febc0821c272f8de93372d1d145f b/.git_backup/objects/9c/fa1a552252febc0821c272f8de93372d1d145f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9c/fd0c2a57f355cea353abd24d21343543017191 b/.git_backup/objects/9c/fd0c2a57f355cea353abd24d21343543017191 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/0288a50d773f4dac33e2cde9d3aefd75a223e9 b/.git_backup/objects/9d/0288a50d773f4dac33e2cde9d3aefd75a223e9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/08a1a828a3bd2d60de3952744df29f9add27fa b/.git_backup/objects/9d/08a1a828a3bd2d60de3952744df29f9add27fa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/09fc6f68cbe31496c7697377bdf03ff8d420c4 b/.git_backup/objects/9d/09fc6f68cbe31496c7697377bdf03ff8d420c4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/0a2fa81b53b7cd381a2c46e730827054de49cc b/.git_backup/objects/9d/0a2fa81b53b7cd381a2c46e730827054de49cc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/15fc5202b29a5553b820ea27cb11c6078e7f6c b/.git_backup/objects/9d/15fc5202b29a5553b820ea27cb11c6078e7f6c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/18c03347f344c72aee32839052e26f9e0d68f9 b/.git_backup/objects/9d/18c03347f344c72aee32839052e26f9e0d68f9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/1aa4b3de5a9dffe73dedfa7a06304407b025de b/.git_backup/objects/9d/1aa4b3de5a9dffe73dedfa7a06304407b025de deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/1fa93b8c054b38c648a903bbb13c96d086935f b/.git_backup/objects/9d/1fa93b8c054b38c648a903bbb13c96d086935f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/1fc49f534a5f6351154cd17c4e0c128356870c b/.git_backup/objects/9d/1fc49f534a5f6351154cd17c4e0c128356870c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/227a0cc43c3268d15722b763bd94ad298645a1 b/.git_backup/objects/9d/227a0cc43c3268d15722b763bd94ad298645a1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/28f2037702f899a8a40299980ff6c3f4e2be98 b/.git_backup/objects/9d/28f2037702f899a8a40299980ff6c3f4e2be98 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/2a9dffb106b5ff7d821d05ec3295dd0fd070ae b/.git_backup/objects/9d/2a9dffb106b5ff7d821d05ec3295dd0fd070ae deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/2bd499e97133ba20bd2b1468a2a95b96bcfc62 b/.git_backup/objects/9d/2bd499e97133ba20bd2b1468a2a95b96bcfc62 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/2c7a34e3490a66a13caece77bb27df9d74b62a b/.git_backup/objects/9d/2c7a34e3490a66a13caece77bb27df9d74b62a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/32cdea71dae163a975c7cade842d00db9fc122 b/.git_backup/objects/9d/32cdea71dae163a975c7cade842d00db9fc122 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/32fcd3625db59d3513b7c007a8ea661595da85 b/.git_backup/objects/9d/32fcd3625db59d3513b7c007a8ea661595da85 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/350c0320caf5b718425b3d4e5b8c4776298b4b b/.git_backup/objects/9d/350c0320caf5b718425b3d4e5b8c4776298b4b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/3fc7a4bb2f46b5ba35707bd940a8fee7a590ee b/.git_backup/objects/9d/3fc7a4bb2f46b5ba35707bd940a8fee7a590ee deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/48bf612eb112de4c8dfabf299ee5cc883067ed b/.git_backup/objects/9d/48bf612eb112de4c8dfabf299ee5cc883067ed deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/4c25bbc2a348e637f7b3de5edadb07ac257f19 b/.git_backup/objects/9d/4c25bbc2a348e637f7b3de5edadb07ac257f19 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/540a62fefba6695b9da1c90b55ef994f7ac204 b/.git_backup/objects/9d/540a62fefba6695b9da1c90b55ef994f7ac204 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/573533016c9bbce082b59fb1e02276ac4f61e0 b/.git_backup/objects/9d/573533016c9bbce082b59fb1e02276ac4f61e0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/5922f8a50bd5e431238207496cb6a38da3324c b/.git_backup/objects/9d/5922f8a50bd5e431238207496cb6a38da3324c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/5a939f34e2bfad9cc9958c55ec9a0eba1872bf b/.git_backup/objects/9d/5a939f34e2bfad9cc9958c55ec9a0eba1872bf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/5e3ca9fad0320c9f4b35782096348a9058039f b/.git_backup/objects/9d/5e3ca9fad0320c9f4b35782096348a9058039f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/630f491d9a39644ae65564dac88eb51f0bbe78 b/.git_backup/objects/9d/630f491d9a39644ae65564dac88eb51f0bbe78 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/6e33961fac0a8fc7bbb4ad4b5510d960962f33 b/.git_backup/objects/9d/6e33961fac0a8fc7bbb4ad4b5510d960962f33 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/6eb67fc3dacee7d257868eacef1ec6fc07463e b/.git_backup/objects/9d/6eb67fc3dacee7d257868eacef1ec6fc07463e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/766f1dbc24152571ed3a9b0b3719b147decbc6 b/.git_backup/objects/9d/766f1dbc24152571ed3a9b0b3719b147decbc6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/7cbc5da68da8605d271b9314befb206b87bca6 b/.git_backup/objects/9d/7cbc5da68da8605d271b9314befb206b87bca6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/83d2c5847ddd26197eb28a0927e5a79390f10f b/.git_backup/objects/9d/83d2c5847ddd26197eb28a0927e5a79390f10f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/8a55545a1ba72f986174598729419b0f265e37 b/.git_backup/objects/9d/8a55545a1ba72f986174598729419b0f265e37 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/8dfc0b5d528545a94195fcde0537ba91e86db3 b/.git_backup/objects/9d/8dfc0b5d528545a94195fcde0537ba91e86db3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/8f872bbf2275e6d1785238e90b0321f4b6f323 b/.git_backup/objects/9d/8f872bbf2275e6d1785238e90b0321f4b6f323 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/9ee708dad5fa1e12c84e7354e894929faaacc1 b/.git_backup/objects/9d/9ee708dad5fa1e12c84e7354e894929faaacc1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/a6620f712da317a1412e0d1473ccc413760a37 b/.git_backup/objects/9d/a6620f712da317a1412e0d1473ccc413760a37 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/a7951c199ca0c2f18e3ea5ef7ff72502fa5039 b/.git_backup/objects/9d/a7951c199ca0c2f18e3ea5ef7ff72502fa5039 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/a82e257ac189e8709cd90363658859788fe12e b/.git_backup/objects/9d/a82e257ac189e8709cd90363658859788fe12e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/b939c7e066d9956d0450ccb8b729cd307a34a4 b/.git_backup/objects/9d/b939c7e066d9956d0450ccb8b729cd307a34a4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/be83c444fbb8e624c3e6a159259e2c7435fb94 b/.git_backup/objects/9d/be83c444fbb8e624c3e6a159259e2c7435fb94 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/c0473ae05da522e7225380211fe35e5a8f92d8 b/.git_backup/objects/9d/c0473ae05da522e7225380211fe35e5a8f92d8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/c68410337dcf4619ef66a49d87cea8233bc057 b/.git_backup/objects/9d/c68410337dcf4619ef66a49d87cea8233bc057 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/cc358968cd1e80b2dc43670423ee8b36bdfe3f b/.git_backup/objects/9d/cc358968cd1e80b2dc43670423ee8b36bdfe3f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/cfc19c56e62b12b730f4335b34479695f273f5 b/.git_backup/objects/9d/cfc19c56e62b12b730f4335b34479695f273f5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/d349fd2d560cf86a1eb639f759fdc6e10331e0 b/.git_backup/objects/9d/d349fd2d560cf86a1eb639f759fdc6e10331e0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/d6a9d5035886f38d59e24c9b68ce9d974c58b9 b/.git_backup/objects/9d/d6a9d5035886f38d59e24c9b68ce9d974c58b9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/e0e9f614cb29497e0d27b07a505254efb2fe2d b/.git_backup/objects/9d/e0e9f614cb29497e0d27b07a505254efb2fe2d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/ed521d58313e9f2e7004d865be818dd979b655 b/.git_backup/objects/9d/ed521d58313e9f2e7004d865be818dd979b655 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/f5f79aa7d1988c6677e68c81221e217280cbe7 b/.git_backup/objects/9d/f5f79aa7d1988c6677e68c81221e217280cbe7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/f8d0f2ec9fc8f1974d83cdd8155c79340007ed b/.git_backup/objects/9d/f8d0f2ec9fc8f1974d83cdd8155c79340007ed deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9d/fde3726c775d83bdd5232d26854001e8654328 b/.git_backup/objects/9d/fde3726c775d83bdd5232d26854001e8654328 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/072a1289d5b853b6053c9ad3652bf84167e510 b/.git_backup/objects/9f/072a1289d5b853b6053c9ad3652bf84167e510 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/0ee16ef60a85ac6b725fa79d8dcca23f737cb2 b/.git_backup/objects/9f/0ee16ef60a85ac6b725fa79d8dcca23f737cb2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/14333d4534453da1ec074431fcb24e309eae36 b/.git_backup/objects/9f/14333d4534453da1ec074431fcb24e309eae36 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/1e083cd81351f1d734b21461063731b9f691d1 b/.git_backup/objects/9f/1e083cd81351f1d734b21461063731b9f691d1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/2e8c3ca117e9179a2b371fbbe995f746eefecb b/.git_backup/objects/9f/2e8c3ca117e9179a2b371fbbe995f746eefecb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/33666cda13b7ea9428f750c47fd2d6b6a2896a b/.git_backup/objects/9f/33666cda13b7ea9428f750c47fd2d6b6a2896a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/3a0678d766881389e129c93def7fffd74f14f1 b/.git_backup/objects/9f/3a0678d766881389e129c93def7fffd74f14f1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/41bfb1d5b20a5c467b6fd1716d03cd8fad5f99 b/.git_backup/objects/9f/41bfb1d5b20a5c467b6fd1716d03cd8fad5f99 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/41f44c02c9bbec782613286d282b433d05e994 b/.git_backup/objects/9f/41f44c02c9bbec782613286d282b433d05e994 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/4896611490e89d289b98220972d89134f558db b/.git_backup/objects/9f/4896611490e89d289b98220972d89134f558db deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/4a2510675bee7e2de5a4c1c15d5a5b10d04ff8 b/.git_backup/objects/9f/4a2510675bee7e2de5a4c1c15d5a5b10d04ff8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/4a84a172cfe852d2eefd46fd9942f20aeee82a b/.git_backup/objects/9f/4a84a172cfe852d2eefd46fd9942f20aeee82a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/4ad73f3055594c36b0b13ceaf22bd4f8e4d3df b/.git_backup/objects/9f/4ad73f3055594c36b0b13ceaf22bd4f8e4d3df deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/55c6ab4eea6ad6b80b5d983fe8b1ec03506a2f b/.git_backup/objects/9f/55c6ab4eea6ad6b80b5d983fe8b1ec03506a2f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/5f3fb9f49a1d138b6df267be36108eefe62da9 b/.git_backup/objects/9f/5f3fb9f49a1d138b6df267be36108eefe62da9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/61c7f14bb8c1f6099b9eb75dce28ece6a7ae96 b/.git_backup/objects/9f/61c7f14bb8c1f6099b9eb75dce28ece6a7ae96 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/656388df0bbd08513ef296aa9f8e0a5fcd8055 b/.git_backup/objects/9f/656388df0bbd08513ef296aa9f8e0a5fcd8055 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/6568ce93d7db6d908707e869080c60e57df31f b/.git_backup/objects/9f/6568ce93d7db6d908707e869080c60e57df31f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/685461c83a6f7ff91f6d1450b1f19d08298fde b/.git_backup/objects/9f/685461c83a6f7ff91f6d1450b1f19d08298fde deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/6b93459aa53e8aa5d5cb87430396eacd460815 b/.git_backup/objects/9f/6b93459aa53e8aa5d5cb87430396eacd460815 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/6dcdc6bae88ad0985abed4b025c54080e6dd9d b/.git_backup/objects/9f/6dcdc6bae88ad0985abed4b025c54080e6dd9d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/6eb98e8f0ef41d6fab05af6e9c24c5ef8a04b8 b/.git_backup/objects/9f/6eb98e8f0ef41d6fab05af6e9c24c5ef8a04b8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/6f9de1538fef8147d37b0cf42f63ba3066e9f3 b/.git_backup/objects/9f/6f9de1538fef8147d37b0cf42f63ba3066e9f3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/70446204123d549336b77d3161a36676e9497e b/.git_backup/objects/9f/70446204123d549336b77d3161a36676e9497e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/73ca7105ff0bf11d74dd16ffb0653059466f70 b/.git_backup/objects/9f/73ca7105ff0bf11d74dd16ffb0653059466f70 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/755412dbf39f25af3b8854279d93b4f1393aa7 b/.git_backup/objects/9f/755412dbf39f25af3b8854279d93b4f1393aa7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/790ddd7ff1a9d33026f11a5bc5227b91ca02a3 b/.git_backup/objects/9f/790ddd7ff1a9d33026f11a5bc5227b91ca02a3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/7de213c030d5770ec83ccedd2e2590ae376adf b/.git_backup/objects/9f/7de213c030d5770ec83ccedd2e2590ae376adf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/86c24dc32f86e87e83ae0356bde5b925da39ef b/.git_backup/objects/9f/86c24dc32f86e87e83ae0356bde5b925da39ef deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/8d16df96c007cc9d3465c5e68282f289dda1fb b/.git_backup/objects/9f/8d16df96c007cc9d3465c5e68282f289dda1fb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/8e5e06b56768d2cc0842f34ed55cc54baed3ed b/.git_backup/objects/9f/8e5e06b56768d2cc0842f34ed55cc54baed3ed deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/8ef7b2b9e8e07f577c04956263196b03a26ab7 b/.git_backup/objects/9f/8ef7b2b9e8e07f577c04956263196b03a26ab7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/90605f03b140dcde5019bc24d6fbd7a1514969 b/.git_backup/objects/9f/90605f03b140dcde5019bc24d6fbd7a1514969 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/94bbdb5e84d5bceb77c408872b49ae9ef625c1 b/.git_backup/objects/9f/94bbdb5e84d5bceb77c408872b49ae9ef625c1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/988eae9c2e002d0da33d6bda36d462677061ce b/.git_backup/objects/9f/988eae9c2e002d0da33d6bda36d462677061ce deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/a08f2d415d8bfeec8ab637c0656b53d0767d50 b/.git_backup/objects/9f/a08f2d415d8bfeec8ab637c0656b53d0767d50 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/cf18e2d128c3b92df96ba5ecdebae20a258b4d b/.git_backup/objects/9f/cf18e2d128c3b92df96ba5ecdebae20a258b4d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/d38aabbe6312d53254fd3ec6f5498c9d3161ea b/.git_backup/objects/9f/d38aabbe6312d53254fd3ec6f5498c9d3161ea deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/e17850716fcd2b358b1646c03a59134d10972e b/.git_backup/objects/9f/e17850716fcd2b358b1646c03a59134d10972e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/e40c208d880ef1afe63c9899ddbe13556323aa b/.git_backup/objects/9f/e40c208d880ef1afe63c9899ddbe13556323aa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/e7d9c36c7f9c5eefa055608365856631caaeec b/.git_backup/objects/9f/e7d9c36c7f9c5eefa055608365856631caaeec deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/ead27a927e6f67d7ea592167bf2c553c569833 b/.git_backup/objects/9f/ead27a927e6f67d7ea592167bf2c553c569833 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/ef14e4747c1fcd2d914b6a56acefafc1d53141 b/.git_backup/objects/9f/ef14e4747c1fcd2d914b6a56acefafc1d53141 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/eff58ced6db61bce82b24c5469ff6034ce6e93 b/.git_backup/objects/9f/eff58ced6db61bce82b24c5469ff6034ce6e93 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/f05adceb2b4f95c38b9cb9065c0c9e20908a9b b/.git_backup/objects/9f/f05adceb2b4f95c38b9cb9065c0c9e20908a9b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/f318803831ad993879554a1abf06c729cf2c3b b/.git_backup/objects/9f/f318803831ad993879554a1abf06c729cf2c3b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/f329f1994a7764da4a16616244788faae5e80a b/.git_backup/objects/9f/f329f1994a7764da4a16616244788faae5e80a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/9f/f68beae506bccf4f6bfb99e2c44e7a85513ff4 b/.git_backup/objects/9f/f68beae506bccf4f6bfb99e2c44e7a85513ff4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/03ca11356606402c03b320a4fcdb8635051623 b/.git_backup/objects/a1/03ca11356606402c03b320a4fcdb8635051623 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/0d15fbfd656004251f5cbd279e18bbb052efce b/.git_backup/objects/a1/0d15fbfd656004251f5cbd279e18bbb052efce deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/152d3781cab76c97c0657845c47465af11f090 b/.git_backup/objects/a1/152d3781cab76c97c0657845c47465af11f090 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/1554acfd30be7e826e2731b601e557d9539c9c b/.git_backup/objects/a1/1554acfd30be7e826e2731b601e557d9539c9c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/179010e49fac4b76bd3ce36179c1ed3815a96c b/.git_backup/objects/a1/179010e49fac4b76bd3ce36179c1ed3815a96c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/1bf538501817634a4f7affecb2033b70ffbc2a b/.git_backup/objects/a1/1bf538501817634a4f7affecb2033b70ffbc2a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/1c6b9c1770b8880404cc2f6c3573f12fcdb0f0 b/.git_backup/objects/a1/1c6b9c1770b8880404cc2f6c3573f12fcdb0f0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/214e9ff2d74208c531cccc09f4e3d48660410f b/.git_backup/objects/a1/214e9ff2d74208c531cccc09f4e3d48660410f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/262bb61ed2f80ec1da534db4d54e0aa89f6d49 b/.git_backup/objects/a1/262bb61ed2f80ec1da534db4d54e0aa89f6d49 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/264289f1bdefa884b8808bb07c6fe5af50a34a b/.git_backup/objects/a1/264289f1bdefa884b8808bb07c6fe5af50a34a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/2f4c9676d9b35254d90d25dae9e6a0a4dc23c2 b/.git_backup/objects/a1/2f4c9676d9b35254d90d25dae9e6a0a4dc23c2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/33c1068396f38de004891f7a7f38a60ad2c8cc b/.git_backup/objects/a1/33c1068396f38de004891f7a7f38a60ad2c8cc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/381ddc59638a7d77227ad11e9386c130e7786c b/.git_backup/objects/a1/381ddc59638a7d77227ad11e9386c130e7786c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/48e19f5c13d2024bb1740a6b7cc8773f69137c b/.git_backup/objects/a1/48e19f5c13d2024bb1740a6b7cc8773f69137c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/4a00071e80037b356a3169b982f40222c07690 b/.git_backup/objects/a1/4a00071e80037b356a3169b982f40222c07690 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/4f068f15dde2a0250f07a58c361ee78ef04fb2 b/.git_backup/objects/a1/4f068f15dde2a0250f07a58c361ee78ef04fb2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/5353855cccdbeee9042aaca6db44ece3c39cf9 b/.git_backup/objects/a1/5353855cccdbeee9042aaca6db44ece3c39cf9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/57144146472529952fa6772d9bf8cd7ad58164 b/.git_backup/objects/a1/57144146472529952fa6772d9bf8cd7ad58164 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/5f2cd88d706fb11d8438e3fe7a63af23b08dcf b/.git_backup/objects/a1/5f2cd88d706fb11d8438e3fe7a63af23b08dcf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/603ea3dc17a360938c8af518ff32aa147b572b b/.git_backup/objects/a1/603ea3dc17a360938c8af518ff32aa147b572b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/60a951da377a4a3fedab08921e31003d94d5af b/.git_backup/objects/a1/60a951da377a4a3fedab08921e31003d94d5af deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/62808531f1d4e72112ff29674dfe45cf45cfd5 b/.git_backup/objects/a1/62808531f1d4e72112ff29674dfe45cf45cfd5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/63084b22388fc83ecd4100587fd2441ea80fc4 b/.git_backup/objects/a1/63084b22388fc83ecd4100587fd2441ea80fc4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/642f9d03e59081bc48cddacc10a71fe6f7c02c b/.git_backup/objects/a1/642f9d03e59081bc48cddacc10a71fe6f7c02c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/65a7a30424b20af9a3a0636c5e655239ea6fa5 b/.git_backup/objects/a1/65a7a30424b20af9a3a0636c5e655239ea6fa5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/7203fbb2a7628db644b953ac7723b866a2a0a4 b/.git_backup/objects/a1/7203fbb2a7628db644b953ac7723b866a2a0a4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/74617eff2aa4ae9ac77d5d51dcf18f667df723 b/.git_backup/objects/a1/74617eff2aa4ae9ac77d5d51dcf18f667df723 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/751e9dd27e5e3e002e6a9393ab94afa2f191c9 b/.git_backup/objects/a1/751e9dd27e5e3e002e6a9393ab94afa2f191c9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/7d6ca080de505ffc6d88e4a1408afa01a7ae61 b/.git_backup/objects/a1/7d6ca080de505ffc6d88e4a1408afa01a7ae61 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/83a59ef658456c5e6e81a57d12b2f2f96dd3e8 b/.git_backup/objects/a1/83a59ef658456c5e6e81a57d12b2f2f96dd3e8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/8af6ee7ffe78f9290239a2c8dbdb7f5fd53263 b/.git_backup/objects/a1/8af6ee7ffe78f9290239a2c8dbdb7f5fd53263 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/9f7ad5c835c966fdc16d572d29152cbb1ce511 b/.git_backup/objects/a1/9f7ad5c835c966fdc16d572d29152cbb1ce511 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/a9719c24d489bd833ff48a50302bb2b9ee546f b/.git_backup/objects/a1/a9719c24d489bd833ff48a50302bb2b9ee546f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/abb4fb0151c230d2f3ef95aefba635ecf864c3 b/.git_backup/objects/a1/abb4fb0151c230d2f3ef95aefba635ecf864c3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/b0c462a7b612af5cd477ba61cd93c5d478eb6f b/.git_backup/objects/a1/b0c462a7b612af5cd477ba61cd93c5d478eb6f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/b0e14e8263f40c61d6de7ba1f4cdb971b0f799 b/.git_backup/objects/a1/b0e14e8263f40c61d6de7ba1f4cdb971b0f799 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/b589e38a32041e49332e5e81c2d363dc418d68 b/.git_backup/objects/a1/b589e38a32041e49332e5e81c2d363dc418d68 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/b5c57543005b310ac2efb02243a6b6ab6d8932 b/.git_backup/objects/a1/b5c57543005b310ac2efb02243a6b6ab6d8932 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/bb1a6312df099b0758c8c0c45625787c819976 b/.git_backup/objects/a1/bb1a6312df099b0758c8c0c45625787c819976 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/c11c44ac82c3887e520e2a540d5ac093a91321 b/.git_backup/objects/a1/c11c44ac82c3887e520e2a540d5ac093a91321 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/c93483597f364443158132b31b86693891b02a b/.git_backup/objects/a1/c93483597f364443158132b31b86693891b02a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/c951cf5996da6b087d1da30c0337af741c7fc1 b/.git_backup/objects/a1/c951cf5996da6b087d1da30c0337af741c7fc1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/cfe6224e132ba45f35ba6b03fe3d8036701968 b/.git_backup/objects/a1/cfe6224e132ba45f35ba6b03fe3d8036701968 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/d094e37c713162ef45b2e2fc2774d7c2aaabbd b/.git_backup/objects/a1/d094e37c713162ef45b2e2fc2774d7c2aaabbd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/d1ad0539565a33ad80ce41872bc53ac0216b0a b/.git_backup/objects/a1/d1ad0539565a33ad80ce41872bc53ac0216b0a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/d41803ff09382c63f47c3fbdb4e5d386e18bdf b/.git_backup/objects/a1/d41803ff09382c63f47c3fbdb4e5d386e18bdf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/dcea14de9cfb95311ebe94e8a1096c27800941 b/.git_backup/objects/a1/dcea14de9cfb95311ebe94e8a1096c27800941 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/e1ced7ea46abf298df116e82851723363237cd b/.git_backup/objects/a1/e1ced7ea46abf298df116e82851723363237cd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/e4d5a08dffd7e939ae36ab837fb26d20189fbc b/.git_backup/objects/a1/e4d5a08dffd7e939ae36ab837fb26d20189fbc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/e91a50b55536c16c113be9c870ec0235b84bc9 b/.git_backup/objects/a1/e91a50b55536c16c113be9c870ec0235b84bc9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/f09d0fef129f7916841605ed5db0b9fed8837d b/.git_backup/objects/a1/f09d0fef129f7916841605ed5db0b9fed8837d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/f388b1eb5d949a6da32a1dc2067d109bac58e0 b/.git_backup/objects/a1/f388b1eb5d949a6da32a1dc2067d109bac58e0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/f6c74bb1a5e99804f33a558c0e869e15dbbb00 b/.git_backup/objects/a1/f6c74bb1a5e99804f33a558c0e869e15dbbb00 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/f7e852639723947725019f8d4d324a432785c9 b/.git_backup/objects/a1/f7e852639723947725019f8d4d324a432785c9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a1/fdbf8cdf48ab0707cc409acfdb459c8aaa5682 b/.git_backup/objects/a1/fdbf8cdf48ab0707cc409acfdb459c8aaa5682 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a2/0264ac6fbb0b3fbdd2bc65d3faa7e6203bcccc b/.git_backup/objects/a2/0264ac6fbb0b3fbdd2bc65d3faa7e6203bcccc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a2/07c1780c4d39c395fad6519f8ab768f7224e4d b/.git_backup/objects/a2/07c1780c4d39c395fad6519f8ab768f7224e4d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a2/107b8b7c190655e42e7df431024989044657cf b/.git_backup/objects/a2/107b8b7c190655e42e7df431024989044657cf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a2/13d290e1a920271e924506a57191f1f4bfc4c0 b/.git_backup/objects/a2/13d290e1a920271e924506a57191f1f4bfc4c0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a2/1bfabd51cac67a6bd92d002b1c7f83ffd23f0f b/.git_backup/objects/a2/1bfabd51cac67a6bd92d002b1c7f83ffd23f0f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a2/1e17fb056fb15c5babc53299af2db01c3480c5 b/.git_backup/objects/a2/1e17fb056fb15c5babc53299af2db01c3480c5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a2/244c4aab9232b72a483e5c77c3f130d670c39b b/.git_backup/objects/a2/244c4aab9232b72a483e5c77c3f130d670c39b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a2/257a4142d79996f3d299cb820927ae48a05810 b/.git_backup/objects/a2/257a4142d79996f3d299cb820927ae48a05810 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a2/32532ae7cac225a5c4f5f5018e50edc017ec20 b/.git_backup/objects/a2/32532ae7cac225a5c4f5f5018e50edc017ec20 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a2/349ef8652c659388ba69477c01989f2e4ce17d b/.git_backup/objects/a2/349ef8652c659388ba69477c01989f2e4ce17d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a2/3fc7da5eec8ab9526d33fb0701b629e0f5fc86 b/.git_backup/objects/a2/3fc7da5eec8ab9526d33fb0701b629e0f5fc86 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a2/444e87e4b61915452a65a242153241a6ddd3b5 b/.git_backup/objects/a2/444e87e4b61915452a65a242153241a6ddd3b5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a2/47d3e323b094e08097fa0d42a3dfed6ae89700 b/.git_backup/objects/a2/47d3e323b094e08097fa0d42a3dfed6ae89700 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a2/497b984fbc9a590222702b17e24e947f5f15e8 b/.git_backup/objects/a2/497b984fbc9a590222702b17e24e947f5f15e8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a2/54b0b7eb61903a029852018a7c0b8080f852a9 b/.git_backup/objects/a2/54b0b7eb61903a029852018a7c0b8080f852a9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a2/55a5e823c5a2477c88884824de9eb1e33a71a8 b/.git_backup/objects/a2/55a5e823c5a2477c88884824de9eb1e33a71a8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a2/732d60cc4b63beeaf053e500c343458b285fa1 b/.git_backup/objects/a2/732d60cc4b63beeaf053e500c343458b285fa1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a2/836acd9b65e713b8bac6edc001ff616d65a556 b/.git_backup/objects/a2/836acd9b65e713b8bac6edc001ff616d65a556 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a2/841ebcbab0283156786344167cc3bc0e4365d4 b/.git_backup/objects/a2/841ebcbab0283156786344167cc3bc0e4365d4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a2/8a5d811ba8dd854a1b3420d79d76744d65c66f b/.git_backup/objects/a2/8a5d811ba8dd854a1b3420d79d76744d65c66f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a2/935c0d5b6f77d25e90014d09fe78de5e2c5406 b/.git_backup/objects/a2/935c0d5b6f77d25e90014d09fe78de5e2c5406 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a2/93dfddb5635290c886c0885111c3d671f350cc b/.git_backup/objects/a2/93dfddb5635290c886c0885111c3d671f350cc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a2/9b77c2f4c42d4b842a6cdb921c461ae13b4779 b/.git_backup/objects/a2/9b77c2f4c42d4b842a6cdb921c461ae13b4779 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a2/9b87eafb0ea03753988f1df60688a7dc611f93 b/.git_backup/objects/a2/9b87eafb0ea03753988f1df60688a7dc611f93 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a2/a05ac7d2190fbee777afca441da1051dce0a26 b/.git_backup/objects/a2/a05ac7d2190fbee777afca441da1051dce0a26 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a2/a39fb1c4c18d26e49e3b3237f5e159b26adc10 b/.git_backup/objects/a2/a39fb1c4c18d26e49e3b3237f5e159b26adc10 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a2/a932077298cc12099ac8e7d27cb3d9c91884f9 b/.git_backup/objects/a2/a932077298cc12099ac8e7d27cb3d9c91884f9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a2/ae03061ef8afb7015acd3e7ae9703af10bc55f b/.git_backup/objects/a2/ae03061ef8afb7015acd3e7ae9703af10bc55f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a2/b0ffb5edc0ff722de6a8f842d5e3bc1f2090e5 b/.git_backup/objects/a2/b0ffb5edc0ff722de6a8f842d5e3bc1f2090e5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a2/b59a9d1088690cb2f9ad9011bfa59e6cb5c658 b/.git_backup/objects/a2/b59a9d1088690cb2f9ad9011bfa59e6cb5c658 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a2/c25d11e4ec966132913a2d11a462d1dac944f1 b/.git_backup/objects/a2/c25d11e4ec966132913a2d11a462d1dac944f1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a2/c4a995713cfead6af38126ae722eb19ebf8bf8 b/.git_backup/objects/a2/c4a995713cfead6af38126ae722eb19ebf8bf8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a2/ca6be03c43054caaa3660998273ebf704345dd b/.git_backup/objects/a2/ca6be03c43054caaa3660998273ebf704345dd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a2/cbebb0a2eef504e7842e91b3e14856ec66672c b/.git_backup/objects/a2/cbebb0a2eef504e7842e91b3e14856ec66672c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a2/d3007ceb16b0eeb4b1f57361c089558a25daeb b/.git_backup/objects/a2/d3007ceb16b0eeb4b1f57361c089558a25daeb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a2/d4cf3000ee17804c4d904ffc272d80dce18750 b/.git_backup/objects/a2/d4cf3000ee17804c4d904ffc272d80dce18750 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a2/d539d784d3c6d99fb3b2aaa38a122c8159ea40 b/.git_backup/objects/a2/d539d784d3c6d99fb3b2aaa38a122c8159ea40 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a2/de5c8ba9c14d1b376b542743aa8356226fde34 b/.git_backup/objects/a2/de5c8ba9c14d1b376b542743aa8356226fde34 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a2/e71d5695fb449af1699865577fc54077156b5f b/.git_backup/objects/a2/e71d5695fb449af1699865577fc54077156b5f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a2/ebda873479546190451210770eba7cc8c85b3b b/.git_backup/objects/a2/ebda873479546190451210770eba7cc8c85b3b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a2/f52921b24770cf8197328b786a28dc2f07e606 b/.git_backup/objects/a2/f52921b24770cf8197328b786a28dc2f07e606 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a2/feb937122f480e1521d60ef0ad63b97f09eead b/.git_backup/objects/a2/feb937122f480e1521d60ef0ad63b97f09eead deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/04f6c5bd5a6b6d265382b905b3ff8e594e0dca b/.git_backup/objects/a3/04f6c5bd5a6b6d265382b905b3ff8e594e0dca deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/0b3d52414e8b8899a2091bcf9f1e9cfcf19e60 b/.git_backup/objects/a3/0b3d52414e8b8899a2091bcf9f1e9cfcf19e60 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/0b5ac1441bf7ab920b9392164613984d8fc1c0 b/.git_backup/objects/a3/0b5ac1441bf7ab920b9392164613984d8fc1c0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/0e88c01d6a5da08222bc1bc4379319b72e76a6 b/.git_backup/objects/a3/0e88c01d6a5da08222bc1bc4379319b72e76a6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/19a6239aede0ab2ac3bf411053f857b54ac02f b/.git_backup/objects/a3/19a6239aede0ab2ac3bf411053f857b54ac02f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/1dbce32c34fbc014e6b4034f6e8c71cd5490fc b/.git_backup/objects/a3/1dbce32c34fbc014e6b4034f6e8c71cd5490fc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/1e64107e2636caed511f929909779571ba9c6c b/.git_backup/objects/a3/1e64107e2636caed511f929909779571ba9c6c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/221c188e4516d1ff976e1dcd11c863b7e32070 b/.git_backup/objects/a3/221c188e4516d1ff976e1dcd11c863b7e32070 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/224b4175050d58261e64f62691f3bdacb31e40 b/.git_backup/objects/a3/224b4175050d58261e64f62691f3bdacb31e40 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/2b660a4fdb2b02320273469bc623849ab05e2d b/.git_backup/objects/a3/2b660a4fdb2b02320273469bc623849ab05e2d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/2f64f4a3d3fb2ac8d1a8d5cfa32e2bc953a8eb b/.git_backup/objects/a3/2f64f4a3d3fb2ac8d1a8d5cfa32e2bc953a8eb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/388e81a923fa4facdccdcb0349c39579b048b8 b/.git_backup/objects/a3/388e81a923fa4facdccdcb0349c39579b048b8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/406d4255392959efa444e5d539479a307bb4d6 b/.git_backup/objects/a3/406d4255392959efa444e5d539479a307bb4d6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/4e6e2864a3f4afeb549e916fbda22bac53369e b/.git_backup/objects/a3/4e6e2864a3f4afeb549e916fbda22bac53369e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/542f1875b74a48310a0c16f9f0c4f96709fe33 b/.git_backup/objects/a3/542f1875b74a48310a0c16f9f0c4f96709fe33 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/546f12555c2c8d186489c5220e8d2e25f0b0a9 b/.git_backup/objects/a3/546f12555c2c8d186489c5220e8d2e25f0b0a9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/55167eb3f3623536cec3d9a9eb0d015520b21e b/.git_backup/objects/a3/55167eb3f3623536cec3d9a9eb0d015520b21e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/5adce9dbdbc5d29854b42e0abb82c5497ce372 b/.git_backup/objects/a3/5adce9dbdbc5d29854b42e0abb82c5497ce372 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/5d13e1d001089525cae1b76d7d8cb6d55ca1b1 b/.git_backup/objects/a3/5d13e1d001089525cae1b76d7d8cb6d55ca1b1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/5f1acfb4cb93ecb637310bbfa7fc1a2151d483 b/.git_backup/objects/a3/5f1acfb4cb93ecb637310bbfa7fc1a2151d483 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/696bd45f4b2520f9679c49d9b2aee4adf0e18f b/.git_backup/objects/a3/696bd45f4b2520f9679c49d9b2aee4adf0e18f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/6a0771525d8f41803dded309be3d23965caaa9 b/.git_backup/objects/a3/6a0771525d8f41803dded309be3d23965caaa9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/6e107ad4686c90cc19263df72a86a3daf825dc b/.git_backup/objects/a3/6e107ad4686c90cc19263df72a86a3daf825dc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/75c8caba59ae019eed10c546acff6359fb987c b/.git_backup/objects/a3/75c8caba59ae019eed10c546acff6359fb987c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/7675cbd9bc9583fd01cc158198e2f4deda321b b/.git_backup/objects/a3/7675cbd9bc9583fd01cc158198e2f4deda321b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/77dfc29a1c63de762856914ac591e5ea5fc473 b/.git_backup/objects/a3/77dfc29a1c63de762856914ac591e5ea5fc473 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/7ab18995822ad6b3372d56366becdccf9a4c26 b/.git_backup/objects/a3/7ab18995822ad6b3372d56366becdccf9a4c26 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/81c424f9eaacb4126d4b8a474052551e34ccfb b/.git_backup/objects/a3/81c424f9eaacb4126d4b8a474052551e34ccfb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/8447bb05bd5d503a32651d6046ff8667785c0c b/.git_backup/objects/a3/8447bb05bd5d503a32651d6046ff8667785c0c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/8f11ffdf2a9e538695ea8cae20b1d2c04164af b/.git_backup/objects/a3/8f11ffdf2a9e538695ea8cae20b1d2c04164af deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/912c91e48db13e1995db8561bb90037a3e6258 b/.git_backup/objects/a3/912c91e48db13e1995db8561bb90037a3e6258 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/91ffec8ae6c8aacdaa7320665a783c99232767 b/.git_backup/objects/a3/91ffec8ae6c8aacdaa7320665a783c99232767 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/94565810374a430bbede8a3a0595149f0bd5d4 b/.git_backup/objects/a3/94565810374a430bbede8a3a0595149f0bd5d4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/9e6487995caf912c2f8cdb903c6068a22ab6d3 b/.git_backup/objects/a3/9e6487995caf912c2f8cdb903c6068a22ab6d3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/9f7d76ee769435149a4af087fd32ee8adafae1 b/.git_backup/objects/a3/9f7d76ee769435149a4af087fd32ee8adafae1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/9f939ee2c914512ed9018837714f9515362dab b/.git_backup/objects/a3/9f939ee2c914512ed9018837714f9515362dab deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/ab018eefd98346f5b088f0a569c105f72293e3 b/.git_backup/objects/a3/ab018eefd98346f5b088f0a569c105f72293e3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/abd8b53856d0ed385472d62284ec839bd1c9c7 b/.git_backup/objects/a3/abd8b53856d0ed385472d62284ec839bd1c9c7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/b5845f19656d2449aecc6fa9462241bf445853 b/.git_backup/objects/a3/b5845f19656d2449aecc6fa9462241bf445853 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/b96e1cc7fe5a7b9043c9e1d6c4e44dcbc3bf29 b/.git_backup/objects/a3/b96e1cc7fe5a7b9043c9e1d6c4e44dcbc3bf29 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/bfef6b6406e0639dc8db90792b819837f58f3b b/.git_backup/objects/a3/bfef6b6406e0639dc8db90792b819837f58f3b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/c678162911426702a9a6e932761385a01f247e b/.git_backup/objects/a3/c678162911426702a9a6e932761385a01f247e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/c73ebeb25cfb9dc19d701c305d7a5b69e107d1 b/.git_backup/objects/a3/c73ebeb25cfb9dc19d701c305d7a5b69e107d1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/de4bf544cafe06dd59f0678077d10ef23e2c8c b/.git_backup/objects/a3/de4bf544cafe06dd59f0678077d10ef23e2c8c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/def660d0285215996aca346033bb3cca7688bf b/.git_backup/objects/a3/def660d0285215996aca346033bb3cca7688bf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/df9be326fc20e38cca53b3e48d633010aa6f71 b/.git_backup/objects/a3/df9be326fc20e38cca53b3e48d633010aa6f71 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/ec89ba0c126bd08678644ed8e7547c69801b1f b/.git_backup/objects/a3/ec89ba0c126bd08678644ed8e7547c69801b1f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/ef1bd508ae584dcc88f7ead768e4c95d7b7d01 b/.git_backup/objects/a3/ef1bd508ae584dcc88f7ead768e4c95d7b7d01 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/f299079aebb8524bf77e7f92e0a7e6d0a7b6fb b/.git_backup/objects/a3/f299079aebb8524bf77e7f92e0a7e6d0a7b6fb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/f7aa62af1ee2690e1e17ee41f3c368953625b8 b/.git_backup/objects/a3/f7aa62af1ee2690e1e17ee41f3c368953625b8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/fa24c7ee1e0fcccfa3ab606bbb2cf59ab98274 b/.git_backup/objects/a3/fa24c7ee1e0fcccfa3ab606bbb2cf59ab98274 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/faf783fd3fb333fab3ef50a1e452845327e52e b/.git_backup/objects/a3/faf783fd3fb333fab3ef50a1e452845327e52e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a3/fbee3d5fb34eced0fd7697062b54ef35a04974 b/.git_backup/objects/a3/fbee3d5fb34eced0fd7697062b54ef35a04974 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/01f23e1a5a899987538a28a7e907ef59d6a3cc b/.git_backup/objects/a4/01f23e1a5a899987538a28a7e907ef59d6a3cc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/05b3a55ba8b384b4ae32d8ac6a8558ae0f8613 b/.git_backup/objects/a4/05b3a55ba8b384b4ae32d8ac6a8558ae0f8613 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/06432fac55da78f5716536f0a2707618df2939 b/.git_backup/objects/a4/06432fac55da78f5716536f0a2707618df2939 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/072a69fe1eca09cf7b964900797c2c87a3ed3c b/.git_backup/objects/a4/072a69fe1eca09cf7b964900797c2c87a3ed3c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/082d75f99495b9f93c69da4ac6c3ddc1d9a552 b/.git_backup/objects/a4/082d75f99495b9f93c69da4ac6c3ddc1d9a552 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/0eeafcc914108ca79c5d83d6e81da1b29c6e80 b/.git_backup/objects/a4/0eeafcc914108ca79c5d83d6e81da1b29c6e80 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/14ee9bbd5402e536405ff39228d107354e3f14 b/.git_backup/objects/a4/14ee9bbd5402e536405ff39228d107354e3f14 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/1624f5df9698d78049008a2bd8a77395c0480a b/.git_backup/objects/a4/1624f5df9698d78049008a2bd8a77395c0480a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/1af408ff650f8b969715255727bf00797a7379 b/.git_backup/objects/a4/1af408ff650f8b969715255727bf00797a7379 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/1d02cfbd394ef432d46147a3495d789cebcb3d b/.git_backup/objects/a4/1d02cfbd394ef432d46147a3495d789cebcb3d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/1e7fe76be9a7b670ea6d8dc2f6c3ce4bdc93b0 b/.git_backup/objects/a4/1e7fe76be9a7b670ea6d8dc2f6c3ce4bdc93b0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/255ccd8fc88b39626de12588d0e21bf588b1ec b/.git_backup/objects/a4/255ccd8fc88b39626de12588d0e21bf588b1ec deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/2590bebea6002a3c81cdbf89443ca1c3578d0b b/.git_backup/objects/a4/2590bebea6002a3c81cdbf89443ca1c3578d0b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/28d8c71a7934d1eac209fbd441498a48993ca3 b/.git_backup/objects/a4/28d8c71a7934d1eac209fbd441498a48993ca3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/2ad46fa6f1255d7be5d8d3c53e0ec5cc99007e b/.git_backup/objects/a4/2ad46fa6f1255d7be5d8d3c53e0ec5cc99007e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/2b8496b0bcf89ca54b73b9bcee7d8624a4184b b/.git_backup/objects/a4/2b8496b0bcf89ca54b73b9bcee7d8624a4184b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/37bc45ad5dce204dabe8b40d020241b627fc3e b/.git_backup/objects/a4/37bc45ad5dce204dabe8b40d020241b627fc3e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/3d1a9852b61dd3057670628d27e3458e4392ac b/.git_backup/objects/a4/3d1a9852b61dd3057670628d27e3458e4392ac deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/3fd4d01ff38fcbb30cf61585cd403d3bebc81d b/.git_backup/objects/a4/3fd4d01ff38fcbb30cf61585cd403d3bebc81d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/4a6c0acd18e3cb768520847530be53677a6a81 b/.git_backup/objects/a4/4a6c0acd18e3cb768520847530be53677a6a81 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/4e1cfa1aec363239bfce6757f9c50e29673e93 b/.git_backup/objects/a4/4e1cfa1aec363239bfce6757f9c50e29673e93 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/52d76dc0305f6b982995c4f094b449f8205da5 b/.git_backup/objects/a4/52d76dc0305f6b982995c4f094b449f8205da5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/61f80b10dd1f8436e8c65eb18912ef8b9c67b0 b/.git_backup/objects/a4/61f80b10dd1f8436e8c65eb18912ef8b9c67b0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/656ea9845434b4e831f29742653f857864f0df b/.git_backup/objects/a4/656ea9845434b4e831f29742653f857864f0df deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/65fa8cfb622ef5670c9b3fbaa01a206abd8fdb b/.git_backup/objects/a4/65fa8cfb622ef5670c9b3fbaa01a206abd8fdb deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/67cf08b54879ee734617611aef72ed946d4566 b/.git_backup/objects/a4/67cf08b54879ee734617611aef72ed946d4566 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/733453540ae5b385c62ae20d75a6ef0804459f b/.git_backup/objects/a4/733453540ae5b385c62ae20d75a6ef0804459f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/74aad7141b8494fb4e8dd86136666d82af7b9f b/.git_backup/objects/a4/74aad7141b8494fb4e8dd86136666d82af7b9f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/776248038b04305b116015b9a4edf0fa98c617 b/.git_backup/objects/a4/776248038b04305b116015b9a4edf0fa98c617 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/77ac5fdb231d13df07900cb57f86186e66293b b/.git_backup/objects/a4/77ac5fdb231d13df07900cb57f86186e66293b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/7d29b36623ba39183261656677080a63f4cee9 b/.git_backup/objects/a4/7d29b36623ba39183261656677080a63f4cee9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/891ffeba7dd6fde5a6721b536a6f7bab88759a b/.git_backup/objects/a4/891ffeba7dd6fde5a6721b536a6f7bab88759a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/894ff66ab9f0c95716a66613c63a7fa95dfac7 b/.git_backup/objects/a4/894ff66ab9f0c95716a66613c63a7fa95dfac7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/963aec6388c27c3beb064f0a730af200380aee b/.git_backup/objects/a4/963aec6388c27c3beb064f0a730af200380aee deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/9b7c2b7f86e3962491b158944b24704be808bc b/.git_backup/objects/a4/9b7c2b7f86e3962491b158944b24704be808bc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/9cb0bc2c43e394aa60189f34156e956a4e3455 b/.git_backup/objects/a4/9cb0bc2c43e394aa60189f34156e956a4e3455 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/b1d859d165c157da21dd122cc082950c90a9e5 b/.git_backup/objects/a4/b1d859d165c157da21dd122cc082950c90a9e5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/b2746b29232d9bafd7fa84187103b869958666 b/.git_backup/objects/a4/b2746b29232d9bafd7fa84187103b869958666 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/bbc4753d4f74424be4bb28ac9d73385ebf78dd b/.git_backup/objects/a4/bbc4753d4f74424be4bb28ac9d73385ebf78dd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/bd0a75342fd1e3154092749048257f3f78f15c b/.git_backup/objects/a4/bd0a75342fd1e3154092749048257f3f78f15c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/c042c8f59366a81551954b4fb9e8f6ef124502 b/.git_backup/objects/a4/c042c8f59366a81551954b4fb9e8f6ef124502 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/c24b52a1bf4fd055f4a130e80f4401fe06ea6b b/.git_backup/objects/a4/c24b52a1bf4fd055f4a130e80f4401fe06ea6b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/c89104fd6a4a5bf60123a8beb19048434a5296 b/.git_backup/objects/a4/c89104fd6a4a5bf60123a8beb19048434a5296 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/cdc068c311272130fae9151b047233044b522d b/.git_backup/objects/a4/cdc068c311272130fae9151b047233044b522d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/cf88230a09d8ae01a66427bc4f6f860737e80a b/.git_backup/objects/a4/cf88230a09d8ae01a66427bc4f6f860737e80a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/cfbc9077771edbfcabcc2d619c95f1b279abf5 b/.git_backup/objects/a4/cfbc9077771edbfcabcc2d619c95f1b279abf5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/da55492af024fcc7c25a5f857e595a5cd92345 b/.git_backup/objects/a4/da55492af024fcc7c25a5f857e595a5cd92345 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/e038d015ed89730ce71ecaf605d4413fc20562 b/.git_backup/objects/a4/e038d015ed89730ce71ecaf605d4413fc20562 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/e1d5bdbb95196c7fd4303bba02141d3e714966 b/.git_backup/objects/a4/e1d5bdbb95196c7fd4303bba02141d3e714966 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/e5dac863308425b9777cb4a190b3fe1c0f01a0 b/.git_backup/objects/a4/e5dac863308425b9777cb4a190b3fe1c0f01a0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/e663e3a1536893c9cb9bffb16303d87c9ad78a b/.git_backup/objects/a4/e663e3a1536893c9cb9bffb16303d87c9ad78a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/f0c581f2ab5aa203669bff5ee7573c6c390d6f b/.git_backup/objects/a4/f0c581f2ab5aa203669bff5ee7573c6c390d6f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/f1648475e6cd51ec1e7ae344e2ca46f6051aa9 b/.git_backup/objects/a4/f1648475e6cd51ec1e7ae344e2ca46f6051aa9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/f49a78b09dddc90c655e3ed08fc3e47381d46b b/.git_backup/objects/a4/f49a78b09dddc90c655e3ed08fc3e47381d46b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/f90e0199ea554686a5226df6e65bb211bb9a34 b/.git_backup/objects/a4/f90e0199ea554686a5226df6e65bb211bb9a34 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/f99b82871889f5bd7f2cfd9720bbf56b7e5406 b/.git_backup/objects/a4/f99b82871889f5bd7f2cfd9720bbf56b7e5406 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a4/fda537d5dcf6444ccadfae75fefb825f4d72f6 b/.git_backup/objects/a4/fda537d5dcf6444ccadfae75fefb825f4d72f6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a5/08ffa80bd715b47c190ed9d747dbc388fa5b19 b/.git_backup/objects/a5/08ffa80bd715b47c190ed9d747dbc388fa5b19 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a5/10c28deabd13b0fd628945950297ed2986fcad b/.git_backup/objects/a5/10c28deabd13b0fd628945950297ed2986fcad deleted file mode 100644 index de8569de..00000000 Binary files a/.git_backup/objects/a5/10c28deabd13b0fd628945950297ed2986fcad and /dev/null differ diff --git a/.git_backup/objects/a5/14c28b6d41e1f789e6487d309d295fad3bab14 b/.git_backup/objects/a5/14c28b6d41e1f789e6487d309d295fad3bab14 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a5/1bb9dedaf1413baba4044a0a1a635625e8145f b/.git_backup/objects/a5/1bb9dedaf1413baba4044a0a1a635625e8145f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a5/26905917455e1951d72bcc813282e13c61a121 b/.git_backup/objects/a5/26905917455e1951d72bcc813282e13c61a121 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a5/30ceb087a6b5f25712a491c9be71081b4a2974 b/.git_backup/objects/a5/30ceb087a6b5f25712a491c9be71081b4a2974 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a5/386c6e331ff85d68f0c251b77b682b933419f5 b/.git_backup/objects/a5/386c6e331ff85d68f0c251b77b682b933419f5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a5/42bb3fa9dd889699c2ce766c4ba10194a5e0ab b/.git_backup/objects/a5/42bb3fa9dd889699c2ce766c4ba10194a5e0ab deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a5/43e082b21075896d26b2b66d78ee392f978c1f b/.git_backup/objects/a5/43e082b21075896d26b2b66d78ee392f978c1f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a5/4d44020a70ebf7832443458a6c3483513243ab b/.git_backup/objects/a5/4d44020a70ebf7832443458a6c3483513243ab deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a5/5014485a1e94a14df8dfaf1bce1c2921d047c3 b/.git_backup/objects/a5/5014485a1e94a14df8dfaf1bce1c2921d047c3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a5/54feb4cedccea867629befc165129c74ef3ed5 b/.git_backup/objects/a5/54feb4cedccea867629befc165129c74ef3ed5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a5/5537a1aa4d4998a7c65ec5b8c026a1fad52b42 b/.git_backup/objects/a5/5537a1aa4d4998a7c65ec5b8c026a1fad52b42 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a5/554816e2928c2bd5d02e032bbeb1e1cb101009 b/.git_backup/objects/a5/554816e2928c2bd5d02e032bbeb1e1cb101009 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a5/581a577a9a9c83e45fabd9683b339697583a13 b/.git_backup/objects/a5/581a577a9a9c83e45fabd9683b339697583a13 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a5/645e43165b840f2820d98466eeb537c3a6ebde b/.git_backup/objects/a5/645e43165b840f2820d98466eeb537c3a6ebde deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a5/66f8f62d72eca0ca02b0198072014a7309f487 b/.git_backup/objects/a5/66f8f62d72eca0ca02b0198072014a7309f487 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a5/76925d646b67c291a2082bfc6cedce4e3b8772 b/.git_backup/objects/a5/76925d646b67c291a2082bfc6cedce4e3b8772 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a5/9d2e93be7c5631fdf1fd9c2c73c250890231ef b/.git_backup/objects/a5/9d2e93be7c5631fdf1fd9c2c73c250890231ef deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a5/9d3a0f3e87edcd837271162aaac01714cabe5d b/.git_backup/objects/a5/9d3a0f3e87edcd837271162aaac01714cabe5d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a5/9fecc9e1cd3225569f49ea5a00189b75f34087 b/.git_backup/objects/a5/9fecc9e1cd3225569f49ea5a00189b75f34087 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a5/a17d6537606faca9e398224c9ca575fdb7615a b/.git_backup/objects/a5/a17d6537606faca9e398224c9ca575fdb7615a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a5/a6d91035f0aaaf7b56b4039580629037112b62 b/.git_backup/objects/a5/a6d91035f0aaaf7b56b4039580629037112b62 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a5/b287d03b7709008988a6912cb8c05bacc69bd3 b/.git_backup/objects/a5/b287d03b7709008988a6912cb8c05bacc69bd3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a5/b48e5677f578dc99fbc5743c970304b303bd0f b/.git_backup/objects/a5/b48e5677f578dc99fbc5743c970304b303bd0f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a5/b78702525e279ac81f5027523792bff2eb8677 b/.git_backup/objects/a5/b78702525e279ac81f5027523792bff2eb8677 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a5/b8d28b6fe23c72d8dae2d74a24119026a7c969 b/.git_backup/objects/a5/b8d28b6fe23c72d8dae2d74a24119026a7c969 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a5/b9cb5e233671f026ee039ea102915a0951089e b/.git_backup/objects/a5/b9cb5e233671f026ee039ea102915a0951089e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a5/beaf030e59acd27728de36dfb40db443485aa8 b/.git_backup/objects/a5/beaf030e59acd27728de36dfb40db443485aa8 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a5/c18a25f8e16680e7f8b66549e826f1eeddadc2 b/.git_backup/objects/a5/c18a25f8e16680e7f8b66549e826f1eeddadc2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a5/c870a09068200a897402c1ba558546af06e50b b/.git_backup/objects/a5/c870a09068200a897402c1ba558546af06e50b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a5/c9e25d25018862c43bde0ab0d71d3f35f36ac4 b/.git_backup/objects/a5/c9e25d25018862c43bde0ab0d71d3f35f36ac4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a5/dc12bdd63163c86f87ce4b5430cdb16d73769d b/.git_backup/objects/a5/dc12bdd63163c86f87ce4b5430cdb16d73769d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a5/dd37b08f774d025719b6b2eb94c9a8d9febcd6 b/.git_backup/objects/a5/dd37b08f774d025719b6b2eb94c9a8d9febcd6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a5/ddc477ff1b4eb42913d66edeb0e1677096d0a7 b/.git_backup/objects/a5/ddc477ff1b4eb42913d66edeb0e1677096d0a7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a5/e1b79600d21019a3b93f3e2d796129d9b1d655 b/.git_backup/objects/a5/e1b79600d21019a3b93f3e2d796129d9b1d655 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a5/f285d31301b24f95d12e742c8e9e30b7fefbf4 b/.git_backup/objects/a5/f285d31301b24f95d12e742c8e9e30b7fefbf4 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a6/0245849e1c62aa3a6a50a37666fe31b41b6f09 b/.git_backup/objects/a6/0245849e1c62aa3a6a50a37666fe31b41b6f09 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a6/05d6c254f519ec221b18f104a62b758241a99b b/.git_backup/objects/a6/05d6c254f519ec221b18f104a62b758241a99b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a6/0ad5b605a9dc6b0d85eb0a0e3e655c4955dd34 b/.git_backup/objects/a6/0ad5b605a9dc6b0d85eb0a0e3e655c4955dd34 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a6/1331cefdf89fa9e0b8a6016d569582fdb51697 b/.git_backup/objects/a6/1331cefdf89fa9e0b8a6016d569582fdb51697 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a6/133a1ba701d3c17bd05fabe591da68f0c0240f b/.git_backup/objects/a6/133a1ba701d3c17bd05fabe591da68f0c0240f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a6/1dfdcbac2a97bee790e2a2c03be65411665eff b/.git_backup/objects/a6/1dfdcbac2a97bee790e2a2c03be65411665eff deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a6/1e77bec982886e6d6d6caea3bed60763caa9f1 b/.git_backup/objects/a6/1e77bec982886e6d6d6caea3bed60763caa9f1 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a6/2137bd6369230e407a2d945cfa1ff020c2ca65 b/.git_backup/objects/a6/2137bd6369230e407a2d945cfa1ff020c2ca65 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a6/221b3de7b1490c5e712e8b5fcc94c3d9d04295 b/.git_backup/objects/a6/221b3de7b1490c5e712e8b5fcc94c3d9d04295 deleted file mode 100644 index 94832e5e..00000000 Binary files a/.git_backup/objects/a6/221b3de7b1490c5e712e8b5fcc94c3d9d04295 and /dev/null differ diff --git a/.git_backup/objects/a6/2696f9e77748b2a165dd52dc48252234d45620 b/.git_backup/objects/a6/2696f9e77748b2a165dd52dc48252234d45620 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a6/293fdebae9bb383582dc26a4a4f6cf782e5c81 b/.git_backup/objects/a6/293fdebae9bb383582dc26a4a4f6cf782e5c81 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a6/31191f8b005d4fbf74d7d8a29e51b44184a0aa b/.git_backup/objects/a6/31191f8b005d4fbf74d7d8a29e51b44184a0aa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a6/3237dfe93d4ef2be2b4e52ff08d39a9549989f b/.git_backup/objects/a6/3237dfe93d4ef2be2b4e52ff08d39a9549989f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a6/336ba35922a337e23ce55d66b563a132583745 b/.git_backup/objects/a6/336ba35922a337e23ce55d66b563a132583745 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a6/46d7639a4e66c65ffc4585f301bc8de70d21aa b/.git_backup/objects/a6/46d7639a4e66c65ffc4585f301bc8de70d21aa deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a6/4727f89042736fb2ea2c44fff26e95236bad81 b/.git_backup/objects/a6/4727f89042736fb2ea2c44fff26e95236bad81 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a6/491952375a4afef3335ff90fab0d9f22171e68 b/.git_backup/objects/a6/491952375a4afef3335ff90fab0d9f22171e68 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a6/4af73899de1a292ebadebb3cf4ad9bae27d6fc b/.git_backup/objects/a6/4af73899de1a292ebadebb3cf4ad9bae27d6fc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a6/53dd12dd4c6c0369102369d9efe1e2febc9996 b/.git_backup/objects/a6/53dd12dd4c6c0369102369d9efe1e2febc9996 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a6/582fe9c5221174e7ae664dcc11480c87cdae6d b/.git_backup/objects/a6/582fe9c5221174e7ae664dcc11480c87cdae6d deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a6/58cf446ca4c263a111a1334f98b41c0f3ba97c b/.git_backup/objects/a6/58cf446ca4c263a111a1334f98b41c0f3ba97c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a6/5bb25e5bbdc7564c49ad2eb96172458f951cd2 b/.git_backup/objects/a6/5bb25e5bbdc7564c49ad2eb96172458f951cd2 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a6/62a57137b69e8ba445e899566222cdd422a764 b/.git_backup/objects/a6/62a57137b69e8ba445e899566222cdd422a764 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a6/7cc2057de6f10e16cd2aa3d16e4f21aa34edc7 b/.git_backup/objects/a6/7cc2057de6f10e16cd2aa3d16e4f21aa34edc7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a6/80ae5cd695cf4d7b431b5dff487ae73cbca5f0 b/.git_backup/objects/a6/80ae5cd695cf4d7b431b5dff487ae73cbca5f0 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a6/80ca232f1cd44dbd84d2bbaec8bbae05d6d63e b/.git_backup/objects/a6/80ca232f1cd44dbd84d2bbaec8bbae05d6d63e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a6/83e9faed1f297004565982414afd1e5e3c417f b/.git_backup/objects/a6/83e9faed1f297004565982414afd1e5e3c417f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a6/84915d19e7fc95ed85921ee2b4ebb1ac9d0154 b/.git_backup/objects/a6/84915d19e7fc95ed85921ee2b4ebb1ac9d0154 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a6/940c08198b006f7be0d91596a6ddc3ca0002bd b/.git_backup/objects/a6/940c08198b006f7be0d91596a6ddc3ca0002bd deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a6/a00003b2ad07cc1ef2bfd0076234c76be4c611 b/.git_backup/objects/a6/a00003b2ad07cc1ef2bfd0076234c76be4c611 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a6/a38debc4f7bed72b50d18e85aa5371d2e22e68 b/.git_backup/objects/a6/a38debc4f7bed72b50d18e85aa5371d2e22e68 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a6/a6694f3317a25e7bc4c66502e9f396fa106509 b/.git_backup/objects/a6/a6694f3317a25e7bc4c66502e9f396fa106509 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a6/a6f395e5570e53ab974c7d5abdbeb5af5174a3 b/.git_backup/objects/a6/a6f395e5570e53ab974c7d5abdbeb5af5174a3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a6/bba537be750a4dc8ce6b7046ad86c7564edbf6 b/.git_backup/objects/a6/bba537be750a4dc8ce6b7046ad86c7564edbf6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a6/bba586a53ea6fdddc82b403e66d157cc0cd5ed b/.git_backup/objects/a6/bba586a53ea6fdddc82b403e66d157cc0cd5ed deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a6/c162415708bc9e0586422f776e7bdbb2bd83ce b/.git_backup/objects/a6/c162415708bc9e0586422f776e7bdbb2bd83ce deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a7/0b6cbbe2043f817c981289009719499a3dd690 b/.git_backup/objects/a7/0b6cbbe2043f817c981289009719499a3dd690 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a7/e2b28ed37c9cabb8dd2c8bd485466ae2552226 b/.git_backup/objects/a7/e2b28ed37c9cabb8dd2c8bd485466ae2552226 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a7/e5221930f29ba1ae291d2362862024934a60ca b/.git_backup/objects/a7/e5221930f29ba1ae291d2362862024934a60ca deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/a8/f3dd4ab50c1390b100b30da88cc9bce95ff3f6 b/.git_backup/objects/a8/f3dd4ab50c1390b100b30da88cc9bce95ff3f6 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/ab/6eac482211d7f97a8bb6c984579617fde35a96 b/.git_backup/objects/ab/6eac482211d7f97a8bb6c984579617fde35a96 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/ab/724547b588471e54a48fba24db06dc3d8036e5 b/.git_backup/objects/ab/724547b588471e54a48fba24db06dc3d8036e5 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/ad/cfdb89d1eb52b925b4411834dbc6077d08dec4 b/.git_backup/objects/ad/cfdb89d1eb52b925b4411834dbc6077d08dec4 deleted file mode 100644 index 621a867d..00000000 Binary files a/.git_backup/objects/ad/cfdb89d1eb52b925b4411834dbc6077d08dec4 and /dev/null differ diff --git a/.git_backup/objects/ae/b86482e362c681881d3a796e314ebd835958a5 b/.git_backup/objects/ae/b86482e362c681881d3a796e314ebd835958a5 deleted file mode 100644 index 2f7637a6..00000000 Binary files a/.git_backup/objects/ae/b86482e362c681881d3a796e314ebd835958a5 and /dev/null differ diff --git a/.git_backup/objects/b0/d4f487d01fcff24c5ca37a4b8b2a6ca21a8f4d b/.git_backup/objects/b0/d4f487d01fcff24c5ca37a4b8b2a6ca21a8f4d deleted file mode 100644 index 6773c179..00000000 Binary files a/.git_backup/objects/b0/d4f487d01fcff24c5ca37a4b8b2a6ca21a8f4d and /dev/null differ diff --git a/.git_backup/objects/b3/f1ed138e2a231907f5e3d230f0caee0bfdb185 b/.git_backup/objects/b3/f1ed138e2a231907f5e3d230f0caee0bfdb185 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/b4/e1dc151a0b40f1b60189aff01786dc3c90e802 b/.git_backup/objects/b4/e1dc151a0b40f1b60189aff01786dc3c90e802 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/be/8d217a698c3c6041e265ffd311aa0ac032eb84 b/.git_backup/objects/be/8d217a698c3c6041e265ffd311aa0ac032eb84 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/be/906f98a6be70429950ac28923c150dd15a5aad b/.git_backup/objects/be/906f98a6be70429950ac28923c150dd15a5aad deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/c1/4aa79f3b5f860c66d757048fd25c6fd22dcbb5 b/.git_backup/objects/c1/4aa79f3b5f860c66d757048fd25c6fd22dcbb5 deleted file mode 100644 index e49ceff0..00000000 Binary files a/.git_backup/objects/c1/4aa79f3b5f860c66d757048fd25c6fd22dcbb5 and /dev/null differ diff --git a/.git_backup/objects/c1/6df87412daa15921105c54c7c799a853be3cc7 b/.git_backup/objects/c1/6df87412daa15921105c54c7c799a853be3cc7 deleted file mode 100644 index a643534d..00000000 Binary files a/.git_backup/objects/c1/6df87412daa15921105c54c7c799a853be3cc7 and /dev/null differ diff --git a/.git_backup/objects/c5/95513236b5aa0784d30c643731e26dacfac5b0 b/.git_backup/objects/c5/95513236b5aa0784d30c643731e26dacfac5b0 deleted file mode 100644 index e047c3da..00000000 Binary files a/.git_backup/objects/c5/95513236b5aa0784d30c643731e26dacfac5b0 and /dev/null differ diff --git a/.git_backup/objects/c7/3f7c6d70e268508722072a68c9aa0d17cdc94c b/.git_backup/objects/c7/3f7c6d70e268508722072a68c9aa0d17cdc94c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/c7/42aaeaa1fda4fc246dc7c77e816fbf02909f4e b/.git_backup/objects/c7/42aaeaa1fda4fc246dc7c77e816fbf02909f4e deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/c8/2c1de1b97eeff1fd485d12bf7e15f08a651e0e b/.git_backup/objects/c8/2c1de1b97eeff1fd485d12bf7e15f08a651e0e deleted file mode 100644 index b54af5fe..00000000 Binary files a/.git_backup/objects/c8/2c1de1b97eeff1fd485d12bf7e15f08a651e0e and /dev/null differ diff --git a/.git_backup/objects/c9/0b5d725389b6ca23b652813bbc18af7f673946 b/.git_backup/objects/c9/0b5d725389b6ca23b652813bbc18af7f673946 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/cc/e9c99aa00ddc30d14935475e8ccb548a8c1a1b b/.git_backup/objects/cc/e9c99aa00ddc30d14935475e8ccb548a8c1a1b deleted file mode 100644 index 203b7b98..00000000 Binary files a/.git_backup/objects/cc/e9c99aa00ddc30d14935475e8ccb548a8c1a1b and /dev/null differ diff --git a/.git_backup/objects/ce/e439fb05c538885892d1fbc66f06f6c055f57b b/.git_backup/objects/ce/e439fb05c538885892d1fbc66f06f6c055f57b deleted file mode 100644 index 1b3d6c56..00000000 Binary files a/.git_backup/objects/ce/e439fb05c538885892d1fbc66f06f6c055f57b and /dev/null differ diff --git a/.git_backup/objects/d4/527295da38d974938c194ee3b66bb4d7fb7024 b/.git_backup/objects/d4/527295da38d974938c194ee3b66bb4d7fb7024 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/d5/4ae4333c746e9b4ef067f0d4ced77494a6eb78 b/.git_backup/objects/d5/4ae4333c746e9b4ef067f0d4ced77494a6eb78 deleted file mode 100644 index cf16cc1b..00000000 Binary files a/.git_backup/objects/d5/4ae4333c746e9b4ef067f0d4ced77494a6eb78 and /dev/null differ diff --git a/.git_backup/objects/d9/4154cd2726b09bef04328955a650872dc5d3f5 b/.git_backup/objects/d9/4154cd2726b09bef04328955a650872dc5d3f5 deleted file mode 100644 index ff2907c4..00000000 Binary files a/.git_backup/objects/d9/4154cd2726b09bef04328955a650872dc5d3f5 and /dev/null differ diff --git a/.git_backup/objects/d9/8198d2faf96de815b6296552af1bf182e6506f b/.git_backup/objects/d9/8198d2faf96de815b6296552af1bf182e6506f deleted file mode 100644 index 188eeb80..00000000 Binary files a/.git_backup/objects/d9/8198d2faf96de815b6296552af1bf182e6506f and /dev/null differ diff --git a/.git_backup/objects/db/f1f7e2a6833a55da5863894f067fba9b33ad2f b/.git_backup/objects/db/f1f7e2a6833a55da5863894f067fba9b33ad2f deleted file mode 100644 index d69c71c1..00000000 Binary files a/.git_backup/objects/db/f1f7e2a6833a55da5863894f067fba9b33ad2f and /dev/null differ diff --git a/.git_backup/objects/dc/2d6eb6f18dd0301b3fafabe047684e2c5a821e b/.git_backup/objects/dc/2d6eb6f18dd0301b3fafabe047684e2c5a821e deleted file mode 100644 index 49b6af0a..00000000 Binary files a/.git_backup/objects/dc/2d6eb6f18dd0301b3fafabe047684e2c5a821e and /dev/null differ diff --git a/.git_backup/objects/dc/65f842ac02ce62d436991c4471aaee4f1732be b/.git_backup/objects/dc/65f842ac02ce62d436991c4471aaee4f1732be deleted file mode 100644 index b3757f97..00000000 Binary files a/.git_backup/objects/dc/65f842ac02ce62d436991c4471aaee4f1732be and /dev/null differ diff --git a/.git_backup/objects/de/fe786fce965c1ff75bb16a4f0c7b6889e1b5a9 b/.git_backup/objects/de/fe786fce965c1ff75bb16a4f0c7b6889e1b5a9 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/df/04471f90ea33de242056d7e0cf6d6000765fae b/.git_backup/objects/df/04471f90ea33de242056d7e0cf6d6000765fae deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/df/1274c2c8324e89b20011938a97766c07afc494 b/.git_backup/objects/df/1274c2c8324e89b20011938a97766c07afc494 deleted file mode 100644 index d7a87b0b..00000000 Binary files a/.git_backup/objects/df/1274c2c8324e89b20011938a97766c07afc494 and /dev/null differ diff --git a/.git_backup/objects/df/6f338f4dd6eaeafe380bd8aa0eeb5390b4729e b/.git_backup/objects/df/6f338f4dd6eaeafe380bd8aa0eeb5390b4729e deleted file mode 100644 index a09426bf..00000000 Binary files a/.git_backup/objects/df/6f338f4dd6eaeafe380bd8aa0eeb5390b4729e and /dev/null differ diff --git a/.git_backup/objects/e1/ec9c6cbe4bc2ba7ef004b3b40936c46720f0af b/.git_backup/objects/e1/ec9c6cbe4bc2ba7ef004b3b40936c46720f0af deleted file mode 100644 index 55c1da08..00000000 Binary files a/.git_backup/objects/e1/ec9c6cbe4bc2ba7ef004b3b40936c46720f0af and /dev/null differ diff --git a/.git_backup/objects/e3/4193883dea739b09792a86bfc3d4c03b42cb5a b/.git_backup/objects/e3/4193883dea739b09792a86bfc3d4c03b42cb5a deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/e3/4ce8815f3efc9d601cfe93677ea4d536fb16fc b/.git_backup/objects/e3/4ce8815f3efc9d601cfe93677ea4d536fb16fc deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/e3/82c56c5e91d9e9649f95793858a5fa60c2bc48 b/.git_backup/objects/e3/82c56c5e91d9e9649f95793858a5fa60c2bc48 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/e3/848639e5a20e1e62110b0d8925e4fb172d8c2c b/.git_backup/objects/e3/848639e5a20e1e62110b0d8925e4fb172d8c2c deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/e3/8ed9a20e55ba8733a876a40f49a2e32846897f b/.git_backup/objects/e3/8ed9a20e55ba8733a876a40f49a2e32846897f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/e3/95c2edfd3ace8633b016e6f5248062dde8ed24 b/.git_backup/objects/e3/95c2edfd3ace8633b016e6f5248062dde8ed24 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/e3/9a26d35aeaa20ef3fadcb5d1198819c540b60f b/.git_backup/objects/e3/9a26d35aeaa20ef3fadcb5d1198819c540b60f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/e3/9eccb8cfdaecfd58711210b87354ab617da02b b/.git_backup/objects/e3/9eccb8cfdaecfd58711210b87354ab617da02b deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/e3/a75ebc6e6a9a68122f4e0c8a1912a1c19862d3 b/.git_backup/objects/e3/a75ebc6e6a9a68122f4e0c8a1912a1c19862d3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/e3/a90f3fd65bee3831103b4937c05da127be02d7 b/.git_backup/objects/e3/a90f3fd65bee3831103b4937c05da127be02d7 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/e3/a9c655e1c84d5c2c0ca49b6442deb3e61cf566 b/.git_backup/objects/e3/a9c655e1c84d5c2c0ca49b6442deb3e61cf566 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/e3/b04ba076301336efd4f03bf3b4693f540e8dbf b/.git_backup/objects/e3/b04ba076301336efd4f03bf3b4693f540e8dbf deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/e3/bce69b204f80ccc706050a1fa5f10362fbc76f b/.git_backup/objects/e3/bce69b204f80ccc706050a1fa5f10362fbc76f deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/e3/bcfd3bda5a52027c13f8e62fe70b66269ef1c3 b/.git_backup/objects/e3/bcfd3bda5a52027c13f8e62fe70b66269ef1c3 deleted file mode 100644 index e69de29b..00000000 diff --git a/.git_backup/objects/e4/ab2d33797141595acbb02a1b0fbdcba1d8bebd b/.git_backup/objects/e4/ab2d33797141595acbb02a1b0fbdcba1d8bebd deleted file mode 100644 index 0c79d44c..00000000 Binary files a/.git_backup/objects/e4/ab2d33797141595acbb02a1b0fbdcba1d8bebd and /dev/null differ diff --git a/.git_backup/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391 b/.git_backup/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391 deleted file mode 100644 index 71122389..00000000 Binary files a/.git_backup/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391 and /dev/null differ diff --git a/.git_backup/objects/e6/bb9610ac7fb261b53fe2cb35bfb2c1c5aeb0ae b/.git_backup/objects/e6/bb9610ac7fb261b53fe2cb35bfb2c1c5aeb0ae deleted file mode 100644 index 7422510e..00000000 Binary files a/.git_backup/objects/e6/bb9610ac7fb261b53fe2cb35bfb2c1c5aeb0ae and /dev/null differ diff --git a/.git_backup/objects/ea/f77238555a1799de64e1edd7dc7806a7d8322a b/.git_backup/objects/ea/f77238555a1799de64e1edd7dc7806a7d8322a deleted file mode 100644 index 198e4145..00000000 Binary files a/.git_backup/objects/ea/f77238555a1799de64e1edd7dc7806a7d8322a and /dev/null differ diff --git a/.git_backup/objects/eb/ed030a0b72c23d2401f4e69a2b3215a49b90a1 b/.git_backup/objects/eb/ed030a0b72c23d2401f4e69a2b3215a49b90a1 deleted file mode 100644 index 3e96580c..00000000 Binary files a/.git_backup/objects/eb/ed030a0b72c23d2401f4e69a2b3215a49b90a1 and /dev/null differ diff --git a/.git_backup/objects/ec/177302f311546e481e5a1a336911ef206cf0fa b/.git_backup/objects/ec/177302f311546e481e5a1a336911ef206cf0fa deleted file mode 100644 index 872fcfc2..00000000 --- a/.git_backup/objects/ec/177302f311546e481e5a1a336911ef206cf0fa +++ /dev/null @@ -1,6 +0,0 @@ -xVm6g|ӦZKA>h }^K,I[yid;Not l$͌yL֔p&l;g:ĺƺ6Uљ[5%h:k:S!Q4FzOO5l=1dqvb״[Hշwf eqJb 9VCx#9]}wF6Mc'b=Et+ӵlz*o,f0|IZ-CX.Ű߱ŕ eooq -! M5t{n %ryI5' $/=;NT)Œ-X@8]t6)}'y^H-jPׅ\-ɠW7mC>pwmRj)t@)2qޛxw=eB>.S[Srh;m;0^"󊋰 *.}7P4@XwsUbяq竛q'L͟v_$l9.Uee"r?*@ vr 9X[̖TtZ1۞ϧMWQ,*TQim|b7օ brڴ`\|{`C SBXf[Mtd~SθYn&y~ֿcaq?tQi{o"Jkm_r޺Q$9%Zߘ^ -~qS!ش-]87@oO ьV&WԸCO!0\ -C?( ?7AU%X.¢GL%-ԎU|F˗QB$t_Lя}ˮ\ 3Yb6a݌Nu"(fϖ BSv -✈ -7@άȄCRżqdF]IL?lέ䀿NUtY:t>1Ҕ,yEmm9gܱ"u3q#:-+YDp \ No newline at end of file diff --git a/.git_backup/objects/ec/4fc80790c2d1555fa62aa2046e2558239ef0e8 b/.git_backup/objects/ec/4fc80790c2d1555fa62aa2046e2558239ef0e8 deleted file mode 100644 index 0d1c4f71..00000000 Binary files a/.git_backup/objects/ec/4fc80790c2d1555fa62aa2046e2558239ef0e8 and /dev/null differ diff --git a/.git_backup/objects/ef/cbd0da2567d17dd32991b2d9948c38562ec569 b/.git_backup/objects/ef/cbd0da2567d17dd32991b2d9948c38562ec569 deleted file mode 100644 index 663e7cc7..00000000 Binary files a/.git_backup/objects/ef/cbd0da2567d17dd32991b2d9948c38562ec569 and /dev/null differ diff --git a/.git_backup/objects/f0/d15fdb0a3d02a20acf1d74f00492c15cd1bcde b/.git_backup/objects/f0/d15fdb0a3d02a20acf1d74f00492c15cd1bcde deleted file mode 100644 index b9d7131f..00000000 Binary files a/.git_backup/objects/f0/d15fdb0a3d02a20acf1d74f00492c15cd1bcde and /dev/null differ diff --git a/.git_backup/objects/f1/82ab2c77d33b5cf9d1576c968bdc095a363c47 b/.git_backup/objects/f1/82ab2c77d33b5cf9d1576c968bdc095a363c47 deleted file mode 100644 index 38681b49..00000000 Binary files a/.git_backup/objects/f1/82ab2c77d33b5cf9d1576c968bdc095a363c47 and /dev/null differ diff --git a/.git_backup/objects/f5/540569eacbcc030fe5446502a963b0b7cb31de b/.git_backup/objects/f5/540569eacbcc030fe5446502a963b0b7cb31de deleted file mode 100644 index 3001f6fb..00000000 Binary files a/.git_backup/objects/f5/540569eacbcc030fe5446502a963b0b7cb31de and /dev/null differ diff --git a/.git_backup/objects/f5/cbc8304a78863e2bd8b0b30eb11c04dda23aae b/.git_backup/objects/f5/cbc8304a78863e2bd8b0b30eb11c04dda23aae deleted file mode 100644 index cb313aa5..00000000 Binary files a/.git_backup/objects/f5/cbc8304a78863e2bd8b0b30eb11c04dda23aae and /dev/null differ diff --git a/.git_backup/objects/f7/e8029d4b5de0a4a87bcc8035779f0fc44d99b7 b/.git_backup/objects/f7/e8029d4b5de0a4a87bcc8035779f0fc44d99b7 deleted file mode 100644 index ebaab416..00000000 Binary files a/.git_backup/objects/f7/e8029d4b5de0a4a87bcc8035779f0fc44d99b7 and /dev/null differ diff --git a/.git_backup/objects/f9/7101fc1bc7b6254ee61bb38a5b156905104617 b/.git_backup/objects/f9/7101fc1bc7b6254ee61bb38a5b156905104617 deleted file mode 100644 index 71023a77..00000000 Binary files a/.git_backup/objects/f9/7101fc1bc7b6254ee61bb38a5b156905104617 and /dev/null differ diff --git a/.git_backup/objects/ff/6951792f55b4d7f1eedde10199631c923ff909 b/.git_backup/objects/ff/6951792f55b4d7f1eedde10199631c923ff909 deleted file mode 100644 index 78090907..00000000 Binary files a/.git_backup/objects/ff/6951792f55b4d7f1eedde10199631c923ff909 and /dev/null differ diff --git a/.git_backup/packed-refs b/.git_backup/packed-refs deleted file mode 100644 index 93c9bbde..00000000 --- a/.git_backup/packed-refs +++ /dev/null @@ -1,2 +0,0 @@ -# pack-refs with: peeled fully-peeled sorted -5c18836708fb16a8e59bc5a46ed25f4b34ccc0ef refs/heads/master diff --git a/.git_backup/refs/heads/master b/.git_backup/refs/heads/master deleted file mode 100644 index 751e74f1..00000000 --- a/.git_backup/refs/heads/master +++ /dev/null @@ -1 +0,0 @@ -21c1e69fd904a5195ca731a2dacf874f41cbe929 diff --git a/.git_backup/refs/heads/temp_branch b/.git_backup/refs/heads/temp_branch deleted file mode 100644 index 751e74f1..00000000 --- a/.git_backup/refs/heads/temp_branch +++ /dev/null @@ -1 +0,0 @@ -21c1e69fd904a5195ca731a2dacf874f41cbe929 diff --git a/01_data_process.sh b/01_data_process.sh new file mode 100644 index 00000000..9af769cc --- /dev/null +++ b/01_data_process.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +# First process the data +python ./flask_app/data_process.py \ + --doc_dir ./flask_app/Data/bills/congressional_bill_train.json \ + --save_path ./flask_app/Data/bills/congressional_bill_train_processed.pkl \ + --new_json_path ./flask_app/Data/bills/congressional_bill_train.json + diff --git a/02_train_model.sh b/02_train_model.sh new file mode 100644 index 00000000..c1f4bc56 --- /dev/null +++ b/02_train_model.sh @@ -0,0 +1,26 @@ +#!/bin/bash + +python ./flask_app/Topic_Models/train_models.py \ + --num_topics 35 \ + --num_iters 3000 \ + --model_type LDA \ + --load_data_path ./flask_app/Data/bills/congressional_bill_train_processed.pkl\ + --raw_text_path ./flask_app/Data/bills/congressional_bill_train.json \ + --save_trained_model_path ./flask_app/Topic_Models/trained_models/LDA_35.pkl + +python ./flask_app/Topic_Models/train_models.py \ + --num_topics 35 \ + --num_iters 3000 \ + --model_type SLDA \ + --load_data_path ./flask_app/Data/bills/congressional_bill_train_processed.pkl\ + --raw_text_path ./flask_app/Data/bills/congressional_bill_train.json \ + --save_trained_model_path ./flask_app/Topic_Models/trained_models/SLDA_35.pkl + +python ./flask_app/Topic_Models/train_models.py \ + --num_topics 35 \ + --num_iters 250 \ + --model_type CTM \ + --load_data_path ./flask_app/Data/bills/congressional_bill_train_processed.pkl\ + --raw_text_path ./flask_app/Data/bills/congressional_bill_train.json \ + --save_trained_model_path ./flask_app/Topic_Models/trained_models/CTM_35.pkl + diff --git a/03_run_app.sh b/03_run_app.sh new file mode 100644 index 00000000..a6feb981 --- /dev/null +++ b/03_run_app.sh @@ -0,0 +1,4 @@ +#!/bin/bash + +export FLASK_APP=flask_app/app.py +flask run -p 5001 -h 0.0.0.0 diff --git a/README.md b/README.md index 53ee1920..da786e00 100644 --- a/README.md +++ b/README.md @@ -1,94 +1,136 @@ -# Document Annotation App +# TENOR: Efficient Document Labeling/Topic Modeling Tool to Exploratory Data Analysis + +🔥 +TENOR is a user interface for speeding up document labeling process and reducing the number of documents needed to be labeled. See the paper for details: +- (2024). Beyond Automated Evaluation Metrics: Evaluating Topic Models On Practical Social Science Content Analysis Tasks. EACL. https://arxiv.org/abs/2401.16348 -Welcome to the Document Annotation NLP Tool – an NLP topic modeling tool with active learning, designed to streamline document labeling. -## Getting Started -To run the app interface locally with the default Congressional Bill dataset, follow these steps: +## References -1. Open your terminal. -2. Navigate to the `flask_app` directory using the `cd` command. -3. Run the following command, replacing `` with your desired port number: +If you find this tool helpful, you can cite the following paper: +```bibtex +@misc{li2024automated, + title={Beyond Automated Evaluation Metrics: Evaluating Topic Models On Practical Social Science Content Analysis Tasks}, + author={Zongxia Li and Andrew Mao and Daniel Stephens and Pranav Goel and Emily Walpole and Alden Dima and Juan Fung and Jordan Boyd-Graber}, + year={2024}, + eprint={2401.16348}, + archivePrefix={arXiv}, + primaryClass={cs.CL} +} ``` -cd flask_app -flask run -p + + +## Getting Started + +This tool's frontend code interface is adopted from [this repository](https://github.com/daniel-stephens/community_resilience). To run the app interface locally with the default Bills dataset, follow these steps: + + +```bash +git clone https://github.com/Pinafore/2023-document-annotation.git +cd 2023-document-annotation +pip install -r requirements.txt ``` -To process your own dataset, run the following command to see the available arguments and options: +## Setup +#### 1. Data Preprocessing +Preprocess the data for topic model training. The processed data will be saved to the specified --new_json_path directory ``` -python data_process.py --help +./01_data_process.sh ``` -## Dataset Information - -This app supports two datasets: +#### 2. Training Topic Models -1. **20newsgroup**: A dataset of newsgroup documents. -2. **congressional_bill_project_dataset**: A dataset of Congressional Bill documents. +You can obtain trained topic models in two ways: -For the Congressional Bill dataset, the app uses data from the following sources: -- [Comparative Agendas Project](https://www.comparativeagendas.net/us) -- [Congressional Bills](http://www.congressionalbills.org) +1. If you're looking to get started quickly without training your own models, we've got you covered. Pre-trained models on the bills dataset, configured with 35 topics, are ready for use. You can download these models directly from [Google Drive](https://drive.google.com/drive/folders/1-k6YcC2KLp8iULGF5zmpAYlpk49dbX4W?usp=sharing) -To align topics with labels, refer to the [Codebook](https://comparativeagendas.s3.amazonaws.com/codebookfiles/Codebook_PAP_2019.pdf). -## Run in Colab +After downloading, place the model files in the following directory of your local repository: +``` +./flask_app/Topic_Models/trained_Models/ +``` -You can also access the app using Google Colab. Click the badge below to open the app notebook: +2. Train Your Own Models -[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/Pinafore/2023-document-annotation/blob/working-app/synthetic_experiment.ipynb) +For those who need customized topic models, we provide a convenient script to facilitate the training process: -## Pipeline +```bash +./02_train_model.sh +``` -### Step 1: Data Preprocessing +This script will lead you through the steps necessary to train new models, which will then be saved to the location specified in the bash script argument `--save_trained_model_path`. -To preprocess your dataset for analysis, follow these steps: +**Configuration Note:** +The application defaults to using 35 topics for model training. If your requirements differ, please follow these steps to ensure compatibility: -1. Ensure your dataset is in JSON format, readable by [pandas](https://pandas.pydata.org/docs/reference/api/pandas.read_json.html). -2. Your dataset table should have the columns: `text`, `label`, and `sub_labels`. -3. Run the preprocessing script: +1. Execute the model training script with the number of topics set to your preference. +2. Once training is complete, adjust the code in `app.py` to align with your model's topic count. Specifically, change the value on line 128 to correspond with the number of topics in your newly trained model. - ``` - cd Topic_Models - python data_process.py - ``` -### Step 2: Topic Model Training +#### 3. Starting the Web Application -Choose from a range of topic models and train them using your preprocessed data: +To launch the web application on your local machine, execute the provided shell script by running the following command in your terminal: -- LDA (Latent Dirichlet Allocation) -- Supervised LDA -- Embedded Topic Model -- Contextualized Topic Model -- Bertopic -- Partially Labeled LDA -- Labeled LDA +```bash +./03_run_app.sh +``` -Run the training script with appropriate arguments: +Upon successful execution of the script, the web application will be available. You can access it by opening your web browser and navigating to: ``` -cd Topic_Models - -python train_save_topic_model.py --num_topics \ ---num_iters \ ---model_type \ ---load_data_path ---num_topics ---raw_text_path +http://localhost:5001 ``` -### Step 3: Synthetic Experiment +If you wish to use a different port than the default `5001`, ensure that the `03_run_app.sh` script is configured accordingly before starting the application. + + + +## Dataset Information + +This app supports two datasets: + +1. **20newsgroup**: A collection of newsgroup documents. +2. **congressional_bill_project_dataset**: A compilation of Congressional Bill documents. + +For the Congressional Bill dataset, the app uses data from these sources: + +- [Comparative Agendas Project](https://www.comparativeagendas.net/us) +- [Congressional Bills](http://www.congressionalbills.org) + +The original Bills dataset uses numbers as labels. To correlate topics with labels, consult the [Codebook](https://comparativeagendas.s3.amazonaws.com/codebookfiles/Codebook_PAP_2019.pdf). + +## Interface Demonstration + +

+ List Interface +
+ The List Interface provides a streamlined overview of documents grouped by topics. +

+ +

+ Document Interface +
+ The Document Interface offers an immersive reading experience, providing ranked relevant topics and automatic highlights of keywords in the document. +

+ + +## Acknowledgements + +This project was built upon the work of the following repositories: +- [Contextualized Topic Models](https://github.com/MilaNLProc/contextualized-topic-models) +- [Tomotopy](https://github.com/bab2min/tomotopy) -To reproduce the synthetic experiment, first train your model using Step 1 or Step 2. Then, open `synthetic_experiment.ipynb` to run the models. +We extend our gratitude to the authors of these original repositories for their valuable contributions and inspiration. -### Step 4: Plotting Results +## License -To visualize the synthetic experiment results, navigate to `new_model_plot.ipynb`. This notebook allows you to read and plot the saved results. +This project is licensed under the [MIT License](LICENSE.md) - see the LICENSE file for details. -## Trained Topic Models +## Contact -All trained topic models are saved in the `./Topic_Models/Model/` directory. Model files are stored in pickle format and follow the naming convention: `{model_type}_{number_of_topics}.pkl`. For instance, you might find files like `LDA_20.pkl`. +For any additional questions or comments, please contact [zli12321@umd.edu]. +Thank you for using or contributing to the Document Annotation NLP Tool! diff --git a/R_plot/BoxPlot.R b/R_plot/BoxPlot.R deleted file mode 100644 index 53dbf1ed..00000000 --- a/R_plot/BoxPlot.R +++ /dev/null @@ -1,56 +0,0 @@ -# Set up the layout using the matrix -layout(layout_matrix) - -# First Plot -boxplot(npmi ~ group, data = Coherence, main = "NPMI", ylab = "", xlab = "Group", - col = c("lightcoral", "lightgreen", "plum")) -mtext("Coherence", side = 2, line = 3, font = 2) # Added Y-Axis title to the first plot - -# Second Plot -boxplot(cv ~ group, data = Coherence, main = expression(bold(c[v])), ylab = "", xlab = "Group", - col = c("lightcoral", "lightgreen", "plum")) - -# Third Plot -boxplot(umass ~ group, data = Coherence, main = "UMass", ylab = "", xlab = "Group", - col = c("lightcoral", "lightgreen", "plum")) - -# Fourth Plot -boxplot(mentalChallenge ~ group, data=userRating, main="Mental Effort", - xlab="", ylab="", - col=c("#FF8080", "#CC99CC", "#99E699")) -mtext("Rating", side = 2, line = 3, font = 2) # Added Y-Axis title to the fourth plot - -# Continue for other plots... -boxplot(confidence ~ group, data=userRating, main="Label Confidence", - xlab="", ylab="", - col=c("#FF8080", "#CC99CC", "#99E699")) - -boxplot(topicRelevance ~ group, data=userRating, main="Keyword-Document Relevance", - xlab="", ylab="", - col=c("#FF8080", "#CC99CC", "#99E699")) - -# Seventh Plot -boxplot(topicCoherence ~ group, data=userRating, main="Topic Keywords Coherence", - xlab="", ylab="", - col=c("#FF8080", "#CC99CC", "#99E699")) -mtext("Rating", side = 2, line = 3, font = 2) # Added Y-Axis title to the seventh plot - -# Continue for other plots... -boxplot(topicDependence ~ group, data=userRating, main="Topic Keywords Dependence", - xlab="", ylab="", - col=c("#FF8080", "#CC99CC", "#99E699")) - -boxplot(satisfaction ~ group, data=userRating, main="Satisfaction", - xlab="", ylab="", - col=c("#FF8080", "#CC99CC", "#99E699")) - - - -# Boxplot for coherence - - -#boxplot(umass ~ group, data = Coherence, main = "UMass", ylab = "UMass", xlab = "Group", - # col = c("lightcoral", "lightgreen", "plum")) - -#boxplot(cuci ~ group, data = Coherence, main = "UCI", ylab = "UCI", xlab = "Group", - # col = c("lightcoral", "lightgreen", "plum")) diff --git a/R_plot/Coherence.csv b/R_plot/Coherence.csv deleted file mode 100644 index de15afdd..00000000 --- a/R_plot/Coherence.csv +++ /dev/null @@ -1,106 +0,0 @@ -group,cv,npmi,umass,cuci -CTM,0.8709120266,0.2742013852,-1.028673448,0.4309799815 -CTM,0.7855563382,0.1984331466,-1.153390856,0.3832261333 -CTM,0.5487234732,0.0818904063,-1.634119909,0.2794892489 -CTM,0.5449793305,0.08024325804,-1.950851464,0.2412597985 -CTM,0.520498701,0.04807881159,-1.987443517,0.1532798276 -CTM,0.4283230702,0.04798558543,-2.146159118,0.005569690841 -CTM,0.4023685949,0.02934993886,-2.513797834,-0.3909245837 -CTM,0.3833805896,-0.01477063651,-2.614931853,-0.6152350704 -CTM,0.3760035388,-0.03411700841,-2.717193231,-1.247599364 -CTM,0.3732172984,-0.04668547573,-2.876156653,-1.448835699 -CTM,0.3637985349,-0.05452342311,-3.042580729,-1.652652285 -CTM,0.3561614409,-0.06537433158,-3.635150327,-1.916236998 -CTM,0.3560436973,-0.06577988534,-3.658943589,-2.105905137 -CTM,0.3537867332,-0.07960185443,-3.849656025,-2.340463442 -CTM,0.340212855,-0.08770191885,-3.90769472,-2.362489712 -CTM,0.3293308473,-0.09748798395,-4.143647173,-2.513308628 -CTM,0.3223315118,-0.0974915751,-4.261286165,-2.8527277 -CTM,0.3097814126,-0.101398887,-4.305473078,-2.921140144 -CTM,0.3053441079,-0.1069812563,-4.447703936,-3.252460147 -CTM,0.301390629,-0.1097514358,-4.644293196,-3.381611021 -CTM,0.2900392612,-0.1242349295,-4.734848583,-3.493378932 -CTM,0.2793172971,-0.134903254,-4.785053729,-3.736377055 -CTM,0.2727170527,-0.1384041747,-5.360677017,-3.880053599 -CTM,0.2476586543,-0.1450814623,-5.664726081,-4.128554408 -CTM,0.245792097,-0.1462669623,-5.736609312,-4.297730965 -CTM,0.2429615963,-0.149317251,-6.378512722,-5.150713435 -CTM,0.2399772261,-0.1753848409,-6.572104004,-5.175745917 -CTM,0.2317000504,-0.1800835215,-6.94748303,-5.892991192 -CTM,0.2285152549,-0.2198585847,-7.092188956,-6.372112573 -CTM,0.226514257,-0.2437943097,-7.286558934,-6.379811749 -CTM,0.2009605937,-0.2717815216,-7.528616464,-6.442660075 -CTM,0.1944957598,-0.2915309534,-7.909888658,-7.456868336 -CTM,0.1726310426,-0.2960711534,-8.706339001,-8.611248348 -CTM,0.1627036636,-0.3119696705,-8.785408882,-8.668933056 -CTM,0.1584413697,-0.5285352917,-14.19548318,-14.37020871 -LDA,0.7439516132,0.2207305102,-1.27152122,0.8981802247 -LDA,0.5734785314,0.0765295252,-1.44744155,0.3436688244 -LDA,0.5136337091,0.06576495485,-1.659318652,0.2281700986 -LDA,0.5085196549,0.06364812142,-1.880546082,0.2117819788 -LDA,0.5002883674,0.04982271352,-2.086116914,0.2079811011 -LDA,0.4495728606,0.04746041475,-2.132591758,0.1648684805 -LDA,0.4366423494,0.04459831441,-2.208669606,0.1595894658 -LDA,0.4080299483,0.03584819431,-2.233018914,0.09488122061 -LDA,0.4012149051,0.02714627801,-2.289729451,0.06777211714 -LDA,0.3926392522,0.01982889837,-2.304106188,-0.07426026945 -LDA,0.3848121167,0.01982822668,-2.373235695,-0.1506142113 -LDA,0.3799996045,0.01117013592,-2.379275418,-0.3281936993 -LDA,0.3644031563,-0.0005830694455,-2.469942528,-0.4744775959 -LDA,0.3639041288,-0.01139332963,-2.473499654,-0.4886385491 -LDA,0.3614595359,-0.01352867414,-2.577910154,-0.5102009979 -LDA,0.360459168,-0.02222126792,-2.727144664,-0.5374124199 -LDA,0.3560109784,-0.02323954516,-2.738999593,-0.6503096737 -LDA,0.3471428717,-0.03058315351,-2.763925098,-0.7182001716 -LDA,0.3452402954,-0.03104022158,-2.885271526,-0.9772793208 -LDA,0.3402413008,-0.03369593219,-2.964598064,-1.028547349 -LDA,0.3354870499,-0.03525674152,-3.075122237,-1.104330559 -LDA,0.3272932424,-0.03586672147,-3.132460949,-1.179976623 -LDA,0.3132875934,-0.04372539409,-3.216371812,-1.297610112 -LDA,0.3057385274,-0.05641197427,-3.540816408,-1.317303057 -LDA,0.2917908051,-0.05797462414,-3.559268149,-1.384195726 -LDA,0.2875553883,-0.06799587276,-3.65707281,-1.711718461 -LDA,0.2855844475,-0.07511755224,-3.735865604,-1.859889751 -LDA,0.2594439685,-0.08082511801,-4.029034342,-2.035215353 -LDA,0.2552672734,-0.09639825638,-4.28031344,-2.640391862 -LDA,0.2340017018,-0.1250568028,-4.847786709,-3.294901571 -LDA,0.2316422787,-0.1452560619,-5.430242068,-3.57496071 -LDA,0.1945670211,-0.1460065281,-5.881698546,-3.754621747 -LDA,0.190849982,-0.1678729977,-7.11353154,-5.101598154 -LDA,0.1537778471,-0.2948754696,-8.463064068,-8.188922089 -LDA,0.1284168229,-0.3064502519,-10.30367542,-9.073552737 -sLDA,0.8220239119,0.1620224738,-1.005419126,0.2587280448 -sLDA,0.4495728606,0.07078615539,-1.773145087,0.1951983699 -sLDA,0.440487932,0.06351344709,-1.897013699,0.1595894658 -sLDA,0.429670268,0.05531915757,-1.953560249,0.07576553265 -sLDA,0.4263632101,0.04459831441,-2.126559499,0.05930811103 -sLDA,0.4241091558,0.0403633037,-2.28366865,-0.05670243064 -sLDA,0.41999995,0.0248005877,-2.354387063,-0.08904172235 -sLDA,0.4181446587,0.02371031504,-2.365864748,-0.1174497623 -sLDA,0.4159341102,0.02110788065,-2.3680983,-0.3068427803 -sLDA,0.4150048195,0.01344983509,-2.523998315,-0.3248373228 -sLDA,0.3973194005,0.01117013592,-2.584148421,-0.4744775959 -sLDA,0.3799996045,-0.00821715157,-2.614824041,-0.5765064341 -sLDA,0.3558439646,-0.02114885842,-2.665146024,-0.6541876771 -sLDA,0.3256780394,-0.02448226207,-2.707618803,-0.7223842334 -sLDA,0.3225452383,-0.02677046808,-2.715246253,-0.7346825411 -sLDA,0.3052295375,-0.03549886072,-2.739742813,-0.7877405506 -sLDA,0.2976568492,-0.03770971426,-2.909023534,-0.8198759247 -sLDA,0.2962574382,-0.04240359097,-2.943020213,-0.8980084662 -sLDA,0.2952311712,-0.04871528321,-3.193452919,-0.901214603 -sLDA,0.2923108719,-0.05482316006,-3.233849662,-0.9660964205 -sLDA,0.2910088702,-0.05609579685,-3.26226427,-1.00850493 -sLDA,0.2825310463,-0.06266422836,-3.477751372,-1.588600715 -sLDA,0.2822986702,-0.07239638662,-3.482807607,-1.601223933 -sLDA,0.2785615285,-0.07803567447,-3.992715391,-1.651530385 -sLDA,0.2707723217,-0.08955005841,-4.300396708,-2.971269074 -sLDA,0.255556625,-0.0981128767,-5.225284362,-3.409501505 -sLDA,0.2311386148,-0.132374711,-5.36750279,-4.829888643 -sLDA,0.2268263994,-0.175848552,-5.506269322,-5.00654315 -sLDA,0.2244722545,-0.1868350551,-6.130901383,-5.171208117 -sLDA,0.2202771508,-0.2019563766,-6.639337978,-5.473959171 -sLDA,0.2193999895,-0.2146424894,-6.750274228,-5.815492482 -sLDA,0.199339044,-0.2293442617,-7.421225619,-5.88090206 -sLDA,0.185907288,-0.2425429055,-8.409333341,-7.450052803 -sLDA,0.1817169847,-0.2589656125,-9.133244759,-8.567265892 -sLDA,0.1328691626,-0.2955500935,-10.3969835,-8.911358599 \ No newline at end of file diff --git a/R_plot/Plot.R b/R_plot/Plot.R deleted file mode 100644 index 9a4171b1..00000000 --- a/R_plot/Plot.R +++ /dev/null @@ -1,177 +0,0 @@ -library(ggplot2) -library(gridExtra) - -ggplot(excluded_time_sheet, aes(x = minutesPassed, y = Purity, color = group)) + - geom_smooth() + - labs(title = "Time vs Purity", x = "Time (minutes)", y = "Purity") + - theme_minimal() - -ggplot(excluded_time_sheet, aes(x = minutesPassed, y = randIndex, color = group)) + - geom_smooth() + - labs(title = "Time vs ARI", x = "Time (minutes)", y = "ARI") + - theme_minimal() - -ggplot(excluded_time_sheet, aes(x = minutesPassed, y = NMI, color = group)) + - geom_smooth() + - labs(title = "Time vs ANMI", x = "Time (minutes)", y = "ANMI") + - theme_minimal() - -"Stack vertical plots for metrics" -p1 <- ggplot(DocsLabeled, aes(x = numDocsLabeled, y = purity, color = group)) + - geom_smooth() + - labs(title = "Num Documents Labeled vs Purity", x = "Num Documents Labeled", y = "Purity") + - theme_minimal(aspect.ratio = 0.2) - -p2 <- ggplot(DocsLabeled, aes(x = numDocsLabeled, y = randIndex, color = group)) + - geom_smooth() + - labs(title = "Num Documents Labeled vs ARI", x = "Num Documents Labeled", y = "ARI") + - theme_minimal(aspect.ratio = 0.2) - -p3 <- ggplot(DocsLabeled, aes(x = numDocsLabeled, y = NMI, color = group)) + - geom_smooth() + - labs(title = "Num Documents Labeled vs ANMI", x = "Num Documents Labeled", y = "ANMI") + - theme_minimal(aspect.ratio = 0.2) - -grid.arrange(p1, p2, p3, ncol=1) - - - - - - - -p1 <- ggplot(DocsLabeled, aes(x = numDocsLabeled, y = purity, color = group)) + - geom_smooth() + - labs(title = "Num Documents Labeled vs Purity", x = "Num Documents Labeled", y = "Purity") + - theme_minimal() + - theme(aspect.ratio = 0.2) - -p2 <- ggplot(excluded_time_sheet, aes(x = numDocsLabeled, y = randIndex, color = group)) + - geom_smooth() + - labs(title = "Num Documents Labeled vs ARI", x = "Num Documents Labeled", y = "ARI") + - theme_minimal() + - theme(aspect.ratio = 0.2) - -p3 <- ggplot(excluded_time_sheet, aes(x = numDocsLabeled, y = NMI, color = group)) + - geom_smooth() + - labs(title = "Num Documents Labeled vs ANMI", x = "Num Documents Labeled", y = "ANMI") + - theme_minimal() + - theme(aspect.ratio = 0.2) - - -'''Docs labeled vs. metrics''' -grid.arrange(p1, p2, p3, ncol=1) - - -p1 <- ggplot(DocsLabeled, aes(x = numDocsLabeled, y = purity, color = group)) + - geom_smooth(se = FALSE, alpha = 0.7, size = 1, linetype = "solid") + # Setting se to FALSE removes the gray area. Adjust alpha, size, and linetype as needed - labs(title = "Num Documents Labeled vs Purity", x = "Num Documents Labeled", y = "Purity") - - -p2 <- ggplot(DocsLabeled, aes(x = numDocsLabeled, y = randIndex, color = group)) + - geom_smooth(se = FALSE, alpha = 0.7, size = 1, linetype = "solid") + # Setting se to FALSE removes the gray area. Adjust alpha, size, and linetype as needed - labs(title = "Num Documents Labeled vs ARI", x = "Num Documents Labeled", y = "ARI") - - -p3 <- ggplot(DocsLabeled, aes(x = numDocsLabeled, y = NMI, color = group)) + - geom_smooth(se = FALSE, alpha = 0.7, size = 1, linetype = "solid") + # Setting se to FALSE removes the gray area. Adjust alpha, size, and linetype as needed - labs(title = "Num Documents Labeled vs ANMI", x = "Num Documents Labeled", y = "ANMI") - -grid.arrange(p1, p2, p3, ncol=1, heights=c(1, 1, 1)) - -grid.arrange(p1, p2, p3, ncol=1) - - -# Install and load the necessary libraries -packages <- c("ggplot2", "gridExtra", "gtable", "grid") -new_packages <- packages[!(packages %in% installed.packages()[,"Package"])] -if(length(new_packages)) install.packages(new_packages) -lapply(packages, require, character.only = TRUE) - -# Function to remove legends -no_legend <- function(p) p + theme(legend.position = "none") - -# Function to add markers on the smoothed curve for every 50th document -add_markers_on_curve <- function(df, x_var, y_var, group_var) { - # Create an empty data frame to store the points to mark - marked_points <- data.frame() - - for (group in unique(df[[group_var]])) { - # Filter data for each group - group_data <- df[df[[group_var]] == group,] - - for (x_val in seq(50, max(group_data[[x_var]]), by = 50)) { - # Predict y using loess for every 50th document - pred_y <- predict(loess(formula = as.formula(paste0(y_var, " ~ ", x_var)), data = group_data), newdata = data.frame(numDocsLabeled = x_val)) - marked_points <- rbind(marked_points, data.frame(numDocsLabeled = x_val, y_val = pred_y, group = group)) - } - } - return(marked_points) -} - -# Create the plots with markers on the smoothed curve at every 50th document -plot_with_markers <- function(plot_var, y_var, y_label) { - # Get the marked points - marked_points <- add_markers_on_curve(congressional_results, "numDocsLabeled", y_var, "group") - - # Create plot with markers on the smoothed curve - p <- ggplot(congressional_results, aes(x = numDocsLabeled, y = get(plot_var), color = group)) + - geom_smooth(se = TRUE, alpha = 0.7, size = 1, linetype = "solid") + - geom_point(data = marked_points, aes(x = numDocsLabeled, y = y_val), alpha = 0.7, size = 3) + - labs(title = NULL, x = "Number Documents Labeled", y = y_label) + - theme( - axis.title.x = element_text(size = rel(1.5)), # Increased x-axis label font size - axis.title.y = element_text(size = rel(1.5)) # Increased y-axis label font size - ) - return(p) -} - -# Create the plots -p1 <- plot_with_markers("purity", "purity", "Purity") + theme(axis.title.x = element_blank()) -p2 <- plot_with_markers("randIndex", "randIndex", "ARI") + theme(axis.title.x = element_blank()) -p3 <- plot_with_markers("NMI", "NMI", "ANMI") + guides(color=guide_legend(title=NULL)) - -# Extract the legend as a grob with the modified p3 object -legend_grob <- ggplotGrob(p3 + theme(legend.position="top", legend.direction="horizontal", legend.text = element_text(size = 12)))$grobs[[which(ggplotGrob(p3)$layout$name == "guide-box")]] - -# Arrange the plots with grid.arrange with the modified legend grob -grid.arrange( - legend_grob, - no_legend(p1), - no_legend(p2), - no_legend(p3), - ncol = 1, heights = c(0.1, 1, 1, 1) -) - - -# Create the plots with markers on the smoothed curve at every 5th minute -plot_with_markers <- function(data, x_var, y_var, group_var, y_label) { - marked_points <- subset(data, as.integer(get(x_var)) %% 5 == 0) - - p <- ggplot(data, aes_string(x = x_var, y = y_var, color = group_var)) + - geom_smooth(se = TRUE, alpha = 0.7, size = 1, linetype = "solid") + - geom_point(data = marked_points, aes_string(x = x_var, y = y_var), alpha = 0.7, size = 3) + - labs(title = NULL, x = "Minutes Elapsed", y = y_label) + - theme( - axis.title.x = element_text(size = rel(1.5)), # Adjust the size here - axis.title.y = element_text(size = rel(1.5)), - legend.position="none") # Remove legend - return(p) -} - -# Create the plots -p1 <- plot_with_markers(excluded_time_sheet, "minutesPassed", "Purity", "group", "Purity") + theme(axis.title.x = element_blank()) -p2 <- plot_with_markers(excluded_time_sheet, "minutesPassed", "randIndex", "group", "ARI") + theme(axis.title.x = element_blank()) -p3 <- plot_with_markers(excluded_time_sheet, "minutesPassed", "NMI", "group", "ANMI") - -# Extract the legend as a grob with the modified p3 object -legend_grob <- ggplotGrob(p3 + theme(legend.position="top", legend.direction="horizontal", legend.text=element_text(size=12)))$grobs[[which(ggplotGrob(p3)$layout$name == "guide-box")]] - -# Arrange the plots with grid.arrange with the modified legend grob -grid.arrange( - legend_grob, - p1, - p2, - p3, - ncol = 1, heights = c(0.1, 1, 1, 1) -) \ No newline at end of file diff --git a/R_plot/README.md b/R_plot/README.md deleted file mode 100644 index 5c5e08d2..00000000 --- a/R_plot/README.md +++ /dev/null @@ -1,12 +0,0 @@ -csv files: -1. excluded_time_sheet.csv: records classifiers' performance on purity, ARI, ANMI for users from 5th minute to 60th minute. Alreay taking the median for each group. Group size: 15 people. -2. synthetic.csv: classifier performance for documents labeled from 1 to 500 for each group. -3. Coherence.csv: topic coherence for topic models trained on congressional bills. -4. userRating.csv: Users' rating report - -Plot files -1. synthetic_plot.R: plots figure 1 -2. user_time_metric.R: plots figure 2 -3. BoxPlot.R: plots figure 4 - - diff --git a/R_plot/Rplot.png b/R_plot/Rplot.png deleted file mode 100644 index 6d3e5cdf..00000000 Binary files a/R_plot/Rplot.png and /dev/null differ diff --git a/R_plot/combined.R b/R_plot/combined.R deleted file mode 100644 index b2a27738..00000000 --- a/R_plot/combined.R +++ /dev/null @@ -1,63 +0,0 @@ -plot_with_markers <- function(data, x_var, y_var, group_var, y_label) { - marked_points <- subset(data, as.integer(get(x_var)) %% 5 == 0) - - p <- ggplot(data, aes_string(x = x_var, y = y_var, color = group_var)) + - geom_smooth(se = TRUE, alpha = 0.7, size = 1, linetype = "solid") + - geom_point(data = marked_points, aes_string(x = x_var, y = y_var), alpha = 0.7, size = 3) + - labs(title = NULL, x = "Minutes Elapsed", y = y_label) + - theme( - axis.title.x = element_text(size = rel(1.5)), # Adjust the size here - axis.title.y = element_text(size = rel(1.5)), - legend.position="none") # Remove legend - return(p) -} - -# Create the plots -p1_2 <- plot_with_markers(excluded_time_sheet, "minutesPassed", "Purity", "group", "Purity") + theme(axis.title.x = element_blank()) -p2_2 <- plot_with_markers(excluded_time_sheet, "minutesPassed", "randIndex", "group", "ARI") + theme(axis.title.x = element_blank()) -p3_2 <- plot_with_markers(excluded_time_sheet, "minutesPassed", "NMI", "group", "ANMI") - -# Extract the legend as a grob with the modified p3 object -legend_grob <- ggplotGrob(p3 + theme(legend.position="top", legend.direction="horizontal", legend.text=element_text(size=12)))$grobs[[which(ggplotGrob(p3)$layout$name == "guide-box")]] - - - -# Reading the synthetic experiment file -# congressional_results <- read_csv("./DocsLabeled.csv") - -# Create the plots with markers on the smoothed curve at every 50th document -plot_with_markers <- function(data, plot_var, y_var, y_label) { - # Get the marked points, here we are subsetting data to include only every 10th document - marked_points <- subset(data, numDocsLabeled %% 10 == 0) - - # Create plot with markers on the smoothed curve - p <- ggplot(data, aes_string(x = "numDocsLabeled", y = plot_var, color = "group")) + - geom_smooth(se = TRUE, level = 0.5, alpha = 0.7, size = 1, linetype = "solid") + # Reduced grey error region - geom_point(data = marked_points, aes_string(x = "numDocsLabeled", y = plot_var), alpha = 0.7, size = 3) + - labs(title = NULL, x = "Number Documents Labeled", y = y_label) + - theme( - axis.title.x = element_text(size = rel(1.5)), # Increased x-axis label font size - axis.title.y = element_text(size = rel(1.5)) # Increased y-axis label font size - ) - return(p) -} - -# Create the plots -# Create the plots without removing the legend from p3 -p1_1 <- plot_with_markers(DocsLabeled, "purity", "purity", "Purity") + theme(axis.title.x = element_blank(), legend.position = "none")+ ylab(NULL) -p2_1 <- plot_with_markers(DocsLabeled, "randIndex", "randIndex", "ARI") + theme(axis.title.x = element_blank(), legend.position = "none")+ ylab(NULL) -p3_1 <- plot_with_markers(DocsLabeled, "NMI", "NMI", "ANMI") + guides(color=guide_legend(title=NULL)) + theme(legend.position = "none")+ ylab(NULL) - -# Extract the legend as a grob with the modified p3 object -legend_grob <- ggplotGrob(p3 + theme(legend.position="top", legend.direction="horizontal", legend.text = element_text(size = 12)))$grobs[[which(ggplotGrob(p3)$layout$name == "guide-box")]] - -# After extracting the legend, now you can remove the legend from p3 -# p3 <- p3 + theme(legend.position = "none") - -# Arrange the plots in two columns, with plots from the second group in the left column -# and plots from the first group in the right column -grid.arrange( - arrangeGrob(p1_2, p2_2, p3_2, ncol = 1), - arrangeGrob(p1_1, p2_1, p3_1, ncol = 1), - ncol = 2 -) \ No newline at end of file diff --git a/R_plot/slda.Rproj b/R_plot/slda.Rproj deleted file mode 100644 index 8e3c2ebc..00000000 --- a/R_plot/slda.Rproj +++ /dev/null @@ -1,13 +0,0 @@ -Version: 1.0 - -RestoreWorkspace: Default -SaveWorkspace: Default -AlwaysSaveHistory: Default - -EnableCodeIndexing: Yes -UseSpacesForTab: Yes -NumSpacesForTab: 2 -Encoding: UTF-8 - -RnwWeave: Sweave -LaTeX: pdfLaTeX diff --git a/R_plot/statistical testing.R b/R_plot/statistical testing.R deleted file mode 100644 index 3bce25d6..00000000 --- a/R_plot/statistical testing.R +++ /dev/null @@ -1,7 +0,0 @@ -res.aov <- aov(topicCoherence ~ group, data = userRating) - -summary(res.aov) - -TukeyHSD(res.aov) - - diff --git a/R_plot/synthetic_plot.R b/R_plot/synthetic_plot.R deleted file mode 100644 index b080796e..00000000 --- a/R_plot/synthetic_plot.R +++ /dev/null @@ -1,36 +0,0 @@ -# Reading the synthetic experiment file -# congressional_results <- read_csv("./DocsLabeled.csv") -library(gridExtra) -# Create the plots with markers on the smoothed curve at every 50th document -plot_with_markers <- function(plot_var, y_var, y_label) { - # Get the marked points - marked_points <- add_markers_on_curve(congressional_results, "numDocsLabeled", y_var, "group") - - # Create plot with markers on the smoothed curve - p <- ggplot(congressional_results, aes(x = numDocsLabeled, y = get(plot_var), color = group)) + - geom_smooth(se = TRUE, alpha = 0.7, size = 1, linetype = "solid") + - geom_point(data = marked_points, aes(x = numDocsLabeled, y = y_val), alpha = 0.7, size = 3) + - labs(title = NULL, x = "Number Documents Labeled", y = y_label) + - theme( - axis.title.x = element_text(size = rel(1.5)), # Increased x-axis label font size - axis.title.y = element_text(size = rel(1.5)) # Increased y-axis label font size - ) - return(p) -} - -# Create the plots -p1 <- plot_with_markers("purity", "purity", "Purity") + theme(axis.title.x = element_blank()) -p2 <- plot_with_markers("randIndex", "randIndex", "ARI") + theme(axis.title.x = element_blank()) -p3 <- plot_with_markers("NMI", "NMI", "ANMI") + guides(color=guide_legend(title=NULL)) - -# Extract the legend as a grob with the modified p3 object -legend_grob <- ggplotGrob(p3 + theme(legend.position="top", legend.direction="horizontal", legend.text = element_text(size = 12)))$grobs[[which(ggplotGrob(p3)$layout$name == "guide-box")]] - -# Arrange the plots with grid.arrange with the modified legend grob -grid.arrange( - legend_grob, - no_legend(p1), - no_legend(p2), - no_legend(p3), - ncol = 1, heights = c(0.1, 1, 1, 1) -) \ No newline at end of file diff --git a/R_plot/userRating.csv b/R_plot/userRating.csv deleted file mode 100644 index f22f7d8b..00000000 --- a/R_plot/userRating.csv +++ /dev/null @@ -1,31 +0,0 @@ -group,mentalChallenge,confidence,topicRelevance,topicCoherence,highlightQuality,topicDependence,highlightDependence,satisfaction -LDA,6,5,3,3,5,4,5,3 -LDA,3,4,6,5,6,2,1,6 -LDA,4,5,3,2,3,2,2,3 -LDA,6,4,5,6,6,5,5,5 -LDA,5,5,5,4,4,3,2,6 -LDA,7,4,3,2,4,2,3,5 -LDA,5,2,4,4,4,2,2,5 -LDA,5,2,4,4,5,2,2,6 -LDA,6,5,6,5,4,3,2,5 -LDA,7,6,6,5,4,4,4,4 -sLDA,4,5,6,5,5,4,4,5 -sLDA,6,6,3,4,4,2,4,4 -sLDA,7,7,7,5,6,6,6,5 -sLDA,3,4,2,5,5,2,5,6 -sLDA,7,1,1,1,7,7,1,7 -sLDA,7,7,3,2,4,5,4,5 -sLDA,6,5,5,5,5,5,5,5 -sLDA,7,6,6,5,4,5,5,6 -sLDA,6,2,2,3,2,1,2,2 -sLDA,7,5,5,3,5,6,7,5 -CTM,6,4,5,4,3,5,6,5 -CTM,5,4,6,5,5,5,5,6 -CTM,4,6,5,6,2,3,1,6 -CTM,6,5,6,6,5,5,6,5 -CTM,3,6,6,5,4,6,3,7 -CTM,6,4,4,4,5,5,4,5 -CTM,6,5,5,5,4,3,3,3 -CTM,3,6,7,6,6,5,6,6 -CTM,7,5,6,6,7,7,6,6 -CTM,6,5,4,6,2,3,4,2 \ No newline at end of file diff --git a/R_plot/user_label_per_doc.R b/R_plot/user_label_per_doc.R deleted file mode 100644 index 5756265b..00000000 --- a/R_plot/user_label_per_doc.R +++ /dev/null @@ -1,48 +0,0 @@ -library(gridExtra) -# Find the global minimum and maximum y values across all datasets -global_y_min <- min(min(DocsLabeled$purity), min(DocsLabeled$randIndex), min(DocsLabeled$NMI)) # Replace with your actual datasets and variable names -global_y_max <- max(max(DocsLabeled$purity), max(DocsLabeled$randIndex), max(DocsLabeled$NMI)) # Replace with your actual datasets and variable names - -# Define ylim within each plot_with_markers call to set the y-axis limits -plot_with_markers <- function(data, plot_var, y_var, y_label) { - marked_points <- subset(data, numDocsLabeled %% 10 == 0) - p <- ggplot(data, aes_string(x = "numDocsLabeled", y = plot_var, color = "group")) + - geom_smooth(se = TRUE, level = 0.5, alpha = 0.7, size = 1, linetype = "solid") + - geom_point(data = marked_points, aes_string(x = "numDocsLabeled", y = plot_var), alpha = 0.7, size = 3) + - labs(title = NULL, x = "Number Documents Labeled", y = y_label) + - theme( - axis.title.x = element_text(size = rel(1.5)), - axis.title.y = element_text(size = rel(1.5)) - ) + - ylim(global_y_min, global_y_max) # set the same y-axis limits for all plots - return(p) -} - -# Create the plots using this modified function and arrange them as before. -# ...Continue from the previous modification to plot_with_markers function... - -# After modifying the plot_with_markers function, create the plots using the modified function. - -# Your left column plots -p1_2 <- plot_with_markers(excluded_time_sheet, "minutesPassed", "Purity", "group", "Purity") + theme(axis.title.x = element_blank(), legend.position = "none") + ylim(0.2, global_y_max) -p2_2 <- plot_with_markers(excluded_time_sheet, "minutesPassed", "randIndex", "group", "ARI") + theme(axis.title.x = element_blank(), legend.position = "none") + ylim(global_y_min, 0.3) -p3_2 <- plot_with_markers(excluded_time_sheet, "minutesPassed", "NMI", "group", "ANMI") + theme(legend.position = "none") + ylim(global_y_min, 0.5) - -# Your right column plots -p1_1 <- plot_with_markers(DocsLabeled, "purity", "purity", "Purity") + theme(axis.title.x = element_blank(), legend.position = "none") + ylab(NULL) + ylim(0.2, global_y_max) -p2_1 <- plot_with_markers(DocsLabeled, "randIndex", "randIndex", "ARI") + theme(axis.title.x = element_blank(), legend.position = "none") + ylab(NULL) + ylim(global_y_min, 0.3) -p3_1 <- plot_with_markers(DocsLabeled, "NMI", "NMI", "ANMI") + theme(legend.position = "none") + ylab(NULL) + ylim(global_y_min, 0.5) - -# Define one plot with a legend for extracting the legend grob. -p_legend <- plot_with_markers(DocsLabeled, "NMI", "NMI", "ANMI") + theme(legend.position = "top") + ylim(global_y_min, global_y_max) - -# Extract the legend grob -legend_grob <- gtable_filter(ggplotGrob(p_legend), "guide-box") - -# Arrange your plots with the legend centered at the top -grid.arrange( - arrangeGrob(p1_2, p2_2, p3_2, ncol = 1), - arrangeGrob(p1_1, p2_1, p3_1, ncol = 1), - ncol = 2, - top = legend_grob -) diff --git a/R_plot/user_time_metrics.R b/R_plot/user_time_metrics.R deleted file mode 100644 index 305b4bc3..00000000 --- a/R_plot/user_time_metrics.R +++ /dev/null @@ -1,32 +0,0 @@ - - -plot_with_markers <- function(data, x_var, y_var, group_var, y_label) { - marked_points <- subset(data, as.integer(get(x_var)) %% 5 == 0) - - p <- ggplot(data, aes_string(x = x_var, y = y_var, color = group_var)) + - geom_smooth(se = TRUE, alpha = 0.7, size = 1, linetype = "solid") + - geom_point(data = marked_points, aes_string(x = x_var, y = y_var), alpha = 0.7, size = 3) + - labs(title = NULL, x = "Minutes Elapsed", y = y_label) + - theme( - axis.title.x = element_text(size = rel(1.5)), # Adjust the size here - axis.title.y = element_text(size = rel(1.5)), - legend.position="none") # Remove legend - return(p) -} - -# Create the plots -p1_2 <- plot_with_markers(excluded_time_sheet, "minutesPassed", "Purity", "group", "Purity") + theme(axis.title.x = element_blank()) -p2_2 <- plot_with_markers(excluded_time_sheet, "minutesPassed", "randIndex", "group", "ARI") + theme(axis.title.x = element_blank()) -p3_2 <- plot_with_markers(excluded_time_sheet, "minutesPassed", "NMI", "group", "ANMI") - -# Extract the legend as a grob with the modified p3 object -legend_grob <- ggplotGrob(p3 + theme(legend.position="top", legend.direction="horizontal", legend.text=element_text(size=12)))$grobs[[which(ggplotGrob(p3)$layout$name == "guide-box")]] - -# Arrange the plots with grid.arrange with the modified legend grob -grid.arrange( - legend_grob, - p1_2, - p2_2, - p3_2, - ncol = 1, heights = c(0.1, 1, 1, 1) -) \ No newline at end of file diff --git a/Topic_Model_examples.ipynb b/Topic_Model_examples.ipynb deleted file mode 100644 index 300be84c..00000000 --- a/Topic_Model_examples.ipynb +++ /dev/null @@ -1,1710 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Contextualized topic model quick example" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "metadata": {}, - "outputs": [], - "source": [ - "from gensim.models import CoherenceModel\n", - "from gensim.corpora import Dictionary\n", - "import numpy as np\n", - "\n", - "\n", - "def get_coherence(model_keywords):\n", - " keywords = []\n", - " for k, v in model_keywords.items():\n", - " keywords.append(v)\n", - " dictionary = Dictionary(processed_data)\n", - "\n", - " coherence_model = CoherenceModel(\n", - " topics=keywords,\n", - " texts=processed_data,\n", - " dictionary=dictionary,\n", - " coherence='u_mass'\n", - " )\n", - "\n", - " coherence_score = coherence_model.get_coherence()\n", - "\n", - " return coherence_score" - ] - }, - { - "cell_type": "code", - "execution_count": 11, - "metadata": {}, - "outputs": [], - "source": [ - "import pandas as pd\n", - "import pickle\n", - "from Topic_Models.Neural_Topic_Model import Neural_Model\n", - "doc_dir = './Topic_Models/Data/congressional_bill_train.json'\n", - "processed_doc_dir = './Topic_Models/Data/congressional_bill_train_processed.pkl'\n", - "\n", - "'''\n", - "Mapping the mode numbers to which model we use\n", - "LA: active learning baseline\n", - "'''\n", - "model_types_map = {0: 'LA' , 1: 'LDA', 2: 'SLDA', 3: 'ETM'}\n", - "num_iter = 1500\n", - "load_data = True\n", - "save_model = False\n", - "\n", - "'''\n", - "Enter the number of topics for the model you just trained\n", - "'''\n", - "num_topics =30\n", - "inference_alg = 'logreg'\n", - "test_dataset_name = './Topic_Models/Data/congressional_bill_test.json'\n", - "test_processed_doc_dir = './Topic_Models/Data/congressional_bill_test_processed.pkl'\n", - "\n", - "'''\n", - "Keep those and don't change\n", - "'''\n", - "USE_TEST_DATA = True\n", - "USE_PROCESSED_TEXT = False\n", - "CONCATENATE_KEYWORDS = True\n", - "table = pd.read_json(doc_dir)\n", - "training_length = len(table)\n", - "REGRESSOR_PREDICT = True\n", - "mode = 1\n", - "labels = table.sub_labels.values.tolist()\n", - "\n", - "\n", - "table = pd.read_json(doc_dir)\n", - "training_length = len(table)\n", - "list_of_unpreprocessed_documents = table.text.values.tolist()\n", - "\n", - "with open(processed_doc_dir, 'rb') as inp:\n", - " loaded_data = pickle.load(inp)\n", - " processed_data = loaded_data['datawords_nonstop']\n", - " list_of_preprocessed_documents = [' '.join(ele) for ele in processed_data]\n", - "\n", - "test_table = pd.read_json(test_dataset_name)\n", - "list_of_unpreprocessed_test_documents = test_table.text.values.tolist()\n", - "with open(test_processed_doc_dir, 'rb') as inp:\n", - " loaded_test_data = pickle.load(inp)\n", - " processed_test_data = loaded_test_data['datawords_nonstop']\n", - " list_of_preprocessed_test_documents = [' '.join(ele) for ele in processed_test_data]" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### sLDA prediction test with preprocessed words" - ] - }, - { - "cell_type": "code", - "execution_count": 12, - "metadata": {}, - "outputs": [], - "source": [ - "'''\n", - "Given a training documents, and a testing documents, return the model prediciton by slda\n", - "'''\n", - "def slda_predict(train_docs, test_docs, model):\n", - " '''\n", - " train docs, test docs: a corpus. Each document is a list of tokens\n", - " model: a trained slda model\n", - " '''\n", - " counter = {}\n", - " predictive_labels = []\n", - " test_predictive_labels = []\n", - " for i in range(len(train_docs)):\n", - " doc_nist = model.make_doc(train_docs[i])\n", - " \n", - " model.infer(doc_nist)\n", - " max_response = model.estimate(doc_nist).argmax()\n", - " predictive_labels.append(max_response)\n", - " try:\n", - " test_inst = model.make_doc(test_docs[i])\n", - " model.infer(test_inst)\n", - " max_test_response = model.estimate(test_inst).argmax()\n", - " test_predictive_labels.append(max_test_response)\n", - " except: \n", - " pass\n", - " # test_inst = Model.model.make_doc(Model.data_words_nonstop[i])\n", - " if max_response in counter:\n", - " counter[max_response] += 1\n", - " else:\n", - " counter[max_response] = 1\n", - "\n", - " return counter, predictive_labels, test_predictive_labels" - ] - }, - { - "cell_type": "code", - "execution_count": 13, - "metadata": {}, - "outputs": [], - "source": [ - "'''\n", - "Given a list of text labels, convert them to integers as inputs of response variables for model testing\n", - "'''\n", - "def convert_labels_to_numbers(label_list):\n", - " label_mapping = {}\n", - " next_label_number = 0\n", - " numeric_labels = []\n", - "\n", - " for label in label_list:\n", - " if label not in label_mapping:\n", - " label_mapping[label] = next_label_number\n", - " next_label_number += 1\n", - " numeric_labels.append(label_mapping[label])\n", - "\n", - " return numeric_labels, label_mapping" - ] - }, - { - "cell_type": "code", - "execution_count": 14, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "[0, 1, 2, 3, 0, 4, 5, 6, 7, 8]" - ] - }, - "execution_count": 14, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "'''\n", - "Convert the training set labels to integers and get a map from text to integers\n", - "'''\n", - "texts = table.text.values.tolist()\n", - "sub_labels = table.sub_labels.values.tolist()\n", - "\n", - "'''\n", - "Here, we pretend the user labels all the training set, we want to run sLDA\n", - "first with the existing user labels, then test the prediction accuracy directly\n", - "from sLDA with the training and testing set\n", - "'''\n", - "user_labels = {i: sub_labels[i] for i in range(len(texts))}\n", - "\n", - "user_labels = dict(sorted(user_labels.items()))\n", - "user_label_list = list(user_labels.values())\n", - "\n", - "user_label_map, mappings = convert_labels_to_numbers(user_label_list)\n", - "user_label_map[:10]" - ] - }, - { - "cell_type": "code", - "execution_count": 15, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "8607" - ] - }, - "execution_count": 15, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "len(user_labels)" - ] - }, - { - "cell_type": "code", - "execution_count": 16, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "'\\nAlso extract the preprocessed test data and use the label-integer mapping to map test texst labels to integers\\n'" - ] - }, - "execution_count": 16, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "'''\n", - "Also extract the preprocessed test data and use the label-integer mapping to map test texst labels to integers\n", - "'''\n", - "# test_table = pd.read_json(test_dataset_name)\n", - "# test_texts = test_table.text.values.tolist()\n", - "# test_sub_labels = test_table.sub_labels.values.tolist()\n", - "\n", - "# with open('./Topic_Models/Data/congressional_bill_train_processed.pkl', 'rb') as inp:\n", - "# loaded_data = pickle.load(inp)\n", - "# processed_test_data = loaded_data['datawords_nonstop']\n", - "\n", - "# test_label_map = [mappings[ele] for ele in test_sub_labels]\n" - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "[0, 15, 14, 7, 0, 4, 0, 2, 15, 2]" - ] - }, - "execution_count": 10, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "'''View the first ten mapped test labels'''\n", - "test_label_map[30:40]" - ] - }, - { - "cell_type": "code", - "execution_count": 17, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "num topics: 30\n", - "Created SLDA model\n", - "total user labels are 8607\n", - "starting training...\n", - "Iteration: 0, Log-likelihood: -8.756933018416754, Perplexity: 6354.592243192826, cv coherence: 0.33639948398298614\n", - "Iteration: 300, Log-likelihood: -8.425364725686173, Perplexity: 4561.308101278413, cv coherence: 0.4180431772532487\n", - "Iteration: 600, Log-likelihood: -8.44556107815405, Perplexity: 4654.366443819756, cv coherence: 0.42368575203947256\n", - "Iteration: 900, Log-likelihood: -8.307986744323031, Perplexity: 4056.138713726887, cv coherence: 0.4218146943974183\n" - ] - } - ], - "source": [ - "'''\n", - "Train the sLDA using the training set, assuming sLDA has access to all labels in the training set\n", - "'''\n", - "from Topic_Models.topic_model import Topic_Model\n", - "Model = Topic_Model(30, 1500, 'SLDA', './Topic_Models/Data/congressional_bill_train_processed.pkl', training_length , user_labels, False, None)\n", - "Model.train('./Topic_Models/Model/SLDA_30.pkl')" - ] - }, - { - "cell_type": "code", - "execution_count": 27, - "metadata": {}, - "outputs": [], - "source": [ - "counter, predictive_label, test_predictive_label = slda_predict(processed_data, processed_test_data, Model.model)" - ] - }, - { - "cell_type": "code", - "execution_count": 30, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "0.5683773074321059" - ] - }, - "execution_count": 30, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "from sklearn.metrics import accuracy_score\n", - "\n", - "'''\n", - "Training accuracy for sLDA\n", - "'''\n", - "accuracy_score(user_label_map, predictive_label)" - ] - }, - { - "cell_type": "code", - "execution_count": 31, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "0.4348134487161299" - ] - }, - "execution_count": 31, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "'''\n", - "sLDA testing accuracy\n", - "'''\n", - "accuracy_score(test_label_map, test_predictive_label)" - ] - }, - { - "cell_type": "code", - "execution_count": 16, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "array([[-7.1717715e+00, -9.4333820e+00, -5.7512579e+00, -3.3249002e+00,\n", - " -4.0262671e+00, -5.5705385e+00, -3.9009543e+02, 2.2824147e+00,\n", - " -1.5841526e+00, -6.6370311e+00, -8.2382861e+03, -1.0060060e+02,\n", - " -4.3441943e+02, -3.1912555e+02, -1.5520414e+00, -2.9579976e+00],\n", - " [-8.4064159e+00, -2.4118944e+02, -6.0421720e+00, -3.7932055e+00,\n", - " -4.1082692e+00, -2.1879861e+02, -6.1473203e+00, -6.4143572e+00,\n", - " -1.9729582e+00, 7.3525006e-01, -3.7234268e-01, -5.3845730e+00,\n", - " -3.5734338e+02, -2.8559399e+00, -7.1398320e+00, -1.5399799e+00],\n", - " [-5.8458986e+00, -4.7016916e+02, -7.7924094e+00, -3.0099306e+00,\n", - " -5.2282624e+00, -5.6554224e+02, 3.1108414e+01, -3.9984808e+02,\n", - " -1.2367842e+00, -1.3726552e+01, -4.4619560e+00, -5.4000775e+02,\n", - " -3.6306488e+01, -3.6162691e+00, -5.0478735e+00, -2.1048298e+00],\n", - " [-7.1053696e+00, 2.1463418e+00, 4.7284150e-01, -3.2197487e+00,\n", - " -1.3858293e+02, -1.1481842e+02, -5.1952405e+00, -7.6698971e+00,\n", - " -1.3789823e+00, -1.0964658e+01, -8.8831455e-01, -3.4103348e+02,\n", - " -1.1762506e+03, -1.3549325e+03, -2.1943691e+00, -2.4788842e+00],\n", - " [ 5.0140059e-01, -2.8613613e+00, -3.3962870e-01, -1.0375643e+00,\n", - " -4.1914396e+00, -7.8549690e+00, -6.4747639e+00, -9.7801602e-01,\n", - " -3.7600646e+00, -3.3043957e+00, -1.2063307e+00, -1.5917708e+02,\n", - " -4.2587139e+01, -3.6073358e+00, 4.6401778e-01, -1.8723543e+01],\n", - " [-2.2724741e+00, -4.7422252e+00, -5.8532276e+00, -1.0048296e+00,\n", - " -3.3736873e+00, -4.2862835e+00, -4.6074162e+00, 1.8954043e+00,\n", - " -6.9765840e+00, -3.2514505e+02, -2.1353569e+03, -1.0796672e+01,\n", - " -5.4299874e+00, -3.0349348e+00, -6.3963451e+00, -3.0499032e+00],\n", - " [-5.6271988e+01, -6.2846027e+02, -3.6235290e+00, -2.2414668e+00,\n", - " -5.8224483e+00, -1.7179504e+02, -2.0648850e+03, -1.5061649e+02,\n", - " -2.3024893e+00, -1.0044286e+02, -6.5080945e+02, -2.1515964e+02,\n", - " 8.3071680e+02, -2.1777777e+01, -1.4142315e+00, -1.5908322e+00],\n", - " [-8.0074348e+00, -4.5639359e+02, -3.8346703e+00, -3.9705365e+00,\n", - " 1.4146786e+01, -2.0075542e+02, -9.0155764e+00, -7.3526549e+00,\n", - " -7.6219761e-01, -1.7724432e+01, -1.0115700e+04, -3.6974316e+01,\n", - " -2.5428201e+02, -2.7267299e+00, -5.2658443e+00, -4.2454166e+00],\n", - " [ 9.5865387e-01, -2.6550133e+01, -4.8452077e+00, -3.5645750e+00,\n", - " -7.5997987e+00, -5.0299163e+00, -7.7721765e+02, -6.2752023e+00,\n", - " -3.5356283e+00, -6.3292892e+01, -1.3080024e+00, -3.7001236e+02,\n", - " -1.5572937e+01, -2.2271551e+01, -4.9015093e+00, -2.1650546e+00],\n", - " [-1.4340719e+00, -4.3711615e+00, -2.6033990e+00, -1.6197306e+00,\n", - " -1.5172405e+01, -2.2717389e-01, -7.8115387e+02, -1.3440800e+01,\n", - " -2.5118446e+00, -1.5809172e+02, -1.3613449e+00, -5.7479467e+00,\n", - " -1.0365157e+02, 2.2243054e+00, -3.0242722e+00, -3.3630264e+00],\n", - " [-1.0805617e+01, -6.0809790e+02, -3.9622169e+01, -3.1307006e+00,\n", - " -1.3684053e+02, -5.6049908e+01, -9.1124078e+02, -4.8785057e+01,\n", - " -3.0853469e+00, -5.2179712e+02, -7.9725562e+03, 2.3118770e+02,\n", - " -4.2967221e+02, -2.2038214e+00, -2.8778727e+00, -1.8332912e+00],\n", - " [ 1.9419688e-01, -7.4509063e+00, -4.8199115e+00, -4.1675563e+00,\n", - " -2.4222858e+02, -3.6021187e+00, -2.4553831e+00, -4.4278440e+00,\n", - " -2.7004206e+00, -4.5468716e+02, -3.4620818e+03, -1.4210097e+02,\n", - " -8.9331951e+00, -1.6475237e+02, -3.8164661e+00, -2.0294087e+00],\n", - " [-9.3377695e+00, -5.2827506e+00, -4.7142630e+00, -5.5601811e+00,\n", - " 1.5575388e-01, -1.2165461e+02, -4.1822362e+00, -1.4125692e+01,\n", - " -2.3947306e+00, -3.5357344e+00, -6.2381367e+03, -3.4266500e+00,\n", - " -1.4614822e+02, -3.2972347e+01, 2.5543971e+00, -2.0051935e+00],\n", - " [-6.1176176e+00, -3.6968420e+02, -3.0300055e+00, -1.4539775e+00,\n", - " -9.0452871e+00, 1.9590342e+00, -6.8543695e+02, -8.2899694e+00,\n", - " -4.1339669e+00, -1.9705626e+01, 2.5441470e+00, -4.9290970e+02,\n", - " -1.1374122e+01, -2.3999363e+01, -3.1917305e+00, -2.4528968e+00],\n", - " [-3.1304493e+00, -3.7501240e+01, -7.7164774e+00, 2.4924408e-01,\n", - " -1.3894971e+02, 7.6016001e-02, -5.9104266e+00, -6.0955367e+00,\n", - " -3.8252764e+00, -9.0301256e+00, -2.2840753e+00, -1.1992974e+02,\n", - " -5.1417584e+02, -6.3284431e+00, -4.2141461e+00, -2.1355584e+00],\n", - " [-1.1767818e+01, -9.3182640e+00, -3.0315454e+00, -1.6737721e+00,\n", - " -2.9802802e+02, -5.5685835e+00, 1.2763839e+01, -3.4348946e+00,\n", - " -2.7976532e+00, -2.7837302e+02, -4.2432213e+00, -9.0256186e+00,\n", - " -9.8394728e+00, -4.1077223e+00, 2.4018755e+00, -2.0308821e+00],\n", - " [-5.9273152e+00, -2.5374025e+02, -6.8436623e+00, -2.5425010e+00,\n", - " -1.4768844e+01, -1.7603253e+02, -4.7023664e+00, -7.6236282e+01,\n", - " -2.9073627e+00, 8.6648827e+00, -8.5392051e+03, -5.8121047e+00,\n", - " -7.2791466e+01, -2.3502818e+02, -2.7130592e+00, -2.6625440e+00],\n", - " [-8.1533756e+00, -3.8943378e+02, -4.1348895e+02, -5.0527987e+00,\n", - " -3.2188079e+00, -5.5823431e+00, -6.8382483e+00, -1.4812438e+01,\n", - " -2.1950374e+00, -7.1631694e-01, -7.8611450e+03, -1.4638239e+01,\n", - " -2.1988130e+02, -1.2259314e+03, -5.0477958e+00, 3.1108940e-01],\n", - " [-6.1071167e+00, 1.7509606e+00, -1.0647372e+00, -2.6121376e+00,\n", - " -7.5491219e+00, -2.8602786e+02, -1.3884297e+01, -1.2871943e+01,\n", - " -7.9585147e-01, -1.3354602e+01, -5.4973633e+03, -6.3876367e+00,\n", - " -4.4720917e+02, -3.6843164e+03, -5.2729225e+00, -2.4574318e+00],\n", - " [-8.7140789e+00, -3.9702592e+00, -5.6227875e+00, -3.0109870e+00,\n", - " -3.6579762e+00, -6.2967474e+02, -7.0813043e+02, 2.0189316e+00,\n", - " -2.8482875e-01, -7.2559595e+00, 7.8986400e-01, -9.0918455e+00,\n", - " -4.3161438e+01, -8.5390778e+02, -4.3153958e+00, -3.8420200e+00]],\n", - " dtype=float32)" - ] - }, - "execution_count": 16, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "'''\n", - "Check whether regressor coefficient is good\n", - "'''\n", - "Model.model.get_regression_coef()" - ] - }, - { - "cell_type": "code", - "execution_count": 17, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "0 -9528.254070520401\n", - "1 -870.773551851511\n", - "2 -2032.8360702991486\n", - "3 -3164.0942156910896\n", - "4 -255.13821169734\n", - "5 -2520.43114900589\n", - "6 -3246.4967193603516\n", - "7 -11112.864233613014\n", - "8 -1313.1837648749352\n", - "9 -1095.5500347316265\n", - "10 -10517.410782694817\n", - "11 -4510.059874117374\n", - "12 -6590.766949862242\n", - "13 -1636.322233557701\n", - "14 -860.9017847403884\n", - "15 -628.0747654438019\n", - "16 -9393.248667001724\n", - "17 -10175.824758648872\n", - "18 -9985.523555397987\n", - "19 -2281.8317324221134\n" - ] - } - ], - "source": [ - "'''\n", - "Check whether there are some difference in the regression coefficient sum\n", - "'''\n", - "for i in range(len(Model.model.get_regression_coef())):\n", - " print(i, sum(Model.model.get_regression_coef()[i]))" - ] - }, - { - "cell_type": "code", - "execution_count": 13, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "array([-5.96283245e+00, -4.84228516e+00, -4.65203619e+00, -5.81537437e+00,\n", - " -3.68868047e+04, 1.20726105e+02, -2.75120926e+00, -4.30867052e+00,\n", - " -8.20122147e+00, -1.09877899e+02, -4.66463995e+00, -6.69718075e+00,\n", - " -1.71611080e+01, -3.18311381e+00, -1.83578145e+04, -1.67979919e+02],\n", - " dtype=float32)" - ] - }, - "execution_count": 13, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "Model.model.get_regression_coef(var_id=3)" - ] - }, - { - "cell_type": "code", - "execution_count": 18, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "array([ -5.8458986, -470.16916 , -7.7924094, -3.0099306,\n", - " -5.2282624, -565.54224 , 31.108414 , -399.84808 ,\n", - " -1.2367842, -13.726552 , -4.461956 , -540.00775 ,\n", - " -36.306488 , -3.616269 , -5.0478735, -2.1048298],\n", - " dtype=float32)" - ] - }, - "execution_count": 18, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "Model.model.get_regression_coef()[2]" - ] - }, - { - "cell_type": "code", - "execution_count": 19, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "'b'" - ] - }, - "execution_count": 19, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "Model.model.get_var_type(6)" - ] - }, - { - "cell_type": "code", - "execution_count": 20, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "20" - ] - }, - "execution_count": 20, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "Model.model.f" - ] - }, - { - "cell_type": "code", - "execution_count": 23, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "array(['atheism', 'autos', 'crypt', 'electronics', 'forsale', 'graphics',\n", - " 'med', 'motorcycles', 'os.ms-windows.misc', 'politics.guns',\n", - " 'politics.mideast', 'politics.misc', 'religion.christian',\n", - " 'religion.misc', 'space', 'sport.baseball', 'sport.hockey',\n", - " 'sys.ibm.pc.hardware', 'sys.mac.hardware', 'windows.x'],\n", - " dtype='\n", - "| SLDAModel (current version: 0.12.4)\n", - "| 7532 docs, 2093344 words\n", - "| Total Vocabs: 201144, Used Vocabs: 201144\n", - "| Entropy of words: 8.52757\n", - "| Entropy of term-weighted words: 8.52757\n", - "| Removed Vocabs: \n", - "|\n", - "\n", - "| Iterations: 1000, Burn-in steps: 0\n", - "| Optimization Interval: 10\n", - "| Log-likelihood per word: -8.97208\n", - "|\n", - "\n", - "| tw: TermWeight.ONE\n", - "| min_cf: 0 (minimum collection frequency of words)\n", - "| min_df: 0 (minimum document frequency of words)\n", - "| rm_top: 0 (the number of top words to be removed)\n", - "| k: 16 (the number of topics between 1 ~ 32767)\n", - "| vars: binary, binary, binary, binary, binary, binary, binary, binary, binary, binary, binary, binary, binary, binary, binary, binary, binary, binary, binary, binary\n", - "| alpha: [0.1] (hyperparameter of Dirichlet distribution for document-topic, given as a single `float` in case of symmetric prior and as a list with length `k` of `float` in case of asymmetric prior.)\n", - "| eta: 0.01 (hyperparameter of Dirichlet distribution for topic-word)\n", - "| mu: [] (mean of regression coefficients, default value is 0)\n", - "| nu_sq: [inf inf inf inf inf inf inf inf inf inf inf inf inf inf inf inf inf inf\n", - " inf inf] (variance of regression coefficients, default value is 1)\n", - "| glm_param: [] (the parameter for Generalized Linear Model, default value is 1)\n", - "| trained in version 0.12.4\n", - "|\n", - "\n", - "| alpha (Dirichlet prior on the per-document topic distributions)\n", - "| [0.08499099 0.25802314 0.06593581 0.07490139 0.8787852 0.1454923\n", - "| 0.07725232 0.05489037 0.30266577 0.26302162 0.0425543 0.01144547\n", - "| 0.05647176 0.04905899 0.06925169 0.08878875]\n", - "| eta (Dirichlet prior on the per-topic word distribution)\n", - "| 0.01\n", - "| regression coefficients of response variables\n", - "| #0 (binary): [ -5.679509 3.0408618 -0.9636158 -6.398635 -0.36390775\n", - "| -3.5070853 -12.552038 -282.15683 -3.004209 -12.906087\n", - "| -5.236324 -5.6039987 -16.366562 -18.754274 -5.0867157\n", - "| -116.03703 ]\n", - "| #1 (binary): [ -3.7921412 -3.858661 -7.8678575 6.339664 -3.2497556\n", - "| -3.1149642 -116.471794 -6.423413 -4.914283 -2.0064979\n", - "| -5.7868204 -3.4631767 -4.7346745 -4.992622 -10.024784\n", - "| -2.8616216]\n", - "| #2 (binary): [-1.3833970e+00 -2.7953134e+00 -1.2360035e+01 -2.1115906e+00\n", - "| -4.7846594e-01 -4.3049803e+00 -1.1428837e+01 -9.1321850e+00\n", - "| -7.8499627e+00 -3.1641092e+00 -6.1373993e+02 -3.4213548e+00\n", - "| -1.6911518e+01 -5.7585144e+01 -1.2204653e+01 6.7249388e-01]\n", - "| #3 (binary): [-5.9375191e+00 -5.1097183e+00 -1.0696012e+02 -1.1422612e+01\n", - "| -1.0391757e+00 -3.2395558e+00 -1.2740640e+01 -6.7734512e+01\n", - "| -2.8364146e+00 2.9659992e-01 -5.7095923e+02 -1.0263561e+01\n", - "| -9.3234129e+00 -1.4690456e+01 -8.6671352e+00 -3.6618733e-01]\n", - "| #4 (binary): [ -10.182689 -1.3018982 -308.62192 -13.262502 -1.3196744\n", - "| -4.530002 -12.066451 -29.69763 -0.63802993 1.3913933\n", - "| -46.011227 -10.194441 -10.703088 -9.809066 -27.707981\n", - "| -2.651336 ]\n", - "| #5 (binary): [ -3.9695392 -6.1028295 -41.322227 4.2886505 -2.939906\n", - "| -2.0105112 -9.268726 -10.996299 -9.011868 -3.6113665\n", - "| -388.54385 -1.6610909 -8.145418 -1.1848605 -6.0623236\n", - "| 0.60675824]\n", - "| #6 (binary): [ -1.6818904 -10.604916 -264.80457 -8.666062 -6.841075\n", - "| 4.7255254 -6.5182962 -8.856894 -1.3975726 -0.9179141\n", - "| -4.6147294 1.4774736 -7.2080226 -6.021839 -14.212972\n", - "| -1.9306762]\n", - "| #7 (binary): [ 1.4770169e+01 -6.3463645e+00 -1.1101385e+03 -1.1341673e+01\n", - "| -3.3564199e-02 -4.9383841e+00 -1.1748669e+01 -1.1980400e+02\n", - "| -1.8094956e+00 -5.6303549e+00 -1.3746315e+01 -1.1520069e+01\n", - "| -2.6793724e+01 -7.7639432e+00 -1.0760782e+01 -2.7188235e+03]\n", - "| #8 (binary): [-6.4803896e+00 -6.0188460e+00 -3.6676535e+02 -9.2849503e+00\n", - "| -3.4051731e+00 -4.2823148e+00 -7.2624268e+01 -4.5685764e+02\n", - "| 6.1936921e-01 -5.3931227e+00 -1.2927753e+03 -4.0408489e+01\n", - "| -3.6861973e+01 6.4318138e+01 -5.0998240e+00 -2.9097473e+03]\n", - "| #9 (binary): [-7.6213584e+00 -1.9085846e+00 -2.2077076e+01 -9.3724899e+00\n", - "| -5.5364802e-02 -3.4611881e+00 -2.2563612e+01 1.8535054e+00\n", - "| -9.6996617e-01 -4.0885310e+00 -2.4263548e+01 -1.0382919e+01\n", - "| -1.5112182e+01 -6.8283553e+00 -8.2178268e+00 -1.4470835e+03]\n", - "| #10 (binary): [-7.95997143e+00 -5.79553270e+00 -6.69233322e+01 -4.74255037e+00\n", - "| -1.90371406e+00 -4.78818655e+00 -1.13148737e+01 4.53297186e+00\n", - "| 2.65785980e+00 -5.36431837e+00 -1.66707825e+02 -8.19795430e-02\n", - "| -1.20018015e+01 -6.45764589e+00 -5.30996943e+00 -1.77061768e+03]\n", - "| #11 (binary): [ -4.8964057 -9.214598 -61.112045 -2.4689386 0.39114574\n", - "| -4.797688 7.6396465 -371.148 -18.936316 -4.9639654\n", - "| -24.504028 -5.580659 -5.8880973 -4.591734 -7.9951344\n", - "| -3.4505908 ]\n", - "| #12 (binary): [-5.1513309e+00 -2.1258459e+00 -2.2103101e+02 -7.7915974e+00\n", - "| -9.8008223e-02 -2.0482855e+00 -1.2458591e+01 -1.2653400e+01\n", - "| -6.1159635e+00 -1.5867786e+00 -2.5599858e+02 -1.0134507e+00\n", - "| -1.0670761e+01 -3.2378147e+00 -1.1753755e+00 -2.4961915e+00]\n", - "| #13 (binary): [ -7.280568 1.8344116 -18.48465 -7.0272098 -2.060678\n", - "| -4.13288 -26.612654 -49.996597 3.5613499 -2.8062594\n", - "| -186.538 -13.087327 8.181383 -13.617836 -5.998086\n", - "| -1239.8428 ]\n", - "| #14 (binary): [-13.020471 -6.488476 -75.01291 -2.5612414 -1.4239556 -1.6567584\n", - "| -11.088143 -16.264797 -2.601151 -9.672161 -7.221232 -14.817889\n", - "| -13.863952 -56.290356 16.96159 -67.84442 ]\n", - "| #15 (binary): [-8.2848349e+00 -1.5661060e+01 1.0637782e+01 -5.3195615e+00\n", - "| -3.1469572e+00 -4.2851930e+00 -7.6413579e+00 -1.3302938e+01\n", - "| -2.3520504e-01 -3.2727783e+00 -9.1973143e+00 -6.9345636e+00\n", - "| -7.8847308e+00 -1.9072977e+01 -1.3559183e+01 -1.3588330e+03]\n", - "| #16 (binary): [ -8.444044 -2.1685703 -11.42659 -5.9884486 -2.338921\n", - "| -3.8338332 3.932318 -137.18803 2.0398664 -4.986247\n", - "| -11.916445 -4.3846726 -8.612627 -7.361683 -10.481229\n", - "| -1961.5841 ]\n", - "| #17 (binary): [-9.9711704e+00 -6.0411625e+00 -1.2731300e+02 -2.0173895e+00\n", - "| -4.6550021e+00 -4.6052003e+00 -4.0999516e+01 -1.5365810e+02\n", - "| -1.9283717e+00 -4.3062758e+00 7.6568924e+01 -6.6129614e+02\n", - "| -7.3013024e+00 -5.1726584e+00 -8.9860016e+01 -3.2708611e+03]\n", - "| #18 (binary): [-7.2446957e+00 -1.4393356e+00 -8.7739439e+00 -5.7703524e+00\n", - "| -1.7629806e+00 -4.5031729e+00 -2.9303882e-01 -1.8640074e+01\n", - "| -1.8599541e-01 -7.6740842e+00 -6.1432161e+00 -1.4512226e+01\n", - "| 2.6748919e+00 -8.8466179e+01 -7.0342388e+00 -1.7452206e+03]\n", - "| #19 (binary): [ -8.95919 0.56964463 -0.5003382 -9.633713 -1.7148817\n", - "| -2.8562524 -4.4303665 -106.838585 -2.4265487 -7.6434636\n", - "| -6.9969053 -0.7407068 -12.936755 -17.332268 -3.5443697\n", - "| -113.792786 ]\n", - "|\n", - "\n", - "| #0 (54164) : : the a of and\n", - "| #1 (106049) : > writes: article >> Re:\n", - "| #2 (127883) : the of and is to\n", - "| #3 (99548) : the and of to for\n", - "| #4 (690002) : the to a is that\n", - "| #5 (67905) : | * / for Lines:\n", - "| #6 (89711) : the of to and they\n", - "| #7 (68550) : 0 1 2 - 3\n", - "| #8 (227653) : the and was to a\n", - "| #9 (128185) : I a the From: Subject:\n", - "| #10 (99409) : the of and in to\n", - "| #11 (29865) : $ 1 25 $1 $2\n", - "| #12 (75715) : of and the in to\n", - "| #13 (40643) : | of Re: and Subject:\n", - "| #14 (68707) : |> the of and in\n", - "| #15 (119355) : the to and a I\n", - "|\n", - "\n" - ] - } - ], - "source": [ - "import tomotopy as tp\n", - "# mdl = tp.LDAModel(k=20)\n", - "mdl = tp.SLDAModel(k=16, vars=['b' for _ in range(20)], tw = tp.TermWeight.ONE, nu_sq= float('Inf'))\n", - "\n", - "for line,label in zip(test.data, test.target):\n", - " tgt = [0 for i in range(20)]\n", - " tgt[label] = 1\n", - " # mdl.add_doc(line.strip().split())\n", - " mdl.add_doc(line.strip().split(), y=tgt)\n", - "\n", - "for i in range(0, 1000, 10):\n", - " mdl.train(10)\n", - " if i % 500 == 0:\n", - " print('Iteration: {}\\tLog-likelihood: {}'.format(i, mdl.ll_per_word))\n", - "\n", - "# for k in range(mdl.k):\n", - "# print('Top 10 words of topic #{}'.format(k))\n", - "# print(mdl.get_topic_words(k, top_n=10))\n", - "\n", - "mdl.summary()" - ] - }, - { - "cell_type": "code", - "execution_count": 28, - "metadata": {}, - "outputs": [], - "source": [ - "'''\n", - "Let sLDA predict on unprecessed dataset\n", - "'''\n", - "raw_counter, raw_predictive_label, raw_test_predictive_label = slda_predict([ele.strip().split() for ele in train.data], [ele.strip().split() for ele in test.data], mdl)" - ] - }, - { - "cell_type": "code", - "execution_count": 30, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "0.4353013964999116" - ] - }, - "execution_count": 30, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "'''\n", - "sLDA training accuracy\n", - "'''\n", - "accuracy_score(train.target, raw_predictive_label)" - ] - }, - { - "cell_type": "code", - "execution_count": 31, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "0.5667817312798725" - ] - }, - "execution_count": 31, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "'''\n", - "sLDA testing accuracy\n", - "'''\n", - "accuracy_score(test.target, raw_test_predictive_label)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Bertopic Model " - ] - }, - { - "cell_type": "code", - "execution_count": 15, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/nfshomes/zli12321/micromamba/envs/user_study/lib/python3.9/site-packages/umap/distances.py:1063: NumbaDeprecationWarning: The 'nopython' keyword argument was not supplied to the 'numba.jit' decorator. The implicit default value for this argument is currently False, but it will be changed to True in Numba 0.59.0. See https://numba.readthedocs.io/en/stable/reference/deprecation.html#deprecation-of-object-mode-fall-back-behaviour-when-using-jit for details.\n", - " @numba.jit()\n", - "/nfshomes/zli12321/micromamba/envs/user_study/lib/python3.9/site-packages/umap/distances.py:1071: NumbaDeprecationWarning: The 'nopython' keyword argument was not supplied to the 'numba.jit' decorator. The implicit default value for this argument is currently False, but it will be changed to True in Numba 0.59.0. See https://numba.readthedocs.io/en/stable/reference/deprecation.html#deprecation-of-object-mode-fall-back-behaviour-when-using-jit for details.\n", - " @numba.jit()\n", - "/nfshomes/zli12321/micromamba/envs/user_study/lib/python3.9/site-packages/umap/distances.py:1086: NumbaDeprecationWarning: The 'nopython' keyword argument was not supplied to the 'numba.jit' decorator. The implicit default value for this argument is currently False, but it will be changed to True in Numba 0.59.0. See https://numba.readthedocs.io/en/stable/reference/deprecation.html#deprecation-of-object-mode-fall-back-behaviour-when-using-jit for details.\n", - " @numba.jit()\n", - "/nfshomes/zli12321/micromamba/envs/user_study/lib/python3.9/site-packages/tqdm/auto.py:21: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html\n", - " from .autonotebook import tqdm as notebook_tqdm\n", - "/nfshomes/zli12321/micromamba/envs/user_study/lib/python3.9/site-packages/umap/umap_.py:660: NumbaDeprecationWarning: The 'nopython' keyword argument was not supplied to the 'numba.jit' decorator. The implicit default value for this argument is currently False, but it will be changed to True in Numba 0.59.0. See https://numba.readthedocs.io/en/stable/reference/deprecation.html#deprecation-of-object-mode-fall-back-behaviour-when-using-jit for details.\n", - " @numba.jit()\n" - ] - } - ], - "source": [ - "from bertopic import BERTopic\n", - "from sklearn.datasets import fetch_20newsgroups\n", - "\n", - "docs = fetch_20newsgroups(subset='all', remove=('headers', 'footers', 'quotes'))['data']\n", - "\n", - "topic_model = BERTopic(nr_topics=20, top_n_words = 30, calculate_probabilities=True, verbose=True, embedding_model='all-distilroberta-v1')\n" - ] - }, - { - "cell_type": "code", - "execution_count": 17, - "metadata": {}, - "outputs": [], - "source": [ - "y_labels = [-1 for i in range(len(list_of_preprocessed_documents))] " - ] - }, - { - "cell_type": "code", - "execution_count": 18, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Batches: 100%|██████████| 324/324 [00:08<00:00, 38.46it/s] \n", - "2023-08-08 14:38:47,727 - BERTopic - Transformed documents to Embeddings\n", - "2023-08-08 14:39:24,874 - BERTopic - Reduced dimensionality\n", - "2023-08-08 14:39:29,339 - BERTopic - Clustered reduced embeddings\n", - "2023-08-08 14:39:31,152 - BERTopic - Reduced number of topics from 99 to 20\n" - ] - } - ], - "source": [ - "topics, probs = topic_model.fit_transform(list_of_preprocessed_documents, y=y_labels)" - ] - }, - { - "cell_type": "code", - "execution_count": 19, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "array([0.02833728, 0.37075882, 0.01281318, 0.00866021, 0.00810526,\n", - " 0.05104246, 0.01669256, 0.03562784, 0.03344985, 0.00510101,\n", - " 0.02656709, 0.01641701, 0.05026322, 0.04662573, 0.02544039,\n", - " 0.03672484, 0.00223811, 0.00188472, 0.00135317])" - ] - }, - "execution_count": 19, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "probs[909]" - ] - }, - { - "cell_type": "code", - "execution_count": 20, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
TopicCountNameRepresentationRepresentative_Docs
0-14213-1_say_come_go_want[say, come, go, want, thing, work, problem, te...[entire point exactly claim hear eye witness d...
1010770_gun_patient_disease_year[gun, patient, disease, year, doctor, cause, f...[believe way thread progress exchange word top...
217111_drive_card_disk_monitor[drive, card, disk, monitor, driver, problem, ...[hello folk xl internal tape drive pretty comp...
326662_car_bike_ride_engine[car, bike, ride, engine, mile, buy, look, dri...[motorcycle enthusiast motorcycle bluntly suck...
436393_game_team_play_player[game, team, play, player, year, win, season, ...[incident agree cross check illegal kind check...
545744_believe_faith_belief_sin[believe, faith, belief, sin, man, say, mean, ...[ assuredly grain wheat fall ground die remain...
655375_key_encryption_chip_government[key, encryption, chip, government, phone, esc...[note file available anonymous file transfer d...
763726_launch_space_orbit_satellite[launch, space, orbit, satellite, mission, roc...[archive space intro modify date series link...
873067_mail_send_list_address[mail, send, list, address, request, post, tha...[person run mail list mail detail mailing list...
982058_point_line_polygon_file[point, line, polygon, file, colormap, plane, ...[bad question ref list think bit hard point fi...
1091779_israeli_arab_armenian_palestinian[israeli, arab, armenian, palestinian, peace, ...[cpr subject question question thankful live h...
111017610_sale_sell_offer_shipping[sale, sell, offer, shipping, interested, tick...[movie sale with wolf open good offer buyer p...
121116911_file_program_image_entry[file, program, image, entry, include, availab...[archive faq part modify article follow conta...
131216012_circuit_battery_ground_voltage[circuit, battery, ground, voltage, output, cu...[new scope think save buck buy function genera...
141313213_lib_key_xterm_error[lib, key, xterm, error, undefined, file, xr, ...[host host have big problem try build xr bund...
151411314_font_printer_print_ink[font, printer, print, ink, character, laser, ...[common problem highly complex font admit prob...
16156915_window_widget_icon_manager[window, widget, icon, manager, event, applica...[work window base application need override wi...
17162116_delete_stuff_post_merchant[delete, stuff, post, merchant, happy, find, w...[stuff delete announce senator franchise, stuf...
18171717_mv_ww_mt_wt[mv, ww, mt, wt, uww, www, maxaxaxaxaxaxaxaxax...[nrizwtimfqaxaxaxaxaxax gpqfb m maaaaalgr enfy...
19181318_jewish_pitcher_finger_ballplayer[jewish, pitcher, finger, ballplayer, major, p...[believe jewish ball player early th century p...
\n", - "
" - ], - "text/plain": [ - " Topic Count Name \\\n", - "0 -1 4213 -1_say_come_go_want \n", - "1 0 1077 0_gun_patient_disease_year \n", - "2 1 711 1_drive_card_disk_monitor \n", - "3 2 666 2_car_bike_ride_engine \n", - "4 3 639 3_game_team_play_player \n", - "5 4 574 4_believe_faith_belief_sin \n", - "6 5 537 5_key_encryption_chip_government \n", - "7 6 372 6_launch_space_orbit_satellite \n", - "8 7 306 7_mail_send_list_address \n", - "9 8 205 8_point_line_polygon_file \n", - "10 9 177 9_israeli_arab_armenian_palestinian \n", - "11 10 176 10_sale_sell_offer_shipping \n", - "12 11 169 11_file_program_image_entry \n", - "13 12 160 12_circuit_battery_ground_voltage \n", - "14 13 132 13_lib_key_xterm_error \n", - "15 14 113 14_font_printer_print_ink \n", - "16 15 69 15_window_widget_icon_manager \n", - "17 16 21 16_delete_stuff_post_merchant \n", - "18 17 17 17_mv_ww_mt_wt \n", - "19 18 13 18_jewish_pitcher_finger_ballplayer \n", - "\n", - " Representation \\\n", - "0 [say, come, go, want, thing, work, problem, te... \n", - "1 [gun, patient, disease, year, doctor, cause, f... \n", - "2 [drive, card, disk, monitor, driver, problem, ... \n", - "3 [car, bike, ride, engine, mile, buy, look, dri... \n", - "4 [game, team, play, player, year, win, season, ... \n", - "5 [believe, faith, belief, sin, man, say, mean, ... \n", - "6 [key, encryption, chip, government, phone, esc... \n", - "7 [launch, space, orbit, satellite, mission, roc... \n", - "8 [mail, send, list, address, request, post, tha... \n", - "9 [point, line, polygon, file, colormap, plane, ... \n", - "10 [israeli, arab, armenian, palestinian, peace, ... \n", - "11 [sale, sell, offer, shipping, interested, tick... \n", - "12 [file, program, image, entry, include, availab... \n", - "13 [circuit, battery, ground, voltage, output, cu... \n", - "14 [lib, key, xterm, error, undefined, file, xr, ... \n", - "15 [font, printer, print, ink, character, laser, ... \n", - "16 [window, widget, icon, manager, event, applica... \n", - "17 [delete, stuff, post, merchant, happy, find, w... \n", - "18 [mv, ww, mt, wt, uww, www, maxaxaxaxaxaxaxaxax... \n", - "19 [jewish, pitcher, finger, ballplayer, major, p... \n", - "\n", - " Representative_Docs \n", - "0 [entire point exactly claim hear eye witness d... \n", - "1 [believe way thread progress exchange word top... \n", - "2 [hello folk xl internal tape drive pretty comp... \n", - "3 [motorcycle enthusiast motorcycle bluntly suck... \n", - "4 [incident agree cross check illegal kind check... \n", - "5 [ assuredly grain wheat fall ground die remain... \n", - "6 [note file available anonymous file transfer d... \n", - "7 [archive space intro modify date series link... \n", - "8 [person run mail list mail detail mailing list... \n", - "9 [bad question ref list think bit hard point fi... \n", - "10 [cpr subject question question thankful live h... \n", - "11 [movie sale with wolf open good offer buyer p... \n", - "12 [archive faq part modify article follow conta... \n", - "13 [new scope think save buck buy function genera... \n", - "14 [host host have big problem try build xr bund... \n", - "15 [common problem highly complex font admit prob... \n", - "16 [work window base application need override wi... \n", - "17 [stuff delete announce senator franchise, stuf... \n", - "18 [nrizwtimfqaxaxaxaxaxax gpqfb m maaaaalgr enfy... \n", - "19 [believe jewish ball player early th century p... " - ] - }, - "execution_count": 20, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "topic_model.get_topic_info()" - ] - }, - { - "cell_type": "code", - "execution_count": 21, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "100%|██████████| 11/11 [00:07<00:00, 1.50it/s]\n" - ] - } - ], - "source": [ - "topic_distr, _ = topic_model.approximate_distribution(list_of_preprocessed_documents)" - ] - }, - { - "cell_type": "code", - "execution_count": 22, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "(10347, 19)" - ] - }, - "execution_count": 22, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "topic_distr.shape" - ] - }, - { - "cell_type": "code", - "execution_count": 23, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "array([0. , 0.43592104, 0.01193062, 0. , 0. ,\n", - " 0.00572662, 0. , 0.04349114, 0. , 0. ,\n", - " 0.4544945 , 0.0134909 , 0.03494518, 0. , 0. ,\n", - " 0. , 0. , 0. , 0. ])" - ] - }, - "execution_count": 23, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "topic_distr[1960]" - ] - }, - { - "cell_type": "code", - "execution_count": 24, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "{'Main': [('gun', 0.018608386835689935),\n", - " ('patient', 0.01743275333799233),\n", - " ('disease', 0.01290044194610203),\n", - " ('year', 0.012726293250272806),\n", - " ('doctor', 0.012682641452660296),\n", - " ('cause', 0.01251456182586965),\n", - " ('food', 0.012296402645355276),\n", - " ('case', 0.011933622537441721),\n", - " ('pain', 0.010590655261799727),\n", - " ('government', 0.010284915441536353),\n", - " ('say', 0.01026404033893175),\n", - " ('study', 0.010171841044794775),\n", - " ('day', 0.010021503092837898),\n", - " ('drug', 0.00998470869034499),\n", - " ('find', 0.009657294249058266),\n", - " ('treatment', 0.009504535282748357),\n", - " ('thing', 0.009314463948016004),\n", - " ('right', 0.009213916793178973),\n", - " ('health', 0.009210106562463802),\n", - " ('medical', 0.009198581628137494),\n", - " ('law', 0.008988594683375283),\n", - " ('get', 0.008799588741669983),\n", - " ('report', 0.008673746003080195),\n", - " ('problem', 0.008484690462858066),\n", - " ('increase', 0.00847513716292813),\n", - " ('effect', 0.008428104256636842),\n", - " ('state', 0.008397951380458847),\n", - " ('child', 0.008340615348941642),\n", - " ('weapon', 0.008280017842773256),\n", - " ('go', 0.00818615738969413)]}" - ] - }, - "execution_count": 24, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "topic_model.get_topic(0, full = True)" - ] - }, - { - "cell_type": "code", - "execution_count": 17, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "'lotsa stuff take line process serve peaceful attempt serve warrant occur'" - ] - }, - "execution_count": 17, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "list_of_preprocessed_documents[1]" - ] - }, - { - "cell_type": "code", - "execution_count": 18, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
DocumentTopicNameRepresentationRepresentative_DocsTop_n_wordsProbabilityRepresentative_document
0lotsa stuff take line process serve peaceful a...-1-1_work_problem_want_thing[work, problem, want, thing, car, find, try, n...[sixteen day test drive finally th rain fact c...work - problem - want - thing - car - find - t...0.643380False
1lotsa stuff take line process serve peaceful a...-1-1_work_problem_want_thing[work, problem, want, thing, car, find, try, n...[sixteen day test drive finally th rain fact c...work - problem - want - thing - car - find - t...0.830507False
2lotsa stuff take line process serve peaceful a...-1-1_work_problem_want_thing[work, problem, want, thing, car, find, try, n...[sixteen day test drive finally th rain fact c...work - problem - want - thing - car - find - t...0.293723False
3lotsa stuff take line process serve peaceful a...11_game_team_play_player[game, team, play, player, season, year, win, ...[team beat team night show night dominate thor...game - team - play - player - season - year - ...0.179136False
4lotsa stuff take line process serve peaceful a...-1-1_work_problem_want_thing[work, problem, want, thing, car, find, try, n...[sixteen day test drive finally th rain fact c...work - problem - want - thing - car - find - t...0.270575False
...........................
10641lotsa stuff take line process serve peaceful a...00_believe_say_gun_thing[believe, say, gun, thing, come, patient, find...[actually conflict understand passage faith st...believe - say - gun - thing - come - patient -...0.505005False
10642lotsa stuff take line process serve peaceful a...-1-1_work_problem_want_thing[work, problem, want, thing, car, find, try, n...[sixteen day test drive finally th rain fact c...work - problem - want - thing - car - find - t...0.386419False
10643lotsa stuff take line process serve peaceful a...-1-1_work_problem_want_thing[work, problem, want, thing, car, find, try, n...[sixteen day test drive finally th rain fact c...work - problem - want - thing - car - find - t...0.664208False
10644lotsa stuff take line process serve peaceful a...88_point_color_line_polygon[point, color, line, polygon, file, graphic, c...[hi write program convert dxf file database fo...point - color - line - polygon - file - graphi...1.000000False
10645lotsa stuff take line process serve peaceful a...-1-1_work_problem_want_thing[work, problem, want, thing, car, find, try, n...[sixteen day test drive finally th rain fact c...work - problem - want - thing - car - find - t...0.607352False
\n", - "

10646 rows × 8 columns

\n", - "
" - ], - "text/plain": [ - " Document Topic \\\n", - "0 lotsa stuff take line process serve peaceful a... -1 \n", - "1 lotsa stuff take line process serve peaceful a... -1 \n", - "2 lotsa stuff take line process serve peaceful a... -1 \n", - "3 lotsa stuff take line process serve peaceful a... 1 \n", - "4 lotsa stuff take line process serve peaceful a... -1 \n", - "... ... ... \n", - "10641 lotsa stuff take line process serve peaceful a... 0 \n", - "10642 lotsa stuff take line process serve peaceful a... -1 \n", - "10643 lotsa stuff take line process serve peaceful a... -1 \n", - "10644 lotsa stuff take line process serve peaceful a... 8 \n", - "10645 lotsa stuff take line process serve peaceful a... -1 \n", - "\n", - " Name \\\n", - "0 -1_work_problem_want_thing \n", - "1 -1_work_problem_want_thing \n", - "2 -1_work_problem_want_thing \n", - "3 1_game_team_play_player \n", - "4 -1_work_problem_want_thing \n", - "... ... \n", - "10641 0_believe_say_gun_thing \n", - "10642 -1_work_problem_want_thing \n", - "10643 -1_work_problem_want_thing \n", - "10644 8_point_color_line_polygon \n", - "10645 -1_work_problem_want_thing \n", - "\n", - " Representation \\\n", - "0 [work, problem, want, thing, car, find, try, n... \n", - "1 [work, problem, want, thing, car, find, try, n... \n", - "2 [work, problem, want, thing, car, find, try, n... \n", - "3 [game, team, play, player, season, year, win, ... \n", - "4 [work, problem, want, thing, car, find, try, n... \n", - "... ... \n", - "10641 [believe, say, gun, thing, come, patient, find... \n", - "10642 [work, problem, want, thing, car, find, try, n... \n", - "10643 [work, problem, want, thing, car, find, try, n... \n", - "10644 [point, color, line, polygon, file, graphic, c... \n", - "10645 [work, problem, want, thing, car, find, try, n... \n", - "\n", - " Representative_Docs \\\n", - "0 [sixteen day test drive finally th rain fact c... \n", - "1 [sixteen day test drive finally th rain fact c... \n", - "2 [sixteen day test drive finally th rain fact c... \n", - "3 [team beat team night show night dominate thor... \n", - "4 [sixteen day test drive finally th rain fact c... \n", - "... ... \n", - "10641 [actually conflict understand passage faith st... \n", - "10642 [sixteen day test drive finally th rain fact c... \n", - "10643 [sixteen day test drive finally th rain fact c... \n", - "10644 [hi write program convert dxf file database fo... \n", - "10645 [sixteen day test drive finally th rain fact c... \n", - "\n", - " Top_n_words Probability \\\n", - "0 work - problem - want - thing - car - find - t... 0.643380 \n", - "1 work - problem - want - thing - car - find - t... 0.830507 \n", - "2 work - problem - want - thing - car - find - t... 0.293723 \n", - "3 game - team - play - player - season - year - ... 0.179136 \n", - "4 work - problem - want - thing - car - find - t... 0.270575 \n", - "... ... ... \n", - "10641 believe - say - gun - thing - come - patient -... 0.505005 \n", - "10642 work - problem - want - thing - car - find - t... 0.386419 \n", - "10643 work - problem - want - thing - car - find - t... 0.664208 \n", - "10644 point - color - line - polygon - file - graphi... 1.000000 \n", - "10645 work - problem - want - thing - car - find - t... 0.607352 \n", - "\n", - " Representative_document \n", - "0 False \n", - "1 False \n", - "2 False \n", - "3 False \n", - "4 False \n", - "... ... \n", - "10641 False \n", - "10642 False \n", - "10643 False \n", - "10644 False \n", - "10645 False \n", - "\n", - "[10646 rows x 8 columns]" - ] - }, - "execution_count": 18, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "topic_model.get_document_info(list_of_preprocessed_documents[1])" - ] - }, - { - "cell_type": "code", - "execution_count": 19, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "[('delete', 0.20144164566745362),\n", - " ('stuff', 0.08488888874596974),\n", - " ('bobbevice', 0.07717434713296814),\n", - " ('sink', 0.06448111832319289),\n", - " ('sea', 0.06396901877052559),\n", - " ('blow', 0.05352661557768844),\n", - " ('stay', 0.04887674039410372),\n", - " ('post', 0.04793612956060226),\n", - " ('away', 0.04762020184234488),\n", - " ('go', 0.04052875319395337),\n", - " ('oh', 0.039213749229049646),\n", - " ('sig', 0.03496994287783963),\n", - " ('say', 0.03455796287898625),\n", - " ('get', 0.03441626116735986),\n", - " ('way', 0.033202785488326524),\n", - " ('answer', 0.03175012306633117),\n", - " ('shameless', 0.030344650893960396),\n", - " ('guess', 0.029329205130954536),\n", - " ('to', 0.029145421713633057),\n", - " ('let', 0.028765852925775624),\n", - " ('woofing', 0.028479543140855556),\n", - " ('bring', 0.02828374428319642),\n", - " ('find', 0.0281381185740009),\n", - " ('ask', 0.02794590634256966),\n", - " ('add', 0.026981985275913244),\n", - " ('holiday', 0.026416635456545247),\n", - " ('mean', 0.02639013804925574),\n", - " ('hell', 0.026213026980475278),\n", - " ('merchant', 0.026169701597624297),\n", - " ('happy', 0.025861281297846882)]" - ] - }, - "execution_count": 19, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "similar_topics, similarity = topic_model.find_topics(\"money\", top_n=20)\n", - "topic_model.get_topic(similar_topics[0])" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.9.16" - }, - "orig_nbformat": 4 - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/Topic_Models/Data/README.md b/Topic_Models/Data/README.md deleted file mode 100644 index 8b137891..00000000 --- a/Topic_Models/Data/README.md +++ /dev/null @@ -1 +0,0 @@ - diff --git a/Topic_Models/Data/congressional_bill_clean.ipynb b/Topic_Models/Data/congressional_bill_clean.ipynb deleted file mode 100644 index e1da0496..00000000 --- a/Topic_Models/Data/congressional_bill_clean.ipynb +++ /dev/null @@ -1,170 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 1, - "metadata": {}, - "outputs": [], - "source": [ - "import pandas as pd\n", - "import numpy as np" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "9608" - ] - }, - "execution_count": 2, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "congressional_df = pd.read_json('./original_congressional_bill_train.json')\n", - "len(congressional_df)" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "9608" - ] - }, - "execution_count": 3, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "len(np.unique(congressional_df.sub_labels.values.tolist()))\n", - "\n", - "'''\n", - "Only select those topics that are in public interest\n", - "'''\n", - "selected_labels = ['Macroeconomics', \"Health\", \"Agriculture\", \"Labor and Employment\", \"Education\", \"Environment\", \"Transportation\", \"Public Lands and Water Management\", \"Banking, Finance, and Domestic Commerce\"]\n", - "texts = congressional_df.text.values.tolist()\n", - "labels = congressional_df.label.values.tolist()\n", - "sub_labels = congressional_df.sub_labels.values.tolist()\n", - "text_lst, label_lst, sub_lst = [], [], []\n", - "\n", - "count = 0\n", - "for i, ele in enumerate(labels):\n", - " if ele in selected_labels:\n", - " # print(i)\n", - " count += 1\n", - " text_lst.append(texts[i])\n", - " label_lst.append(labels[i])\n", - " sub_lst.append(sub_labels[i])\n", - "\n", - "count" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "9608" - ] - }, - "execution_count": 4, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "len(labels)" - ] - }, - { - "cell_type": "code", - "execution_count": 43, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "81" - ] - }, - "execution_count": 43, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "len(np.unique(sub_lst))" - ] - }, - { - "cell_type": "code", - "execution_count": 44, - "metadata": {}, - "outputs": [], - "source": [ - "'''\n", - "Save the file to a train file used for topic modeling\n", - "'''\n", - "result = {}\n", - "result['text'] = {}\n", - "result['label'] = {}\n", - "result['sub_labels'] = {}\n", - "\n", - "for i in range(len(text_lst)):\n", - " result['text'][str(i)] = text_lst[i]\n", - " result['label'][str(i)] = label_lst[i]\n", - " result['sub_labels'][str(i)] = sub_lst[i]\n", - "\n" - ] - }, - { - "cell_type": "code", - "execution_count": 38, - "metadata": {}, - "outputs": [], - "source": [ - "'save the data'\n", - "import json\n", - "with open(\"./congressional_bill_test.json\", \"w\") as outfile:\n", - " json.dump(result, outfile)" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.9.16" - }, - "orig_nbformat": 4 - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/Topic_Models/Data/congressional_bill_test.json b/Topic_Models/Data/congressional_bill_test.json deleted file mode 100644 index 9092e27a..00000000 --- a/Topic_Models/Data/congressional_bill_test.json +++ /dev/null @@ -1 +0,0 @@ -{"text": {"0": "To designate the Department of Veterans Affairs medical center in Big Spring, Texas, as the George H. O'Brien, Jr., Department of Veterans Affairs Medical Center.", "1": "To authorize certain modifications in the existing project for the Columbia River at the mouth, Oregon and Washington", "2": "A bill to provide for a national commission on health care reform.", "3": "To amend SAFETEA-LU to ensure that projects that assist the establishment of aerotropolis transportation systems are eligible for certain grants, and for other purposes.", "4": "A bill to extend the service area for the San Luis Unit of the Central Valley Project, and for other purposes.", "5": "To amend the Bacon-Davis Act, as amended, and the Walsh-Healey Government Contracts Act, as amended, to prevent suspension of their provisions by the President", "6": "A bill to establish a small business energy efficiency program, and for other purposes.", "7": "To amend section 103 of title 23, United States Code, to authorize modifications or revisions in the Interstate System", "8": "A bill to extend the provisions of title XII of the Merchant Marine Act, 1936, relating to war risk insurance.", "9": "To relinquish all Federal interests in certain lands in the State of Louisiana to correct errors resulting from possible omission of lands from previous surveys, and for other purposes.", "10": "To amend the Federal Water Power Act with respect to the control of the volume and flow of water in connection with power projects", "11": "A bill to require the President to take all necessary action to strictly enforce the regulation promulgated under section 4 of the Emergency Petroleum Allocation Act of 1973 and all orders issued under such act.", "12": "A bill to authorize appropriations to the Secretary of Commerce for the Magnuson-Stevens Fishery Conservation and Management Act for fiscal years 2004, 2005, 2006, 2007, and 2008, and for other purposes.", "13": "To prohibit discrimination in employment because of race, color, national origin, or ancestry", "14": "Relating to the war tax rate on retail sale of furs", "15": "A bill to establish a Chiropractic Section in the Medical Service Corps of the Army.", "16": "To amend the Labor-Manage ment Relations Act, 1947, in order to facilitate the freedom of association of professional personnel", "17": "A bill to help protect the public against the threat of chemical attack.", "18": "To amend the Highway Safety Act of 1970 to provide additional funds for .highway safety programs by authorizing appropriations for such programs in an amount equal to 40 percent of the revenue collected from Federal taxes relating to alcohol", "19": "A bill to extend the date for initiating education and training courses for veterans of World War II", "20": "A bill to promote the development of Native American culture and art.", "21": "To require the Secretary of the Treasury to gather and compile information with respect to the financial cost of assisting taxpayers to comply with the tax laws of the United States, and for other purposes", "22": "To authorize the improvement of the Walnut Creek Basin, Calif., for flood control as recommended in House Document 76, 86th Congress", "23": "To amend the National Historic Preservation Act for purposes of establishing a national historic lighthouse preservation program.", "24": "A bill to strengthen and improve Medicaid services to low-income children and pregnant women, and for other purposes.", "25": "A bill to amend the act of August 12, 1955 (69 Stat. 699), relating to elections in the District of Columbia.", "26": "To establish grant programs and provide other forms of Federal assistance to pregnant women, children in need of adoptive families, and individuals and families adopting children.", "27": "To authorize the conveyance of a parcel of land in Whitney Lake, Texas.", "28": "To amend the Public Health Service Act to establish a State family support grant program to end the practice of parents giving legal custody of their seriously emotionally disturbed children to State agencies for the purpose of obtaining mental health services for those children.", "29": "A bill to encourage the deployment of clean coal technologies so as to assure the development of additional electric generation and industrial energy capacity.", "30": "A bill to facilitate the transmission of electric power by the United States.", "31": "To provide for an extension of highway 82 and Interstate Highway 5 in the states of Washington and Oregon", "32": "To amend the Elementary and Secondary Education Act of 1935 to continue the authorized programs after June 30, 1968, through block grants to the States", "33": "A bill to designate certain lands in the Noxubee National Wildlife Refuge, Oktibbeha County, Miss., as wilderness.", "34": "Providing for an extension of the time during which annual assessment work on mining claims held by location in the United States, including Alaska, may be made, and for other purposes", "35": "To provide that, in the determination of the amount which certain local educational agencies. are entitled to receive for school construction purposes, no reduction in such amount shall be made for prior construction under the WPA, PWA, and NYA programs", "36": "To further secure personal privacy and to protect the constitutional right of individuals to ignore unwarranted governmental requests for personal information", "37": "A bill to provide compensation to survivors of local law enforcement officers killed while apprehending persons for committing Federal crimes.", "38": "To encourage States and units of general local government to use amounts received under the community development block grant program and the community mental health services and substance abuse block grant programs to provide housing counseling and financial counseling for individuals before their release from inpatient or residential institutions for individuals with mental illness and periodic evaluation of the appropriateness of such counseling after such release.", "39": "To extend the provisions of the act of October 11, 1949 (63 Stat. 759,ch. 672 32 D.C. Code 417), to authorize the commitment of persons of unsound mind found on Federal reservations in Loudoun County, Va., to St. Elizabeths Hospital in the District of Col", "40": "To require the Food and Drug Administration to carry out certain activities with respect to food choking hazards to children, including a program to provide education to the public.", "41": "To adjust the boundaries of Pisgah National Forest in McDowell County, North Carolina.", "42": "To provide for the construction and maintenance of a high school formenIndian pupils within the exterior boundaries of the Fort Berthold Reservation", "43": "To promote the provision of telehealth by establishing a Federal standard for telehealth, and for other purposes.", "44": "To amend certain provisions of the Internal Revenue Code of 1954, and certain provisions of title 28, United States Code, relating to taxation", "45": "To provide for the establishment of a commission to review and make recommendations to Congress on the reform and simplification of the Internal Revenue Code of 1986.", "46": "To remove the excise tax on musical instruments , and for other purposes", "47": "To amend the Internal revenue Code of 1954 to provide that annuitants may elect to have their annuities taxed in the manner provided by the Internal Revenue Code of 1939.", "48": "A bill to encourage the conservation of energy by requiring that certain buildings financed with Federal funds are so designed and constructed that the windows in such buildings can be opened and closed manually.", "49": "A bill to prevent the militarization of Federal, State, and local law enforcement by Federal excess property transfers and grant programs.", "50": "A bill to authorize appropriations for the Strategic Petroleum Reserve, and for other purposes.", "51": "A bill to amend the Interstate Land Sales Full Disclosure Act for purposes of regulating the sale or lease of time-share intervals.", "52": "To provide for the reconveyance of lands in certain reservoir projects in Texas, to former owners of such lands", "53": "A bill to designate certain lands within the National Forest System as wilderness.", "54": "To establish a priority in the disposal of real property resulting from the closure or realignment of military installations toward States and other entities that agree to convert the property into correctional facilities for youthful offenders to be operated as military-style boot camps and to require the Secretary of Defense to develop a program to promote the expanded use of such correctional facilities.", "55": "A bill to establish a forgivable loan program for geothermal reservoir confirmation, to amend existing geothermal leasing and permitting laws, and for other purposes.", "56": "A bill to repeal the provisions of the Patient Protection and Affordable Care Act providing for the Independent Payment Advisory Board.", "57": "To amend the Social Security Act to provide that the Secretary of Health, Education, and Welfare shall, under certain circumstances, disclose the current addresses of husbands and parents who have deserted their families", "58": "To provide for the conveyance of certain public land near the City of Douglas, Arizona, for use as a shooting range.", "59": "To enhance the benefits of the national electric system by encouraging and supporting State programs for renewable energy sources, universal electric service, affordable electric service, and energy conservation and efficiency, and for other purposes.", "60": "To amend the Controlled Substances Act to permit certain partial fillings of prescriptions.", "61": "A bill to establish rational criteria for the mandatory imposition of the sentence of death, and for other purposes.", "62": "A bill to establish a commission to study the impact of deregulation of the airline industry on small town America.", "63": "A bill making supplemental appropriations for the fiscal year ending September 30, 2014, for border security, law enforcement, humanitarian assistance, and for other purposes.", "64": "A bill to eliminate the appellate jurisdiction of the U.S. Supreme Court with respect to certain abortion cases.", "65": "To provide for the disposition of the Philadelphia Army Base, Philadelphia, Pa", "66": "To repeal the Public Utility Holding Company Act of 1935, to enact the Public Utility Holding Company Act of 1999, and for other purposes.", "67": "To convey for public purposes certain Federal lands in Riverside County, California, that have been identified for disposal.", "68": "To assure equal access for farm workers to programs and procedures instituted for the protection of American working men and women, and for other purposes", "69": "A bill to establish a Federal Interagency Committee on Emergency Medical Services and a Federal Interagency Committee on Emergency Medical Services Advisory Council, and for other purposes.", "70": "A bill to amend titles XVI, XVIII, and XIX of the Social Security Act with respect to services and benefits for chronically mentally ill individuals.", "71": "To establish a national policy regarding recreational use of snowmobiles on public lands, to provide for a coordinated national snowmobile safety program, and for other related purposes", "72": "A bill to amend subsection 216 (c) of the Motor Carrier Act, 1935, to require the establishment by motor carriers of reasonable through routes and joint rates, charges, and classifications", "73": "A bill to direct the Secretary of Transportation to take certain action in connection with the outporting of certain vessels.", "74": "To amend title 31, United States Code, to allow certain State and local tax debt to be collected through the reduction of Federal tax refunds.", "75": "To require the labeling, advertising, and promotion of tobacco products to disclose the additives to and constituents of the products and tobacco smoke, and for other purposes.", "76": "To amend the National Housing Act to reform and simplify the single family home mortgage insurance program of the Department of Housing and Urban Development, and for other purposes.", "77": "To terminate the obligation of funds by the United States for the superconducting super collider project.", "78": "A bill to provide for emergency increases in the support level for the 1974 crop of flue-cured tobacco.", "79": "A bill to make the income tax credit for increasing research activities permanent.", "80": "A bill to establish an Agricultural Land Review Commission; to establish a demonstration program for protecting agricultural land from being used for nonagricultural purposes; and for other purposes.", "81": "A bill to repeal the provisions of the Agriculture and Consumer Protection Act of 1973 which provide for payments to farmers in the event of crop failures with respect to crops planted in lieu of wheat or feed grains.", "82": "To authorize the appointment of one additional district judge for the southern district of California", "83": "To tax capital gains at the same rate as ordinary income.", "84": "To amend section 24 of the Federal Reserve Act to permit national banks to make loans on unimproved real estate in certain circumstances", "85": "To amend sections 1331 and 1332, title 28, chapter 85, United States Code, dealing is part with the jurisdiction of district courts of the United States", "86": "A bill to authorize appropriations for the Coastal Heritage Trail Route in the State of New Jersey, and for other purposes.", "87": "To amend the Energy Policy Act of 2005 to authorize discounted sales of royalty oil and gas taken in-kind from a Federal oil or gas lease to provide additional resources to Federal low-income energy assistance programs.", "88": "To consolidate Vicksburg National Military Park and to provide for certain adjustments necessitated by the installation of a park tour road, and for other purposes", "89": "A bill to authorize appropriations for the Appalachian highway system and local access roads serving the Appalachian region, and for other purposes.", "90": "A bill to disclaim interest in certain rights in certain lands in the State of Nevada.", "91": "To enhance the ability of law enforcement to combat money laundering, and for other purposes.", "92": "A bill to amend the act of May 13, 1954, relating to the Saint Lawrence Seaway Development Corporation to provide for a 7-year term of office for the Administrator.", "93": "To provide a site for construction of a national health museum, and for other purposes.", "94": "A bill to provide certain authority to reduce erosion within the Cuyahoga Valley National Recreation Area.", "95": "To amend title f8 of the United States Code to prohibit travel or use of any facility in interstate or. foreign commerce with intent to incite a riot or other violent civil disturbance, and for other purposes", "96": "To abolish the National Board for the Promotion of Rifle Practice and to eliminate the promotion of civilian marksmanship by the Department of Defense.", "97": "To provide that Congress shall establish a budget ceiling for each fiscal year, and to provide the appropriation acts which violate any such ceiling shall require a two-thirds vote in each House", "98": "A bill to amend the rice marketing quota provisions of the Agricultural Adjustment Act of 1938, as amended.", "99": "A bill to establish a regulatory framework for the comprehensive protection of personal data for individuals under the aegis of the Federal Trade Commission, to amend the Children's Online Privacy Protection Act of 1998 to improve provisions relating to collection, use, and disclosure of personal information of children, and for other purposes.", "100": "A bill to establish energy supply targets to the year 2000 and to establish procedure for an annual review and update of these targets.", "101": "Making unlawful the require ment for the payment of a poll tax as a prerequisite to voting in a primary or other election for national officers", "102": "A bill to extend coverage of the automobile assistance program and the specially adopted housing program to those veterans qualifying for assistance under section 351 of title 38, United States Code.", "103": "A bill to prohibit possession, manufacture, sale, importation, and mailing of ballistic knives.", "104": "To amend section 6 (a) of Public Law 377 of the act of May 13, 1946, entitled An act to provide Federal aid for the development of public airports, as amended by Public Law 382 of October 25, 1949 (63 Stat.903)", "105": "A bill to make the Alaska Railroad subject to the Government Corporation Control Act", "106": "A bill to recognize the organization known as the National Mining Hall of Fame and Museum.", "107": "To protect the Nation's consumers and to assist the commercial fishing industry through the inspection of establishments processing fish and fishery product in commerce", "108": "To encourage the discovery, development, and production of tin in the United States, its Territories, and possessions.", "109": "To establish a Redwood National Park in the State of California, and for other purposes", "110": "A bill to amend certain provisions of title 28, United States Code, relating to venue in the district courts and the courts of appeals.", "111": "A bill to establish a National Commission on Pesticides, and to provide for a program of investigation, basic research, and development to improve the effectiveness of pesticides and to eliminate their hazards to the environment, fish and wildlife, and ma", "112": "A bill to require the United States Sentencing Commission to amend the Federal sentencing guidelines to provide an enhanced penalty for follow-on bombings.", "113": "A bill to increase the annual salaries of justices and judges of the United States.", "114": "To amend the act entitled An act to expedite the provisions of housing in connection with national defense, and for other purposes, approved October 14, 1940, as amended", "115": "A bill to amend the Federal Unemployment Tax Act to provide additional limitation on the reduction on the credit applicable to employers in certain States which have outstanding loan balances, and for other purposes.", "116": "A bill to protect Yellowstone National Park, the Clarks Fork of the Yellowstone National Wild and Scenic River and the Absaroka-Beartooth Wilderness Area, and for other purposes.", "117": "To amend section 5042 of the internal Revenue Code of 1954 to provide an exemption from tax for certain wine produced for personal use", "118": "To amend the act of March 3, 1899, to authorize the United States to recover by civil actions the cost of removing certain obstructions from the navigable waters of the United States, and for other purposes", "119": "A bill entitled Spill Prevention and Cleanup for Energy Transportation Systems Act of 1977.", "120": "To stimulate , the exploration, production, and conservation of strategic and critical ores, metals, and minerals and for the establishment within the Defense Materials Procurement Agency of a Mine Incentive Payments Division, and for other purposes", "121": "To reinstate the World War II veterans education program, and to per mit World Wax II veterans to obtain educational benefits thereunder to pro vide an additional period during which Korean conflict veterans may initiate and pursue programs of education a", "122": "A bill to extend the Emergency Unemployment Compensation program for an additional year.", "123": "A bill to restructure and recapitalize the Federal Home Loan Mortgage Corporation and for other purposes.", "124": "A bill to discontinue divisions of the court in the district of Kansas", "125": "To authorize the Secretary of the Interior to establish and administer a program of direct Federal employment to improve the quality of the environment, the public lands, Indian reservations, and commonly owned and shared resources through a program of recreational development, reforestation and conservation management, and for other purpcses", "126": "A bill authorizing the construction of local flood-protection works on the Mississippi River at St. Paul and South St. Paul, Minn.", "127": "To authorize the Secretary of the Interior to cooperate with the State of Kentucky to acquire non-Federal cave properties within the authorized boundaries of Mammoth Cave National Park in the State of Kentucky, and for other purposes.", "128": "To establish Federal, State, and local programs for the investigation, reporting, and prevention of bias crimes.", "129": "To authorize the Secretary of the Army to connect the sewage system of St. Josephs Indian School with that of the town of Chamberlain, S. Dak.", "130": "To restore the authority of the Secretary of Agriculture to extend existing and expiring contracts under the conservation reserve program.", "131": "A bill to provide 100 per centum Federal funding of financial audits of facilities participating in medicare and medicaid conducted by State personnel.", "132": "To prohibit the establishment of a valley authority in any State that would be substantially affected thereby until the people of the affected areas of such State have voted affirmatively for such valley authority", "133": "To allow a custodial parent a refundable credit for unpaid child support payments and to require a parent who is chronically delinquent in child support to include the amount of the unpaid obligation in gross income.", "134": "A bill to clarify the limits of the authority of the Department of Education.", "135": "To amend the provisions of law relating to the planting of crops on acreage diverted under the cotton, wheat, and feed grains programs", "136": "To consolidate the two judicial districts of the State of South Carolina into a single judicial district and to make suitable transitional provisions with respect thereto", "137": "To establish a commission to formulate plans for a memorial to Adlai E. Stevenson", "138": "To provide for the construction of an irrigation distribution system and drainage works for restricted Indian lands within the Coachella Valley County Water District in RiVerside County, Calif., and for other purposes.", "139": "A bill relating to the provision of facilities and services for the accommodation of visitors in the national parks, monuments, and reservations, authorizing the Secretary of the Interior to guarantee the obligations of concessioners incurred for such pur", "140": "To amend the Arms Export Control Act to provide that certain firearms listed as curios or relics may be imported into the United States by a licensed importer without obtaining authorization from the Department of State or the Department of Defense, and for other purposes.", "141": "A bill entitled the Education Consolidation and Improvement Act Amendments of 1987.", "142": "To amend the tobacco-marketing-quota provisions of the Agricultural Adjustment Act of 1938, as amended.", "143": "To provide for mandatory price support through the marketing year ending In 1964, for milk used in manufactured dairy products and for butterfat to maintain the productive capacity of our dairy farming industry to promote the orderly marketing of an adequ", "144": "To amend the Higher Education Act of 1965 to strengthen Federal-State partnerships in postsecondary education.", "145": "To expedite salvage and sanitation harvesting of timber stands located on National Forest System lands.", "146": "To amend the act of July 4, 1955, as amended, relating to the construction of irrigation distribution systems", "147": "A bill to designate the Trinity Alps Wilderness, Klamath, Shasta-Trinity, and Six Rivers National Forests in the State of California.", "148": "To provide workmen's compensation protection to individuals denied benefits under State law for disability or death from lung cancer caused by exposure to ionizing radiation during their employment in uranium mines to authorize the Secretary of Labor to provide or make provision for payment of supplementary compensation to persons receiving workmen's compensation benefits under State law for such disability or death to reimburse States for the payment of certain workmen's compensation claims to provide grants to States for research and planning with respect .to ionizing radiation injuries in uranium mines and for other purposes", "149": "To confer jurisdiction upon the U.S. Court of Claims to hear, determine, and render judgment upon the claim of N. V. Phillips Gloeillampenfabrieken, a corporation duly organized and existing under the laws of the Kingdom of the Netherlands and having its principal office in Eindhoven in that country", "150": "A bill to transfer the National Institute of Mental Health to the National Institutes of Health.", "151": "To improve treatment for veterans exposed to radiation while in military service.", "152": "Relating to the computation of retirement income credit in the case of joint income-tax returns.", "153": "To amend the Area Redevelopment Act to permit the repayment of assistance furnished from State and local sources concurrently with the repayment of Federal assistance in certain cases", "154": "To declare and determine the policy by the Congress with respect to the primary authority of the several States to control, regulate, and manage fish and wildlife within their territorial boundaries to confirm to the several States such primary authority and responsibility to relinquish, disavow, and disclaim any power of the United States with respect to the management, regulation, and control of fish and wildlife on lands owned by the United States and specifying the exceptions applicable thereto", "155": "To amend the Internal Revenue Code of X1954 to allow a credit against income tax to employers for .the expenses of providing training programs for employees and prospective employees", "156": "To amend the Federal Power Act to establish procedures designed to balance reasonable power needs and reasonable environmental factors in planning and authorizing the construction and operation of bulk electric power facilities", "157": "To establish a wind engineering research program within the National Institute of Standards and Technology.", "158": "A bill to amend section 901 of the Alaska National Interest Lands Conservation Act.", "159": "To amend the Merchant Marine Act, 1936, to provide for more equitable treatment of a Regional Maritime Academy.", "160": "To provide the Secretary of Commerce with the authority to make grants to States, counties, and local communities to pay for up to one-half of the costs of training programs for firemen", "161": "To amend the Standard Container Act of May 21. 1928 (45 Stat. 685 15 U. S. C. 257-257i) to provide for a three-eights basket for fruits and vegetables", "162": "A bill to alter the boundaries of the Stones River National Battlefield, and for other purposes.", "163": "A bill to amend section 1 (15) of the Interstate Commerce Act, so as to give to the Interstate Commerce Commission authority for use in alleviating car shortages during periods of emergency or threatened emergency", "164": "A bill to amend chapter 215 of title 18 of the United States Code with regard to the grand jury.", "165": "To provide for the provision by hospitals receiving Federal funds through the Medicare Program or Medicaid Program of emergency contraceptives to women who are survivors of sexual assault.", "166": "A bill to amend section 340B of the Public Health Service Act to revise and expand the drug discount program under that section to improve the provision of discounts on drug purchases for certain safety net providers.", "167": "A bill to provide for an expanded forest resources extension program.", "168": "A bill to amend the Controlled Substances Act to treat as dispensing the delivery of a controlled substance by a pharmacy to a practitioner, pursuant to a patient-specific prescription of the practitioner, under certain circumstances.", "169": "A bill to direct the Secretary of Labor to change the name of the Wholesale Price Index to the Basic Price Index.", "170": "To authorize appropriations for Local Rail Freight Assistance through fiscal year 1994.", "171": "To revise the quota-control system on the Importation of certain meat land meat products", "172": "To provide assistance to local educational agencies for the prevention and reduction of violent crime in elementary and secondary schools.", "173": "To realign structures and reallocate resources in the Federal Government, in keeping with the core American belief that families are the best protection for children and the bedrock of any society, to bolster United States diplomacy and assistance targeted at ensuring that every child can grow up in a permanent, safe, nurturing, and loving family, and to strengthen intercountry adoption to the United States and around the world and ensure that it becomes a viable and fully developed option for providing families for children in need, and for other purposes.", "174": "To amend the Public Health Service Act to support research and training in diseases of arthritis and rheumatism, and to aid the ,States in the development of community programs for the control of these diseases, and for other purposes", "175": "A bill to provide for the orderly implementation of Environmental Protection Agency programs established to comply with the Endangered Species Act of 1973.", "176": "A bill to amend section 3 of the Natural Gas Act of 1938, to prohibit importation of petroleum from any country which expropriates, nationalizes, or seizes American owned petroleum property without adequate compensation, after January 1, 1971", "177": "To declare an emergency and to create the National Coal Emergency Act of 1950", "178": "A bill to restrict participation in offshore oil and gas leasing by a person who engages in any activity for which sanctions may be imposed under section 5 of the Iran Sanctions Act of 1996, to require the lessee under an offshore oil and gas lease to disclose any participation by the lessee in certain energy-related joint ventures, investments, or partnerships located outside Iran, and for other purposes.", "179": "A bill to provide the Quileute Indian Tribe Tsunami and Flood Protection, and for other purposes.", "180": "To provide for a National Commission on Board and Care Facility Quality to review and recommend standards for board and care facilities.", "181": "Relating to the tax treatment of transfers of rights to copyrights and literary, musical, and artistic compositions", "182": "To continue temporary authority of the Maritime Commission until March 1, 1948", "183": "A bill to amend the Act of July 2, 1940, as amended, to increase the amount authorized to be appropriated for the Canal Zone Biological Area.", "184": "A bill to amend the Act entitled An Act conferring jurisdiction on certain courts of the United States to hear and render judgment in connection with certain claims of the Cherokee Nation of Oklahoma, approved December 23, 1982.", "185": "A bill to authorize the construction of a replacement lock and dam for locks and dam 26, Mississippi River, Alton, Ill.", "186": "A bill to consent to the amendment of the Pacific Marine Fisheries Compact and to the participation of certain additional States in such compact in accordance with the terms of such amendment", "187": "To provide Federal assistance for projects which will demonstrate or develop techniques and practices leading to a solution of the Nations juvenile delinquency control problem", "188": "To support research and development programs in agricultural biotechnology and genetic engineering targeted to addressing the food and economic needs of the developing world.", "189": "To amend sections 4(a), 4(e), 7 (e) , and 15 of the Natural Gas Act, relating to rates and contracts of natural gas companies and the granting of certificates of public convenience and necessity to such companies, and relating to hearings and procedures i", "190": "To assist in the provision of affordable housing to low-income families affected by Hurricane Katrina.", "191": "A bill to convey right-of-way to Eagle Creek Inter-Community Water Supply Association.", "192": "To amend the Internal Revenue Code of 1986 to assist small business refiners in complying with Environmental Protection Agency sulfur regulations.", "193": "A bill to authorize Federal loans and matching grants as alternative forms of assistance to colleges and universitiesfor the construction, rehabilitation, alteration, conversion, or improvement of classroom buildings and other academic facilities.", "194": "A bill to improve farm commodity prices, to strengthen the national economy through a comprehensive, demand-oriented agricultural export policy, and for other purposes.", "195": "A bill to amend the Head Start Act to authorize block grants to States for prekindergarten education.", "196": "A bill to amend the Interstate Commerce Act by including independent owner-operator truckers as an exempted class under section 203(b) of that Act.", "197": "To establish a commission to enforce antidiscrimination provisions in Government contracts, and for other purposes", "198": "A bill to authorize implementation of the San Joaquin River Restoration Settlement, and for other purposes.", "199": "A bill to establish a ski area permit system on national forest lands established from the public domain, and for other purposes.", "200": "A bill to amend the Native American Languages Act to provide for the support of Native American Language Survival Schools, and for other purposes.", "201": "A bill to authorize the establishment of a Beringian Heritage International Park.", "202": "A bill to provide assistance for employees who are separated from employment as a result of reductions in service by air carriers, and closures of airports, caused by terrorist actions or security measures.", "203": "To provide for research and education with respect to triple-negative breast cancer, and for other purposes.", "204": "To develop a national intermodal surface transportation system, to authorize funds for construction of highways, for highway safety programs, and for mass transit programs, and for other purposes.", "205": "To authorize payment of $25,000 reward for information which leads to the apprehension and conviction of the person or persons responsible for a bomb explosion in the U.S. Capitol Building on March 1, 1971", "206": "To amend the Woodrow Wilson Memorial Bridge Authority Act of 1995 to provide for continued engineering, design, right-of-way acquisition, and construction related to the project to upgrade the Woodrow Wilson Memorial Bridge.", "207": "To amend title 49, United States Code, to provide for the extension of certain deadlines related to positive train control, and for other purposes.", "208": "A bill to require all recreational vessels to have and to post passenger capacity limits and for other purposes.", "209": "To provide for the issuance of commissions in the United States Coast Guard Reserve as temporary members to members of the St. Andrews Bay Pilots Association and the Port St. Joe Pilots Association", "210": "To authorize the Secretary of the Interior to revise the boundary of the Minute Man National Historical Park in the State of Massachusetts.", "211": "A bill to limit financial assistance under title I of the Housing Act of 1949, after July 1, 1965, to projects which cannot be self liquidating under applicable State law.", "212": "A bill to expand the working condition fringe exception of the Internal Revenue Code of 1954 with respect to employee use of vehicles.", "213": "A bill to designate a mountain in the State of Alaska as Denali.", "214": "A bill to provide for the development of a long-range plan to advance the national attack on arthritis and related musculoskeletal diseases and for arthritis training and demonstration centers, and for other purposes.", "215": "To direct the President to develop a comprehensive safety program to ensure the quality and wholesomeness of all fish products intended for human consumption in the United States.", "216": "An original bill authorizing appropriations to the Secretary of the Interior for services necessary to the nonperforming arts functions of the John F. Kennedy Center for the Performing Arts, and for other purposes.", "217": "To amend section 2314, United States Code, title 18, with respect to the transportation in interstate commerce of articles obtained by false or fraudulent pretenses, representations, or promises, or through any scheme or artifice to defraud.", "218": "A bill to disregard, for purposes of certain taxes imposed by the Internal Revenue Code of 1954 with respect to employees, certain changes since 1975 in the treatment of individuals as employees.", "219": "To provide that veterans suffering from active pulmonary tuberculosis shall be deemed to be permanently and totally disabled for pension purposes while hospitalized", "220": "A bill to encourage the prevention of air and water pollution by allowing the cost of treatment works for the abatement of air and stream pollution to be amortized at an accelerated rate for income-tax purposes.", "221": "To restrict imports of beef, veal, and mutton into the United States", "222": "To amend title XI of the Federal Aviation Act of 1958 to provide that certain provisions of insurance contracts covering loss of life or personal injury of passengers being transported in air transportation shall be null and void", "223": "A bill to exempt programs of the Federal National Mortgage Association from state usury laws and for other purposes.", "224": "A bill providing emergency relief to individuals injured as a result of the disposal of toxic or hazardous substances, and for other purposes.", "225": "A bill to amend certain provisions of the Federal Food, Drug, and Cosmetic Act", "226": "A bill to authorize appropriations for the American Folklife Center for fiscal years 1985 and 1986.", "227": "A bill to provide for a demonstration program for the provision of child care services in public housing projects.", "228": "To increase the number of graduate medical education positions treating veterans, to improve the compensation of health care providers, medical directors, and directors of Veterans Integrated Service Networks of the Department of Veterans Affairs, and for other purposes.", "229": "To provide the Department of Justice the necessary authority to apprehend, prosecute, and convict individuals committing animal enterprise terror.", "230": "A bill to amend the act of March 4, 1915, relating to the welfare of seamen, in order to authorize the two watch system on certain voyages of less than 1,800 miles", "231": "A bill to provide a uniform system for axing and adjusting the pay of employees in recognized trades or crafts, and for other purposes.", "232": "A bill to establish certain rights of professional employees in public schools operating under the laws of any of the several States or any territory or possession of the United States, to prohibit practices which are inimical to the welfare of such publi", "233": "A bill to provide for improved investment in national transportation infrastructure.", "234": "A bill to amend the Controlled Substances Act to authorize a Marihuana pretrial diversion program in order that persons subject to arrest for the unlawful possession of small amounts of marihuana or hashish for personal use may receive drug-related counseling rather than be subject to criminal prosecution pursuant to section 404(a) of such Act; and for other purposes.", "235": "To provide for the detection and treatment of members of the Armed Forces who are narcotics addicts, and for other purposes", "236": "A bill to prevent automobile manufacturers from coercing automobile dealers to purchase unwanted merchandise", "237": "A bill to establish a moratorium on oil and gas-related seismic activities off the coastline of the State of Florida, and for other purposes.", "238": "To authorize the Secretary of Agriculture to carry out a Forest Stewardship Assistance Program for owners of nonindustrial private forest land, and for other purposes.", "239": "To establish the rules of evidence to be followed for insanity as a defense in criminal prosecutions", "240": "To prohibit Federal agencies from planning the sale of the Southeastern Power Administration.", "241": "To amend section 700 of chapter33 of title 18 of the United States Code to provide penalties for showing disrespect for the flag of the United States", "242": "To provide for the use of Federal facilities to demonstrate environmental technologies.", "243": "To assist certain urban and rural local educational agencies that have a high concentration of children from low-income families.", "244": "A bill to amend chapter 44, title 18, United States Code, to prohibit the unlawful possession of firearms.", "245": "To amend the Railway Labor Act and to authorize agreements providing for union membership and agreements for deductions from the wages of carriers employees for certain purposes and under certain conditions", "246": "To establish the Mount Rogers National Recreation Area in Jefferson National Forest in Virginia, and for other purposes", "247": "To amend sections 901 (a) and 902(a) of the Federal Aviation Act of 1958, so as to authorize the imposition of civil penalties in certain additional cases and to increase the monetary amount of lines for violation of the criminal provisions", "248": "To exempt admissions to moving picture theaters from the Federal tax on admissions", "249": "To enforce the provision of the 14th amendment to the Constitution of the United States relating to equal protection of the laws by providing a system of racial integration for the public schools in the several States and a method for enforcing such integ", "250": "A bill to enhance research and education in the areas of pharmaceutical and biotechnology science and engineering, including therapy development and manufacturing, analytical technologies, modeling, and informatics.", "251": "A bill to amend sections- 1 and- 3- of the Foreign Agents Registration Act of 1938, as amended.", "252": "A bill to establish the Minority Business Development Administration in the Department of Commerce, to clarify the relationship between such Administration and the Small Business Administration, and for other purposes.", "253": "A bill to authorize the establishment of the Fort Bowie National Historic Site, in the State of Arizona, and for other purposes.", "254": "To place deputy US. marshals under, the competitive civil service, and for other purposes", "255": "A bill to authorize the establishment of the Burr Trail National Rural Scenic Road in the State of Utah, and for other purposes.", "256": "To provide biorefinery assistance eligibility to renewable chemicals projects, and for other purposes.", "257": "A bill authorizing the transfer to the Government of the Virgin Islands of title to Water Island, Saint Thomas, Virgin Islands, and the acquisition of some of the outstanding leasehold interests in such island.", "258": "A bill to make demonstration grants to eligible local educational agencies or consortia of eligible local educational agencies for the purpose of increasing the numbers of school nurses in public elementary schools and secondary schools.", "259": "A bill to establish a demonstration project to train unemployed workers for employment as health care professionals, and for other purposes.", "260": "A bill to amend the act of June 5, 1944, relating to the construction, operation, and maintenance of Hungry Horse Dam, Montana.", "261": "To assist the several States in establishing hospital facilities and. programs of posthospital aftercare for the care, treatment, and rehabilitation of narcotic addicts, and for other purposes", "262": "To amend certain provisions of the Federal Food, Drug, and Cosmetic Act", "263": "A bill relating to the effective date of the provision in the Economic Recovery Tax Act of 1981 which permits elections under section 2032A of the Internal Revenue Code of 1954 to be made on late estate tax returns.", "264": "To amend the Bankhead-Jones Farm Tenant Act to provide more adequate credit for low-income farmers, including part-time farmers", "265": "A bill to clarify the rights of smokers and nonsmokers aboard air carrier aircraft.", "266": "To amend Public Law No. 177, 62d Congress, approved June 4, 1912", "267": "A bill designating the part established pursuant to the act of April 35, 1947 (61 Stat. 52), as the Theodore Roosevelt National Park", "268": "To provide that the Ozark National Scenic Riverways shall be administered in accordance with the general management plan for that unit of the National Park System, and for other purposes.", "269": "A bill to establish a national policy of promoting and facilitating the operation, maintenance, and development of deep-draft seaports, inland river ports, and domestic waterways necessary for foreign and domestic waterborne commerce; and to require recovery of a portion of certain expenditures of the United States Corps of Engineers for the operation, maintenance, and construction of inland shallow-draft and deep-draft navigational channels and other projects as appropriate.", "270": "A bill to amend section 1(12) of the Interstate Commerce Act to provide that railroads shall not discriminate against the movement or interchange of railroad refrigerator cars not owned by a railroad, and for other purposes.", "271": "To amend the Mineral Leasing Act to require that a portion of revenues from new Federal mineral and geothermal leases be paid to States for use to supplement the education of students in kindergarten through grade 12 and public support of institutions of higher education, and for other purposes.", "272": "To promote the construction of green buildings in the United States, and for other purposes.", "273": "To increase the annual compensation of members of the Interstate Commerce Commission", "274": "A bill to designate the comprehensive Missouri River Basin development program as the Pick-Sloan Missouri Basin program.", "275": "To provide protection and victim services to children abducted by family members.", "276": "A bill to change the names of the Edison Home National Historic Site and the Edison Laboratory National Monument, to authorize the acceptance of donations, and for other purposes.", "277": "A bill granting the consent of the Congress to amendments to the Southeast Interstate Low-Level Radioactive Waste Management Compact.", "278": "A bill to develop a national methanol energy policy and to coordinate efforts to implement such policy.", "279": "To grant the consent of Congress to the States of Colorado, Iowa, Kansas, Minnesota, Missouri, Montana, Nebraska, North Dakota, South Dakota, and Wyoming to negotiate and enter into a compact relating to the conservation, development, and utilization of w", "280": "A bill to assist physicians and other professionals in prescribing drugs covered under Federal-State programs. to provide for the preparation and distribution of State drug formularies, and to encourage economy in the prescribing and dispensing of prescri", "281": "To provide parity under group health plans and group health insurance coverage in the provision of benefits for prosthetic devices and components and benefits for other medical and surgical services.", "282": "A bill to establish a program providing stability of price and supplies of dairy products.", "283": "A bill to ensure American control of certain vessels engaged in processing of fish within the United States Exclusive Economic Zone.", "284": "A bill to provide for increasing the storage capacity of the Bumping Lake Reservoir, Yakima River Basin, Wash.", "285": "To amend the transitional provisions of the act approved August 7, 1959, entitled Nematocide, Plant Regulator, Defoliant, and Desiccant Amendment of 1959", "286": "A bill to provide for Federal support and encouragement of State, local, and community activities to prevent domestic violence and assist victims of domestic violence, to provide for coordination of Federal programs and activities relating to domestic violence, and for other purposes.", "287": "A bill to permit the leasing of oil and gas rights on certain lands held in trust for the Navajo Nation or allotted to a member of the Navajo Nation, in any case in which there is consent from a specified percentage interest in the parcel of land under consideration for lease.", "288": "A bill to authorize the employment of certain foreign citizens on the vessel Seafreeze Atlantic, Official No. 517242.", "289": "A bill to provide for certain jury trails in condemnation proceedings in district courts of the United States.", "290": "To amend the Public Health Service Act to provide that a part of any States grant for comprehensive. public health services shall be available only for the conduct of programs designed to determine, and meet, the need of the State for health care personnel", "291": "A bill authorizing the modification of the Mississippi River, Baton Rouge to the Gulf of Mexico, barge channel through Devils Swamp, La. (Baton Rouge Harbor).", "292": "To establish the New York Canal National Heritage Corridor as an affiliated unit of the National Park System, and for other purposes.", "293": "To amend the Public Health Service Act and the Vocational Education Act of 1946 to provide an emergency 5year program of grants and scholarships for education in the fields of medicine, osteopathy, dentistry, dental hygiene, public health, and nursing pro", "294": "A bill to require the Secretary of Transortation to take into consideration the public interest in the freedom of movement of surface land transortation when rescribing rules and regulations to govern the oening of drawbridges across the navigable rivers and other waters of the United States, to authorize the Secretary of Transortation to assess a civil enalty for any violation of such regulations, and for other purposes. ", "295": "A bill to provide appropriate protection to attorney-client privileged communications and attorney work product.", "296": "A bill to authorize amendments to certain repayment and water service contracts for the Frenchman unit of the Pick-Sloan Missouri River Basin program.", "297": "A bill to amend the Department of Energy High-End Computing Revitalization Act of 2004 to improve the high-end computing research and development program of the Department of Energy, and for other purposes.", "298": "A bill to repeal certain Acts relating to cooperative agricultural extension world and to amend the Smith-Lever Act of May 8, 1914, as amended, to provide for cooperative agricultural extension work between the agricultural colleges in the several States,", "299": "A bill to provide for the monitoring of the economy for the purpose of controlling inflation.", "300": "To require the Secretary of the Interior to make reimbursement for certain damages incurred as a result of bonding regulations adopted by the Bureau of Land Management on February 28, 1997, and subsequently determined to be in violation of Federal law.", "301": "A bill to designate certain lands in the Sheldon National Antelope Refuge, Washoe County, Nev., as wilderness.", "302": "To amend chapter 31 of title 40, United States Code (commonly known as the Davis-Bacon Act) to provide an exemption from the prevailing wage requirements for certain non-profit organizations.", "303": "A bill to establish a federally declared floodway for the Colorado River below Davis Dam.", "304": "To deny the Prince Edward School Foundation and its successors tax-exempt status during the period beginning on October 3, 1984, and ending when it has demonstrated its nondiscrimination policy for 2 consecutive school years by having more than a token number of black students in attendance, black teachers on the faculty, and black individuals in administrative and clerical positions.", "305": "A bill to reinstate and validate United States oil and gas leases numbered OCS-P-0218 and OCS-P-0226.", "306": "To develop a rare earth materials program, to amend the National Materials and Minerals Policy, Research and Development Act of 1980, and for other purposes.", "307": "A bill to direct the Administrator of General Services to acquire by exchange certain property in the possession of the Texas National Guard.", "308": "To modify the boundaries of Grand Teton National Park to include certain land within the GT Park Subdivision, and for other purposes.", "309": "To amend title 49, United States Code, with respect to passenger motor vehicle crash avoidance information, and for other purposes.", "310": "A bill to enable the Oregon Short Line Railroad Co. to convey title to certain lands in Idaho to the Pocatello First Corp. of the Church of Jesus Christ of Latter-day Saints.", "311": "To amend the Internal Revenue Code of 1986 to enhance energy conservation, research, and development and to provide for security and diversity in the energy supply for the American people.", "312": "A bill to authorize the Civil Service Commission to furnish assistance to provide for the emergency transitional employment by State or local governments of Federal employees who lose their positions as the result of reductions in force In areas of high u", "313": "To appropriate $300,000 for advance planning of the New Hogan Dam on the Calaveras River in California.", "314": "A bill to amend the Urban Mass Transportation Assistance Act of 1964 with respect to reduced fare ridership for elderly or handicapped persons.", "315": "To facilitate the efficient extraction of mineral resources in southeast Arizona by authorizing and directing an exchange of Federal and non-Federal land, and for other purposes.", "316": "To establish an Office of Public Works Coordination and Acceleration; to authorize the preparation of a plan for acceleration of public works when necessary to avoid serious nationwide unemployment levels; and for other", "317": "To authorize designated employees of the National Park Service and the U.S. Forest Service to make arrests for violation of Federal laws and regulations, and for other purposes", "318": "To amend title 49, United States Code, to allow States to regulate tow truck operations.", "319": "A bill to permit the State of New Mexico to revise its agreement, entered into under section 218 of the Social Security Act, so as to extend social security coverage to certain hospital employees in such State.", "320": "A bill to terminate the authorization of the navigation study and survey of the Wabash River, Ind.", "321": "To prohibit the leasing or rental of public lands of the United States except on condition that free public access thereto be provided", "322": "To amend the Internal Revenue Code of 1986 to disregard certain amounts of capital expenditures in applying $10,000,000 limit on such issues.", "323": "To authorize the reduction or elimination of the hazards of public railhighway grade crossings along ithe highspeed rail line between Washington, D.C., and Boston, Mass", "324": "To provide unemployment insurance to those who are separated from their employment as a result of domestic violence, dating violence, sexual assault, or stalking.", "325": "A bill to eliminate certain abuses in Federal student aid programs, to prescribe criminal penalties for misconduct by persons connected with such programs.", "326": "To provide for reimbursing Summers County, W. Va., for the loss of tax revenue by reason of the acquisition of land by the United States for the Bluestone Reservoir project", "327": "To increase the amount of student loan forgiveness available to qualified teachers, with an emphasis on special education teachers.", "328": "To extend indefinitely the authority of the Secretary of the Interior to collect a commercial operation fee in the Delaware Water Gap National Recreation Area, and for other purposes.", "329": "A bill to amend the Interstate Commerce Act in order to provide civil liability for violations of such act by common carriers by motor vehicle and freight forwarders.", "330": "A bill to transfer in trust to the Minnesota Chippewa Tribe, White Earth Indian Reservation, certain submarginal lands of the United States and to make such lands parts of the reservation involved.", "331": "A bill to provide for the expansion of affordable refinancing of mortgages held by the Federal National Mortgage Association and the Federal Home Loan Mortgage Corporation.", "332": "A bill to authorize the disposition of certain property at Hot Springs National Park, in the State of Arkansas, and for other purposes.", "333": "To repeal certain provisions of the Patient Protection and Affordable Care Act relating to the premium tax credits and cost-sharing subsidies.", "334": "To authorize Western States to make selections of public land within their borders in lieu of receiving 5 percent of the proceeds of the sale of public land lying within said States as provided by their respective enabling Acts.", "335": "To extend title V of the Public Works and Economic Development Act of 1965 for 2 additional years", "336": "A bill to amend the Act which establised the Frederick Law Olmsted National Historic Site, in the Commonwealth of Massachusetts, by modifying the boundary and for other purposes.", "337": "To allow States to develop or expand instant gun checking capabilities, to allow a tax credit for the purchase of safe storage devices for firearms, to promote the fitting of handguns with child safety locks, and to prevent children from injuring themselves and others with firearms.", "338": "A bill to amend the Social Security Act to strengthen and improve the program of Federal support for foster care of dependent children, to establish a program of Federal support to encourage adoptions of children with special needs.", "339": "A bill to provide for programs for the prosecution of driving while intoxicated charges to be included in the Edward Byrne Memorial State and Local Enforcement Assistance Program.", "340": "To appropriate $132,000 for advance planning of the Terminus Dam on the Kaweah River in California.", "341": "A bill to promote the domestic recruiting of teachers for teaching positions in overseas dependents' schools of the Department of Defense, and for other purposes.", "342": "To authorize a 2-year program of Federal financial assistance for all elementary and secondary school children in all of the States", "343": "To assist certain classes of municipalities to finance vitally needed and specific types of public works by providing for a guaranty by the United States of approved bonds hereafter issued by these municipalities.", "344": "A bill to authorize the sale of certain land of John Little Crow", "345": "A bill to authorize appropriations for the United States Customs Service for fiscal years 2000 and 2001, and for other purposes.", "346": "A bill to eliminate the benefit reduction which is provided for supplemental security income recipients in certain long-term care institutions when such institutions do not meet the standards established by States under section 1616(e) of the Social Security Act, to authorize payments to States to cover the cost of training and compensating personnel to inspect such institutions, and for other purposes.", "347": "A bill to declare that certain federally owned laid is held by the United States in trust for the Stockbridge Munsee community, and to make such lands parts of the reservation involved", "348": "A bill to amend section 144 of title 23 of the United States Code, relating to the special bridge replacement program, in order to make highway bridge projects costing more than one million dollars in those States receiving minimum apportionments of federal funds under such program eligible for Federal aid under the discretionary part of the program.", "349": "To provide grants to enhance the most effective freezing methods to improve access to affordable and locally produced specialty crops.", "350": "A bill to provide for discounted sales to eligible veterans of homes held for an extended time by the Veterans' Administration.", "351": "A bill to further amend section 8 of the Puerto Rico Federal Relations Act as amended by section 606 of the Act of March 12, (P.L. 96-205) authorizing appropriations for certain insular areas of the United States, and for other purposes.", "352": "To encourage the establishment of voluntary pension plans by selfemployed individuals", "353": "A bill to establish a Department of Urban Affairs and Housing, and for other purposes.", "354": "A bill to provide for the addition of the names of the States of Alaska sad Hawaii to the list of the 48 States inscribed upon the walls of the Lincoln National Memorial", "355": "A bill to amend section 38, United States Code, to authorize the Administrator to make contributions for construction projects on land adjacent to national cemeteries in order to facilitate safe ingress or egress.", "356": "A bill to require States to establish highway stormwater management programs.", "357": "To direct the Secretary of the Interior to convey a parcel of real property to Beaver County, Utah.", "358": "To establish a comprehensive risk assessment program within the Environmental Protection Agency, and for other purposes.", "359": "A bill to authorize the establishment of the Fort Union National Monument in the State of New Mexico, and for other purposes", "360": "To encourage benchmarking and disclosure of energy information for commercial buildings.", "361": "A bill to amend section 2 of the act entitled An act to create a Library of Congress Trust Fund Board, and for other purposes: approved March 3, 1925, as amended (2 U.S.C. 1b8), relating to deposits with the Treasurer of the United States of gifts and b", "362": "A bill to authorize a new corporation to support State and local strategies for achieving more affordable housing; to increase homeownership; and for other purposes.", "363": "A bill to establish a procedure for the pro rata reduction in expenditures during periods when projected revenues are insufficient to fully fund such expenditures, and for other purposes.", "364": "To provide that certain highways extending from Laredo, Tex., to the point where U.S. Highway 81 crosses .the border between North Dakota and Canada shall be known collectively as the Pan American Highway", "365": "A bill to authorize the Philadelphia, Baltimore & Washington Railroad Co. to construct, maintain, and operate a branch track or siding over Second Street BE., in the District of Columbia", "366": "A bill to provide for the enforcement of civil rights, provision for schools for military personnel dependents in areas where regular schools are closed by desegregation, to provide for voting referees, and for other purposes.", "367": "A bill to amend and supplement the Federal Food, Drug, and Cosmetic Act with respect to the manufacture and distribution of drugs, and for other purposes.", "368": "To revitalize the cotton growing and cotton manufacturing industry and to reduce Government expenditures for price support and other subsidy operations", "369": "A bill to designate a national marine sanctuary in the Hawaiian Islands for the protection of humpback whales and their habitat.", "370": "To increase from $600 to $1,500 the personal income tax exemptions of a taxpayer (including the exemption for a spouse, the exemption for a dependent, and the additional exemption for old age or blindness)", "371": "To permit refund or credit to brewers of taxes pair on beer lost or wasted in bottling operations", "372": "To amend the Internal .Revenue Code of 1954 to allow teachers to deduct from gross income the expenses incurred in pursuing courses for academic credit and degrees at institutions of higher education. and including .certain travel", "373": "A bill to provide a remedy for sex discrimination by the insurance business with respect to the availability and scope of insurance coverage for women.", "374": "To prevent and cure diabetes and to promote and improve the care of individuals with diabetes for the reduction of health disparities within racial and ethnic minority groups, including the African-American, Hispanic American, Asian American and Pacific Islander, and American Indian and Alaskan Native communities.", "375": "A bill to amend the Interstate Commerce Act to require that certain emergency equipment be carried in any motor vehicle operated by a motor carrier to transport a charter party of passengers, a majority of whom are at least 60 years of age.", "376": "To modernize the Federal Reserve System and to provide for prompt disclosure of certain decisions of the Federal Open Market Committee.", "377": "A bill to facilitate implementation of the 1980 Hague Convention on the Civil Aspects of International Child Abduction, and for other purposes.", "378": "To improve and increase postsecondary education opportunities throughout the Nation by providing assistance to the States for the development and construction of comprehensive community colleges", "379": "A bill to amend the Land and Water Conservation Fund Act of 1965 to allow for the recreation planning, acquisition, or development for indoor facilities.", "380": "A bill to make certain exceptions to the appellate jurisdiction of the Supreme Court of the United States and of the United States court of appeals in actions relating to the public schools.", "381": "To require the Bureau of Labor Statistics of the Department of Labor to collect, report on, and disseminate data necessary for an actual account of individuals who are out of work in the United States.", "382": "To provide for the establishment of the Cape Lookout National Seashore in the State of North Carolina, and for other purposes", "383": "A bill to reauthorize the Reclamation States Emergency Drought Relief Act of 1991, and for other purposes.", "384": "A bill to amend Section 706 to Title 5, United States Code, to strengthen the judicial review provisions of the Administrative Procedure Act by giving courts more authority to overturn unfair agency action.", "385": "A bill to require the Nuclear Regulatory Commission to conduct an independent safety assessment of the Indian Point Nuclear Power Plant.", "386": "To amend chapter 55 of title 10, United States Code, to provide health benefits for the dependents of war vetterans who die of a service-connected disability", "387": "To authorize the construction of a dam and dike to prevent the flow of tidal waters into oar Creek, Douglas County, Oreg", "388": "To amend section 1201 of title 18, United States Code, to assure a sufficiently severe penalty for kidnappings of children that are not returned unharmed.", "389": "A bill to provide for the establishment of a U.S. Court of Labor-Management Relations which shall have jurisdiction over certain labor disputes in industries substantially affecting commerce", "390": "A bill to place reasonable limitations on the use of National Security Letters, and for other purposes.", "391": "To amend the Food Security Act of 1985 to expand the number of acres authorized for inclusion in the conservation reserve.", "392": "A bill to create a body corporate known as Daughters of Union Veterans of the Civil War.", "393": "To amend the act of June 22, 1936, to provide that the Federal Government shall improve or participate in the improvement of certain navigable waters affecting drought areas if the benefits exceed 80 percent of the estimated cost.", "394": "To authorize coastwise and Great Lakes documentation for the vessel IMPULSE.", "395": "A bill to create a Citrus Disease Research and Developing Trust Fund to support research on diseases impacting the citrus industry, and for other purposes.", "396": "A bill to provide permanent funding for the Bureau of Land Management Payment in Lieu of Taxes program and for other purposes.", "397": "To authorize the Secretary of the Interior to identify and declare wildlife disease emergencies and to coordinate rapid response to these emergencies, and for other purposes.", "398": "A bill to amend the Communication Act of 1934 to provide that telephone receivers may not be sold in interstate commerce unless they are manufactured in a manner which permits their use by persons with hearing impairments.", "399": "A bill to provide for holding terms of the U.S. District Court for the District of Connecticut at New London.", "400": "A bill to authorize the Secretary of Agriculture and other agency heads to enter into agreements with foreign fire organizations for assistance in wildfire protection.", "401": "A bill to amend the export Administration Act of 1969 to provide for the regulation of the export of agricultural commodities.", "402": "To establish conditions on any distribution of funds under the Emergency Economic Stabilization Act of 2008 to provide relief for the automotive industry, dealerships, and suppliers, and for other purposes.", "403": "A bill to reform the Powerplant and Industrial Fuel Use Act of 1978 to encourage a reduction in air pollution and oil consumption by existing electric powerplants and to aid utilities in converting to alternate fuels.", "404": "To provide that certain persons who served in the merchant marine shall not be liable for induction into the armed services under the Selective Service Act of 1948", "405": "A bill to provide for the return to the former Indian owners and their successors in interest of certain lands acquired in connection with the Garrison Dam and Reservoir project of all oil and gas rights and interests in such lands", "406": "To amend the Energy Policy and Conservation Act to improve energy standards for home appliances, and for other purposes.", "407": "A bill to authorize the exchange of certain land located in the State of Idaho, and for other purposes.", "408": "A bill to amend the internal revenue code of 1986 to allow a credit against income tax for dry cleaning equipment which uses reduced amounts of hazardous substances.", "409": "A bill to establish standards of fair practices that shall be observed by handlers and associations of producers in their dealings in agricultural products.", "410": "A bill to remove unelected, unaccountable bureaucrats from seniors' personal health decisions by repealing the Independent Payment Advisory Board.", "411": "A bill to extend temporarily the extended period of protection for members of uniformed services relating to mortgages, mortgage foreclosure, and eviction, and for other purposes.", "412": "A bill to amend section 42 of title 18, United States Code, to prohibit the importation and shipment of certain species of carp.", "413": "To provide an additional opportunity for administrative or judicial relief for socially disadvantaged farmers and ranchers who were discriminated against by the Department of Agriculture in farm credit and benefit programs.", "414": "A bill to provide a special procedure for the establishment of safety and health standards for fire fighters.", "415": "To amend the Animal Welfare Act to prohibit dog fighting ventures.", "416": "A bill to clarify and reaffirm the intent of Congress with respect to the transmission and sale of electric power and energy generated or purchased in the southwestern power area.", "417": "To make permanent the existing suspensions of the tax on the first domestic processing of coconut oil, palm oil, palm-kernel oil, and fatty acids, salts, combinations, or mixtures thereof", "418": "To authorize a right-of-way through Joshua Tree National Park, and for other purposes.", "419": "A bill to establish a national policy encouraging States to develop and implement land use programs.", "420": "A bill to amend section 103(e)(2) of title 23, United States Code, relating to the cost of to certain routes on the National System of Interstate and Defense Highways.", "421": "To authorize the National Potato Grade Labeling Act, which provides quality requirement for, and the inspection,certification, and labeling of, Irish potatoes.", "422": "A bill to authorize appropriations for the saline water program for fiscal year 1975.", "423": "A bill to provide a 1-year extension for individuals of the waiver of estimated tax penalties for underpayments of tax which are attributable to the Tax Reform Act of 1986.", "424": "To amend the Federal Land Policy and Management Act of 1976 to provide for determining tort liability of holders of rights-of-way over Federal lands under the ordinary rules of negligence and to clarify the exemption from right-of-way rental fees for certain rural electric and telephone facilities.", "425": "To establish a demonstration project to create Medicare Consumer Coalitions to provide Medicare beneficiaries with accurate and understandable information with respect to managed care health benefits under the Medicare Program and to negotiate with Medicare+Choice organizations offering Medicare+Choice plans to improve and expand benefits under the plans.", "426": "A bill to provide production for certain categories of crude oil by exempting such crude oil from price and allocation regulations under the Emergency Petroleum Allocation Act of 1973.", "427": "To authorize the conveyance of Bunker Hill Island in Lake Cumberland near Burnside, Ky., to the Commonwealth of Kentucky for public park purposes.", "428": "To strengthen the national security, advance the cause of peace, and assure the preeminence of the United States in the academic, scientific, and technical disciplines through programs designed to stimulate the development and to increase the number of st", "429": "A bill to establish a National Agricultural Research, Extension, and Teaching Policy Advisory Board.", "430": "A bill to provide tax incentives to encourage physicians, dentists, and optometrists to practice in physician shortage areas", "431": "A bill to amend the definition of independent student for purposes of the need analysis in the Higher Education Act of 1965 to include older adopted students.", "432": "A bill to empower communities and individuals by consolidating and reforming the programs of the Department of Housing and Urban Development.", "433": "To authorize the Secretary of Homeland Security to make grants to encourage community safety by incorporating disaster mitigation and emergency preparedness into comprehensive land use planning and urban development, and for other purposes.", "434": "To require the Attorney General, through the Office of Justice Programs of the Department of Justice, to establish a 5-year competitive grant program to establish pilot programs to reduce the rate of occurrence of gun-related crimes in high-crime communities.", "435": "To provide for of the health and safety of persons wot Ing in the coal mining industry of. United States, and for other purposes,", "436": "A bill to provide for the care of members of the Coast Guard and their dependents in naval hospitals in certain cases", "437": "To amend the act of September 25, 1950, so as to provide that the liability of the town of Mills, Wyo., to furnish sewerage service under such act shall not extend to future construction by the United States", "438": "To authorize a further preliminary examination and a new survey of Goose River, in the State of North Dakota, a tributary to the Red River of the North (Minnesota North Dakota), for flood control, for rim off and water flow retardation, and soil erosion p", "439": "A bill to amend the State Technical Services Act of 1965 to make municipal governments eligible for technical services under the act, to extend the act through fiscal year 1976.", "440": "To provide for disciplined and responsible action in the consideration and execution of the Federal budget", "441": "A bill to amend the Controlled Substances Act to provide the penalty of death for certain drug crimes.", "442": "A bill to establish a program at the Forest Service and the Department of the Interior to carry out collaborative ecological restoration treatments for priority forest landscapes on public land, and for other purposes.", "443": "To permit suits to be brought against the United States to adjudicate disputed land titles", "444": "To authorize the conduct of certain research and development through the Coast Guard in order to develop an effective electronic guidance system", "445": "A bill to provide grants to States to improve high schools and raise graduation rates while ensuring rigorous standards, to develop and implement effective school models for struggling students and dropouts, and to improve State policies to raise graduation rates, and for other purposes.", "446": "To restore employment and educational opportunities in, and improve the economic stability of, counties containing National Forest System land, while also reducing Forest Service management costs, by ensuring that such counties have a dependable source of revenue from National Forest System land, to provide a temporary extension of the Secure Rural Schools and Community Self-Determination Act of 2000, and for other purposes.", "447": "A bill to modify the flood control project for the Kaskaskia River, Ill., with respect to certain requirements for local cooperation.", "448": "A bill to establish a commission to review the Federal Bureau of Investigation.", "449": "To expand the Mni Wiconi Rural Water Supply Project, and for other purposes.", "450": "To expand domestic fossil fuel production, develop more nuclear power, and expand renewable electricity, and for other purposes.", "451": "A bill to amend chapter 13 of title 18, United States Code, to impose criminal penalties for damage to religious property and for obstruction of persons in the free exercise of religious beliefs.", "452": "To provide incentives for pharmaceutical companies, biotechnology companies, and medical device companies to invest in research and development with respect to antibiotic drugs, antivirals, diagnostic tests, and vaccines that may be used to identify, treat, or prevent serious and life-threatening infectious diseases.", "453": "A bill to designate certain lands within the Pea Island National Wildlife Refuge, Dare County, N.C., as wilderness.", "454": "To provide for the determination that Cuba is a major drug-transit country for purposes of section 490(h) of the Foreign Assistance Act of 1961.", "455": "A bill to amend section 303 of the Federal Land Policy and Management Act.", "456": "To amend section 125 of title 23, United States Code, relating to highway emergency relief, to authorize additional appropriations necessary as a result of recent floods and other disasters", "457": "A bill to provide for the protection of Indian graves and burial grounds, and for other purposes.", "458": "To provide a 5-year program of assistance to enable depressed segments of the fishing industry in the United States to regain a favorable economic status, and for other purposes", "459": "A bill to title XVIII of the Social Security Act to promote the coverage of frail elderly medicare beneficiaries permanently residing in nursing facilities in specialized health insurance programs for the frail elderly.", "460": "To improve and clarify certain laws affecting the Coast Guard Reserve", "461": "A bill declaring the Grand (Neosho) River above the town of Fort Gibson, Muskogee County, Okla., to be not navigable water of the United States.", "462": "To regulate the registration, manufacture, labeling, and inspection of fertllizer and fertilizer materials shipped in Interstate commerce, and for other purposes", "463": "A bill to provide for boundary adjustments of the Badlands National Monument, in the State of South Dakota, and for other purposes", "464": "To establish civil and criminal penalties for the obstruction of lawful hunts conducted on Federal lands under the jurisdiction of the Secretary of Agriculture or Secretary of the Interior.", "465": "To provide means of further securing and protecting the civil rights of persons within the jurisdiction of the United States", "466": "A bill to require the posting on certain aircraft of information relating to the date of manufacture of the aircraft, and for other purposes.", "467": "To amend the Veterans Readjustment Assistance Act of 1952 to make the educational benefits provided for therein available to all veterans whether or not they serve during a period of war or of armed hostilities.", "468": "A bill to create a National Cemetery Commission for the consolidation of national cemetery activities within one civiliancommission, and for other purposes", "469": "A bill to provide tax relief for American workers and businesses, to put workers back on the job while rebuilding and modernizing America, and to provide pathways back to work for Americans looking for jobs.", "470": "A bill to amend the BankheadJones Farm Tenant Act so as to provide a more effective distribution of mortgage loans insured under title I, to give holders of such mortgage loans preference in the refinancing of loans on a noninsured basis, to adjust the lo", "471": "To increase the safety for crew and passengers on an aircraft providing emergency medical services.", "472": "A bill to extend expiring authorities of the Veterans' Administration to make grants related to State nursing home facilities, exchange of medical information, and support of medical schools.", "473": "A bill to require implementation of a marketing loan program for agricultural commodities if negotiations fail to produce an international agreement on agricultural trade.", "474": "To amend Public Law 874, Mat Congress, to require the Federal Government to operate schools for the education of children whose schools are closed in order to avoid compliance with the 14th amendment of the Constitution of the United States", "475": "To amend the Historic Sites Act to provide that the effect on sites, buildings, and objects of historic value of projects involving the expenditure of Federal funds shall be taken into account in the planning of such projects, and to provide for the publi", "476": "To prohibit the Tennessee Valley Authority from acquiring or utilizing, in carrying out its operations and functions, any coal mined by strip mining methods", "477": "To amend .the Internal Revenue Code of 1954 to provide that constructQon workers and seasonal or migrant agricultural workers shall be allowed the deduction for moving expenses without regard to the length of time they are employed at their new principal place of work", "478": "A bill to provide for emergency bridge loan assistance to automobile manufacturers and component suppliers.", "479": "A bill to provide for the maintenance or enhancement of the quality of water in rural areas.", "480": "A bill to authorize the conveyance of certain national forest land to Coconino County, Ariz.", "481": "A bill to provide for the education of children on Federal reservations and other federally owned property not. subject to State or local taxation, and for other purposes", "482": "A bill to amend the act granting the consent of Congress to the States of Montana, North Dakota, South Dakota, and Wyoming to negotiate and enter into a compact relating to the waters of the Little Missouri River in order to extend the expiration date of ", "483": "To amend the Water Resources Development Act of 1990 to require full Federal funding of the project to construct a lock at Sault Saint Marie, Michigan.", "484": "An original bill to designate a portion of the Rappahannock River in the Commonwealth of Virginia as the John W. Warner Rapids.", "485": "To promote and foster the development of. a modern merchantmarine by encouraging the orderly replacement and modernization of merchant vessels, and for other purposes", "486": "To amend section 112 (n) of the Internal Revenue Code to provide that gain from the sale or exchange of the taxpayers home will not be taxed whether or not he replaces it with another residence", "487": "A bill to require the approval of each of the Great Lakes States for any diversion of water from the Great Lakes or the Great Lakes drainage basin for use outside of the Great Lakes States and to prohibit Federal studies of the feasibility of any such diversion.", "488": "To appropriate funds far planning the New Hope Reservoir project, North Carolina", "489": "To provide Federal assistance for projects which will evaluate and demonstrate techniques and practices leading to a solution of the Nations problems relating to the prevention and control of juvenile delinquency and youth offenses and to provide training", "490": "Adopting and authorizing the improvement of Bransons Cove, Lower Machodoc River, Va", "491": "A bill to prevent certain acquisitions of domestic petroleum companies by major international energy concerns.", "492": "A bill to provide Coastal Impact Assistance to State and local governments, to amend the Outer Continental Shelf Lands Act Amendments of 1978, the Land and Water Conservation Fund Act of 1965, the Urban Park and Recreation Recovery Act, and the Federal Aid in Wildlife Restoration Act (commonly referred to as the Pittman-Robertson Act) to establish a fund to meet the outdoor conservation and recreation needs of the American people, and for other purposes.", "493": "To authorize the Secretary of Transportation to carry out s special program of transportation research and development utilizing the special experience and manpower of the aerospace and defense industries, and for other purposes", "494": "To confer jurisdiction upon the Court of Claims to determine the amounts due and owing and render judgment upon the claims of certain employees of the Alaska Railroad for overtime work performed", "495": "To amend the Communications Act of 1934 to strengthen and clarify prohibitions on electronic eavesdropping, and for other purposes.", "496": "To terminate the gas turbine-modular helium reactor program of the Department of Energy, and to dedicate the savings to deficit reduction.", "497": "To modernize the Federal Employees Health Benefits Program, and for other purposes.", "498": "To further secure and protect the civil rights of persons within the jurisdiction of the United States.", "499": "A bill to repeal section 303 (b) of the Interstate Commerce Act, as amended, relating to the water carrier bulk commodity exemption, and for other purposes.", "500": "A bill to deny tax-exempt status to private foundations and organizations engaging in improper transactions with certain Government officials and former Government officials, and to impose an income tax of 100 percent on income received by such officials ", "501": "To authorize the Secretary of Transportation to establish a pilot program to study the benefits of using hair specimens for preemployment controlled substances tests of commercial motor vehicle operators, and for other purposes.", "502": "To authorize the Secretary of Health, Education, and Welfare to prescribe safe standards for the discharge of substances into the air by motor vehicles", "503": "To establish the Modular Construction Commission and provide for national regulation of modular home construction, and for other purposes.", "504": "Authorizing a study of dust control measures at Long Island, Port Isabel, Tex. ", "505": "To amend the Federal Firearms Act to provide the use in the commission of certain crimes of firearms transported in interstate commerce", "506": "To direct the Secretaries of Agriculture and the Interior to conduct a yield and cost study of timber management investment opportunities on Federal timberlands in California, Oregon, and Washington, and for other purposes.", "507": "To amend the Energy Policy Act of 1992 to require the Federal Government to acquire not fewer than 50,000 plug-in hybrid electric vehicles.", "508": "A bill to amend the title XVIII of the Social Security Act to provide a prescription benefit program for all medicare beneficiaries.", "509": "To create or adopt, and implement, rigorous and voluntary American education content standards in mathematics and science covering kindergarten through grade 12, to provide for the assessment of student proficiency benchmarked against such standards, and for other purposes.", "510": "To amend the Drug-Free Schools and Communities Act of 1986 to revise certain requirements relating to the provision of drug abuse education and prevention programs in elementary and secondary schools, and for other purposes.", "511": "To prohibit discrimination on the basis of genetic information with respect to health insurance and employment.", "512": "To require the installation of a system for filtering or blocking matter on the Internet on computers in schools and libraries with Internet access, and for other purposes.", "513": "To amend the Social Security Act to require the Secretary of Health and Human Services to equalize the labor and non-labor portions of the standardized amounts used to determine the amount of payment made to rural and urban hospitals under part A of the medicare program for the operating costs of inpatient hospital services, to amend the Public Health Service Act to improve the capacity of rural hospitals to provide health services, and for other purposes.", "514": "A bill to amend section 3006A of title 18, United States Code, to improve the delivery of legal services in the criminal justice system to those persons financially unable to obtain adequate representation, and for other purposes.", "515": "A bill to amend the direct and guaranteed student loan programs under the Higher Education Act of 1965 to publicize the current loan deferral program for full-time volunteers with the Peace Corps, VISTA, and tax-exempt organizations, and for other purposes.", "516": "To prohibit health insurers and group health plans from discriminating against individuals on the basis of genetic information.", "517": "A bill to authorize a study on methods to commemorate the nationally significant highway known as Route 66, and for other purposes.", "518": "A bill to amend titles 23 and 49, United States Code, to ensure that transportation and infrastructure projects carried out using Federal financial assistance are constructed with steel, iron, and manufactured goods that are produced in the United States, and for other purposes.", "519": "To establish a National Chronic Wasting Disease Task Force, and for other purposes.", "520": "To amend the Social Security Amendments of 1965 to eliminate the provisions which deny hospital :insurance benefits 'to uninsured individuals who are members of certain organizations or have been convicted of certain offenses, and to eliminate the provisions which deny supplementary medical insurance benefits to persons who have been convicted of certain offenses", "521": "A bill authorizing the repayment of certain required contributions by local interests toward the construction cost of improvements of rivers and harbors and other waterways. in the interest of navigation. flood control, hurricane protection, beach erosion", "522": "To provide for the establishment of the Guadalupe Mountains National Park in the State of Texas, and for other purposes", "523": "Relating to the basis for income tax purposes of property held by surviving joint tenants and surviving tenants by the entirety", "524": "A bill to establish the Potomac River Historical Area in the States of Maryland, Virginia, and West Virginia.", "525": "A bill to provide that operators of commercial motor vehicles who are licensed under State law need not meet requirements of Federal law which establish standards for eyesight as a qualification for operation of such a vehicle.", "526": "To amend the Railroad Retirement Act of 1974 to prevent the canceling of annuities to certain divorced spouses of workers whose widows elect to receive lump sum payments.", "527": "A bill to amend section 280A of the Internal Revenue Code of 1954 with respect to rentals of dwelling units to family members, and for other purposes.", "528": "To amend section 701(e) of the Federal Aviation Act of 1958 so as to limit the use of Civil Aeronautics Board reports and testimony of Board personnel regarding aircraft accidents", "529": "To prohibit an employer from inquiring whether an applicant for employment has been convicted of a criminal offense, except in certain circumstances.", "530": "A bill to authorize and direct the establishment of a coordinated national program relating to climate of the atmosphere and ocean, to require an annual report of the program to Congress.", "531": "To promote the construction in the United States of modern, efficient documented vessels suitable for commercial and national defense purposes, to strengthen the defense industrial base, and for other purposes.", "532": "A bill to establish a College Savings Bond Program and to amend the Internal Revenue Code of 1986 to provide that gross income of an individual shall not include income from certain savings bonds the proceeds of which are used to pay certain postsecondary educational expenses, and for other purposes.", "533": "A bill to provide that Fort Montgomery, N.Y., may tap the West Point water supply line, and for other purposes.", "534": "A bill to establish the Roosevelt Campobello International Park, and for other purposes.", "535": "To award Dr. Jonas E. Salk a gratuity of $10,000 per annum in recognition of his outstanding achievement to humanity", "536": "To protect consumers from price-gouging of gasoline and other fuels, and for other purposes.", "537": "To provide for the modification of the Tongue River Dam for the Northern Cheyenne Indian Tribe, to protect the contract water rights of such Tribe, to settle their water rights claims, and to correct safety problems in such dam.", "538": "To amend the Fair Labor Standards Act of 1938 in respect to rates of wages in Puerto Rico", "539": "To amend the act- of March 3, 1899, relating to penalties for wrongful deposit of certain refuse, injury to harbor improvements, and obstruction of navigable waters. ", "540": "A bill to amend section 404 of the Federal Aviation Act of 1958 to prohibit discrimination against handicapped persons in air transportation.", "541": "To amend the Agricultural Act of 1949 with respect to price support for cotton.", "542": "A bill to amend section 4491 of the Internal Revenue Code of 1954 to provide that the weight portion of the excise tax on the use of civil aircraft shall apply to piston-engined aircraft only if they have a maximum certificated takeoff weight of more than", "543": "A bill to amend the Federal Boat Safety Act of 1971 in order to increase the Federal Government's share of the costs of State boat safety programs during fiscal year 1975 and thereafter, and to increase the authorization for appropriations for such programs.", "544": "A bill to improve the administration of the national parks system by the Secretary of the Interior, and to clarify the authorities applicable to the system, and for other purposes", "545": "A bill to amend Public Law 99-647, establishing the Blackstone River Valley Heritage Corridor Commission, to authorize the Commission to take immediate action in furtherance of its purposes and to increase the authorization of appropriations for the Commission.", "546": "To authorize appropriations to promote innovation and technology transfer in wastewater discharge reduction and water conservation, and for other purposes.", "547": "To authorize the Secretary of the Interior to create a Bureau of Reclamation partnership with the North Bay Water Reuse Authority and other regional partners to achieve objectives relating to water supply, water quality, and environmental restoration.", "548": "A bill to stabilize domestic oil prices by creating an independent corporation to buy and sell crude oil and petroleum products.", "549": "To amend section 6334 of the Internal Revenue Code of 1954 to exempt from levy property necessary to satisfy the taxpayers liabilities to his employees for wages and fringe benefits", "550": "To provide grants to eligible urban local educational agencies to enable the agencies to recruit and retain qualified teachers.", "551": "To amend the Federal Water Pollution Control Act, as amended, to establish the Federal Water Pollution Control Administration, to increase grants for construction of municipal sewage treatment works, to provide financial assistance to municipalities and o", "552": "To amend the Public Health Service Act to strengthen education, prevention, and treatment programs relating to stroke, and for other purposes.", "553": "A bill to require the Trustees of the medicare trust funds to report recommendations on resolving projected financial imbalance in medicare trust funds.", "554": "A bill to establish a Boundary for the Black Canyon of the Gunnison National Monument, and for other purposes.", "555": "To amend the Clean Air Act regarding transportation fuels and establishment of a low carbon fuel standard.", "556": "A bill to allow for additional flights beyond the perimeter restriction application to Ronald Reagan Washington National Airport.", "557": "A bill to direct the Inspector General of the Department of Justice to submit semi-annual reports regarding settlements relating to false claims and fraud against the Federal Government.", "558": "To amend the Act of May 15, 1965, authorizing the Secretary of the Interior to designate the Nez Perce National Historical Park in the State of Idaho, and for other purposes.", "559": "A bill to reduce recidivism by providing community-centered programs of supervision and services for persons charged with offenses against the United States.", "560": "A bill to provide increased opportunities for students in higher education for offcampus employment by establishing programs of work-study cooperative education.", "561": "To amend the FAA Modernization and Reform Act of 2012 with respect to maintenance providers, and for other purposes.", "562": "To authorize the construction of an inland waterway in Pennsylvania for barge and other navigation, and for other purposes", "563": "A bill to amend the Labor Management Reporting and Disclosure Act of 1959 to require that all officers of national labor organizations be elected by secret ballot of the members.", "564": "To enable the Secretary of Agriculture to develop the resources of the national forests, and for other purposes", "565": "To promote freedom, fairness, and economic opportunity for families by reducing the power and reach of the Federal establishment.", "566": "To stabilize the market supply and price of farm-produced feed grain and livestock to insure the continuous ample volume of meat products for consumers and to provide equitable opportunity for farm producers to achieve income parity, to provide means of m", "567": "A bill to assist in the reduction of unemployment through the acceleration of public works programs of the Federal Government and State and local public bodies.", "568": "To direct the Secretary of the Treasury to develop and present to Congress a legislative proposal to establish a consumption tax.", "569": "To amend the Public Health Service Act to ensure sufficient resources and increase efforts for research at the National Institutes of Health relating to Alzheimer's disease, to authorize an education and outreach program to promote public awareness and risk reduction with respect to Alzheimer's disease (with particular emphasis on education and outreach in Hispanic populations), and for other purposes.", "570": "To encourage the discovery of gold, the development of gold mines, and the production of domestic gold", "571": "A bill to establish standards for the settlement of disputed title claims to certain real properties alleged to be public lands of the United States, and for other purposes.", "572": "A bill to modify the criteria used by the Corps of Engineers to dredge small ports.", "573": "To exempt States and political subdivisions thereof from the tax on conveyances, and for other purposes", "574": "To extend the jurisdiction of the Mississippi River Commission to include an additional geographic area.", "575": "To provide for the refund or credit of the internal-revenue tax paid on spirits lost or rendered unmarketable by reason of the floods of 1951 where such spirits were in the possession of (1) the original taxpayer or rectified for bottling or use in rectif", "576": "To prohibit the use of Federal funds to carry out the highway project known as the Trans-Texas Corridor.", "577": "A bill to require the Center for Medicare and Medicaid Innovation to test the effect of including telehealth services in Medicare health care delivery reform models.", "578": "To amend the act of August 11, 1939, with respect to the allocation of funds available under that act, and for other purposes", "579": "A bill to improve the quality of health plans and health care that is provided through the Federal Government and to protect health care consumers.", "580": "To provide for a land exchange involving Federal lands in the Lincoln National Forest in the State of New Mexico, and for other purposes.", "581": "To amend the U.S. Housing Act of 1937 to increase by $1,000 per room the statutory limit on the cost of a lowrent housing project", "582": "To combat the rise of prenatal opioid abuse and neonatal abstinence syndrome.", "583": "To amend the Wild Free-Roaming Horses and Burros Act to provide for State and tribal management and protection of wild free-roaming horses and burros, and for other purposes.", "584": "To establish the power of the Individual States and the local subdivisions thereof to prevent construction of nuclear devices within their territorial limits", "585": "A bill to require pension plans to provide optional annuities for surviving spouses and certain vesting rights to employees whose employment is involuntarily terminated without cause.", "586": "A bill to increase the efficiency of the Coast and Geodetic Survey, and for other purposes.", "587": "A bill to amend Title III of the Colorado River Basin Project Act (Public Law 90-537; 82 Stat. 885, as amended by Public Law 95-578; 92 Stat. 2471 and Public Law 96-375; 94 Stat. 1505).", "588": "A bill to provide incentives for States to invest in practices and technology that are designed to expedite voting at the polls and to simplify voter registration.", "589": "To improve the establishment of any lower ground-level ozone standards, and for other purposes.", "590": "A bill to clarify logbook requirements in title 46, United States Code.", "591": "A bill to provide for the establishment of . Federal Advisory Council on the Arts to assist in the growth and development of the fine arts in the United States.", "592": "A bill to amend chapter 3 of title 28, United States Code, to modify en banc procedures for the Ninth Circuit Court of Appeals, and for other purposes.", "593": "To authorize the establishment of the National African-American Museum within the Smithsonian Institution.", "594": "Authorizing the Chief of Engineers to relocate boat basin at Winona, Minn", "595": "A bill to authorize the admittance of the vessel City of New Orleans to American registry and to permit the use of such vessel in the coastwise trade between the State of Alaska and the State of Washington.", "596": "A bill to provide for the establishment and operation of a mining and metallurgical research establishment in the State of Minnesota", "597": "To provide far the appointment of public defenders a the district courts of the United States", "598": "To authorize the appropriation of $5 million to carry out the purposes of the National Cultural Center Act and to designate the National Cultural Center, authorized to be constructed by such Act, as the John Fitzgerald Kennedy Center of the Performing Art", "599": "To amend the Foreign Assistance Act of 1961 to provide for assistance to refugees and other flood victims in the Republic of the Philippines", "600": "To amend the Safe Drinking Water Act to require testing of underground sources of drinking water in connection with hydraulic fracturing operations, and for other purposes.", "601": "A bill to provide for the creation, restoration, protection, enhancement, and conservation of coastal wetlands, and to conserve North American wetland ecosystems and waterfowl and the other migratory birds and fish and wildlife that depend upon such habitats, and for other purposes.", "602": "To provide that district courts of the United States shall not have jurisdiction to enjoin or modify the operation of State laws respecting legislative districts where comparable relief is available in State courts, and for other purposes", "603": "A bill to establish a program in the Department of Energy to encourage consumers to trade-in older vehicles for more fuel-efficient vehicles and motorcycles, and for other purposes.", "604": "A bill to amend the Worker Adjustment and Retraining Notification Act to minimize the adverse effects of employment dislocation, and for other purposes.", "605": "To establish a temporary commission to study air safety conditions in the United States.", "606": "A bill to amend the Comprehensive Employment and Training Act of 1973 to provide that certain private employers participating in manpower programs may be reimbursed in amounts not exceeding 50 percent of the salaries paid to low-income persons by such employers.", "607": "A bill to designate certain lands in the Great Smoky Mountains National Park as wilderness; to provide for settlement of all claims of Swain County, North Carolina, against the United States under the agreement dated July 30, 1943, and for other purposes.", "608": "To make clear that fishermens organizations, regardless of their technical legal status, have a voice in the ex-vessel sale of fish or other aquatic products on which the livelihood of their members depends", "609": "To direct the Secretary of the Interior to study and formulate a comprehensive plan containing recommendations regarding the action that should be taken to preserve, develop, and make accessible for public use and benefit the Long Island Sound and related shoreline areas in the States of New York, Connecticut, and Rhode Island", "610": "To authorize. the payment of an allowance not to exceed $10 per day toemployees assigned to duty at the Shellfish Research Center, Dauphin Island, Ala., and for other purposes", "611": "To .amend the Internal Revenue Code of 1954 to allow a credit against income tax to employers for- the expenses of providing training programs for employees and prospective employees", "612": "To increase the supply and lower the cost of petroleum by temporarily suspending the acquisition of petroleum for the Strategic Petroleum Reserve.", "613": "To modernize the manufactured housing loan insurance program under title I of the National Housing Act.", "614": "A bill to establish a Solar Energy Development Bank to provide long-term low-interest loans for the purchase and installation of solar energy equipment in commercial and residential buildings in the United States.", "615": "To provide that the transportation of mollusk shells (including clam and oyster shells) from the point of extraction to the dockside shall be taken into account in computing percentage depletion", "616": "A bill to designate a portion of the Arctic National Wildlife Refuge as wilderness.", "617": "To direct the Secretary of the Interior to take actions to support non-Federal investments in water infrastructure improvements in the Sacramento Valley, and for other purposes.", "618": "A bill to authorize the acquisition of the Big Cypress National Fresh Water Reserve in the State of Florida.", "619": "A bill to promote the general welfare by establishing a National Energy Production Board to assure early development of energy resources on the public domain and on other Federal lands and on the Outer Continental Shelf in order to overcome the dependence", "620": "To enforce the constitutional right to vote, to confer jurisdiction upon the district courts of the United States to provide injunctive relief against discrimination in public accommodations, to authorize the Attorney General to institute suits to protect", "621": "A bill to amend the Federal Meat Inspection Act to require that imported meat and meat food products made in whole or in part of imported meat be labeled imported at all stages of distribution until delivery to the ultimate consumer.", "622": "To enable the people of Hawaii to form a constitution and State government and to be admitted into the Union on an equal footing with the original States", "623": "A bill to authorize appropriations for the energy conservation program for schools and hospitals and for the energy conservation program for buildings owned by units of local government and public care institutions, and for other purposes.", "624": "A bill to clarify the provision of section 3626(b) of title 39, United States Code, defining an institution of higher education.", "625": "A bill to amend the Clean Air Act to reduce emissions from electric powerplants, and for other purposes.", "626": "A bill to authorize a program for runoff and water flow retardation and soil erosion prevention for the Pecos River watershed in New Mexico and Texas", "627": "To prohibit the use of gold for the settlement of international balances with the Government of France which such Government is in arrears in the payment of its obligations to the United States", "628": "To accelerate the construction and rehabilitation of low- and moderate income housing in the United States in order to fulfill the national goal declared in the Housing Act of 1949 of a decent179912142-12177 home and a suitable living environment for every American family", "629": "To ensure that amounts paid for home improvements to mitigate radon gas qualify for the tax deduction for medical care expenses.", "630": "A bill relating to the status of the Little Shell Band of Chippewa Indians of Montana", "631": "A bill to provide for more effective regulation of vehicles not originally manufactured to meet Federal safety standards.", "632": "A bill to amend the National Apprenticeship Act to require minimum funding for certain outreach recruitment and training programs, to restore a national information collection system, to limit the authority to conduct reductions in force within the Bureau of Apprenticeship and Training of the Department of Labor, and for other purposes.", "633": "To amend the act entitled An act for the control of floods oil the Mississippi river and its tributaries, and for other purposes, approved May 15, 1928Nil.", "634": "A bill to build capacity at community colleges in order to meet increased demand for community college education while maintaining the affordable tuition rates and the open-door policy that are the hallmarks of the community college system.", "635": "To revise section 3084, title 18, of the United States Code, concerning the enforcement of certain provisions of such code, and for other purposes", "636": "A bill to promote and assist in the extension and improvement of vocational education, provide for a more effective use of available Federal funds, and for other purposes", "637": "To reform the Bureau of Alcohol, Tobacco, Firearms, and Explosives, modernize firearms laws and regulations, protect the community from criminals, and for other purposes.", "638": "To amend the Flood Control Act of 1950 as it applies to the Libby Dam on the Kootenai River in the State of Montana", "639": "To amend title 18 of the United States Code. to prohibit travel or use of any facility, in interstate or foreign commerce with intent to incite . a riot or other violent civil disturbance and for other purposes", "640": "A bill to declare the ownership of the timber on the allotments on the Northern Cheyenne Indian Reservation, and to authorize the sale thereof", "641": "To amend the Endangered Species Act of 1973 to require the preparation of economic impact analysis with respect to certain actions to protect endangered species and threatened species, and for other purposes.", "642": "A bill to amend the Community Services Act of 1974 to make certain technical and conforming amendments.", "643": "A bill to encourage the use of alcohol in motor vehicle fuels by requiring certain retailers to make alcohol-blended fuels available for sale, by allowing the rapid amortization of facilities producing alcohol for use in motor vehicle fuels, and by exempting alcohol-blended fuels from certain requirements of the Clean Air Act.", "644": "A bill to prohibit the expenditure of Federal funds by the Secretary of Health, Education, and Welfare to promote the fluoridation of public water supplies.", "645": "A bill to amend section 901(a) (relating to prohibition of sex discrimination) of the Education Amendments of 1972 to exempt from the prohibition of such section musical programs or activities, and programs or activities designed for parents and students.", "646": "To authorize the Secretary of the Interior to provide preservation and interpretation assistance for resources associated with the New Bedford Whaling National Historical Park in the Commonwealth of Massachusetts, and for other purposes.", "647": "To authorize an investigation and study of coastal hazards from offshore drilling on the Outer Continental Shelf in the Atlantic Ocean", "648": "A bill to provide for the establishment of the Special Envoy to Promote Religious Freedom of Religious Minorities in the Near East and South Central Asia.", "649": "A bill to repeal certain provisions of law applicable to federally assisted housing", "650": "A bill to authorize the construction of a project for flood control in the vicinity of Albuquerque, New Mexico, and for other purposes.", "651": "To improve education by increasing the freedom of the Nation's teachers to change employment across State lines without substantial loss of retirement benefits through establishment of a Federal-State program", "652": "A bill to designate certain lands in the Everglades National Park, Fla., as wilderness.", "653": "To provide for the timely consideration of all licenses, permits, and approvals required under Federal law with respect to the siting, construction, expansion, or operation of any natural gas pipeline projects.", "654": "To reduce the annual rate of pay of Members of Congress if a Government shutdown occurs during a year, and for other purposes.", "655": "To implement demonstration projects at federally qualified community health centers to promote universal access to family centered, evidence-based behavioral health interventions that prevent child maltreatment and promote family well-being by addressing parenting practices and skills for families from diverse socioeconomic, cultural, racial, ethnic, and other backgrounds, and for other purposes.", "656": "To authorize the payment of certain claims for structural or other major defects in homes covered by Federal Housing Administration insured mortgages, and to require indemnification bonds in the case of certain new construction under Federal Housing Admin", "657": "A bill to authorize the Society of the Third Infantry Division to erect a Memorial in the District of Columbia or its environs.", "658": "A bill to amend the Washington Area Transit Authority Compact to require the inclusion of roll commuter service in the mass transit plan, and for other purposes", "659": "To expand the authority of the Secretary of Health and Human Services to impose debarments in order to ensure the integrity of drug, biological product, and device regulation, and for other purposes.", "660": "To authorize the maritime Administrator to undertake investigations and studies culminating in contract plans and specifications with respect to the establishment and development of integrated total marine transport systems utilizing nuclear-powered merchant vessels, and for other purposes", "661": "A bill to amend section 170 of the Internal Revenue Code of 1954 to revise and make permanent the provisions for allowing a deduction for contributions for conservation purposes.", "662": "To amend the Truth in Lending Act to protect the right to financial privacy by establishing standards with respect to the type and amount of information which creditors may require borrowers to provide in connection with consumer loan applications, and for other purposes.", "663": "A bill to require a study to be conducted of the effect of increasing the diversion of water from Lake Michigan Into the Illinois Waterway for navigation, and for other purposes.", "664": "To provide safeguards with respect to the Federal Bureau of Investigation criminal background checks prepared for employment purposes, and for other purposes.", "665": "To provide for orderly trade in fresh fruits and vegetables, and for other purposes", "666": "To prevent Federal dam and reservoir projects from interfering with sustained-yield timber operations", "667": "To expand and improve the use of DNA analysis in criminal investigations, and for other purposes.", "668": "A bill to continue the current waiver of liability presumption for home health agencies and skilled nursing facilities under the medicare program in order to protect beneficiary access to home health and extended care services.", "669": "A bill to amend section 8c(2) (A) of the Agricultural Adjustment Act to provide for marketing orders for apples produced in Colorado, Utah, New Mexico, Illinois, and Ohio", "670": "A bill to establish a Presidential commission on nuclear waste, and for other purposes.", "671": "A bill to extend the period for which unemployment benefits are payable under title I of the Emergency Unemployment Compensation Act of 1991, and for other purposes.", "672": "To provide unemployment insurance and leave from employment to battered women.", "673": "A bill authorizing natural gas and hazardous liquid pipeline safety programs for fiscal year 1987, and for other purposes.", "674": "To make the Controlled Substances Act inapplicable with respect to marihuana in States that have legalized marijuana and have in effect a statewide regulatory regime to protect certain Federal interests, and for other purposes.", "675": "A bill to amend section 923 of title 18, United States Code, to require the keeping of records with respect to dispositions of ammunition, and to require a study of the use and possible regulation of sales of ammunition.", "676": "To amend the Shipping Act of 1984 to restore the application of the antitrust laws to certain agreements and conduct to which such Act applies.", "677": "To amend the Rural Electrification Act of 1936 to return the Rural Electrification Administration to its original mission of providing credit to rural electric cooperatives which are unable to obtain needed financing in the private sector.", "678": "A bill to amend chapters 2 and 21 of the Internal Revenue Code of 1954, and title II of the Social Security Act, to reduce social security tax rates and provide a new method for their determination in the future, to remove the dollar limitation presently ", "679": "To extend for an additional 4year period the provisions of the National Wool Act of 1954", "680": "To amend section 1823 of title 28, United States Code, to authorize the payment of travel expenses for certain witness service", "681": "To reduce the excise tax on club dues and fees from 20 percent to 10 percent", "682": "A bill to further protect the outstanding scenic, natural, and scientific values of the Grand Canyon by enlarging the Grand Canyon National Park in the State of Arizona, and for other purposes.", "683": "A bill to amend the Farm Disaster Assistance Act of 1987 to extend the reporting date for the ethanol cost effectiveness study.", "684": "To amend Public Law 87-276, so as to extend its provisions for 3 additional years, to expand the program under that act to provide for the training of teachers of all exceptional children, and for other purposes", "685": "A bill to provide a temporary I1/2-cent increase in the tax on gasoline and the tax on diesel fuel and special motor fuels used in highway vehicles.", "686": "To amend the Internal Revenue Code of 1954 to promote additional protection for the rights of participants in private pension plans, to establish minimum standards for vesting, to establish an insurance corporation within the Department of the Treasury, and for other purposes", "687": "To provide for the partial cancellation or repayment of Perkins and Stafford loans for student borrowers who perform a year or more of full-time, low-paid service as Peace Corps and VISTA volunteers, and comparable full-time, low-paid service with a tax-exempt community service organization in the private sector.", "688": "A bill to establish a bipartisan national commission to study ways of improving Federal and State efforts to enforce child support obligations and recoup delinquent child support payments.", "689": "To provide for congressional approval of a nuclear aircraft carrier waste disposal plan before the construction of CVN-76, and for other purposes.", "690": "To limit injunctive relief, and prohibit the award of costs (including attorney's fees) against a judicial officer for action taken in a judicial capacity.", "691": "To amend title 18, United States Code, to establish penalties for aggravated identity theft, and for other purposes.", "692": "To establish a grant program to promote emotional and social development and school readiness.", "693": "A bill to prohibit the Tennessee Valley Authority from acquiring or utilizing, in carrying out its operations and functions, any coal mined by strip mining methods", "694": "A bill to amend section 422(c) of the Higher Education Act of 1965, relating to the eligibility of new State guarantee agencies for advances to reserve funds under such section.", "695": "To amend title 38, United States Code, to authorize veterans who are entitled to educational assistance under the Post-9/11 Educational Assistance Program of the Department of Veterans Affairs to use such entitlement to participate in a career transition internship program for veterans.", "696": "A bill to delay the effective date of the provisions of Revenue Ruling 83-3 which relate to the deductibility of certain expenses paid by ministers.", "697": "To authorize an exchange of lands and interests therein between the city of San Diego, Calif., and the United States, and for other purposes", "698": "To amend title 28, United States Code, to modify the residency requirement for United States attorneys and assistant United States attorneys.", "699": "To amend the Federal Aviation Act of 1958 for the purpose of enhancing competition among air carriers, and for other purposes.", "700": "Authorizing the modification of the Trinidad Dam on Purgatoire River, Colo., in the interest of flood control and allied purposes", "701": "To amend the Internal Security Act of 1950 to authorize the Federal Government to institute measures for the protection of defense production and of classified information released to industry against acts of subversion, and for other purposes", "702": "A bill to provide a grace period for the prohibition on Consolidated Farm Service Agency lending to delinquent borrowers, and for other purposes.", "703": "To establish on public lands of the United States a national wilderness preservation system for the permanent good of the whole people, to provide for the protection and administration of areas within this system by existing Federal agencies and for the g", "704": "A bill to allow States to apply more stringent marking, labeling, packaging, or ingredient requirements than those set under the Federal Meat Inspection Act", "705": "To extend the life of the Lewis and Clark Trail Commission, and for other purposes", "706": "To reauthorize the national dam safety program, and for other purposes.", "707": "To require the Secretary of Labor, in consultation with the Secretary of Health and Human Services, to draft disclosures describing the rights and liabilities of customers of domestic care services and require that such services provide such disclosures to customers in any contract for such services.", "708": "A bill to provide for the use of hand-propelled vessels in Yellowstone National Park, Grand Teton National Park, and the National Elk Refuge, and for other purposes.", "709": "To amend section 306 of the Public Health Service Act so as to make school health educators eligible for traineeships under that section, and for other purposes", "710": "A bill to encourage the efficient use of existing resources and assets related to Indian agricultural research, development and exports within the United States Department of Agriculture, and for other purposes.", "711": "A bill to amend the Agriculture Trade Act of 1978 to make modifications in the Market Promotion Program.", "712": "To amend the National Defense Authorization Act for Fiscal Year 2012 to provide for the trial of covered persons detained in the United States pursuant to the Authorization for Use of Military Force and to repeal the requirement for military custody.", "713": "To authorize the erection of a national monument symbolizing the ideal of democracy in the fulfillment of the act of August 31, 1954 (68 Stat. 1029)an act to create a National Monument Commission, and for other purposes.", "714": "Authorizing the State of California to collect tells for the use of certain highway crossings across the Bay of San Francisco", "715": "An original bill to reauthorize housing and community development programs, and for other purposes.", "716": "A bill to amend the Small Business Act to include clothing and textile supplies in the industry categories to which the set-aside programs established under such Act apply.", "717": "A bill to provide for the recognition of certain Native communities and the settlement of certain claims under the Alaska Native Claims Settlement Act, and for other purposes.", "718": "To extend the veterans home loan program to February 1, 1965 to provide for direct loans to veterans in areas where housing credit is otherwise not generally available and for other purposes", "719": "To amend the Federal Crop Insurance Act to provide producers with the opportunity to purchase crop insurance coverage based on both an individual yield and loss basis and an area yield and loss basis in order to allow producers to cover all or a portion of their deductible under the individual yield and loss policy, to improve the accuracy of actual production history determinations, and for other purposes.", "720": "A bill to clarify the application of Title IX of the Education Amendments of 1972.", "721": "A bill to establish guidelines for timely compensation for temporary injury incurred by seaman on fishing industry vessels and to require additional safety regulations for fishing industry vessels.", "722": "A bill to increase mortgage limits under homeownership assistance programs administered by the Secretary of Housing and Urban Development.", "723": "To increase the rates of certain educational and readjustment allowances payable to veterans in order to compensate for the higher cost of living in Alaska", "724": "A bill to restore the applicability of the general statute of limitations for the prosecution of violations of Federal criminal law to the prosecution of violations of the Federal Election Campaign Act of 1971.", "725": "A bill to provide for a minimum medicare payment level of 90 percent for rural referral centers allowable capital-related costs.", "726": "To provide competitive grants for training court reporters and closed captioners to meet requirements for realtime writers under the Telecommunications Act of 1996, and for other purposes.", "727": "To amend the Public Health Service Act to allow qualifying children's hospitals to participate in the 340B drug discount program.", "728": "A bill to expand and extend .the loan program for bona fide fur farmers, and for other purposes.", "729": "A bill to establish a commission to develop legislation designed to reform tax policy and entitlement benefit programs and to ensure a sound fiscal future for the United States, and for other purposes.", "730": "To provide that manufacturers located in areas of substantial labor surplus in the United States shall be entitled to preference in obtaining contracts to furnish articles, materials, or supplies for use by the Federal Government", "731": "To establish a National Institute of Population Growth and to transfer to the Institute the functions of the Secretary of Health, Education, and Welfare, and of the Director of the Office of Economic Opportunity relating to population research and family planning services", "732": "A bill to rescind unobligated stimulus funds and require that such funds be used for Federal budget deficit reduction.", "733": "A bill to clarify that a State has the sole authority to regulate hydraulic fracturing on Federal land within the boundaries of the State.", "734": "A bill to provide for a comprehensive, coordinated 5-year research program to determine the causes of and cure for cancer, to develop cancer preventative vaccines or other preventatives, and for other purposes.", "735": "To establish an Adult Job Corps demonstration program for the United States-Mexico border area.", "736": "A bill to increase the investment credit allowable with respect to facilities to control water and air pollution.", "737": "To provide for the sharing with qualified local governmental institutions of a portion of the tax revenues received by the United States", "738": "To amend the Public Health Service Act, the Social Security Act, and the Internal Revenue Code of 1986 with respect to preventive health programs.", "739": "A bill to maximize employment opportunities for all Americans in rural and urban poverty areas, and to alleviate structural unemployment among young people through bonus incentives to private and independent sector sponsors, and to achieve more efficient,", "740": "To recognize the Navy UDT-SEAL Museum in Fort Pierce, Florida, as the official national museum of Navy SEALS and their predecessors.", "741": "A bill to regulate interstate commerce to protect health and the environment from hazardous chemical substances.", "742": "To provide for the licensing of operators of certain vessels on the navigable waters of the United States", "743": "To amend section 601 of the Federal Aviation Act of 1958 to require the Administrator of the Federal Aviation Administration to prescribe rules and regulations providing for the mandatory installation of transponder equipment aboard all aircraft", "744": "To amend section 402 (d) of the Federal Food Drug, and Cosmetic Act", "745": "To designate certain lands in Montana as widerness, to release other forest lands for multiple use management, and for other purposes.", "746": "A bill to create a National Museum of Women's History Advisory Committee.", "747": "A bill to assure that sales of agricultural commodities by the United States are made at prices which are not less than the cost of production.", "748": "To provide for the payment of compensation, including severance damages, for rights-of-way acquired by the United States in connection with reclamation projects the construction of which commenced after January 1, 1961", "749": "To authorize loans for study at nonprofit institutions of higher education", "750": "To amend title 18, United States Code, to protect federally funded public safety officers.", "751": "A bill to require the Secretary of Agriculture to report to the Congress each year certain information relating to the import and export of agricultural commodities", "752": "To extend the Juvenile Delinquency and Youth Offenses Control- Act of 1961", "753": "A bill to establish the negotiating objectives of the United States with respect to the WTO Agreement on Agriculture, to establish criteria for the accession of state trading regimes to the WTO, and for other purposes.", "754": "To reduce the Nation's dependence on petroleum by enhancing the use of coal.", "755": "A bill to amend the Agricultural Adjustment Act to require the Secretary of Agriculture to make decisions relating to proposed amendments to milk marketing orders not later than 90 days after the date on which the Secretary holds a hearing.", "756": "To give the President of theUnited States standby authority to impose wage and price controls", "757": "A bill to authorize an agreement between the United States and Mexico for the joint operation and maintenance by the International Boundary and Water Commission, United States and Mexico, of the Nogales sanitation project, and for other purposes", "758": "To protect the public safety by imposing minimum, mandatory prison sentences for drug crimes involving minors.", "759": "To provide Federal recognition of the Mowa Band of Choctaw Indians of Alabama.", "760": "To confer jurisdiction on the State of Montana with respect to offenses committed within Indian country within such State", "761": "A bill to amend Public Law 394, 84th Congress, to authorize the construction of supplemental irrigation facilities for the Yuma Mesa Irrigation District, Arizona", "762": "To provide supplementary benefits for recipients of public assistance and benefits for others who are in need through the issuance of stamps or certificates to be used in the acquisition of surplus agricultural commodities; to provide for improved nutriti", "763": "A bill to amend the Agriculture and Consumer Protection Act of 1973 and the Food Stamp Act of 1964.", "764": "A bill to establish the Office of Sustainable Housing and Communities, to establish the Interagency Council on Sustainable Communities, to establish a comprehensive planning grant program, to establish a sustainability challenge grant program, and for other purposes.", "765": "To amend the Solid Waste Disposal Act to authorize each State to prohibit the importation of solid waste into the State for incineration or disposal.", "766": "To amend section 1871 of title 28 of the United States Code relating to the travel, allowance of grand and petit jurors", "767": "To amend section 371, title 28, United States Code, to provide an alternative plan for the retirement of justices and judges, and so forth", "768": "To direct the Attorney General to establish six centers to provide facilities for conducting research into the motivations and behavioral patterns of persons who have been convicted of crimes and violence", "769": "A bill to enhance rail competition and to ensure reasonable rail rates in any case in which there is an absence of effective competition.", "770": "To repeal the Patient Protection and Affordable Care Act and to take meaningful steps to lower health care costs and increase access to health insurance coverage without raising taxes, cutting Medicare benefits for seniors, adding to the national deficit, intervening in the doctor-patient relationship, or instituting a government takeover of health care.", "771": "To amend and reauthorize certain provisions relating to Long Island Sound restoration and stewardship.", "772": "A bill to provide for the control of illegally taken fish and wildlife, and for other purposes.", "773": "To establish a demonstration program to provide financial incentives to encourage the adoption and use of interactive personal health records and to encourage health information exchange networks to link clinical data to such personal health records.", "774": "To amend the Civil Aeronaut, Act of 1938 in order to authorize 1r, or reduced rate transportation for r tired employees of air carriers, and other purposes", "775": "A bill to protect the freedom of the press under the First Amendment to the Constitution.", "776": "A bill to amend the Archaeological Resources Protection Act of 1979 to strengthen the enforcement provisions of that Act, and for other purposes.", "777": "A bill to amend the act of August 31, 1922, to prevent the introduction and spread of diseases and parasites harmful to honeybees.", "778": "To provide collective bargaining rights for public safety officers employed by States or their political subdivisions.", "779": "To temporarily waive the risk management purchase requirement for agricultural producers adversely impacted by Hurricane Irene or Tropical Storm Lee so that such producers are eligible to receive assistance under the Supplemental Revenue Assistance Program (SURE), Emergency Assistance for Livestock, Honey Bees, and Farm-Raised Fish Program (ELAP), and Tree Assistance Program (TAP).", "780": "To provide for increased wheat acreage allotments in the Tulelake area of California", "781": "To amend title 49, United States Code, to ensure competition in the rail industry, enable rail customers to obtain reliable rail service, and provide those customers with a reasonable process for challenging rate and service disputes.", "782": "To authorize a State to temporarily extend a waiver granted with respect to the State program of aid to families with dependent children.", "783": "To amend title XVIII- of the Social Security Act to include drugs requiring a doctors prescription among the medical expenses with respect to which payment may be made under the voluntary program of supplementary, medical insurance benefits for the aged", "784": "To provide for a study of options for protecting the open space characteristics of certain lands in and adjacent to the Arapaho and Roosevelt National Forests in Colorado, and for other purposes.", "785": "A bill to encourage film corporations to donate certain historical film to educational organizations by increasing the limit on the charitable contribution deduction of such corporations.", "786": "To designate the Stornetta Public Lands as an Outstanding Natural Area to be administered as a part of the National Landscape Conservation System, and for other purposes.", "787": "A bill vesting in the American Battle Monuments Commission the care and maintenance of the original Iwo Jima Memorial on Mount Surabachi, Iwo Jima volcanic islands, Pacific Ocean area.", "788": "An original bill to improve learning and teaching by providing a national framework for education reform; to promote the research, consensus building, and systemic changes needed to ensure equitable educational opportunities and high levels of educational achievement for all American students; to provide a framework for reauthorization of all Federal education programs; to promote the development and adoption of a voluntary national system of skill standards and certifications; and for other purposes.", "789": "To provide for a review of all Federal programs that assess or mitigate the risks to women's health from environmental exposures, and for a study of the research needs of the Federal Government relating to such risks.", "790": "Relating. to the applicability .of the 3-percent interest rate for loans to provide housing for the elderly or handicapped under section 202 of the Housing Act of-19-69", "791": "A bill to provide that ionization smoke detectors containing any radioactive isotope shall be considered banned hazardous substance subject to the prohibitions of the Federal Hazardous Substances Act.", "792": "To encourage states to increase the proportion of the expenditures in the State for public education which are derived from State rather than local revenue sources", "793": "A bill to reduce the costs of prescription drugs for Medicare beneficiaries and to guarantee access to comprehensive prescription drug coverage under part D of the Medicare program, and for other purposes.", "794": "To provide for the division of the State of North Dakota into two judicial districts", "795": "To prescribe alternative payment mechanisms for the payment of annual enrollment fees for the TRICARE program of the military health care system.", "796": "To revise the quota control system on the importation of certain meat and meat products", "797": "A bill to amend title 44, United States Code, to redesignate the National Historical Publications Commission as the National Historical Publications and Records Commission, to increase the membership of such Commission, and to increase the authorization of appropriations for such Commission.", "798": "To promote higher standards of quality control in the manufacture of motor vehicles to provide for the establishment by the Secretary of Commerce of standards for new motor vehicle warranties and for motor vehicle dealer franchise agreements to prescribe effective remedies for breach of such warranties and agreements and for other purposes", "799": "A bill to prevent the use of heroin for any drug maintenance program.", "800": "To allow employees of Federally-qualified health centers to obtain health coverage under chapter 89 of title 5, United States Code.", "801": "A bill to guarantee the free flow of information to the public through a free and active press while protecting the right of the public to effective law enforcement and the fair administration of justice.", "802": "To create an Agricultural Research and Industrial Board; to define its powers and duties; and for other purposes.", "803": "A bill to increase the authorization of appropriations for low-income energy assistance, weatherization, and state energy conservation grant programs, to expand the use of energy savings performance contracts, and for other purposes.", "804": "A bill to amend section 5701 (a) (2) of the Internal Revenue Code of 1954 so as to change the bracket tax on cigars to an ad valorem tax.", "805": "To establish a New England Regional Power and Environmental Protection Agency for the purpose of assuring adequate and reliable low-cost electric power to the people of New England, protecting and enhancing the environment, and providing a vehicle for research and development programs", "806": "A bill to limit the liability of a broker who sells any agricultural commodity on behalf of his principal when that commodity serves as security for any loan made, insured, or guaranteed under a program administered by the Farmers Home Administration.", "807": "To require the holder of a subordinate lien on the property that secures a federally related mortgage loan, upon a request by the homeowner for a short sale, to make a timely decision whether to allow the sale.", "808": "A bill to provide compensation to U.S. commercial fishing vessel owners for damages incurred by them as a result of an action of a vessel operated by a foreign government or a citizen of a foreign government.", "809": "A bill to direct that a clinical investigation of the safety and efficacy of dimethyl sulfoxide as a drug to be used by persons with arthritis be conducted through the National Institute of Arthritis, Metabolism, and Digestive Diseases.", "810": "To grant the consent of Congress to an amendment to a compact ratified by the States of Louisiana and Texas and relating to the waters of the Sabine River.", "811": "A bill to amend the Federal Airport Act in order to extend the time for making grants under the provisions of such act.", "812": "Making certain changes in laws applicable to the Department of the Treasury so as to permit the effectuation by the President and the Secretary of the Treasury of the recommendations regarding the Department of the Treasury made by the Commission on Organ", "813": "A bill to insure the equal protection of the laws and to protect the liberty citizens as guaranteed by the fourteenth amendment, by eliminating Federal court jurisdiction over forced school attendance.", "814": "A bill to authorize the Secretary of Agriculture to pay the expenses of an Advisory Boll and Water Conservation", "815": "To amend the congressional budget process to provide for a pay-as-you-go budget for the United States, to provide for a biennial budget for the United States, and to provide line item veto authority for the President, and for other purposes.", "816": "A bill to establish the Northern Great Plains Rural Development Commission, and for other purposes.", "817": "To rescind certain budget authority proposed to be rescinded (R92-54) in a special message transmitted to the Congress by the President on March 20, 1992, in accordance with section 1012 of the Impoundment Control Act of 1974.", "818": "To provide compensation to individuals who are injured by an escaped prescribed fire and to amend the tort procedure provisions of title 28, United States Code, relating to claims for such fires, and for other purposes.", "819": "To amend the Urban Mass Transportation Act of 1984 to authorize financial assistance for planning, engineering, designing, and other technical studies", "820": "To provide for the modification of the existing mortgage (held by the Federal National Mortgage Association) covering Overlook Mutual Homes in Dayton, Ohio", "821": "To amend the Agricultural Act ox 1956 to provide donations of surplus food commodities to State penal institutions", "822": "To amend section 2004 of the Revised Statutes of the United States to provide that all citizens of the United States may vote at all elections without being required to take literacy tests", "823": "A bill to amend the Federal Columbia River Transmission System Act to provide for the reconstitution of outstanding repayment obligations of the Administrator of the Bonneville Power Administration for the appropriated capital investments in the Federal Columbia River Power System.", "824": "To amend the Agricultural Research, Extension, and Education Reform Act of 1998 to establish an educational program to improve the risk management skills of agricultural producers.", "825": "To provide authority for the President to stabilize prices, wages, interest rates, and corporate dividends.", "826": "To increase the number of tenant-based rental assistance vouchers made available for low-income families displaced by Hurricane Sandy.", "827": "To extend for 2 years the period in which payments in lieu of taxes may be made with respect to certain real property transferred by the Reconstruction Finance Corporation and its subsidiaries to other Government departments", "828": "A bill to amend titles II and XVII of the Social Security Act to include qualified drugs, requiring a physician's prescription or certification and approved by a formulary committee, among the items and services covered under the hospital insurance program.", "829": "A bill to amend sections 201(s) and 409 of the Federal Food, Drug, and Cosmetic Act, as amended, relating to food additives", "830": "A bill to amend the Community Health Centers Act to provide for the extension thereof, and for other purposes.", "831": "Authorizing the State of Rhode Island or its instrumentality to maintain, repair, and operate the bridge across. Mount Hope Bay subject to the terms and conditions of the act approved March 23, 1906", "832": "A bill to improve access to emergency medical services through medical liability reform and additional Medicare payments.", "833": "To amend the Public Health Service Act to assist research and development projects for the effective utilization of advances in science and technology in the delivery of health care", "834": "To address the need for private financing of home ownership and economic development on and near reservation lands, and for other purposes.", "835": "To implement the provisions of the International Convention for the Prevention of the Pollution of the Sea by 011, 1954", "836": "To amend sections 33 and 34 of the Federal Fire Prevention and Control Act of 1974, and for other purposes.", "837": "A bill to confer jurisdiction on the State of Washington with respect to offenses committed on Indian reservations within such State", "838": "A bill to provide for the assumption of the control and operation by Indian tribes and communities of certain programs and services provided for them by the Federal Government, and for other purposes.", "839": "A bill to amend the Military Selective Service Act of 1967 to authorize modifications of the system of selecting persons for induction into the Armed Forces under this Act", "840": "To amend the Atomic Energy Act of 1954 to prohibit the disposal of non-byproduct material at certain mill tailings disposal sites, and for other purposes.", "841": "A bill to ensure that college textbooks and supplemental materials are available and affordable.", "842": "Relative to maximum rents on housing accommodations; to repeal certain provisions of Public Law 388, Seventy ninth Congress; Public Law 129, Eightieth Congress; and Public Law 31, Eighty first Congress, and for other purposes", "843": "A bill to warn certain consumers in connection with the purchase of a medicare supplemental policy.", "844": "To provide assistance in acquiring specially adapted housing for blind veterans who have disabilities of such a nature that they require specially adapted housing", "845": "To enable the States to provide an additional 13 weeks of unemployment compensation for individuals who exhaust their benefit rights under existing State law", "846": "A bill to provide for the expansion of Federal efforts concerning the prevention, education, treatment, and research activities related to Lyme and other tick-borne diseases, including the establishment of a Tick-Borne Diseases Advisory Committee.", "847": "To authorize the Secretary of Commerce to sell the MV Chestatee", "848": "To amend the Controlled Substances Act with regard to the provision of emergency medical services.", "849": "A bill to repeal the State preemption clause in the Comprehensive Environmental Response, Compensation, and Liability Act of 1980.", "850": "To provide for the partition and distribution of the assets of the Ute Indian Tribe of the Uintah and Ouray Reservation in Utah between the mixedblood members thereof and for the termination of Federal supervision over the property and persons of the mixe", "851": "To authorize the issuance of right-of-way permits for natural gas pipelines in Glacier National Park, and for other purposes.", "852": "An original bill to authorize appropriations for fiscal year 2012 for defense activities of the Department of Energy, and for other purposes.", "853": "A bill to provide tax and regulatory relief for farmers and to improve the competitiveness of American agricultural commodities and products in global markets.", "854": "To provide procedures for the selection of the Commandant of the Air Force Institute of Technology, and for other purposes.", "855": "To amend the act of January 30, 1913, to remove certain- restrictions on the American Hospital on Paris", "856": "A bill to elevate the position of Director of the Indian Health Service within the Department of Health and Human Services to Assistant Secretary for Indian Health, and for other purposes.", "857": "To designate the navigation lock on the Sacramento Deep Water Ship Channel project, California, as the William G. Stone Navigation Lock", "858": "A bill to eliminate the Federal quota and price support programs for tobacco, to provide assistance to quota holders, tobacco producers, and tobacco-dependent communities, and for other purposes.", "859": "To amend section 307(c) of the Federal Aviation Act of 1958 to require the Administrator of the Federal Aviation Agency to prescribe air traffic rules governing the use of landing areas by certain aircraft", "860": "To amend title 38, United States Code, to establish standards of access to care for veterans seeking health care from the Department of Veterans Affairs, and for other purposes.", "861": "A bill to amend the act of June 27, 1960, (74 Stat. 220), relating to the preservation of historical and archeological data.", "862": "A bill to enable States located on a river or acquifer affected by the siting of a repository for high-level radioactive waste or spent nuclear fuel to participate effectively in the site selection, review, and approval process for such repository, and for other purposes.", "863": "To provide Medicare payments to Department of Veterans Affairs medical facilities for items and services provided to Medicare-eligible veterans for non-service-connected conditions.", "864": "A bill to establish in the Department of Housing and Urban Development a direct low-interest loan program to assist homeowners and other owners of residential structures in purchasing and installing more effective insulation and heating equipment.", "865": "To protect the national-defense effort and the normal flow of interstate and foreign commerce from the interferences caused by the movement of business enterprises to premises leased from States and political subdivisions of States", "866": "A bill to authorize demonstration projects designed to help young adult criminal offenders through the services of members of VISTA and the Teacher Corns or other qualified teachers.", "867": "To amend section 1481 of the Internal Revenue Code of 1954 (relating to mitigation of the effect of rengotiation of Government contracts) and section 3806 of the Internal Revenue Code of 1939.", "868": "To clarify the authority of the Federal Financing Bank to purchase loans guaranteed under part B of title IV of the Higher Education Act of 1965, and for other purposes.", "869": "To establish a National Board on workforce skills and to develop a comprehensive school-to-work transition program for students in the United States.", "870": "A bill to amend section 408 of the Federal Food, Drug, and Cosmetic Act to authorize emergency action with respect to pesticide chemicals which present an imminent hazard to the public health, to revise the procedures under such section for changes in tolerances and exemptions for pesticide chemicals, and for other purposes.", "871": "A bill to provide for the development of oil and gas leasing in the Outer Continental Shelf pursuant to programs developed by interstate agencies established under interstate agencies established under interstate compacts.", "872": "To amend the National Labor Relations Act to ensure the right of employees to a secret-ballot election conducted by the National Labor Relations Board.", "873": "To provide for medical services to nonIndians in Indian hospitals, and for other purposes", "874": "Providing for the examination and survey of the San Antonio River, Tex.", "875": "To amend the act entitled An act to authorize the purchase, sale, and exchange of certain Indian lands on the Yakima Indian Reservation, and for other purposes, approved July 28, 1955", "876": "A bill to amend section 44C of the Internal Revenue Code of 1954 to facilitate the use of alcohol fuel.", "877": "A bill amending title 46, United States Code, to require inspection by the Coast Guard of fishing vessels, to require certain safety equipment to be aboard such vessels, and for other purposes.", "878": "To provide marketing quotas for potatoes, and to provide that the price support benefits paid to any producer of potatoes during a crop year shall not exceed $10,000", "879": "To extend the deadline under the Federal Power Act applicable to the construction of a hydroelectric project in the State of Ohio.", "880": "Conferring jurisdiction on the Court of Claims to hear, determine, and render judgment on the claims of W. C. Jackson", "881": "To authorize additional appropriations for the lower San Joaquin River project", "882": "To provide for a preliminary examination and survey of the Buffalo River, Minn., for flood control purposes", "883": "A bill to raise the present level of grades for United States deputy marshals", "884": "To ratify and confirm Act 249 of the Session Laws of Hawaii, 1955, as amended, and to authorize the issuance of certain highway revenue bonds by the Territory of Hawaii", "885": "A bill to provide an 18-month moratorium on employer revisions upon termination of single-employer defined benefit pension plans.", "886": "A bill to ensure that individuals detained by the Department of Homeland Security are treated humanely, provided adequate medical care, and granted certain specified rights.", "887": "A bill to establish a National Rebuilding and Development Bank, to provide for a long-range program to assist in assuring decent neighborhoods for all citizens.", "888": "A bill to amend chapter 101 of title 18, United States Code, to impose criminal penalties for offenses relating to certain aviation reports and records.", "889": "To provide for the establishment of Cape Cod National Seashore Park", "890": "To provide for a National Institute of Drug Addiction and Alcoholism, and to require community mental health facilities to provide treatment and rehabilitation programs for drug addicts and other persons with drug-related problems", "891": "A bill to withdraw certain public lands in Eddy County, New Mexico, and for other purposes.", "892": "A bill to provide for research and development to encourage and promote the production of synthetic fuels, and for other purposes.", "893": "A bill to add $17,996,558 to the budget ceiling for new acquisitions at Sleeping Bear Dunes National Lakeshore.", "894": "To safeguard individual privacy of genetic information from the misuse of records maintained by agencies or their contractors or grantees for the purpose of research, diagnosis, treatment, or identification of genetic disorders, and to provide to individuals access to records concerning their genome which are maintained by agencies for any purpose.", "895": "A bill to authorize the partition or sale of inherited interests in allotted Indian lands, and for other purposes.", "896": "To amend section 320 of title 23 of the United States Code to increase the authorization for that section, and to earmark such increase for a bridge across Markland Dam on the Ohio River", "897": "A bill to make permanent the exemption of gasohol from the Federal motor fuels excise taxes, and for other purposes.", "898": "To authorize an interpretive center and related visitor facilities within the Four Corners Monument Tribal Park, and for other purposes.", "899": "A bill authorizing the change in name of certain water resource projects under jurisdiction of the Department of the Army", "900": "To amend the Subversive Activities Control Act of 1950 to authorize the payment of rewards to persons who furnish information leading to convictions of organizations or individuals of failure to register as required by such act", "901": "A bill to establish a demonstration program that encourages State educational agencies to assist teachers, parents, and communities in establishing new public schools, and for other purposes.", "902": "To provide adjustments in order to make uniform the estate acquired for the Vega Dam and Reservoir, Collbran project, Colo., by authorizing the Secretary of the Interior to reoonvey mineral interests in certain lands", "903": "A bill to amend and strengthen the Natural Gas Pipeline Safety Act of 1968, and to authorize additional appropriations therefor.", "904": "To amend the Federal Aviation Act of 1958 to require the Secretary of Transportation to issue regulations providing for a program for the disinsection of aircraft arriving in the United States", "905": "A bill to prohibit the possession and transfer of non-sporting handguns, and for other purposes.", "906": "To amend the Energy Policy and Conservation Act to encourage summer fill and fuel budgeting programs for propane, kerosene, and heating oil.", "907": "Granting the consent and approval of Congress to the middle Atlantic Interstate Forest Fire Protection Compact.", "908": "A bill authorizing appropriations for the construction, operation, and maintenance of the western land boundary fence project, and for other purposes", "909": "A bill to define the circumstances in which foreign states are immune from the jurisdiction of U.S. courts and in which execution may not be levied on their assets, and for other purposes.", "910": "To amend tire United States Housing Act of 1937 to establish a program for the housing of elderly persons of low income", "911": "To authorize a national memorial at, or proximate to, the World Trade Center site to commemorate the tragic events of September 11, 2001, to establish the World Trade Center Memorial Advisory Board, and for other purposes.", "912": "A bill to authorize the U.S. Customs Court to maintain an office at the city of Los Angeles.", "913": "A bill to modernize the conservation title of the Food Security Act of 1985, protect long-term taxpayer investment, increase small and midsize farmers access to programs, and prioritize modern-day conservation needs through management practices, local engagement, and stewardship.", "914": "To restore the income tax credit for investment in certain depreciable property", "915": "A bill to authorize the establishment at Antietam National Battlefield of a memorial to the officers and enlisted men of the Fifth, Sixth, and Ninth New Hampshire Volunteer Infantry Regiments and the First New Hampshire Light Artillery Battery who fought in the Battle of Antietam on September 17, 1862, and for other purposes.", "916": "An original bill to restore the value of every American in environmental decisions, and for other purposes.", "917": "A bill to extend certain authorizations under the Federal Water Pollution Control Act, as amended.", "918": "A bill to consolidate in a single independent agency in the Executive branch the responsibilities regarding food safety, labeling, and inspection currently divided among several Federal agencies.", "919": "To amend the Internal Revenue Code of 1954 to impose an excise tax on. the discharge of pollutants", "920": "To require the Secretary of Agriculture to issue regulations for the purchase and eradication of swine infected with or exposed to brucellosis.", "921": "To establish an emergency community facilities and public works program in the Community Facilities Administration of the Housing and Home Finance Agency", "922": "To amend section 2107 of title 10, United States Code, to provide additional Reserve Officers' Training Corps scholarships for the Army, Navy, and Air Force", "923": "To authorize the transfer to the regents of the University of California, for agricultural purposes, of certain real property in Napa County, Calif", "924": "To require group and individual health plans to provide coverage for colorectal cancer screenings.", "925": "To provide for for resarch, design, development, and construction of fully operational passenger motor vehicles in prototype quantities embodying certain safety features", "926": "A bill to fund the dredging to deepen Baltimore Harbor and Channel, to provide within Baltimore Harbor spoil disposal sites enlarged in capacity by dewatering, and to prevent spoil disposal at Hart and Miller Islands in the Chesapeake Bay.", "927": "To improve, strengthen, and accelerate programs for the prevention and abatement of air pollution", "928": "To require an accounting for financial support made to promote the production or use of renewable energy, and for other purposes.", "929": "A bill to authorize the Administrator of the General Services Administration to provide technical assistance to cities to implement programs which are designed to increase the use of carpools by computers.", "930": "To amend the Soil Conservation and Domestic Allotment Act so as to permit the making of payments to farmers for certain water-conservation practices", "931": "To increase access to community behavioral health services for all Americans and to improve Medicaid reimbursement for community behavioral health services.", "932": "A bill to promote the economic security and safety of victims of domestic violence, dating violence, sexual assault, or stalking, and for other purposes.", "933": "A bill to phaseout production of certain ozone-depleting chemicals; to institute a policy promoting safe alternatives to ozone-depleting chemicals; and for other purposes.", "934": "An original bill making appropriations for the Department of Transportation and related agencies for the fiscal year ending September 30, 1985, and for other purposes.", "935": "A bill to amend the Plant Quarantine Act of August 20, 1912, as amended, to eliminate certain unnecessary regulatory requirements.", "936": "To require the National Park Service to make necessary safety improvements to the Statue of Liberty and to reopen the Statue to the public.", "937": "To amend the matching grant program for bulletproof armor vests to eliminate the matching requirement for certain officers.", "938": "Making appropriations for the Office of Education for tire fiscal year ending June 30, 1971, and for other purposes", "939": "To lower energy costs to consumers, increase electric system reliability and provide environmental improvements, through the rapid deployment of distributed energy resources, and for other purposes.", "940": "A bill to provide all prisoners with an opportunity to present exculpatory DNA evidence, and for other purposes.", "941": "To amend the Federal Meat Inspection Act, the Poultry Products Inspection Act, and the Federal Food, Drug, and Cosmetic Act to provide for improved public health and food safety through enhanced enforcement, and for other purposes.", "942": "To direct Federal public land management officials to exercise their authority under existing law to facilitate use of and access to Federal public lands for fishing, sport hunting, and recreational shooting, and for other purposes.", "943": "To make provisions of the act of August 28, 1937, relating to the conservation of water resourecs in the arid and semiarid areas of the United States, applicable to the entire United States", "944": "To establish in the State of California the Toyon National Urban Park", "945": "A bill to exempt from the Lacey Act Amendments of 1981 certain water transfers by the North Texas Municipal Water District and the Greater Texoma Utility Authority.", "946": "To reform the manner in which firearms are manufactured and distributed by providing an incentive to State and local governments to bring claims for the rising costs of gun violence in their communities.", "947": "A bill to stimulate the investment of venture capital in the production of strategic and critical metals or minerals.", "948": "A bill to provide for the revestment of certain lands or interests therein acquired for the Harlan County Reservoir, Nebraska, by the reconveyance of suchlands or interests therein to the former owners thereof.", "949": "To amend the Desert Land Acts to permit anyone who is a citizen, or who has filed his declaration of intention to become a citizen, of the United States to make entry of desert lands", "950": "A bill to prohibit an award of costs, including attorney's fees, or injunctive relief, against a judicial officer for action taken in a judicial capacity.", "951": "A bill to improve the accountability and transparency in infrastructure spending by requiring a life-cycle cost analysis of major infrastructure projects, providing the flexibility to use alternate infrastructure type bidding procedures to reduce project costs, and requiring the use of design standards to improve efficiency and save taxpayer dollars.", "952": "Relating to burley tobacco farm acreage allotments under the Agricultural Adjustment Act of 1938.", "953": "Granting to married persons living in Alabama the same Federal income tax consideration and treatments upon filing joint tax returns as is now enjoyed and extended to those living in community property States", "954": "A bill to amend the Motor Carrier Safety Act of 1984 to eliminate application of the commercial zone exemption to commercial motor vehicle safety regulations, and for other purposes.", "955": "A bill to amend the Agricultural Act of 1961 to allow the Secretary of Agriculture to provide financial assistance for the economic development of rural enterprise zones, and to amend the Internal Revenue Code of 1954 to provide tax incentives for small businesses located in rural enterprise zones.", "956": "A bill to amend the East Bench Irrigation District Water Contract Extension Act to permit the Secretary of the Interior to extend the contract for certain water services.", "957": "To increase the corporate average fuel economy standards for automobiles, and for other purposes.", "958": "To amend the Outer Continental Shelf Lands Act to authorize the Secretary of the Interior to establish an Ocean Energy Safety Institute, to promote the use of best available and safest offshore drilling technologies, and for other purposes.", "959": "To revise the Transportation of Explosives Act, chapter 39, title 18, of the United States Code, as amended.", "960": "A bill to require the Secretary of Energy to carry out activities relating to the first and second nuclear waste repositories, the monitored retrievable storage facility, and for other purposes in accordance with The Mission Plan for the Civilian Radioactive Waste Management Program, and the proposed amendment to the Mission Plan dated January, 1987.", "961": "To provide that no interest shal be imposed on any underpayment of tax resulting from the retroactive application of the amendment denying the deduction for personal exemptions under the alternative minimum tax.", "962": "To establish a two-year pilot program requiring performance standards and goals for expenditures in certain Federal Government programs to be included in the Federal budget, and for other purposes.", "963": "A bill to provide an extension of the time frame for nomination of a selection pool under the Cook Inlet land exchange.", "964": "A bill to amend the Legal Services Corporation Act to authorize appropriations for additional fiscal years, and for other purposes.", "965": "A bill to provide for the mailing of certain election material to voters free of postage.", "966": "A bill to prohibit the purchase of foreign beef by a school participating in the school lunch, school breakfast, or child care food program, and for other purposes.", "967": "To amend the Clean Air Act requirements relating to gasoline to prevent future supply shortages and price spikes in the gasoline market, and for other purposes.", "968": "To reauthorize certain DNA-related grant programs under the Justice For All Act of 2004, and for other purposes.", "969": "A bill authorizing surveys and studies bearing upon the possible use of atomic energy for utility service requirements of buildings and grounds under the Architect of the Capitol, and for other purposes", "970": "To provide for conveyance of certain land to the city of New Orleans", "971": "To provide greater flexibility to States in the use of certain public health grants-in-aid", "972": "Making additional appropriations for functions of the Food and Drug Administration for the year ending June 30, 1956, to initiate a program of expansion and Improvement of services to help safeguard the health of the American people", "973": "A bill to establish national policy respecting the development and use of water resources and for other purposes", "974": "To modify the boundary of the Mary McLeod Bethune Council House National Historic Site in Washington, District of Columbia.", "975": "A bill to grant permanent easements for the construction, maintenance, and use of boat docks and similar structures on certain property of the United States in the State of Oklahoma.", "976": "To establish a Federal .Recreation Service in the Department of Health, Education, and Welfare, and for other purposes", "977": "A bill to amend the Colorado River Storage Act with respect to the protection of national parks and monuments under the provisions of such act.", "978": "A bill to amend the Public Health Services Act and the Social Security Act to extend health information technology assistance eligibility to behavioral health, mental health, and substance abuse professionals and facilities, and for other purposes.", "979": "To create United States money in the form of noninterest bearing credit in accordance with the 1st and 5th clauses of section 8 of Article I of the Constitution of the United States, to provide for noninterest bearing loans of the money so created to State and local governments solely for the purpose of funding capital projects.", "980": "A bill to amend the Federal Farm Loan Act approved July 16, 1916, and acts amendatory thereto and supplementary thereof", "981": "To amend the National Labor Relations Act to allow individuals against whom injunctive relief is sought an opportunity to be heard.", "982": "To amend title 49, United States Code, to expand passenger facility fee eligibility for noise compatibility projects.", "983": "A bill to amend section 28 of the Mineral Leasing Act of 1920, and to authorize a trans-Alaska oil and gas pipeline, and for other purposes.", "984": "A bill to promote interstate and foreign commerce and strengthen the national defense by providing for commercial cargo and transport aircraft adaptable to military transport service", "985": "To require the Secretary of Health, Education, and Welfare to fix a minimum standard of 3.5 percent butter fat for whole milk", "986": "A bill to amend title I of the Reclamation Project Authorization Act of 1972 in order to provide for the establishment of the Russell Lakes Waterfowl Management Area as a replacement for the authorized Mishak National Wildlife Refuge, and for other purposes.", "987": "To provide for the acquisition of lands by the United States required for the reservoir created by the construction of Oahe Dam on the Missouri River and for rehabilitation of the Indians of the Cheyenne River Sioux Reservation, S. Dak., and for other pur", "988": "A bill to provide for a Federal contribution toward the cost of the dam and reservoir to be constructed on the Canadian River by the State of New Mexico.", "989": "A bill to amend the National Dam Safety Program Act to establish a program to provide grant assistance to States for the rehabilitation and repair of deficient dams.", "990": "To assure performance by railroads engaged in interstate commerce of transportation services necessary to the maintenance of a national transportation system, and for other purposes", "991": "A bill to authorize the sale of certain Indian lands situated in Duchesne and Randlett, Utah, and in and adjacent to Myton, Utah", "992": "A bill to facilitate the management of certain land and recreational resources of reclamation projects in or adjacent to the national forests of South Dakota, and for other purposes", "993": "A bill to increase the supply of decent housing and to consolidate, extend and improve laws relating to housing and urban renewal and development", "994": "A bill making supplemental appropriation for payments under home health service grants and making an appropriation for payments under multipurpose senior centers.", "995": "A bill to amend the Illinois Land Conservation Act of 1995 to provide for the use of certain fees and receipts collected under that Act for public schools and public roads in the vicinity of Midewin National Tallgrass Prairie, Illinois.", "996": "To provide for cooperation in financing and prosecuting early development of the John Day project on the Columbia River, Oreg. and Wash., for navigation, irrigation, flood control, and power production", "997": "A bill to provide surplus commodities to farmers who lost grain stored in certain insolvent warehouses.", "998": "A bill to empower States with authority for most taxing and spending for highway programs and mass transit programs, and for other purposes.", "999": "To establish the John H. Chafee Blackstone River Valley National Historical Park, and for other purposes.", "1000": "A bill to make applicable to the Tennessee-Tombigbee Waterway certain provisions of law relating to taxation on fuel used in commercial transportation on inland waterways.", "1001": "To encourage and assist in the expansion and improvement of educational programs to meet critical national needs through the early identification of student aptitudes, strengthening of counseling and guidance services in public high schools, provision of ", "1002": "A bill to require that certain notifications occur whenever a query to the National Instant Criminal Background Check System reveals that a person listed in the Violent Gang and Terrorist Organization File is attempting to purchase a firearm, and for other purposes.", "1003": "To amend the National Environmental Education Act to establish an Environmental Education Clearing Division to collect certain environmental information and make that information available to educational institutions in the United States and other interested persons.", "1004": "To prepare a feasibility study and implement demonstration projects to restore the San Gabriel River Watershed in California.", "1005": "To amend section 2 of Public Law 927, 84th Congress, 2d session, and to repeal section 6 of Public Law 927, 84th Congress, 2d session", "1006": "To amend the Internal Revenue Code of 1954 regarding credits and payments in the case of certain uses of gasoline and lubricating oil", "1007": "A bill to amend part II of the Interstate Commerce Act in order to completely exempt certain vehicles used in agriculture from the provisions thereof", "1008": "A bill to amend the Help America Vote Act of 2002 to protect voting rights and to improve the administration of Federal elections, and for other purposes.", "1009": "A bill to provide for making a temporary judgeship for the northern district of Alabama permanent, and creating a new judgeship for the middle district of Alabama.", "1010": "To establish a community self-determination program to aid the people of urban and rural communities in securing gainful employment, achieving the ownership and control of the resources of their community, expanding opportunity, stability, and self-determination, and making their maximum contribution to the strength and well-being of the Nation", "1011": "To provide indemnification and liability protection to, and facilitate the procurement of insurance for, contractors responding to the World Trade Center attacks.", "1012": "To settle the Black Hills claim with the Sioux Nation of Indians.", "1013": "A bill to provide for the reduction in interstate commerce of the quantity of materials which must ultimately be disposed of, and for other purposes", "1014": "A bill to provide for the acquisition of the William Johnson House and its addition to the Natchez National Historical Park, and for other purposes.", "1015": "A bill to amend the Federal Seed Act with respect to prohibitions relating to interstate commerce in seed mixtures intended for lawn and turf purposes and prohibitions relating to importation of certain seeds, and for other purposes.", "1016": "A bill to provide an alternative plan for providing essential rail services to the Midwest and Northeast regions of the United States, to modernize certain railroad procedures.", "1017": "To amend the Railroad Retirement Act and the Social Security Act to eliminate those provisions which restrict the right of a survivor to receive benefits simultaneously under both acts", "1018": "A bill to establish criminal penalties for failing to inform and warn of serious dangers.", "1019": "To provide a temporary increase in the tax on gasoline and special fuels to provide additional revenue for the highway trust fund", "1020": "To provide for the donation of surplus food commodities to locate penal and correctional institutions, and for other purposes", "1021": "To amend the Maritime Academy Act of 1958 to require repayment of amounts paid for the training of merchant marine officers who do not serve in the merchant marine or Armed Forces", "1022": "To provide for the establishment and administration of a segment of the Great Prairie Parkway in the State of South Dakota", "1023": "A bill to improve and strengthen the child support collection system, and for other purposes.", "1024": "To amend the National Housing Act to authorize the insurance of loans to defray mortgage payments on homes owned by persons who are temporarily unemployed or whose income has been drastically reduced as the result of adverse economic conditions prevailing in an industry or area", "1025": "A bill to amend certain provisions of Federal law relating to explosives.", "1026": "A bill to authorize the construction of the Perkins County Rural Water System and authorize financial assistance to the Perkins County Rural Water System, Inc., a nonprofit corporation, in the planning and construction of the water supply system, and for other purposes.", "1027": "A bill to improve the quality of teaching in American secondary schools and enhance the competence of American secondary students and thereby strengthen the economic competitiveness of the United States, and for other purposes.", "1028": "To authorize a study to determine the feasibility of developing a small boat channel in the Mill Cove area of Jacksonville, Fla", "1029": "To strengthen public policy and law providing for independent competitive enterprise in the marketing of gasoline and other petroleum products, motor-vehicle parts, equipment, accessories, and supplies.", "1030": "To ensure the Federal voting rights of persons who have been released from incarceration.", "1031": "To assist the provision of housing and community facilities and services required in connection with the national defense", "1032": "To amend section 202 of the Federal Power Act, to prohibit abandonment of facilities and service without the consent of the Federal Power Commission", "1033": "A bill to amend the National Historic Preservation Act and the National Historic Preservation Act Amendments of 1980 to strengthen the preservation of our historic heritage and resources, and for other purposes.", "1034": "A bill to provide for a Veterans' Administration general medical and surgical hospital at Jacksonville, Fla., and to achieve cooperation with the University of Florida College of Medicine in its activities in Jacksonville.", "1035": "A bill to modify the requirements of the Department of Veterans Affairs for reimbursing health care providers under section 101 of the Veterans Access, Choice, and Accountability Act of 2014, and for other purposes.", "1036": "A bill to promote the safety of individuals traveling by aircraft, and for other purposes.", "1037": "To provide an improved charter for Economic Opportunity Act programs, to authorize funds for their continued operation, to expand summer camp opportunities for disadvantaged children, and for other purposes", "1038": "To direct the Secretary of the Army to develop a watershed management plan for the Lake George area of Indiana, and for other purposes.", "1039": "A bill to amend the Emergency Petroleum Allocation Act of 1973 to authorize and require the President of the United States to allocate plastic feedstocks produced from petrochemical feedstocks.", "1040": "To amend the Federal Water Pollution Control Act to authorize an estrogenic substances screening program.", "1041": "To direct the Architect of the Capitol to acquire and place a historical plaque to be permanently displayed in National Statuary Hall recognizing the seven decades of Christian church services being held in the Capitol from 1800 to 1868, which included attendees James Madison and Thomas Jefferson.", "1042": "A bill to provide for an extension of regional referral center classifications, and for other purposes.", "1043": "To authorize the Secretary of the Army to carry out a program for ecosystem restoration in Appalachia and the Northeast Region.", "1044": "Relating to the income tax treatmen of nonrefundable capital contributions to Federal National Mortgage Association", "1045": "A bill to protect the health and safety of American consumers under the Federal Food, Drug, and Cosmetic Act from seafood contaminated by certain substances.", "1046": "To conserve the United States fish and aquatic communities through partnerships that foster fish habitat conservation and improve the quality of life for the people of the United States, and for other purposes.", "1047": "A bill ratifying and confirming an agreement by the Secretary of the Interior providing for the issuance of a lifetime grazing permit to the Gray family now consisting of Jack Gray, Henry Gray, and Robert Louis Gray, relating to the grazing of cattle within the confines of the Organ Pipe Cactus National Monument.", "1048": "A bill to reauthorize and revise chapter 2 of the Education Consolidation and Improvement Act of 1981 in order to establish priorities of educational assistance, to authorize a teacher training and improvement program, and for other purposes.", "1049": "To provide a program in the Department of Agriculture under which the Federal Government, in partnership with the governments of the States, will assist in the provision of adequate housing for migratory agricultural workers", "1050": "To increase the fees of witnesses in the United States courts and before United States commissioners, and for other purposes.", "1051": "To authorize the establishment of the site of the discovery of San Francisco Bay as a national historic site, and for other purposes", "1052": "A bill to authorize the Hoosier Automobile and Truck National Heritage Trail Area.", "1053": "Authorizing the city of Chester, Illinois, to reconstruct, repair, or improve a toll bridge across the Mississippi River at or near Chester, Illinois.", "1054": "A bill to establish a uniform nationwide standard governing classifications based upon gender.", "1055": "To protect the civil rights of individuals by establishing a Commission on Civil Rights in the Executive Branch of the Government, a Civil Rights Division in the Department of Justice, and a Joint Congressional committee on Civil Rights, to strengthen the", "1056": "To authorize appropriations for completing the construction of the Inter-American Highway, and for other purposes", "1057": "A bill to amend title 23 of the District of Columbia Code with respect to the release or other disposition prior to and after trial of persons charged with criminal offenses.", "1058": "To amend title 28, United States Code, relating to annuities of widows of Supreme Court Justices", "1059": "To establish the Southwest Montana Heritage and Recreation Area in the State of Montana.", "1060": "To amend title XVIII to provide for a 5-year extension of the authorization for appropriations for certain Medicare rural grants.", "1061": "To require certain semiautomatic pistols manufactured, imported, or sold by Federal firearms licensees to be capable of microstamping ammunition.", "1062": "To amend the statutes relatingto crop loans, parity prices of agricultural products and conservation of natural resources, to promote conservation of soil fertility, to provide for benefit payments to producers for conservation practices, to provide far l", "1063": "A bill to amend the Commercial Fisheries Research Development Act of 1964 in order to amend the formula for calculating yearly apportionments to the States of funds available under such act.", "1064": "A bill to extend the authorization of appropriations of the National Historical Publications and Records Commission for 6 years.", "1065": "A bill to provide for an accelerated program for the recovery of energy from municipal wastes, and for other purposes.", "1066": "A bill to provide for the improvement of the waterway between Barataria Bay, La., and the Gulf of Mexico", "1067": "To provide $4,000,000,000 in new funding through bonding to empower States to undertake significant residential and commercial structure demolition projects in urban and other targeted areas, and for other purposes.", "1068": "To consent to an amendment of the Pacific marine fisheries compact", "1069": "To prohibit registration of firearms already issued legally and to protect citizens against unconstitutional seizure of private weapons", "1070": "A bill to provide that the fiscal year of the United States shall coincide with the calendar year.", "1071": "Granting the consent of the Congress to the State of Maine to negotiate and enter into an agreement with the Dominion of Canada relating to the construction of a certain road and for other purposes.", "1072": " A bill to strengthen fisheries research through the imposition of fees on the harvesting and processing of fish within the exclusive economic zone and through the licensing of recreational fishing within such zone.", "1073": "Relating to the exchange of certain private and Federal properties within the authorized boundaries of Acadia National Park, in the State of Maine, and for other purposes", "1074": "A bill to repeal the provisions of the Highway Revenue Act of 1956 requiring certain adjustments of apportionments depending upon the amount of funds available in the highway trust fund", "1075": "To provide aid for persons who served in the United States merchant marine during World War 17, and for other purposes", "1076": "A bill to provide for programs to maintain and develop markets for United States agricultural commodities, and for other purposes.", "1077": "To provide for a referendum on the political status of Puerto Rico.", "1078": "To amend the Clean Air Act to impose certain requirements on areas upwind of ozone nonattainment areas, and for other purposes.", "1079": "A bill to require the labeling of electrical appliances with respect to their comparative efficiency in the use of electricity and to provide for the establishment of minimum standards of efficiency for such appliances.", "1080": "To reform the medical liability system, improve access to health care for rural and indigent patients, enhance access to affordable prescription drugs, and for other purposes.", "1081": "A bill to amend part G of title I of the Omnibus Crime Control and Safe Streets Act of 1968 to allow railroad police officers to attend the Federal Bureau of Investigation National Academy for law enforcement training.", "1082": "A bill to provide for a highway bridge across the Little Missouri River at the Garrison Reservoir", "1083": "A bill to authorize a national program to encourage dam safety.", "1084": "A bill to repeal certain provisions of the Federal Lands Recreation Enhancement Act.", "1085": "To modernize the Federal Home Loan Bank System to meet the needs of a changing housing finance industry, and to enhance the safety, soundness, and future of the Federal Home Loan Bank System.", "1086": "A bill to amend section 119(d) of the Housing and Community Development Act of 1974.", "1087": "To amend the Internal Revenue Code of 1954 and the Tax Reform Act of 1969 regarding the treatment of charitable contributions", "1088": "A bill to provide for the transfer to the Department of Agriculture of the fertilizer research facilities of the Tennessee Valley Authority, and for other purposes", "1089": "A bill to improve the electric generating efficiency of joint Federal-civilian pooling practices in Alaska and for other purposes.", "1090": "To provide for the construction of minimum basic recreation facilities inthe Owyhee Reservoir area, Oregon, and for other purposes.", "1091": "To authorize a program of research, development, and demonstration projects, for non-air-polluting motor vehicles", "1092": "To consent to the Interstate Compact on Air Pollution between the States of Ohio and West Virginia", "1093": "To provide for the establishment of the Lake Erie Western Basin International Wildlife Refuge in the States of Ohio and Michigan, and for other purposes.", "1094": "To improve access to emergency medical services, and for other purposes.", "1095": "To amend section 113 (b) (1) (B) of the Internal Revenue Code with respect to the adjustment of the basis of property for depreciation, obsolescence, amortization, and depletion", "1096": "To amend the National Traffic and Motor Vehicle Safety Act of 1966 in order to promote competition among motor vehicle manufacturers in the design and production of safe motor vehicles having greater resistance to damage, and for other purposes", "1097": "To require institutions of higher education to make full refunds of tuitions and fees paid by members of the Armed Forces and National Guard called to active duty or active service during a war or national emergency.", "1098": "To declare a certain portion of Back Cove at Portland, Maine, to be nonnavigable water of the United States.", "1099": "Conferring jurisdiction upon the Court of Claims of the United States to consider and render judgment on the claim of the Cuban American Sugar Co. against the United States", "1100": "To provide penalties for membership in the Communist Party, and to permit the compelling of testimony relating to such membership and the granting of immunity from prosecution in connection therewith.", "1101": "A bill to establish a Department of Social, Economic, and Natural Resources Planning in the executive branch of the Federal Government.", "1102": "A bill to suspend temporarily the duty on Basic Violet 1.", "1103": "To direct the Secretary of the Armey to convey certain real property in the vicinity of the Lewisville Dam in Denton County, Texas, to the persons from whom the United States acquired the property.", "1104": "A bill to provide grants for cardiopulmonary resuscitation (CPR) training in public schools.", "1105": "To amend the act of July 26, 1954, to establish a National Advisory Council on Education", "1106": "A bill to impose a tax on windfall profits by producers of crude oil.", "1107": "To establish a Livestock Identification Board to create and implement a mandatory national livestock identification system.", "1108": "To. amend the Internal Revenue Code of 1954 to authorize an incentive tax credit allowable .with respect to facilities to control water and air pollution, to. encourage the construction of such facilities, and to permit the amortization of the cost of constructing such facilities within a period of from 1 to 5 years", "1109": "To provide mortgage payment assistance for certain employees who are separated from employment.", "1110": "A bill to promote the development and conservation of certain resources in the submerged coastal lands adjacent to the shores of the United States", "1111": "To take certain Federal lands in Tennessee into trust for the benefit of the Eastern Band of Cherokee Indians, and for other purposes.", "1112": "To guarantee that every employee of Federal Government shall have the right to refain from union activity.", "1113": "To amend the National Energy Conservation Policy Act to provide for additional energy conservation measures at all Federal agencies.", "1114": "A bill to designate certain lands in the Shenandoah National Park, Va., as wilderness.", "1115": "To provide for 2 demonstration projects to study the effect of allowing States to extend medicaid coverage to certain low-income families not otherwise qualified to receive medicaid benefits.", "1116": "To amend the Internal Revenue Code to exempt from the manufacturers excise tax certain automobiles furnished without charge to schools for use in driver training programs", "1117": "To amend title 18 to penalize the use of firearms in all crimes and to forbid plea bargaining in connection with such crimes", "1118": "To provide grants for cardiopulmonary resuscitation (CPR) training in public schools.", "1119": "A bill to prevent evasion of the meat import law by including within the yearly quotas established thereunder meat entered into foreign trade zones and insular possessions for processing into different products before importation into the United States.", "1120": "To provide grants to States to develop unified State health care plans and to authorize a single Federal payment to a State to provide services under such a plan instead of under the medicare, medicaid, and other Federal health care programs.", "1121": "A bill to assist volunteer fire companies in coping with the precipitous rise in fuel prices.", "1122": "To provide for representation of independent labor organizations on the Wage Stabilization Board, Economic Stabilization Agency, and for other purposes", "1123": "A bill to establish the Morris K. Udall Scholarship and Excellence in National Environmental Policy Foundation, and for other purposes.", "1124": "A bill to name the lake located behind Lower Monumental Lock and Dam, Washington, Lake Herbert G. West.", "1125": "To establish a grant program to enhance existing secondary education programs for the purpose of teaching high school students about the Constitution of the United States and the constitutions of the individual States.", "1126": "A bill to prescribe the conditions with respect to affirmative action programs required of Federal grantees and contractors in complying with nondiscrimination programs, to prescribe the necessary requirements for a finding of discrimination in certain actions brought on the basis of discrimination in employment and to prescribe reasonable limits on the collection of data relating to race, color, religion, sex, or national origin.", "1127": "To amend section 2312 of title 18, United States Code, to permit a person enforcing that section to stop a motor vehicle to inspect the serial number of its body and motor if he has reason to suspect that the motor vehicle has been stolen", "1128": "Granting the consent of Congress to a compact or agreement between the Commonwealth of Pennsylvania and the State of New Jersey concerning a bridge across the Delaware River to provide a connection between the Pennsylvania Turnpike System and the New Jers", "1129": "To provide for the compulsory inspection of poultry and poultry products so as to prohibit the movement in interstate or foreign commerce of unsound, unhealthful, diseased, unwholesome, or adulterated poultry or poultry products.", "1130": "Transferring the Heart Mountain division of the Shoshone Federal reclamation project to the Missouri River Basin project.", "1131": "To amend title 28, United States Code, to prohibit racially discriminatory capital sentencing.", "1132": "To require that a portion of the amounts made available for housing programs for the homeless be used for housing for homeless veterans.", "1133": "A bill to expand the Timucuan Ecological and Historic Preserve, Florida.", "1134": "A bill to amend the Packers and Stockyards Act. 1921, with respect to the charging of brand inspection fees", "1135": "To provide for payments in lieu of taxes on lands in national forests", "1136": "A bill to permit the prospecting for and the development and utilization of mineral resources of national forest lands, or lands administered for national forest purposes or in connection with national forest programs, which are not subject to the operati", "1137": "A bill to provide for the DuNoir Basin Addition to the Washakie Wilderness.", "1138": "A bill to require studies and guidelines for breast cancer screening for women ages 40-49, and for other purposes.", "1139": "A bill to require the Secretary of Agriculture to provide crop disaster assistance to agricultural producers that suffered qualifying quantity or quality losses for the 2008 crop year due to a natural disaster.", "1140": "To establish pilot programs that provide for emergency crisis response teams to combat elder abuse.", "1141": "A bill to amend the Commercial Motor Vehicle Safety Act of 1986 to provide that the requirements for the operation of commercial motor vehicles will not apply to the operation of firefighting vehicles.", "1142": "To provide that the highway running from Tampa, Fla., and St. Petersburg, Fla., through Bradenton, Fla., Sarasota, Fla., Venice, Fla., Punts Gorda, Fla., Fort Myers, Fla., Naples, Fla., and Miami, Fla., to Fort Lauderdale, Fla., and Homestead, Fla., shall", "1143": "To direct the Equal Employment Opportunity Commission to prepare a report about how the Fair Labor Standards Act of 1938 has been used by public and private sector employers to foster or exacerbate pay inequity.", "1144": "A bill to extend and amend the Elementary and Secondary Education Act of 1965 and related programs, to establish programs to promote the improved achievement of children in basic skills and to assist State and local educational agencies to enhance the qua", "1145": "To authorize the Secretary of the Interior to undertake, where necessary, cooperative programs with respect to the control of fish in the Great Lakes which ascend streams to spawn", "1146": "To provide minimum standards in connection with certain Federal finan,ciial assistance with respect to correctional institutions and facilities", "1147": "A bill to improve transit service to rural areas, including for elderly and disabled.", "1148": "A bill to provide special rules for purposes of the Internal Revenue Code of 1954 for the accrual of, and carryback of losses from, deductions for asbestos product liabilities in order to protect asbestos workers, and for other purposes.", "1149": "To amend the Solid Waste Disposal Act to prohibit the international export and import of certain solid waste.", "1150": "A bill to extend the application deadline for assistance under the Impact Aid Program.", "1151": "To provide a credit against the Federal income tax for additional State and local taxes imposed for school purposes", "1152": "A bill to establish certain requirements relating to the provision of services to minors by family planning projects under title X of the Public Health Service Act.", "1153": "To provide for the disposition of geothermal steam by the Secretary of the Interior, and for other purposes", "1154": "A bill to amend the Federal Reserve Act to increase the number of class C directors of Federal Reserve banks.", "1155": "To amend the Federal-Aid High way Act of 1956 to permit States having toll and free roads, bridges, and tunnels designated as part of the National Sys tem of Interstate and Defense Highways to designate other routes for inclusion in the Interstate System", "1156": "A bill to provide that certain Bureau of Land Management land shall be held in trust for the Pueblo of Santa Clara and the Pueblo of San Ildefonso in the State of New Mexico.", "1157": "To amend the Tariff Schedules of the United States to apply to fresh grapes imported between May 1 and June 30 of each year the same rate of duty as applies to grapes imported between February 15 and March 31", "1158": "A bill to amend the Vocational Act of 1963 to improve the administration of postsecondary vocational education programs.", "1159": "A bill to provide for a fair and equitable disposition to certain coastal states of certain federal outer continental shelf revenues.", "1160": "A bill to amend title I of the Omnibus Crime Control and Safe Streets Act of 1968 to provide a lump sum payment to public safety officers who become totally and permanently disabled as a result of a catastrophic injury sustained in the line of duty.", "1161": "A bill to make certain expenditures by the city of Huntsville, Ala., eligible as local grantsinaid for purposes of title I of the Housing Act of 1949.", "1162": "To provide for the transfer of administrative jurisdiction over certain public lands in the State of Oregon located within or adjacent to the Rogue River National Forest.", "1163": "A bill to amend section 17 of the Mineral Leasing Act of February 25, 1920, as amended", "1164": "A bill to amend chapter 131 of title 46, United States Code, relating to the Federal recreational boating safety program, and for other purposes.", "1165": "To amend title 39, United States Code, to establish incentives to encourage the greater use of recycled paper for mail matter.", "1166": "A bill to designate the Sheep Mountain Wilderness Area in the State of California.", "1167": "A bill to amend the Public Health Service Act, the Employee Retirement Income Security Act of 1974, and the Internal Revenue Code of 1986 to require that group and individual health insurance coverage and group health plans provide coverage for treatment of a minor child's congenital or developmental deformity or disorder due to trauma, infection, tumor, or disease.", "1168": "A bill to amend section 316(c) of the Agricultural Adjustment Act of 1938 to provide that leasing of flue-cured tobacco acreage-poundage marketing quotas after June 15 of any year be permitted only between farms on which at least 80 percent of the farm acreage allotment was planted for such year.", "1169": "A bill to permit a successor employer to include the amount of wages paid to an employee by his predecessor in computing the total amount of wages paid to such employee during a calendar year under the Federal Insurance Contributions Act and Federal Unemp", "1170": "A bill to provide that the individual mandate under the Patient Protection and Affordable Care Act shall not be construed as a tax.", "1171": "To amend the Help America Vote Act of 2002 to reimburse States for the costs incurred in establishing a program to track and confirm the receipt of voted absentee ballots in elections for Federal office and make information on the receipt of such ballots available by means of online access, and for other purposes.", "1172": "A bill to reserve certain lands on the public domain in Pima County, Arizona, for the use and benefit of the Papago Indians.", "1173": "To amend section 1701 of the Internal Revenue Code to provide that the tax on admissions shall not apply in the case of admissions to a planetarium, or a museum, or similar educational institutions", "1174": "To amend the weighted child count used to determine targeted grant amounts and education finance incentive grant amounts for local educational agencies under title I of the Elementary and Secondary Education Act of 1965.", "1175": "To amend the Internal Revenue Code of 1954 to,-extend the application of the investment credit to property used in possessions of the United States", "1176": "To permit the Secretary of the Interior to acquire by exchange lands in the Cuyahoga National Recreation Area that are owned by the State of Ohio.", "1177": "To provide for the establishment of national energy and environmental building retrofit policies for both residential and commercial buildings, and for other purposes.", "1178": "To prohibit discrimination in insurance coverage to victims of domestic violence, dating violence, sexual assault, or stalking.", "1179": "A bill to provide for the issuance of bonds payable in gold coin.", "1180": "A bill to authorize the reformulation of the Cedar Bluff Unit of the Pick-Sloan Missouri Basin Program, Kansas, to provide for the amendment of water service and repayment contracts.", "1181": "A bill to repeal the provision added by the Economic Recovery Tax Act of 1981 which treats investments by individual retirement plans in collectibles as distributions.", "1182": "To provide for the development of a systems architecture that can begin providing the essential data needed to understand and respond to global warming by 1995 in a cost-effective manner, and for other purposes.", "1183": "A bill to authorize the distribution within the United States of the USIA film entitled The March.", "1184": "To provide that certain public lands in Yuma and Maricopa Counties, Ariz., may be appropriated or disposed of under the public land laws subject to the right in the United. States to flood the lands in connection with the Painted Rock Reservoir project", "1185": "A bill to improve the international ocean commerce transportation system of the United States.", "1186": "To provide for further research relating to new and improved uses which offer expanding markets for farm products, and for other purposes.", "1187": "To amend the Radiation Exposure Compensation Act to improve compensation for workers involved in uranium mining, and for other purposes.", "1188": "A bill to promote the international deployment of clean technology, and for other purposes.", "1189": "A bill to amend section 24 of the Federal Power Act so as to provide that the States may apply for reservation for highway purposes of portions of power sites released for, entry, location, or selection", "1190": "To make clerical and technical amendments to section 404 of the Controlled Substances Act.", "1191": "To provide for an additional district judge in the District of Oregon.", "1192": "To amend title 18 sand title 28 of the United States Code with respect to the trial and review of criminal actions involving obscenity, and for other purposes", "1193": "To amend the Clean Air Act to reduce sulfur dioxide, nitrogen oxide, and mercury emissions, and for other purposes.", "1194": "A bill to establish a Meat, Poultry, and Eggs Inspection Agency to administer the Federal Meat Inspection Act, the Poultry Products Inspection Act, and the Egg Products Inspection Act, to expand the application of such Acts, to provide for the establishment of safe cooking standards for meat and poultry products, to improve scientific research and understanding of foodborne illnesses, and for other purposes.", "1195": "To authorize the appropriation of funds to be utilized by the Federal home loan banks for the purpose of adjusting the effective rate of interest charged by such banks on short-term and long-term borrowing on residential mortgages", "1196": "To provide for the extension of expiring term grazing permits for lands within the National Forest System pending the completion by the Forest Service of final agency action in connection with the renewal of such permits.", "1197": "To authorize the Secretary of Agriculture to provide cost share assistance to construct reservoir structures for the storage of water in rural areas, and for other purposes.", "1198": "To direct .the - Secretary of Interior to cooperate with the States of New York and New Jersey on a program to develop, preserve, and restore the resources of the Hudson. River and its shores and .to authorize certain necessary steps to be taken to .protect those resources from adverse Federal actions until the States and Congress shall have had an opportunity to act on that program", "1199": "To provide a correctional system for juvenile delinquents proceeded against in the courts of the United States, and for other purposes", "1200": "A bill to provide for uniform standards for trucks carrying freight in interstate commerce, and for other purposes.", "1201": "A bill to amend the Colorado River Storage Project Act and Public Law 87-483 to authorize the construction and rehabilitation of water infrastructure in Northwestern New Mexico, to authorize the use of the reclamation fund to fund the Reclamation Water Settlements Fund, to authorize the conveyance of certain Reclamation land and infrastructure, to authorize the Commissioner of Reclamation to provide for the delivery of water, and for other purposes.", "1202": "A bill to provide that Revenue Ruling 80-60 shall not require a change in the taxpayer's method of accounting for taxable years beginning before 1980.", "1203": "To amend the Controlled Substances Act to provide a mandatory death penalty for the killing of law enforcement officers in connection with certain drug-related offenses.", "1204": "A bill to provide for scientific frameworks with respect to recalcitrant cancers.", "1205": "To revive and reenact the act entitled An act cresting the 8t. Lawrence Bridge Commission and authorize said Commission and its successors to construct, maintain, and operate a bridge across the St. Lawrence River at or near Ogdensburg, New York, approv", "1206": "A bill to eliminate the buffer zone established in connection with the Pictured Rocks National Lakeshore, and for other purposes.", "1207": "A bill to establish a Federal Corporation with authority to purchase foreign crude oil and petroleum products for importation, and for other purposes.", "1208": "A bill to authorize the Federal Power Commission to allocate scarce supplies of natural gas.", "1209": "To amend the Clean Air Act to prohibit any regulation under such Act concerning the emissions of carbon dioxide from a fossil fuel-fired electric generating unit from taking effect until the Administrator of the Environmental Protection Agency makes certain certifications, and for other purposes.", "1210": "A bill to authorize the appropriation of funds to the Centers for Disease Control and Prevention for conducting or supporting research on firearms safety or gun violence prevention.", "1211": "A bill to repeal sections 302 through 308 of the Tax Equity and Fiscal Responsibility Act of 1982, which impose withholding on interest and dividends.", "1212": "A bill to amend the Second Supplemental Appropriation Act, 1961, relating to the lease of certain lands from the Isleta Indian Tribe for a seismological laboratory.", "1213": "To amend the act requiring evidence of certain financial responsibility and establishing minimum standards for certain passenger vessels in order to exempt certain vessels operating on inland rivers", "1214": "A bill to amend the Economic Recovery Tax Act of 1981 to allow an election of the unlimited marital deduction and the qualified terminable interest rules for estates of decedents dying after August 12, 1981, and before January 1, 1982.", "1215": "A bill to amend the Economic Stabilization Act, to establish objectives and standards governing imposition of controls after April 30, 1974, to create an Economic Stabilization Administration, to establish a mechanism for congressional action when the President fails to act.", "1216": "To assist in the provision of housing for low- and moderate-income families to promote orderly urban development, to improve living environment in urban areas, and to extend and amend laws relating to housing, urban renewal, urban mass transportation, and community facilities", "1217": "A bill to prohibit employment discrimination against parents and those with parental responsibilities, and for other purposes.", "1218": "A bill to require States and Indian tribes to designate specific highway routes for the transportation of hazardous materials and the long-distance transportation of solid waste.", "1219": "To provide for the development of a national urban growth policy, and to encourage and support the rational, orderly, efcient, and economic growth and development of our States, metropolitan areas, cities, counties, and towns, with emphasis upon the development of new communities and upon inner city development", "1220": "To establish an Office of Intercountry Adoptions within the Department of State, and to reform United States laws governing intercountry adoptions.", "1221": "A bill to provide for a biennial General Accounting Office audit of the housing programs of the Department of Housing and Urban Development to promote more efficient administration of such programs.", "1222": "To require the Corps of Engineers to take into account all available hydrologic data in conducting Missouri River basin operations.", "1223": "To amend the Internal Revue Code of 1954 to allow a taxpayer with adjusted gross income of.$7,500 or less a deduction for the expenses of tuition and certain other fees and charges paid by him for his education or theeducation of his spouse or any of his ", "1224": "A bill to authorize the Secretary of Agriculture to accept the donation of certain land in the Mineral Hill-Crevice Mountain Mining District in the State of Montana, and for other purposes.", "1225": "To confirm full title to Winter Island in the city of Salem in the Commonwealth of Massachusetts", "1226": "To establish formally the United States Military Cancer Institute, to require the Institute to promote the health of members of the Armed Forces and their dependents by enhancing cancer research and treatment, to provide for a study of the epidemiological causes of cancer among various ethnic groups for cancer prevention and early detection efforts, and for other purposes.", "1227": "To withdraw the Tusayan Ranger District and Federal land managed by the Bureau of Land Management in the vicinity of Kanab Creek and in House Rock Valley from location, entry, and patent under the mining laws, and for other purposes.", "1228": "A bill to amend the Equal Access to Justice Act to include appeals to a board of contract appeals.", "1229": "A bill to amend the act relating to the importation of adult honey bees.", "1230": "To authorize the disposal of100,000 short tons of lead from the national stockpile and the supplemental stockpile", "1231": "To amend the National Highway System Designation Act of 1995 to increase the number of States that may participate in the State infrastructure bank pilot program authorized by that Act.", "1232": "To authorize the transfer of three units of the Fort Belknap Indian irrigation project to the landowners within the project", "1233": "A bill to amend the Safe, Accountable, Flexible, Efficient Transportation Equity Act: A Legacy for Users to improve a pilot program on addressing shortages of long-term parking for commercial motor vehicles, and for other purposes.", "1234": "A bill to establish regional dairy marketing areas to stabilize the price of milk and support the income of dairy producers.", "1235": "To provide that a minister may exclude from gross income that part of his compensation which is paid to him in lieu of furnishing him a dwelling house", "1236": "A bill to amend sections 2, 4, and 8 of the Migratory Bird Hunting Stamp Act of March 16, 1934 (48 Stat. 451; 16 U. S. C. 718b), as amended, and section 5 of the Migratory Bird Conservation Act of February 18, 1929 (45 Stat. 1222; 16 U. S. C. 715), as ame", "1237": "To modify the project for flood control below Chatfield Dam on the South Platte River, Colo., authorized by the Flood Control Act of 1950", "1238": "To provide for the establishment of the Upper Mississippi River National (Recreation Area, and for other purposes", "1239": "To amend titles I and II of the Elementary and Secondary Education Act of 1965 to strengthen connections to early childhood education programs, and for other purposes.", "1240": "To provide for technical assistance and research relating to the control of health hazards and the prevention of accidental deaths and injuries associated with underwater diving", "1241": "A bill to promote access to health care services in rural areas.", "1242": "A bill to establish felony violations for the failure to pay legal child support obligations, and for other purposes.", "1243": "To amend and supplement the Federal Aid Road Act, approved July 11, 1916 (39 Stat. 355), as amended and supplemented, to authorize appropriations for continuing the construction of highways, and for other purposes", "1244": "A bill to provide for the fair treatment of the Federal judiciary relating to compensation and benefits, and to instill greater public confidence in the Federal courts.", "1245": "A bill to provide for division and for the disposition of the funds appropriated to pay a judgment in favor of the Blackfeet Tribe of the Blackfeet Indian Reservation, Montana, and the Gros Ventre Tribe of the Fort Belknap Reservation, Montana, in Indian ", "1246": "A bill to modify the royalty rates applicable to onshore and offshore oil and gas leases.", "1247": "To require the Secretary of Education to review and revise the guidelines relating to the Principles of Effectiveness criteria developed pursuant to the Safe and Drug-Free Schools and Communities Act to improve State and local prevention programs and activities carried out under such Act, and for other purposes.", "1248": "A bill entitled The College Tuition Tax Relief Act of 1977.", "1249": "A bill to amend the Gramm-Leach-Bliley Act to provide an exception to the annual written privacy notice requirement.", "1250": "To extend the period during which certain property is required to be placed in service to qualify for transition relief under section 203 of the Tax Reform Act of 1986 and to extend the period during which certain bonds may be issued under section 1317 of the Tax Reform Act of 1986.", "1251": "To establish a California Ocean Protection Zone, and for other purposes.", "1252": "To authorize a program of research and development to encourage the use of underground transmission of electrical power and to undertake projects to evaluate and demonstrate the economical and technical feasibility of such transmission", "1253": "To direct the Secretary of Labor to establish a demonstration program to improve access to public employment and job training programs.", "1254": "To amend title 5, United States Code, to prohibit the sale or other distribution to the public by the Secretary of the Treasury of lists of names and addresses under his ,jurisdiction and control, and for other purposes", "1255": "To authorize the Secretary of Agriculture to quitclaim 2 acres of land near Muirkirk, Md., to the Queens Chapel Methodist Church", "1256": "An original bill to amend Title I of the Marine Protection, Research, and Sanctuaries Act, as amended.", "1257": "A bill to promote the development of technologies which will enable fuel cells to use alternative fuel sources.", "1258": "To require the Secretary of Energy to study causes of the recent home heating fuel price spikes in the Northeast and to create a 10,000,000 barrel heating oil reserve in the Northeast.", "1259": "To improve the administration, management, and law enforcement capabilities of the Coast Guard, and for other purposes.", "1260": "Authorizing vessels of Canadian registry to transport iron ore between United States ports on the Great Lakes during 1952, and for other purposes.", "1261": "A bill to create an Office of Emergency Fuel Allocation, to authorize a system for the allocation of crude oil and refined petroleum products, and for other purposes.", "1262": "To amend the Federal Power Act to authorize a State to regulate the sale at wholesale of electric energy generated, transmitted, and distributed solely within that State, and for other purposes.", "1263": "A bill to amend the Controlled Substances Act and Controlled Substances Import and Export Act to provide mandatory minimum sentences for violations involving large quantities of marihuana, cocaine, and opium derivatives, and to establish conditions under which certain individuals may be denied bail.", "1264": "Providing for the collection of internal-revenue taxes and the administration of the internal-revenue laws by an agency independent of the Department of the Treasury", "1265": "A bill to conserve global bear populations by prohibiting the importation, exportation, and interstate trade of bear viscera and items, products, or substances containing, or labeled or advertised as containing, bear viscera, and for other purposes.", "1266": "To amend the Mutual Educational and Cultural Exchange Act of 1961 to provide that works of art and other materials temporarily imported to further the purposes of such act shall be immune from judicial process", "1267": "A bill to support the price of manufacturing milk at not less than 85 per centum of the parity for the marketing year 1971-1972", "1268": "A bill to extend the authorization for the Upper Delaware Citizens Advisory Council for an additional ten years.", "1269": "To amend the Social Security Act to require employers to make an approved basic health care plan available to their employees, to provide a family health insurance plan for low-income families not covered by an employer's basic health care plan, to facilitate provision of health services to beneficiaries of the family health insurance plan by health maintenance organizations, by prohibiting State law interference with such organizations providing such services, and for other purposes", "1270": "To amend section 319 of title 23, United States Code, relating to landscaping and scenic enhancement, to authorize planting trees along the rights-of-way of Federal-aid highways.", "1271": "To amend the Omnibus Crime Control and Safe Streets Act of 1968 to provide incentives to States and units of local government under the Edward Byrne Memorial Justice Assistance Grant Program for providing certain services to victims of sexual assault or rape, and for other purposes.", "1272": "To amend the provisions of the Perishable Agricultural Commodities Act, 1930, relating to practices in the marketing of perishable agricultural commodities", "1273": "To provide for the accelerated development of secondary school education in the natural sciences in the several States and Territories", "1274": "A bill to repeal section 14(b) of the National Labor Relations Act.", "1275": "A bill to create an additional judicial district for the State of Florida, to be known as the middle district of Florida.", "1276": "To provide for the release of water from the marketable yield pool of water stored in the Ruedi Reservoir for the benefit of endangered fish habitat in the Colorado River, and for other purposes.", "1277": "To amend the Military SelectiveService Act of 1967 in order to providefor the deferment of police officers fromtraining and service under such act.1582", "1278": "To-promote International trade in agricultural commodities, to combat hunger- and malnutrition, to further economic development, and for other purposes.", "1279": "A bill to preserve the effectiveness of Secret Service protection by establishing a protective function privilege, and for other purposes.", "1280": "A bill to extend the provisions of the Automobile Dealers Day in Court Act to manufacturers of and dealers in tractors, farm equipment, and farm implements, and for other purposes.", "1281": "To amend the Water Quality Act of 1987 relating to the treatment works being constructed by the International Boundary and Water Commission in San Diego, California.", "1282": "A bill to ensure that child employees of traveling sales crews are protected under the Fair Labor Standards Act of 1938.", "1283": "A bill to amend and clarify certain regulatory authorities of the Federal Government over work and activities in navigable waters.", "1284": "To repeal provisions of the Clean Air Act dealing with acid rain.", "1285": "To provide for the security of public transportation systems in the United States, and for other purposes.", "1286": "A bill to encourage farmers to establish shelterbelts for the purpose of reducing soil erosion, protecting crops and livestock, and establishing wildlife habitat areas.", "1287": "A bill to amend title IV of the Housing Amendments of 1955 with respect to the acquisition by the Secretary of Defense or his designee of certain housing constructed and insured under section 608 of the National Housing Act.", "1288": "A bill to promote energy conservation by providing for daylight saving time on an expanded basis, and for other purposes.", "1289": "To waive temporarily the Medicaid enrollment composition rule for certain health maintenance organizations.", "1290": "To facilitate the development of markets for alternative fuels and Ultra Low Sulfur Diesel fuel through research, development, and demonstration and data collection.", "1291": "A bill to authorize and direct the Secretary of Commerce to study applications of solar energy, to establish a system of grants for solar energy research, and to establish the Solar Energy Data Bank.", "1292": "A bill to amend the Migratory Bird Conservation Act to provide that no land contained in the national wildlife refuge system shall be sold, transferred for any other use, or otherwise disposed of without the approval of the Migratory Bird Commission, and ", "1293": "To amend the Child Abuse Prevention and Treatment Act to enable State child protective services systems to improve the identification and assessment of child victims of sex trafficking, and for other purposes.", "1294": "A bill to strengthen the security and the economic and cultural progress of the Nation through Federal assistance for improved student opportunities in mathematics, science, technology, and foreign languages in the elementary and secondary schools.", "1295": "To amend the act of October 9, 1940 ( 54 Stet. 1030. 1039 ), in order to increase the periods for which agreements for the operation of certain concessions may be granted at the Washington National Airport, and for other purposes", "1296": "To amend the Disaster Assistance Act of 1989 to provide assistance to agricultural producers suffering from earthquakes.", "1297": "A bill to amend section 306(a)(7) of the Consolidated Farm and Rural Development Act to modify the definition of the terms rural and rural area for certain purposes.", "1298": "A bill to provide sufficient funds for the research necessary to enable an effective public health approach to the problems of youth suicide and violence, and to develop ways to intervene early and effectively with children and adolescents who suffer depression or other mental illness, so as to avoid the tragedy of suicide, violence, and longterm illness and disability.", "1299": "To provide for coverage of hormone replacement therapy and alternative treatments for hormone replacement therapy (HRT) under the Medicare and Medicaid programs, group health plans and individual health insurance coverage, and other Federal health insurance programs.", "1300": "To amend section 302 (c) of the Labor-Management- Relations -Act, 1947, to permit the participation of retired employees of employers, employees of certain labor organizations and employees of certain trust funds as well as certain self-employed persons to participate as beneficiaries of welfare and pension trust funds", "1301": "To amend the Federal Crop Insurance Act to make available to producers a supplemental coverage option based on both an individual yield and loss basis and an area yield and loss basis in order to allow producers to cover all or a portion of their deductible under the individual yield and loss policy, to improve the accuracy of actual production history determinations, and for other purposes.", "1302": "To amend the Clean Air Act to provide that greenhouse gases are not subject to the Act, and for other purposes.", "1303": "A bill to ensure that the Federal Reserve conducts its policies to ensure long-term price stability and a low rate of inflation.", "1304": "A bill to require the Administrator of the Environmental Protection Agency to conduct a study of the measures available to reduce the adverse effect discarding or dumping of plastics on land and in the waters have on the environment, including the effects on fish and wildlife; to make recommendations for eliminating or lessening such adverse effects; and to require the Administrator of the Environmental Protection Agency to control the pollution of the environment caused by the discarding of plastics on the land and in water.", "1305": "To provide for the denial of bail to defendants in certain criminal cases involving crimes affecting the national security", "1306": "A bill to provide for repayment of certain sums advanced to providers of services under title XVIII of the Social Security Act.", "1307": "To recognize the importance of the Veterans' Administration Medical School Assistance and Health Manpower Training Act of 1972 in addressing shortfalls in the number of physicians and other health care professionals employed in the health care system of the Department of Veterans Affairs, to reauthorize the program of grants to medical schools affiliated with the Department, and for other purposes.", "1308": "To authorize an employer to pay a youth employment opportunity wage to a person under twenty years of age from May through September under the Fair Labor Standards Act of 1938, and for other purposes.", "1309": "A bill to repeal medicare catastrophic coverage provisions effective in years after 1989 and the supplemental medicare premium, and for other purposes.", "1310": "A bill to prohibit the Secretary of Energy from enforcing regulations pertaining to certain battery chargers.", "1311": "To amend the National Housing Act to eliminate interest rate ceilings on Federal Housing Administration and Veterans Administration insured Mortgages", "1312": "To amend the false claims provisions of title 31, United States Code, with respect to health care programs, and for other purposes.", "1313": "To permit State agreements for coverage under the hospital insurance program for the aged", "1314": "To amend the Clean Air Act relating to greenhouse gases, and for other purposes.", "1315": "To provide loans and grants for fire sprinkler retrofitting in nursing facilities.", "1316": "To authorize the construction of Department of Veterans Affairs medical facilities in Brevard County and Orange County, Florida, and for other purposes.", "1317": "A bill to amend certain provisions of the District of Columbia Code in order to eliminate their sex discriminatory aspects.", "1318": "To amend title 5, United States Code, to clarify laws relating to disclosure of records maintained on individuals.", "1319": "To provide for monitoring of aircraft air quality, to require air carriers to produce certain mechanical and maintenance records, and for other purposes.", "1320": "To provide for the control and prevention of erosion and sediment damage on rivers and streams, and for other purposes", "1321": "A bill to enhance the early warning reporting requirements for motor vehicle manufacturers.", "1322": "To permit the city of Philadelphia to further develop the Hog Island tract as an air, rail, and marine terminal by directing the Secretary of Commerce to release the city of Philadelphia from the fulfillment of certain conditions contained in the existing", "1323": "To provide for the training of nurses for the Armed Forces, governmental and civilian hospitals, health agencies, and defense industries, through grants to institutions providing such training and for other purposes", "1324": "A bill to amend the Outer Continental Shelf Lands Act of 1953 to expedite the delivery of oil and natural gas from OCS Lease Sale Number 40 to United States markets.", "1325": "A bill to amend section 213 of the Internal Revenue Code of 1954 to provide that certain expenses of child adoption shall be treated as medical expenses.", "1326": "To amend the Internal Revenue Code of 1954 .to provide for an amortization deduction and an increased tax credit for certain underground electrical transmission lines, and for other purposes", "1327": "A bill to encourage and assist private enterprise to provide adequate housing in urban poverty areas for low-income and lower middle income persons.", "1328": "A bill to establish a national program for research, development, and demonstration in nonnuclear energy sources and for the coordination and financial supplementation of Federal energy research and development.", "1329": "To ensure the protection of the coastal marine coral environment off the west coast of Puerto Rico by requiring the Director of the United States Geological Service to assess the environmental economic costs and benefits of relocating an existing wastewater treatment plant outfall to a deepwater location, and for other purposes.", "1330": "A bill to establish an office of rural health within the Department of Health, Education, and Welfare, and to assist in the development and demonstration of rural health care delivery models and components.", "1331": "To reduce the maximum speed limit on certain rural roads to 55 miles per hour, and for other purposes.", "1332": "To require certain improvements in the Transportation Security Administration's PreCheck expedited screening program, and for other purposes.", "1333": "A bill to provide an incentive for private industry to establish programs to educate and train individuals in needed skills by allowing a credit against income tax for the expenses of conducting such programs.", "1334": "To codify without substantive change laws related to transportation and to improve the United States Code.", "1335": "A bill to appropriate funds for basic scientific and medical research on acquired immune disorders and related opportunistic infections.", "1336": "A bill to authorize an appropriation for the reconstruction and repair of roads and other public facilities in the States of North Dakota and Minnesota which were destroyed or damaged by recent floods", "1337": "A bill to provide for the establishment of the Bandon Marsh National Wildlife Refuge, Coos County, State of Oregon.", "1338": "To permanently increase the conforming loan limits for the Federal Home Loan Mortgage Corporation and the Federal National Mortgage Association and the FHA maximum mortgage amount limitations.", "1339": "A bill to protect a womens right to determine whether and when to bear a child or end a pregnancy by limiting restrictions on the provision of abortion services.", "1340": "A bill to prevent foreign states that do business, issue securities, or borrow money in the United States, and fail to satisfy United States court judgments totaling $100,000,000 or more based on such activities, from inflicting further economic injuries in the United States, from undermining the integrity of United States courts, and from discouraging responsible lending to poor and developing nations by undermining the secondary and primary markets for sovereign debt.", "1341": "To provide an additional judge for the southern district of Florida", "1342": "To amend section 79 of the Internal Revenue Code of 1954 with respect to the amount includible in gross income by reason of group-term life insurance purchased for employees", "1343": "To amend title 23, United States Code, to allow a State to use as a credit toward the non-Federal share requirement for funds made available to carry out such title the Appalachian development highway system program.", "1344": "To amend the Federal Water Pollution Control Act (the Clean Water Act) to authorize appropriations in each of fiscal years 1994 through 1998 for the construction of wastewater treatment facilities to serve U.S. Colonias, to provide water pollution control in the vicinity of the international boundary between the United States and Mexico.", "1345": "A bill to authorize a feasibility study for additional hydro-electric capacity.", "1346": "A bill to provide assistance to the States for the construction, acquisition, and renovation of correctional institutions and facilities.", "1347": "A bill to promote the national security and stability of the economy of the United States by reducing the dependence of the United States on oil through the use of alternative fuels and new technology, and for other purposes.", "1348": "A bill to establish a Federal Courts Study Commission and a Federal Courts Advisory Council on the Future of the Judiciary.", "1349": "A bill to provide States with assistance to establish clearinghouses to locate missing children.", "1350": "To provide incentives for investment in research and development for new medicines, to enhance access to new medicines, and for other purposes.", "1351": "To establish a National Cancer Authority and to authorize international programs and joint ventures in order to conquer cancer at the earliest possible date", "1352": "To amend title 28, United States Code, to allow judges who are at least 62 years of age to retire if they have served for at least 25 years.", "1353": "To establish an immediate program to aid in reducing the public debt by providing that certain receipts from the sale of capital assets of the Government shall be used for such purpose", "1354": "A bill to provide for loans to individuals for the purpose of enabling them to obtain a college or university education.", "1355": "A bill to provide for a 5-year carryback of certain net operating losses and to suspend the 90 percent alternative minimum tax limit on certain net operating losses.", "1356": "A bill to authorize the promulgation of a model building code to enhance recycling and for other purposes.", "1357": "To .amend title XVIII of the Social .Security Act to permit payment thereunder, in the case of an individual otherwise eligible for home health services of the type which may be provided away from his home, .far the costs of transportation to and from the place where such services are provided", "1358": "A bill to authorize appropriations to carry out the Endangered Species Act of 1973, as amended, through fiscal year 1984.", "1359": "A bill establishing a program for the demonstration and development of technologies for commercial application through the Clean Coal Technology Reserve, and for other purposes.", "1360": "A bill to establish a Commission and Advisory International Rules of Judicial Procedure.", "1361": "A bill to prohibit any increase in fares charged by mass transmit systems for a 1-year period and to provide for grants to any mass transit system which may be adversely affected by such prohibition of fare increase.", "1362": "A bill to allow certain emergency relief amounts to be made available to the Federal Highway Administration to use for disasters occurring in calendar year 2013.", "1363": "A bill to authorize States to exempt certain nonprofit housing organizations from the licensing requirements of the S.A.F.E. Mortgage Licensing Act of 2008.", "1364": "A bill to reimburse certain persons recruited in the State of Wyoming in connection with the athletes in temporary employment as agricultural manpower program for certain travel and other expenses incurred by them while participating in such program", "1365": "To amend title 10, United States Code, to permit a Representative in Congress to nominate as a candidate to a service academy a person domiciled at any place in the State from which such Representative is elected", "1366": "To provide for the identification of certain dangerous railroad locations, and for the safety of passenger operations at such locations.", "1367": "A bill to amend the Social Security Act to encourage philanthropic support for nonprofit hospitals.", "1368": "To strengthen and improve Federal programs of assistance for preschool, elementary, and secondary education by combining and extending authorizations, by providing for effective State administration, and by authorizing a flexible program of grants on a continuing basis", "1369": "A bill to establish a National Infrastructure Fund to provide funds for interest-free loans to State and local governments for construction and improvement of highways, bridges, water supply and distribution systems, mass transportation facilities and equipment, and wastewater treatment facilities, and for other purposes.", "1370": "A bill to amend section 202 of the Clean Air Act with respect to motor vehicle emission standards.", "1371": "A bill to amend the act providing financial assistance to local educational agencies for the education of children of low-income families in order to provide financial assistance for the education of orphans and other children lacking parental support", "1372": "To implement a demonstration project under titles XVIII and XIX of the Social Security Act to examine the costs and benefits of providing payments for comprehensive coordinated health care services provided by purpose-built, continuing care retirement communities to Medicare beneficiaries.", "1373": "To amend the Railroad Retirement Act of 7937, as amended, so as to provide full annuities, at compensation of half salary or wages based oil the five highest years of earnings, for individuals who hate completed 35 years of service or have attained the ag", "1374": "A bill to govern the disclosure of certain financial information by financial institutions to government agencies, to protect the constitutional rights of citizens of the United States, and to prevent unwarranted invasions of privacy by prescribing procedures and standards governing disclosure of such information.", "1375": "A bill to require that certain complex diagnostic laboratory tests performed by an independent laboratory after a hospital outpatient encounter or inpatient stay during which the specimen involved was collected shall be treated as services for which payment may be made directly to the laboratory under part B of title XVIII of the Social Security Act.", "1376": "A bill to expand eligibility for the program of comprehensive assistance for family caregivers of the Department of Veterans Affairs, to expand benefits available to participants under such program, to enhance special compensation for members of the uniformed services who require assistance in everyday life, and for other purposes.", "1377": "A bill to provide for necessary beneficiary protections in order to ensure access to coverage under the Medicare part D prescription drug program.", "1378": "To ensure funding for sportfishing and boating safety programs funded out of the Highway Trust Fund through the end of fiscal year 2005, and for other purposes.", "1379": "A bill to extend the Commission on Civil Rights for five years, to authorize appropriations for the Commission, to effect certain technical changes to comply with other changes in the law, and for other purposes.", "1380": "A bill to amend section 29 of the Internal Revenue Code of 1986 to allow a credit for qualified fuels produced from wells drilled during 1997, and for other purposes.", "1381": "A bill to provide a Federal charter for the Federal Alcohol Corporation", "1382": "To protect American children and their families from the epidemic of gun violence by banning access to certain weapons, strengthening the Nations mental health infrastructure, and improving the understanding of gun violence.", "1383": "A bill to establish a pilot program for the tracking of medical wastes in the States of New York, New Jersey, and Connecticut.", "1384": "A bill to promote the development of affordable, quality rental housing in rural areas for low-income households.", "1385": "A bill to amend chapter 223, title 18, United States Code, to provide for the production of statements and reports of witnesses.", "1386": "To provide that members of the bar of the United States district court shall be eligible to practice before all administrative agencies", "1387": "To provide for improvement of field emergency medical services, and for other purposes.", "1388": "A bill to amend the Ocean Thermal Energy Conversion Act of 1980 to provide for additional authorizations, and for other purposes.", "1389": "To provide for the establishment of a National Rare-Earth Refinery Cooperative, and for other purposes.", "1390": "A bill to amend chapter 89 of title 5, United States Code, to provide improved health benefits for Federal employees", "1391": "To temporarily waive the Medicaid enrollment composition rule for D.C. Health Cooperative.", "1392": "To amend the Exchange Rates and International Economic Policy Coordination Act of 1988 to clarify the definition of manipulation with respect to currency, and for other purposes.", "1393": "A bill to convey to the Fish and Game Commission of the State of Utah certain lards designated as the Bear Lake Fish Cultural Station", "1394": "A bill to establish a national teaching fellowship program to encourage individuals to enter and remain in the field of teaching at public elementary schools and secondary schools.", "1395": "A bill to authorize the Moving to Work Charter program to enable public housing agencies to improve the effectiveness of Federal housing assistance, and for other purposes.", "1396": "A bill to amend section 1306(a) of the Federal Aviation Act of 1958 to authorize the investment of the war risk insurance fund in securities of, or guaranteed by, the United States.", "1397": "To enable America's schools to use their computer hardware to increase student achievement and prepare students for the 21st century workplace, and for other purposes.", "1398": "To facilitate planning, construction, and operation of a secure national clean energy grid.", "1399": "A bill to amend section 701 of the Housing Act of 1954 to provide grants for continuing support of metropolitan planning, and for other purposes.", "1400": "A bill to require the Comptroller General of the United States to submit to Congress a report on the entrepreneurial impact of technology transfer at the National Laboratories.", "1401": "To establish the Senator Paul Simon Study Abroad Foundation under the authorities of the Mutual Educational and Cultural Exchange Act of 1961.", "1402": "To amend Public Law 447, Seventy ninth Congress, second session, an act to authorize the course of instruction at the United States Military Academy to be given to not exceeding 20 persons at a time from the American Republics, other than the United State", "1403": "To establish the Rural Electrification Administration as an independent agency, and for other purposes", "1404": "A bill to provide interim relief to the Farm Credit System, and for other purposes.", "1405": "To authorize the establishment of an older worker community service program", "1406": "A bill to make available funds from the Emergency Economic Stabilization Act of 2008 for funding pension benefits with respect to former employees of Delphi Corporation.", "1407": "To authorize the Secretary of the Interior to facilitate the development of hydroelectric power on the Diamond Fork System of the Central Utah Project.", "1408": "To authorize funding for the development, launch, and operation of a Synthetic Aperture Radar satellite in support of a national energy policy.", "1409": "To strengthen and improve the Natural Gas Pipeline Safety Act of 1968, and for other purposes.", "1410": "To authorize appropriations for fiscal years 1998 and 1999 for the Coast Guard, and for other purposes.", "1411": "A bill to conform the provisions of section 802 of the Merchant Marine Act, 1936, with those of section 510 thereof as amended by Public Law 86-575, approved July 5, 1960, and for other purposes.", "1412": "A bill to provide for quality assurance and utilization control in home health care under the medicare, medicaid and social services programs in accordance with a plan to be developed by a commission specifically established for that purpose.", "1413": "A bill to provide for research and education to improve screening, detection and diagnosis of prostate cancer.", "1414": "A bill to provide for the establishment of a Digital Opportunity Investment Trust.", "1415": "To establish a program within the National Oceanic and Atmospheric Administration and the United States Coast Guard to help identify, determine sources of, assess, reduce, and prevent marine debris and its adverse impacts on the marine environment and navigation safety, in coordination with non-Federal entities, and for other purposes.", "1416": "A bill to facilitate the objective of a national background check on handgun buyers.", "1417": "To establish a commission to study the use of chemicals in peace and war", "1418": "A bill to prohibit the implementation of certain regulations of the Secretary of Health and Human Services and the Secretary of Agriculture respecting irradiated foods, to amend the Federal Food, Drug, and Cosmetic Act to prescribe labels for irradiated food, and for other purposes.", "1419": "A bill to authorize appropriations for the fiscal years 1979 and 1980 for certain maritime programs of the Department of Commerce, and for other purposes.", "1420": "To amend section 902 of the Internal Revenue Code of 1954 with respect to foreign taxes paid by certain predecessor corporations", "1421": "A bill to amend and extend provisions of law concerned with nurse training, and for other purposes.", "1422": "A bill to provide for the establishment of clean technology consortia to enhance the economic, environmental, and energy security of the United States by promoting domestic development, manufacture, and deployment of clean technologies.", "1423": "Making an appropriation to the Office of Education to carry out the Bilingual Education Act for the fiscal year ending June 30, 1970", "1424": "To require certain standards and enforcement provisions to prevent child abuse and neglect in residential programs, and for other purposes.", "1425": "To revive the Alabama studies on juvenile delinquency, and for other purposes", "1426": "To clarify the jurisdiction of the Tax Court in abnormally relief cases arising under the World War II Excess Profits Tax Act.", "1427": "To provide for the debarment or suspension from Federal procurement and nonprocurement activities of persons that violate certain labor and safety laws.", "1428": "To provide that State laws or regulations with respect to certain environmental matters shall not be preempted or nullified by Federal law until such time as regulations in lieu of such State laws or regulations are put into effect by or pursuant to Federal law", "1429": "A bill to prohibit the provision of Federal funds to State and local governments for payment of obligations, to prohibit the Board of Governors of the Federal Reserve System from financially assisting State and local governments, and for other purposes.", "1430": "A bill to establish the Green River National Wildlife Refuge in the State of Kentucky.", "1431": "To promote timely exploration for geothermal resources under existing geothermal leases, and for other purposes.", "1432": "To amend the Public Health Service Act to provide waivers relating to grants for preventive health measures with respect to breast and cervical cancers.", "1433": "A bill to provide an additional 3-year period before States must begin repayment of outstanding advances to their unemployment compensation accounts.", "1434": "To amend the Emergency Unemployment Compensation Act of 1991 to increase the number of weeks of eligibility for emergency unemployment compensation.", "1435": "A bill to improve the administration of the National Oceanic and Atmospheric Administration.", "1436": "A bill to amend. section 1621 of title 18 of the United States Code to provide for degrees of perjury, and for other purposes.", "1437": "To provide for grants to States for maternal and child health and crippled childrens services", "1438": "A bill to establish a task force for the purpose of establishing similar procedures to be used by the Federal Housing Administration and the Farmers Home Administration in appraising and inspecting homes.", "1439": "A bill to provide for the regulation of rates or charges by certain state-owned carriers in the foreign commerce of the United States, and for other purposes.", "1440": "To provide for deficit reduction and achieve a balanced budget by fiscal year 2002.", "1441": "To provide grants to States to assist in the incarceration of violent repeat offenders and to manage the problems associated with overcapacity in correctional facilities and programs and to support comprehensive programs that will reduce the rate of recidivism.", "1442": "A bill to transfer and reorganize all existing law enforcement functions of the Federal Government related to trafficking in narcotics and dangerous drugs in a Division of Narcotics and Dangerous Drugs established in the Federal Bureau of Investigation.", "1443": "To terminate the effectiveness of certain amendments to the foreign repair station rules of the Federal Aviation Administration, and for other purposes.", "1444": "A bill to ensure States receive adoption incentive payments for fiscal year 2008 in accordance with the Fostering Connections to Success and Increasing Adoptions Act of 2008.", "1445": "A bill to enhance the value of the naval petroleum reserves by improving the production and pricing mechanisms applicable to such reserves.", "1446": "To reauthorize and improve the national marine sanctuaries program, and to establish the Coastal and Ocean Sanctuary Foundation.", "1447": "To facilitate the consolidation and rationalization of the steel industry, and for other purposes.", "1448": "To provide the same life tenure and retirement rights for judges hereafter appointed to the U.S. District Court for the District of Puerto Rico as the judges of all other U.S. district courts now have", "1449": "A bill to provide for a parkway connection between Mount Vernon and Woodlawn Plantations, in the State of Virginia, and for other purposes.", "1450": "To amend title 28, United States Code, to provide an Inspector General for the judicial branch, and for other purposes.", "1451": "A bill to authorize the Housing and Home Finance Administrator to make certain modifications in the terms of sale of the Oakdale Residents Cooperative Housing Project of Royal Oak Township, Oakland County, Mich.", "1452": "A bill to prohibit the sale of tobacco products through the Internet or other indirect means to underage individuals, to ensure the collection of all cigarette taxes, and for other purposes.", "1453": "Making supplemental appropriations for investments in transportation infrastructure, and for other purposes.", "1454": "To establish rules for the payment of damage awards for future losses in certain health care liability actions.", "1455": "A bill to amend section 114 of title 18 of the United States Code to make the killing, assaulting, or intimidating of any officer or employee of the Federal Communications Commission performing investigative, inspection, or law enforcement functions a Federal criminal offense.", "1456": "To amend title 18, entitled Crimes and Criminal Procedure, and. title 28, entitled Judiciary and Judicial Procedure, of the United States Code, and for other purposes", "1457": "To amend the Agricultural Act of 1949 to provide for the increased use of rice by the Armed Forces and in certain federally operated hospitals", "1458": "To amend title 38 of the United States Code so as to permit the payment of dependency and indemnity to- certain married children of deceased veterans who are attending educational Institutions", "1459": "To protect, conserve, and restore native fish, wildlife, and their natural habitats on Federal lands and non-Federal lands through cooperative, incentive-based grants to control, mitigate, and eradicate harmful nonnative species, and for other purposes.", "1460": "A bill to establish the Department of the Environment, provide for a Bureau of Environmental Statistics and a Presidential Commission on Improving Environmental Protection, and for other purposes.", "1461": "A bill to facilitate Federal ship mortgage insurance for drydocks and drilling vessels", "1462": "To provide for the establishment of a new fish hatchery on or near the Cumberland River in the eastern part of the State of Kentucky", "1463": "To reform Federal budget procedures to restrain congressional spending, foster greater oversight of the budget, account for accurate Government agency costs, and for other purposes.", "1464": "To designate the bridge on United States Route 231 which crosses the Ohio River between Maceo, Kentucky, and Rockport, Indiana, as the William H. Natcher Bridge.", "1465": "To amend section 4216 of the Internal Revenue Code of 1954 with respect to the exclusion of certain local advertising charges from sales price for the purpose of computing manufacturers excise taxes", "1466": "Governing the hospitalization of the mentally ill of Alaska, and authorizing the Secretary of the Interior to locate, establish, construct, equip, and operate a hospital for the mentally ill of Alaska, and for other purposes", "1467": "To provide that, if emergency unemployment compensation is extended, prospective benefits shall be subject to gradual reduction.", "1468": "To authorize the issuance of United States Defense of Freedom Bonds to aid in funding of the war against terrorism, and for other purposes.", "1469": "A bill to extend the Federal Energy Administration for 11 days.", "1470": "To strengthen the agricultural economy to help to achieve a fuller and more effective use of food abundances to provide for improved levels of nutrition among economically needy households through a cooperative Federal-State program of food assistance to ", "1471": "A bill to establish United States governmental policy with regard to respect for human life.", "1472": "A bill to provide that Federal assistance under the Federal Housing Administration will not be denied for housing solely on the basis that such housing is located in an area identified by a Federal agency as an area subject to the highest noise-level resulting from the air transportation conducted in connection with the operation of a nearby civilian or military airport, and for other purposes.", "1473": "To establish an oil price-gouging victims fund; and for other purposes.", "1474": "A bill to authorize the Council on Environmental Quality to conduct studies and make recommendations respecting the reclamation and recycling of material from solid wastes, to extend the provisions of the Solid Waste Disposal Act, and for other purposes", "1475": "To amend title 10, United States Code, to restore the eligibility of former members of the uniformed services who are entitled to retired or retainer pay or equivalent pay, or a dependent of such members, and who are eligible for hospital insurance benefits under part A of title XVIII of the Social Security Act (42 U.S.C. 1395 et seq.) for prescription pharmaceuticals through the military medical system.", "1476": "To authorize the Rural Electrification Administration to borrow money, and for other purposes.", "1477": "To improve the security of the Nation's ports by providing Federal grants to support Area Maritime Transportation Security Plans and to address vulnerabilities in port areas identified in approved vulnerability assessments or by the Secretary of Homeland Security.", "1478": "To amend the Food, Agriculture, Conservation, and Trade Act of 1990 to prohibit the Secretary of Agriculture from prescribing or collecting fees to cover the cost of providing certain agricultural quarantine and inspection services at a site within the Commonwealth of Puerto Rico and the State of Hawaii, and for other purposes.", "1479": "To amend the Federal Water Pollution Control Act to preserve the authority of each State to make determinations relating to the States water quality standards, and for other purposes.", "1480": "A bill to revise the provisions of the Public Health Service Act relating to health planning.", "1481": "To amend section 2 of the National Housing Act to authorize the insurance of loans made to finance the installation of irrigation systems and facilities", "1482": "To amend title 18, United States Code, to strengthen penalties for child pornography offenses, child sex trafficking offenses, and other sexual offenses committed against children.", "1483": "To enable the States to make more adequate provision for special services required for the education of physically handicapped children of school age, and for other purposes", "1484": "To provide a program of pollution control in the river basins and waterways of the United States through comprehensive planning and financial assistance to local governments and regional water basin management associations for the construction of waste treatment facilities", "1485": "To prohibit the publication by the Government of the United States of any prediction with respect to apple prices", "1486": "A bill to establish a comprehensive program of home care service for aged and disabled individuals, to provide for the creation of community home care centers and State home care agencies as part of a new administrative structure for the organization and ", "1487": "A bill to authorize a national program of ground water research.", "1488": "To require that impact resistant eyeglasses be issued under the medical program for members of the uniformed services on active duty", "1489": "To authorize the extension of conservation reserve contracts, and for other purposes", "1490": "To amend the Rail Passenger Service Act to authorize appropriations for the National Railroad Passenger Corporation, and for other purposes.", "1491": "To establish a Border Enforcement Security Task Force program to enhance border security by fostering coordinated efforts among Federal, State, and local border and law enforcement officials to protect United States border cities and communities from trans-national crime, including violence associated with drug trafficking, arms smuggling, illegal alien trafficking and smuggling, violence, and kidnapping along and across the international borders of the United States, and for other purposes.", "1492": "A bill to establish a fuel stamp program which will provide fuel stamps to certain low-income elderly households to help meet fuel costs incurred by such households.", "1493": "To establish a Tick-Borne Disorders Advisory Committee, and for other purposes.", "1494": "To make section 1952 of title 18, United States Code, applicable to travel in aid of arson", "1495": "To prevent the Patient Protection and Affordable Care Act from establishing health care provider standards of care in medical malpractice or medical product liability cases, and for other purposes.", "1496": "A bill to provide for an advisory referendum with respect to a balanced Federal budget.", "1497": "To amend the Valeh-Henley Act to make it apply in the same fashion to males and females", "1498": "To penalize States that prohibit oil and gas exploration within their borders by denying them the use of any oil or natural gas produced domestically elsewhere.", "1499": "To amend chapter 83 of title 5, United States Code, to eliminate the survivorship reduction during periods of nonmarriage of certain annuitants", "1500": "To amend the National Labor Relations Act to apply the protections of the Act to teaching and research assistants.", "1501": "To amend the Public Health Service Act to extend the program of grants for preventive health services with respect to tuberculosis, and for other purposes.", "1502": "To amend the Energy Policy and Conservation Act to help reduce the oil prices to consumers, to reduce the cost of petroleum acquisition for the Strategic Petroleum Reserve, to better match the composition of the Strategic Petroleum Reserve to refinery requirements in the United States, to fund energy research and development, and for other purposes.", "1503": "To amend the Railroad Unemployment Insurance Act to eliminate the 4-day waiting period applicable to sickness benefits during an individual's second or subsequent registration period within any benefit year, and to waive the 7-day waiting period applicable to sickness benefits during an individual's first such period where the sickness (and any required waiting period) began fn the preceding benefit year", "1504": "To provide financial assistance to certain wives of servicemen for the expenses of childbirth", "1505": "To amend title 5, United States Code, to remove persons from Federal employment who engage in unlawful acts connected with civil disorders, and for other purposes", "1506": "To confer jurisdiction upon United States district courts to adjudicate certain claims of Federal employees for the recovery of fees, salaries, or compensation", "1507": "A bill to clarify that the anti-kickback laws apply to qualified health plans, the federally-facilitated marketplaces, and other plans and programs under title I of the Patient Protection and Affordable Care Act, and for other purposes.", "1508": "To amend the Merchant Marine Act, 1936, to preserve the percentage of certain agricultural commodities exported from Great Lake ports.", "1509": "To amend the Social Security Act to improve the quality of long-term care insurance and to protect consumers through the establishment of national standards, and for other purposes.", "1510": "To amend title 49, United States Code, to increase the amount of civil penalties and criminal fines for violations of requirements prohibiting the transportation of chemical oxygen generators on passenger-carrying aircraft in air commerce.", "1511": "To establish the National Center for Adult Literacy, and for other purposes.", "1512": "A bill to provide for the conversion of temporary judgeships to permanent judgeships, and for other purposes.", "1513": "To amend the Internal Revenue Code of 1954 to restore to individuals who have attained the age of 65 the right to deduct all expenses for their medical care, and for other purposes", "1514": "To provide for a service to assist medicare beneficaries in receiving services under health insurance programs.", "1515": "To prohibit discrimination on the basis of military service, and for other purposes.", "1516": "A bill to provide that claims of the United States to certain documents relating to Franklin Delano Roosevelt shall be treated as waived and relinquished in certain circumstances.", "1517": "To amend chapter 171 of title 28, United States Code, to allow claims against the United States under that chapter for damages arising from certain negligent medical care provided members of the Armed Forces.", "1518": "To provide for the protection and conservation of national soil, water, and forest resources. and to provide an adequate, balanced, and orderly flow of agricultural commodities in interstate and foreign commerce, and for other purposes.", "1519": "A bill amending title I of the Social Security Act so as to require that, in the administration of State program for medical assistance for the aged established pursuant to such title, a statement of a claimant for assistance under any such program with r", "1520": "To amend title 5, United States Code, to limit the number of local wage areas allowable within a General Schedule pay locality.", "1521": "To make permanent the authority to transfer revenues attributable to the taxation of certain railroad retirement benefits to the Railroad Retirement Account.", "1522": "To amend section 4491 of the Internal Revenue Code of 1954 to provide that the weight portion of the excise tax on the use of civil aircraft shall apply to piston-engined aircraft only if they have a maximum certificated takeoff weight of more than 8,500 pounds", "1523": "A bill to notify workers who are at risk of occupational disease in order to establish a system for identifying and preventing illness and death of such workers, and for other purposes.", "1524": "A bill to repeal the Gun Control Act of 1968, to reenact the Federal Firearms Act, to make the use of a firearm to commit certain felonies a Federal crime where that use violates State law.", "1525": "To amend section 114 of the Federal-Aid Highway Act of 1958 ,to state the policy of Congress with respect to reimbursement for certain highways on the Interstate System", "1526": "To provide for the issuance of a Multinational Species Conservation Funds Semipostal Stamp.", "1527": "A bill to require that dairy products which are imported be labeled to disclose such fact.", "1528": "A bill to provide for the control and eradication of noxious weeds, and the regulation of the movement in interstate or foreign commerce of noxious weeds and otential carriers thereof.", "1529": "A bill to provide for the termination of Government operations which are in competition with private enterprise", "1530": "A bill for the more economical operation of the general supply fund of the Bureau of Federal Supply, Department of the Treasury, and for other purposes", "1531": "To authorize the Secretary of Commerce to approve a bridge on Interstate Highway 29 at Sioux City, Iowa, as part of the National System of Interstate and Defense Highways", "1532": "To amend section 863 of the Internal Revenue Code of 1954 with respect to exemption from taxation of earnings of ships under foreign flag", "1533": "To provide additional means of securing and protecting the civil rights of persons within the jurisdiction of the United States", "1534": "A bill to provide for the care and custodyof dangerously insane persons acquitted of offenses against the United States solely by reason of insanity.", "1535": "A bill to amend the Adult Education Act of 1966 in order to revise the allotment formula under the provisions of Such act.", "1536": "A bill to amend the Emergency Jobs and Unemployment Assistance Act of 1974 so as to increase from 26 to 39 the maximum number of weeks for which an individual may receive unemployment assistance under the special unemployment assistance program established by title II of such act.", "1537": "A bill to establish a pilot program to hire individuals with alternative educational experience.", "1538": "A bill to amend the Food Security Act of 1985 to increase the number of acres placed in the conservation reserve program, and for other purposes.", "1539": "A bill to require public hearings on certain regulations promulgated by the Secretary of Labor.", "1540": "A bill to improve the administrative efficiency and effectiveness of the Nation's abuse and neglect courts and the quality and availability of training for judges, attorneys, and volunteers working in such courts, and for other purposes consistent with the Adoption and Safe Families Act of 1997.", "1541": "A bill to allow payment to be made under part B of medicare to freestanding radiation therapy centers for services provided to hospital inpatients.", "1542": "A bill to encourage the development, improvement and operation of domestic refinery capabilities, and for other purposes.", "1543": "A bill to reimburse the States for all unemployment compensation paid to individuals whose unemployment is attributable to the oil crisis.", "1544": "A bill to promote public health and welfare by expanding and improving the family planning services and population sciences research activities of the Federal Government.", "1545": "To confer, jurisdiction upon the Court of Claims of the United States to hear, determine, and render judgment upon the claims of Andrew Johnson, Alexander H. Tongue; James F. Sirlouis, James W. Dixon, J. Frank Tongue, Thomas E. Wroten, Halvor H. Hellen, G", "1546": "A bill to improve mental health services at all facilities of the Department of Veterans Affairs.", "1547": "To remove the $10 million limitation on programs carried out under section 16(e) (7) of the Soil Conservation and Domestic Allotment Act or 1964 and subsequent calendar years", "1548": "A bill to provide a remedy for sex and marital status discrimination by the insurance business with respect to the availability and scope of insurance coverage for women.", "1549": "To provide for the appointment. of a district judge for the northern district of California", "1550": "A bill to repeal the recently enacted provisions of title II of the Social Security Act relating to computation of benefits of individuals receiving pensions from noncovered employment.", "1551": "A bill to require that rail and motor carriers provide timely notice to the chief executive of any State within which hazardous materials are scheduled to be transported or shipped.", "1552": "To amend title II of the Higher Education Act of 1965 to increase teacher familiarity with the educational needs of gifted and talented students, and for other purposes.", "1553": "To amend the Hazardous Liquid Pipeline Safety Act of 1979 to require the Secretary of Transportation to issue regulations to ensure the safety of underwater hazardous liquid pipelines, to identify chronic violators of hazardous liquid pipeline regulations, to enhance inspection, monitoring, and enforcement activities, and for other purposes.", "1554": "A bill to provide for the payment of impact aid to certain school districts.", "1555": "A bill to amend titles 10, 32, and 37, United States Code, to authorize medical and dental care, and related benefits for Reservists and members of the National Guard under certain conditions, and for other purposes.", "1556": "A bill to establish the National Commission on Civil Justice Reform.", "1557": "A bill to amend the Nuclear Waste Policy Act of 1982 to allow commercial nuclear utilities that have contracts with the Secretary of Energy under section 302 of that Act to receive credits to offset the cost of storing spent fuel that the Secretary is unable to accept for disposal.", "1558": "A bill to authorize construction of the project for navigation at Gulfport Harbor, Mississippi.", "1559": "To make available half the revenues from the excise tax on pistols and revolvers to the States for target ranges and firearms safety training programs", "1560": "A bill to require advance notification of plant closings and mass layoffs, and for other purposes.", "1561": "To designate a national network of essential rail lines; to authorize the Secretary of Transportation to acquire, rehabilitate, and maintain rail lines; to require minimum standard of maintenance for rail lines; to provide financial assistance to the States for rehabilitation of rail lines.", "1562": "A bill to prevent the use of automatic adjustment clauses by Federally regulated gas and electric utilities.", "1563": "To direct the Secretary of Transportation to make grants to Orange County, California, for intercounty express bus service, and for other purposes.", "1564": "To facilitate the development of an integrated, nationwide telecommunications system dedicated to instruction by guaranteeing the acquisition of a communications satellite system used solely for communications among State and local instructional institutions and agencies and instructional resource providers.", "1565": "A bill to prohibit the expenditure of Federal funds for abortion, and for other purposes.", "1566": "To amend section 7701 of the Internal Revenue Code of 1954 to clarify the tax status of certain professional associations and corporations formed under State law", "1567": "To make it it a Federal crime to kill or assault a fireman or law enforcement officer engaged in the performance of his duties when the offender travels in interstate commerce or uses any facility of interstate commerce for such purpose", "1568": "A bill to require criminal background checks on all firearms transactions occurring at events that provide a venue for the sale, offer for sale, transfer, or exchange of firearms, and for other purposes.", "1569": "A bill to amend Part L of the Omnibus Crime Control and Safe Streets Act of 1968.", "1570": "To provide grants to local educational agencies to enable the agencies to recruit and retain qualified school administrators.", "1571": "To amend title 38, United States Code, to enhance the authority of the Department of Veterans Affairs to recover from third parties costs of medical care furnished to veterans and other persons by the Department.", "1572": "A bill to improve safety and preparedness surrounding offshore energy production and to respond to the blowout and explosion of the mobile offshore drilling unit Deepwater Horizon that occurred on April 20, 2010, and resulting hydrocarbon releases into the environment, and for other purposes.", "1573": "A bill to amend the Agricultural Act of 1970, to prohibit restrictions on the export of certain agricultural commodities.", "1574": "A bill to amend the Internal Revenue Code to provide renters with a credit against income tax.", "1575": "A bill to establish, within the National Oceanic and Atmospheric Administration, an integrated and comprehensive ocean, coastal, Great Lakes, and atmospheric research and environmental information sharing program to support renewable energy, and for other purposes.", "1576": "To amend the Civil Rights Act of 1964 to provide for freedom of choice in student assignments in public schools.", "1577": "A bill to establish administrative law judges involved in the appeals process provided for under the medicare program under title XVIII of the Social Security Act within the Department of Health and Human Services, to ensure the independence of, and preserve the role of, such administrative law judges, and for other purposes.", "1578": "To amend section 138 of the Legislative Reorganizatiton Act of 1946 so as to provide for the reduction of the public debt by at least 10 percent of the estimated overall Federal receipts for each fiscal year", "1579": "Concerning legal counsel of recipients of loans under programs administered by the Department of Agriculture", "1580": "To improve the United States Code by enacting into law title 28, entitled Internal Revenue.", "1581": "A bill to amend section 13a(1) of the Interstate Commerce Act, as amended, relative to the discontinuance or change of the operation of certain trains or ferries.", "1582": "To provide for an appeal to the Supreme Court of the United States from the decision of the Court of Claims in a suit instituted by the Mount Vernon, Alexandria & Washington Railway Co", "1583": "To limit the effect of legal releases in certain civil actions, and for other purposes.", "1584": "Relative to granting and giving instructions in civil and criminal cases in the district courts of continental United States", "1585": "To amend the General Education Provisions Act to clarify the definition of a student regarding family educational and privacy rights.", "1586": "To amend the act of August 7, 1957 (70 Stat. 1115), as amended, providing for a Great Plains conservation program", "1587": "A bill to provide education opportunity grants to low-income secondary school students.", "1588": "To provide a voluntary national insurance program for elk affected with, or exposed to, tuberculosis.", "1589": "To amend the Natural Gas Act, to confer upon the Federal Power Commission authority to exercise control over the allocation of the available supply of natural gas moving in interstate commerce during periods of shortage or under certain other circumstance", "1590": "A bill to authorize the modification of the existing project for Port Angeles Harbor in the State of Washington in order to provide for a mooring basin", "1591": "To provide for the establishment of a Veterans Administration hospital in Queens, Suffolk, or Nassau County, NY", "1592": "To protect the right to vote in Federal elections free from arbitrary discrimination by literacy tests or other means", "1593": "A bill to provide a supplementary housing allowance to supplemental security income recipients.", "1594": "A bill to permit relatives of Medicaid eligible individuals residing in nursing homes to contribute voluntarily to a State fund for the provision of such care.", "1595": "To provide for a research project in the Salton Sea area of Southern California regarding an enhanced evaporation system for saline water.", "1596": "To authorize appropriations for fiscal years 1992 and 1993 for certain maritime programs of the Department of Transportation, and for other purposes.", "1597": "To continue for a temporary period the existing interest equalization tax", "1598": "To amend the Internal Revenue Code of 1986 for one year the credit for energy-efficient new homes.", "1599": "Making an additional appropriation to carry out the provisions of the Rural Electrification Act of 1936, as amended, for the fiscal year ending June 30, 1948", "1600": "To amend the Public Health Service Act with regard to research on asthma, and for other purposes.", "1601": "To provide for the compensation of persons injured by certain criminal acts", "1602": "A bill to establish a health information technology grant program for hospitals and for skilled nursing facilities and home health agencies, and to require the Secretary of Health and Human Services to establish and implement a methodology under the medicare program for providing hospitals with reimbursement for costs incurred by such hospitals with respect to information technology systems.", "1603": "To transfer certain programs within the Department of Agriculture to a newly established Rural Development Administration, and for other purposes.", "1604": "A bill to amend the black lung benefits provisions of the Federal Coal Mine Health and Safety Act of 1969 to extend those benefits to miners who incur silicosis in iron mines.", "1605": "To repeal the proviso against the filling of the vacancy in the office of district judge for the eastern and western districts of Missouri", "1606": "To amend section 700 of title 18 of the United States Code to provide penalties for violations of the flag code", "1607": "A bill to decrease the deficit by realigning, consolidating, disposing, and improving the efficiency of Federal buildings and other civilian real property, and for other purposes.", "1608": "A bill to clarify the status of certain waters in the State of New Hampshire for the purposes of the Federal Boat Safety Act of 1971.", "1609": "A bill to authorize appropriations for activities under the Federal Fire Prevention and Control Act of 1974.", "1610": "To amend the Solid Waste Disposal Act to authorize the Environmental Protection Agency to award grants to groups for technical assistance to oppose the issuance of permits under that Act.", "1611": "To provide incentives for the development of qualified infectious disease products.", "1612": "To promote the sharing of personnel between Federal law enforcement agencies and other public law enforcement agencies, and for other purposes.", "1613": "A bill to provide for enhanced safety, public awareness, and environmental protection in pipeline transportation, and for other purposes.", "1614": "To authorize payments to the public school district or districts serving the Fort Peck project, Montana, for the education of dependents of persons engaged on that project", "1615": "To protect game and wildlife resources by prohibiting the use of lead shot for hunting on public lands", "1616": "A bill to establish a program of Federal assistance to provide relief from energy emergencies and energy disasters.", "1617": "A bill to provide the American consumer the assurance that foreign dairy products marketed in the United States meet minimum standards of quality by requiring the inspection of these products at the U. S. ports of entry, at the foreign milk processing plants which provide dairy products for export to the United States, and at the foreign dairy farms which supply milk in foreign milk processing plants for the production of dairy products to be exported to the United States.", "1618": "A bill to prohibit the exportation of fertilizer from the United States until the Secretary of Agriculture determines that an adequate domestic supply of fertilizer exists.", "1619": "To assist distressed cities with large, abandoned factories and hazardous waste sites.", "1620": "To establish a meaningful opportunity for parole or similar release for child offenders sentenced to life in prison, and for other purposes.", "1621": "A bill to extend through fiscal year 1974 certain expiring appropriations authorizations in the Public Health Service Act, the Community Mental Health Centers Act, and the Development Disabilities Services and Facilities Construction Act, and for other purposes.", "1622": "To amend the Public Health Service Act to ensure that victims of public health emergencies have meaningful and immediate access to medically necessary health care services.", "1623": "A bill to restate, with greater emphasis, the intent of Congress to provide equal employment opportunities without regard to an individual's race, color, religion, sex, or national origin.", "1624": "To amend title 23, United States Code, to establish a minimum blood alcohol concentration level for individuals who are less than 21 years of age.", "1625": "A bill to require certain disclosures of financial information to expose espionage activities by foreign agents in the United States.", "1626": "A bill to provide for advance consultation with the Fish and Wildlife Service and with State wildlife agencies before the beginning of any Federal program involving the use of pesticides or other chemicals designed for mass biological controls.", "1627": "A bill to allow an earlier start for State health care coverage innovation waivers under the Patient Protection and Affordable Care Act.", "1628": "A bill to accelerate the formation of the investment capital required to expand both job opportunities and productivity in the private sector of the economy.", "1629": "A bill to amend the Voting Rights Act of 1970 to prohibit the States from denying the right to vote in Federal elections to former criminal offenders who have not been convicted of any offense related to voting or elections and who are not confined in a correctional institution.", "1630": "To provide for the construction of a Veterans Administration hospital in Queens County, N. Y", "1631": "To establish an industrial personnel security program, to coordinate the administration of personnel loyalty and security programs and to prescribe administrative procedures for the hearing and review of cases arising under such programs", "1632": "A bill to provide that oil and gas from Federal lands, including the Outer Continental Shelf, shall be produced by private persons under contract with the United States and marketed by the United States.", "1633": "To authorize the Secretary of Agriculture to. utilize the .columns removed from the east central portico of the Capitol in an architecturally appropriate manner in the National Arboretum", "1634": "A bill to amend the Emergency Unemployment Compensation Act of 1974 to provide that compensation payable to an individual thereunder shall be reduced (but not below zero) by the amount of periodic benefits payable to such individual under a pension system", "1635": "To ensure that the courts of the United States may provide an impartial forum for claims brought by United States citizens and others against any railroad organized as a separate legal entity, arising from the deportation of United States citizens and others to Nazi concentration camps on trains owned or operated by such railroad, and by the heirs and survivors of such persons, and for other purposes.", "1636": "To amend the Internal Revenue Code of 1954 to defer recognition of gain in certain liquidations", "1637": "A bill to establish and maintain a wildlife global animal information network for surveillance internationally to combat the growing threat of emerging diseases that involve wild animals, such as bird flu, and for other purposes.", "1638": "To authorize States to exempt certain nonprofit housing organizations from the licensing requirements of the S.A.F.E. Mortgage Licensing Act of 2008.", "1639": "To make changes in Federal juvenile justice proceedings, and to foster youth development and prevent juvenile crime and delinquency.", "1640": "To establish a comprehensive interagency response to reduce lung cancer mortality in a timely manner.", "1641": "A bill to amend the Radiation Exposure Compensation Act to improve compensation for workers involved in uranium mining, and for other purposes.", "1642": "A bill to assist local governments and States in assessing and remediating brownfield sites, increase fairness and reduce litigation, and for other purposes.", "1643": "To ensure continued availability of access to the Federal student loan program for students and families.", "1644": "To terminate the Transportation Enhancement Program and transfer the funding dedicated to such program to carry out the most critical emergency transportation projects identified by the Secretary of Transportation, after consultation with State and local transportation officials.", "1645": "A bill to provide for the registration sad regulation of oil and gas programs, and for other purposes", "1646": "To amend title 37, United States Code, to provide flexible spending arrangements for members of the uniformed services, and for other purposes.", "1647": "A bill to provide that income derived by tax-exempt organizations from advertising in periodicals published by them shall not be subject to the tax on unrelated business income", "1648": "A bill to increase the standard mileage rate for use of an automobile for business, medical, and moving deduction purposes for 2008 and permanently increase such rate for charitable deduction purposes under the Internal Revenue Code of 1986 and to temporarily increase the reimbursement rate for use of an automobile by Federal employees.", "1649": "To make unlawful the transmission in interstate commerce of certain communications with intent to interfere with the execution of Federal or State statutes or court decrees", "1650": "A bill to provide decent and suitable living accommodations for low-income families", "1651": "To amend title V of the act entitled An act to expedite the provision of housing in connection with national defense, and for other purposes, approved October 14, 1940, as amended, so as to provide that the transferee of any property transferred thereun", "1652": "To ensure that employers cannot interfere in their employees birth control and other health care decisions.", "1653": "To provide for a program of Federal matching grants to the States to enable the States to provide health insurance for individuals aged 65 or over at subscription charges such individuals can pay", "1654": "A bill to ban the importation of large capacity ammunition feeding devices.", "1655": "A bill to provide Federal tax treatment for payments under, and facilities idled by, the Milk Production Termination Program.", "1656": "To amend the Clean Air Act to reduce emissions from electric powerplants, and for other purposes.", "1657": "A bill to amend the Social Security Act to improve the survey and certification process, rate-setting and fiscal audit methods, and general regulation of nursing homes and intermediate care facilities under the medicaid program, and to provide for medical, psychological, and social assessment of long-term care patients under both the medicare and medicaid programs.", "1658": "To amend section 1007, title 18, United States Code, with respect to exemption of nonfraudulent transactions under certain circumstances, and for other purposes", "1659": "To amend sections 1331 and 1332 of title 28, United States Code, relating to the amount in controversy, and for other purposes", "1660": "To amend the Merchant Marine Act, 1936, to establish a new system of operating-differential subsidy contracts for vessels in liner service, and for other purposes.", "1661": "A bill to amend or repeal certain laws relating to Government records, and for other purposes", "1662": "A bill to amend provisions of title 28, United States Code, to provide for the payment of attorney fees to a prevailing defendant in civil actions, and for other purposes.", "1663": "To prohibit the distribution or receipt of restricted explosives without a Federal permit, and to require applications for such permits to include a photograph and the finger prints of the applicant.", "1664": "A bill to amend the Enabling Act of the State of New Mexico with respect to miners' hospitals for disabled miners", "1665": "A bill to provide a civil remedy in the United States district courts for sex discrimination in insurance policies.", "1666": "To amend section 520E of the Public Health Service Act to require States and their designees receiving grants for development or implementation of statewide suicide early intervention and prevention strategies to consult with each Federally recognized Indian tribe, tribal organization, and urban Indian organization in the State.", "1667": "A bill to provide for the promotion of health education and preventive health services, and for other purposes.", "1668": "A bill to simplify Federal oil and gas revenue distributions, and for other purposes.", "1669": "To prohibit discrimination against locally recruited personnel in the granting of overseas differentials and allowances, equalize ,the compensation of overseas teachers, and for other purposes", "1670": "A bill expressing the sense of Congress with respect to certain withholding taxes.", "1671": "A bill to establish an Office of Housing for the Elderly within the Department of Housing and Urban Development.", "1672": "To limit the power of the States to impose income taxes on income derived exclusively from the conduct of interstate commerce and to bring about greater uniformity in State taxation of business income derived from Interstate commerce", "1673": "A bill to develop a methodology for, and complete, a national assessment of geological storage capacity for carbon dioxide, and for other purposes.", "1674": "To improve the national program to register and monitor individuals who commit crimes against children or sex offenses.", "1675": "To amend the National Housing Act, as amended (48 Stat. 1246 12 U.S.C. 1701) , to require the use of domestically grade-marked lumber and wood products in the construction of housing federally financed and/or federally insured, and for other purposes", "1676": "A bill to authorize the President to establish and maintain the Foreign Language and Cultural Institute program.", "1677": "To prevent States from limiting employers from using auto-enrollment for employee health insurance coverage.", "1678": "To reduce the national debt and eliminate waste in Government spending, and for other purposes.", "1679": "A bill to authorize adjustments in the amount of outstanding silver certificates, and for other purposes.", "1680": "A bill to adjust the salary and other benefits received by the United States Park Police and to amend Title 5, United States Code to incorporate, in its entirety, Section 501 of the District of Columbia Police and Firemens Salary Act of 1958.", "1681": "To amend the Higher Education Act of 1965 to extend the cohort default rate exemption for historically Black Colleges, tribally controlled community colleges, and Navajo community colleges.", "1682": "A bill to guarantee the confidentiality of sources of information of the news media and to protect certain rights of privacy of individuals.", "1683": "To amend the act providing financial assistance to.local educational agencies for the education of children of low-income families in order to provide financial assistance for the education of orphans and other children lacking parental support", "1684": "A bill to amend section 212(B) of the Merchant Marine Act, 1936, as amended, to provide for the continuation of authority to develop American-flag carriers and promote the foreign commerce of the United States through the use of mobile trade fairs.", "1685": "To improve the Federal Pell Grant program, and for other purposes.", "1686": "To prevent governmental discrimination against providers of health services who decline involvement in abortion, and for other purposes.", "1687": "To amend section 120 of the Internal Revenue Code (relating to the unlimited deduction for charitable and other contributions)", "1688": "A bill to permit Charles E. Day, Senior, and Mary Day, husband and wife, to file an action against the United States District Court, for the District of Rhode Island, and for other purposes.", "1689": "A bill to prohibit Government employees from secretly taping conversations with others.", "1690": "To provide compensation to survivors and dependents of local law enforcement offcers killed or disabled while apprehending persons for commuting Federal crimes", "1691": "To exempt from income taxation the interest on certain United States savings bonds", "1692": "A bill to amend section 103(e)(4) of title 23, United States Code, to extend the deadline for withdrawal of approval of the Westway project in New York and for approval of highway and transit projects substituted for such project until December 30, 1985.", "1693": "A bill to provide for congressional review of all regulations relating to costs and expenditures for health care, reimbursements to individuals or providers of health care, and for other purposes.", "1694": "To establish State revolving loan funds to repair or replace natural gas distribution pipelines.", "1695": "A bill to provide for the protection of employees providing air safety information.", "1696": "A bill to eliminate prevented planting payments to cotton farmers able to plant cotton or other nonconserving crops on their cotton allotments.", "1697": "To extend the time for filing certain claims under the September 11th Victim Compensation Fund of 2001, and for other purposes.", "1698": "A bill to enforce the guarantees of the 14th amendment with respect to the desegregation of public elementary and secondary schools", "1699": "A bill to increase the fees and reduce the financial hardships for those individuals who serve on grand juries in district courts, and for other purposes.", "1700": "A bill to extend to persons entitled to receive medical care by or through the Veterans Administration, the right to elect to receive chiropractic treatment", "1701": "A bill to establish a forbearance program for thrift institutions including Minority Associations.", "1702": "A bill to withhold voluntary proportional assistance for programs and projects of the International Atomic Energy Agency relating to the development and completion of the Bushehr nuclear power plant in Iran, and for other purposes.", "1703": "To amend the Internal Revenue Code of 1986 to update the optional methods for computing net earnings from self-employment.", "1704": "A bill to enhance the energy security of the United States, improve the environment, and expand markets for agricultural commodities by providing for the increased use of motor fuel blended with ethanol.", "1705": "To amend and supplement the Federal-Aid Road Act approved July 11, 1916 (39 Stat. 355), as amended and sup to authorize appropriations for continuing the construction of highways, and for other purposes.", "1706": "To enhance the personal security and safety of American citizens and their families by combating violent crime and strengthening anti-drug efforts.", "1707": "A bill to enable honey producers to finance a nationally coordinated research and promotion program to improve their competitive position and expand their markets for honey.", "1708": "A bill to eliminate restrictions on the taxing power of the State to impose, collect, and administer State and local sales and use taxes on sales in interstate commerce.", "1709": "To exempt from admissions tax admissions to activities of elementary and secondary schools", "1710": "A bill to assure that the policies of the executive branch of the Government of the United States protect employment opportunities for U.S. citizens.", "1711": "A bill to authorize the Administrator of the National Oceanic and Atmospheric Administration to provide certain funds to eligible entities for activities undertaken to address the marine debris impacts of the March 2011 Tohoku earthquake and subsequent tsunami, and for other purposes.", "1712": "A bill to require the General Accounting Office to conduct an annual audit of certain records to assist the Secretary of Agriculture in determining the amount of grain stored by any person under any program carried out by the Commodity Credit Corporation.", "1713": "A bill to require the consent of an individual prior to the sale and marketing of such individual's personally identifiable information, and for other purposes.", "1714": "A bill to amend the Railroad Unemployment Insurance Act so as to protect benefits of bona fide railroad employees, remove certain inequities, and for other purposes.", "1715": "To authorize the purchase of agricultural commodities under section 32 without charge to a quota", "1716": "A bill to direct the Secretary of Transportation to conduct a study and issue a report on predatory and discriminatory practices of airlines which restrict consumer access to unbiased air transportation passenger service and fare information.", "1717": "A bill to amend the National Housing Act to establish procedures for approval of rental increases in certain multifamily housing insured under such Act.", "1718": "To authorize grants to local educational agencies to develop and implement coordinated services programs.", "1719": "A bill to establish an interagency committee to develop an ocean acidification research and monitoring plan and to establish an ocean acidification program within NOAA.", "1720": "A bill to amend the Clean Air to repeal the grandfather status for electric utility units.", "1721": "A bill to provide technical and financial assistance for the development of management plans and facilities for the recovery of energy and other resources from discarded materials and for the safe disposal of discarded materials, to regulate the managemen", "1722": "To extend for 4 additional years the temporary provisions of Public Laws 815 and 874, 81st Congress", "1723": "To ensure that the national instant criminal background check system provides the Federal Bureau of Investigation with information on approved firearms transfers to persons named in the Violent Gang and Terrorist Organization File.", "1724": "To amend the Public Health Service Act to prevent and treat diabetes, to promote and improve the care of individuals with diabetes, and to reduce health disparities, relating to diabetes, within racial and ethnic minority groups, including the African-American, Hispanic American, Asian American, Native Hawaiian and Other Pacific Islander, and American Indian and Alaskan Native communities.", "1725": "To amend the Federal Meat Inspection Act to require that imported meat and meat food products made fn whole or in part of imported meat be labeled imported at all stages of distribution until delivery to the ultimate consumer", "1726": "To safely increase domestic oil and gas production, and for other purposes.", "1727": "To designate the bridge to be constructed over the Potomac River near 14th Street in the District of Columbia, under the act of July 16, 1946, as the George Mason Memorial Bridge, and for other purposes.", "1728": "To authorize the Secretary of Commerce to transfer surplus liberty ships to States for use in marine life conservation programs", "1729": "To enable the Secretary of Health and Human Services to carry out activities to reduce waste and fraud under the medicare program.", "1730": "A bill to amend the act authorizing participation of States in revenue from certain wildlife refuges in order to increase the amount of such participation.", "1731": "To amend title 28, United Staten code, to transfer Charlotte and Lee Counties from the middle to the southern district of Florida and Highlands County from the southern to the middle district of Florida", "1732": "A bill to direct the Secretary of Defense to review the discharge characterization of former members of the Armed Forces who were discharged by reason of the sexual orientation of the member, and for other purposes.", "1733": "A bill making an appropriation to the Office of Education to carry out the Bilingual Education Act for the fiscal year ending June 30, 1969.", "1734": "To amend and extend certain laws relating to housing and community development, and for other purposes.", "1735": "A bill to institute a moratorium on the imposition of the death penalty at the Federal and State level until a National Commission on the Death Penalty studies its use and policies ensuring justice, fairness, and due process are implemented.", "1736": "To amend title 46, United States Code, to reinstate provisions requiring that a percentage of aid provided by the Secretary of Agriculture or the Commodity Credit Corporation in the form of certain agricultural commodities or their products must be transported on commercial vessels of the United States, and for other purposes.", "1737": "To increase to $1,000 the amount a dependent may earn without loss of exemption to the taxpayer", "1738": "To amend section 601(a) of the Federal Aviation Act of 1958 so as to require air carriers to maintain route maps in conjunction with certain weather information for the benefit of their passengers", "1739": "A bill to provide for a program of benefits for persons afflicted with lung cancer as a result of employment as a uranium miner.", "1740": "To provide Federal funds to assist the States in the acquisition and construction of plant facilities for public schools", "1741": "To amend section 1 (b) of the Natural Gas Act, with respect to jurisdiction over sales of natural gas by independent producers", "1742": "To establish a program of voluntary comprehensive health insurance for all persons aged 65 or over and an expanded program of medical assistance, to increase benefits under the old-age, survivors and disability insurance system, to improve the Federal-State public assistance programs, and for other purposes", "1743": "To amend the Federal Farm Loan Act and the Farm Credit Act of 1933, as amended, to improve the capitalization of Federal intermediate credit banks and production credit associations, and for other purposes", "1744": "A bill requiring railroads to take certain action at unprotected grade crossings adjacent to schools.", "1745": "A bill to provide for an appropriation of a sum not to exceed $250,000 with which to make a survey of a proposed Golden Circle National Scenic Parkway complex connecting the national parks, monument and recreation. areas in the southern. part of Utah with", "1746": "To authorize the Administrator of the Federal Aviation Agency to release restrictions on the use of certain real property conveyed to the city of Clarinda, Iowa, for airport purposes", "1747": "A bill to require the Secretary of Transportation to prescribe regulations requiring certain modes of public transportation in interstate commerce to reserve some seating capacity for passengers who do not smoke", "1748": "A bill to protect citizens' privacy rights with regard to bank records, credit records, telephone records, mail covers, service monitoring, and nonverbal communications.", "1749": "To amend chapter 44 of title 18, United Satets Code, to exempt ammunition from Federal regulation under the Gun Control Act of 1968", "1750": "A bill entitled the Money Laundering Crimes and Disclosure Act of 1985.", "1751": "To amend the Veterans Benefits Act of 1957 to provide a 3-year presumption of service connection for active tuberculous disease in peacetime cases", "1752": "To require proprietary institutions of higher education to derive not less than 10 percent of such institutions' revenues from sources other than veterans' education benefits or funds provided under title IV of the Higher Education Act of 1965.", "1753": "A bill to coordinate and promote Great Lakes activities, and for other purposes.", "1754": "To authorize an emergency 2-year program of Federal financial assistance in school construction to States and local communities", "1755": "A bill to increase the amount of guaranty by the Veterans Administration on certain home loans made pursuant to the Servicemens Readjustment Act of 1944, as amended.", "1756": "To authorise appropriations for the fiscal years 1962 and 1963 for the construction of certain highways in accordance with title 23 of the United States Code, and for other purposes", "1757": "A bill to include Puerto Rico within the definition of State for purposes of the requirement imposed on the Secretary of the Treasury to withhold State income taxes from the income of Federal employees.", "1758": "To assist in combating crime by creating the U.S. Corrections Service, and for other purposes", "1759": "To amend the Internal Revenue Code by providing a synthetic liquid fuel plant amortization deduction and a percentage depletion for certain materials used in the production of synthetic fuels", "1760": "A bill to permit citizens who are denied the right to vote in Federal elections on account of their race, religion, color, or national origin to be registered to vote in such elections by a Federal registrar.", "1761": "To repeal certain amendments to the Energy Policy and Conservation Act with respect to lighting energy efficiency, and for other purposes.", "1762": "A bill to extend and amend laws relating to the provision and improvement of housing and the renewal of urban communities, and for other purposes.", "1763": "A bill to require the Secretary of Energy to establish an EnergyGrant Competitive Education Program to competitively award grants to consortia of institutions of higher education in regions to conduct research, extension, and education programs relating to the energy needs of the region.", "1764": "To provide a reduced rate of tax on certain types of income", "1765": "To establish a program to control fraud and abuse in the medicare program, to increase the amount of civil monetary penalties which may be assessed against individuals and entities committing fraud against the medicare program, and for other purposes.", "1766": "A bill to amend Title 12, Title 18, and Title 31 of the United States Code relating to money laundering and for other purposes.", "1767": "A bill to increase access to adult education to provide for economic growth.", "1768": "A bill to improve coastal zone management in the United States, and for other purposes.", "1769": "A bill to amend the Federal National Mortgage Association Charter Act to encourage private transactions in Federal Housing Administration insured and Veterans Administration guaranteed mortgages at stabilized prices which approach or equal par value of su", "1770": "To terminate the Home Affordable Modification Program of the Department of the Treasury.", "1771": "Relating to the appointment of the Director of the Federal Bureau of Investigation", "1772": "To provide for the construction of a new Veterans Administration hospital in southern New Jersey", "1773": "A bill to reduce costs in the Medicare and Medicaid programs, and for other purposes.", "1774": "Granting the consent of Congress to interstate compacts for the development or operation of library facilities and services", "1775": "A bill to establish for the 1988 through 1990 crops of upland cotton an optional acreage diversion program.", "1776": "To amend title 38, United States Code, to reauthorize the Veterans' Advisory Committee on Education.", "1777": "A bill to establish a National Commission on Threats to the Homeland and United States National Security.", "1778": "To amend the Soil Bank Act, as amended, to provide a uniform procedure for the alleviation of damage, hardship, or suffering caused by severe drought, flood, or other natural disaster, and for other purposes", "1779": "To amend the Vocational Education Act of 1946 to authorize the appropriation of additional funds to cover reductions, Occurring as a result of the 1950 United States census, in Federal funds apportioned for expenditure in the States and Territories.", "1780": "A bill to protect the privacy of individuals from governmental and nongovernmental intrusion.", "1781": "A bill to authorize the Attorney General to admit persons committed by State courts to Federal penal and correctional institutions when facilities are available", "1782": "To provide individuals with access to health information of which they are a subject, ensure personal privacy with respect to health-care-related information, impose criminal and civil penalties for unauthorized use of protected health information, to provide for the strong enforcement of these rights, and to protect States' rights.", "1783": "A bill to provide for a National Service Corps to strengthen community service programs in the United States.", "1784": "A bill to establish scientific standards and protocols across forensic disciplines, and for other purposes.", "1785": "A bill to fully explore, fully develop, and produce the naval petroleum reserves with the revenue derived therefrom to be placed in a special fund for such exploration, development, and production, for production to be applied to the petroleum needs of the Department of Defense and for the establishment of a study group to investigate the feasibility of creating a National Strategic Petroleum Reserve (military) and for other purposes.", "1786": "A bill to provide increased funding for the Land and Water Conservation Fund and Urban Parks and Recreation Recovery Programs, to resume the funding of the State grants program of the Land and Water Conservation Fund, and to provide for the acquisition and development of conservation and recreation facilities and programs in urban areas, and for other purposes.", "1787": "A bill to amend the Public Health Service Act reauthorize the adolescent family life program, provide for abstinence education, and for other purposes.", "1788": "To establish a National commission on Reform of Federal Criminal Laws", "1789": "A bill to require local educational agencies to conduct testing for radon contamination in schools, and for other purposes.", "1790": "To increase the number of nursing home beds operated by the Veterans' Administration", "1791": "To establish an interim Inspector General for the Federal Housing Finance Agency.", "1792": "A bill to recognize the role of certain State and local agencies in assuming the responsibility for carrying out low-and moderate-income housing programs, to affirm the continuing responsibility of the Federal Government in carrying out such programs, to facilitate the interim operation of such programs by those State and local agencies, to provide for the resumption of the operation of such programs by the Federal Government in an expeditious manner.", "1793": "To make it a crime to induce, through fraud or misrepresentation, any .person to travel in interstate commerce for educational purposes", "1794": "To require the Inspector General of the Federal Housing Finance Agency to submit quarterly reports to the Congress during the conservatorship of the Federal National Mortgage Association and the Federal Home Loan Mortgage Corporation.", "1795": "A bill to provide that quotas on certain meat and meat products provided for by section 2 of the act of August 22, 1964, shall come into effect when the estimate of imports by the Secretary of Agriculture equals or exceeds the level prescribed by such sec", "1796": "To direct the Secretary of State to designate as foreign terrorist organizations certain Mexican drug cartels, and for other purposes.", "1797": "To amend section 104 of the Agricultural Trade Development and Assistance Act of 1954 to eliminate the ceilings on the use of foreign currencies for informational and educational activities carried on with funds provided under authority of that act", "1798": "To protect persons who retain their investment in series E United States savings bonds for 10 years after original maturity, or purchase such bonds after December 31, 1950, and hold them until maturity, against decline in purchasing power of the dollars s", "1799": "To confer jurisdiction upon the United States District Court of Maryland to hear, determine, and render judgment upon the claims of James D. Sigler and Frederick P. Vogelsang III", "1800": "To extinguish Federal Court jurisdiction to require attendance at a particular school of any student because of race, color, creed, or sex.", "1801": "Making supplemental appropriations for the fiscal year ending June 30, 1970, and for other purposes", "1802": "To amend title 10, United States Code, to extend the time limit for the use of education benefits by members of the Selected Reserve and certain members of the reserve component, and for other purposes.", "1803": "A bill to provide for a creditors' committee of employee and retiree representatives of a debtor in order to protect pensions of those employees and retirees.", "1804": "A bill to provide for funding the Emergency Employment Act of 1971 for 2 additional years, and for other purposes.", "1805": "To amend title 18, United States Code, to prohibit taking a child hostage in order to evade arrest.", "1806": "To provide for an ad valorem duty on the importation of shrimp", "1807": "A bill to name the post-baccalaureate achievement program under subpart 4 of part A of title IV of the Higher Education Act of 1965 as the Ronald E. McNair Post-Baccalaureate Achievement Program.", "1808": "A bill to reauthorize the Underground Railroad Educational and Cultural Program.", "1809": "A bill to reauthorize and amend the Comprehensive Environmental Recovery, Compensation, and Liability Act of 1980, and for other purposes.", "1810": "To declare adequate pain care research, education, and treatment as national public health priorities, and for other purposes.", "1811": "To accelerate, extend, and strengthen the Federal air pollution control program", "1812": "To authorize the Federal Government to guard strategic defense facilities against individuals believed to be disposed to commit acts of sabotage, espionage, or other subversion", "1813": "To revive and reenact the act of December 21, 1944 authorizing the City of Clinton Bridge Commission to construct, maintain, and operate a bridge and approaches thereto across the Mississippi River, at or near the cities of Clinton, Iowa, and Fulton, Ill.", "1814": "To extend and amend laws relating to the provision and improvement of housing and the conservation and development of urban communities and for other purposes", "1815": "To amend title 39, United States Code, to make cigarettes and certain other tobacco products nonmailable, and for other purposes.", "1816": "To direct each Federal agency to establish an Environmental Justice Office, and for other purposes.", "1817": "A bill to improve monitoring of the domestic uses made of certain foreign grain after importation, and for other purposes.", "1818": "To amend .the National Pounda-_ tian on the Arts and the Humanities Act of 1965, as amended", "1819": "To amend the Clean Air Act with respect to exceptional event demonstrations, and for other purposes.", "1820": "A bill to exempt certain blood fractions from the Federal Food Drug and Cosmetic Act for five years.", "1821": "To authorize the Federal Works Administration, as an adjunct to the Federal public-works program, to make loans and grants for the construction, remodeling, improvement, and extension of school facilities", "1822": "A bill making appropriations for the Education Division and related agencies, for the fiscal year ending June 30, 1976, and the period ending September 30, 1976.", "1823": "A bill to help ensure general aviation aircraft access to Federal land and to the airspace over that land.", "1824": "To amend the Internal Revenue Code of 1986 to lower the maximum capital gains rate to 15 percent with respect to assets held for more than 3 years, to replace the estate and gift tax rate schedules, and for other purposes.", "1825": "A bill to reauthorize and make reforms to programs authorized by the Public Works and Economic Development Act of 1965.", "1826": "A bill to amend section 2151 of title 18, United States Code, relating to sabotage", "1827": "To rescind certain budget authority proposed to be rescinded (R92-49) in a special message transmitted to the Congress by the President on March 20, 1992, in accordance with section 1012 of the Impoundment Control Act of 1974.", "1828": "To amend the Administrative Procedure Act with respect to the compensation of hearing examiners, and for other purposes", "1829": "To amend the Clean Air Act to modify certain provisions regarding methyl bromide, and for other purposes.", "1830": "To amend the Meat Inspection Act to extend its coverage in certain areas", "1831": "A bill to transfer to the Secretary of Transportation the functions of the Interstate Commerce Commission.", "1832": "A bill to provide for grants to States for the payment of compensation to persons injured by certain criminal acts and omissions, and for other purposes.", "1833": "To amend title 18, United States Code, to combat terrorism against railroad carriers and mass transportation systems on land, on water, or through the air, and for other purposes.", "1834": "A bill to create a fund in the Treasury of the United States to be known as the Fund for Endangered Wildlife, to be administered by the Department of the Interior.", "1835": "A bill to amend the Medicare Prescription Drug, Improvement, and Modernization Act of 2003 to eliminate the coverage gap, to eliminate HMO subsidies, to repeal health savings accounts, and for other purposes.", "1836": "To authorize the Secretary of the Army to investigate, plan, and construct projects for the control of streambank erosion", "1837": "To require the Secretary of Education to investigate the feasibility of establishing a National Environmental Science and Policy Academy.", "1838": "A bill to reduce the sentencing disparity between powder and crack cocaine violations, and to provide increased emphasis on aggravating factors relating to the seriousness of the offense and the culpability of the offender.", "1839": "To increase the personal iiicoine tax exemption of a taxpayer and the additional exemption for his spouse from $600 to $1,000, and to increase the exemption for a dependent from $600 to $750", "1840": "A bill to increase the competence of American secondary students in science and mathematics by narrowing the gap between the current supply of qualified teachers of science and mathematics at the secondary school level and the current need for such teachers, and for other purposes.", "1841": "To encourage physicians and dentists who have received student loans under programs established pursuant to title VII of the Public Health Service Act to practice their professions in areas having a shortage of physicians or dentists", "1842": "To amend the second proviso in section 27 of the Merchant Marine Act, 1920, as amended (U. S. C., 1940 ed., title 46, sec. 883)", "1843": "A bill to apportion certain funds for construction of the National System of Interstate and Defense Highways for fiscal years 1985 and 1986, and for other purposes.", "1844": "A bill to amend section 168 of the Internal Revenue Code of 1954 to require economic substance in lease transactions under the accelerated cost recovery system.", "1845": "To amend title 11, District of Columbia Code, to increase the maximum amount in controversy permitted for cases under the jurisdiction of the Small Claims and Conciliation Branch of the Superior Court of the District of Columbia, and to authorize the Corporation Counsel for the District of Columbia to conduct criminal prosecutions of certain juvenile defendants.", "1846": "A bill to strengthen the technological literacy of the Nation through demonstration programs of technology education.", "1847": "A bill to raise needed revenues by gearing the income tax more closely to an individual's ability to pay, and by broadening the income tax base of individuals and corporations.", "1848": "To provide on-budget status to the Federal National Mortgage Association and the Federal Home Loan Mortgage Corporation.", "1849": "A bill to authorize a national policy and program with respect to wild predatory mammals, to prohibit the poisoning of mammals and birds on the public lands of the United States, to regulate the manufacture, sale, and possession of certain chemical toxica", "1850": "To provide reasonable limits, control, and oversight over the Environmental Protection Agency's use of aerial surveillance of America's farmers.", "1851": "To amend sections 6301 and 7701 of the Internal Revenue Code of 1954 to authorize the Secretary of the Treasury to enter into agreements with the several States under which the States will act as agents of the United States for the collection of taxes upo", "1852": "To amend the definition of earned income for income tax purposes in the case of contributions by self-employed individuals to pension and profit-sharing plans", "1853": "A bill to amend title X of the Public Health Service Act to permit family planning projects to offer adoption services, and for other purposes.", "1854": "A bill to amend the Walsh Healey Act and the Contrast Work Hours Standards Act to permit certain employees to work a 10 hour day in the case of a 4 day work-week, and for other purposes", "1855": "A bill to amend section 312 of the Housing Act of 1964 for the purpose of authorizing $245,000,000 to be appropriated under such section for rehabilitation loans for fiscal year 1982.", "1856": "To provide support for pre-kindergarten education through an Early Education Trust Fund, and for other purposes.", "1857": "A bill to encourage participation by children whose language is English in bilingual education programs under the Bilingual Education Act.", "1858": "To confer jurisdiction upon the Court of Claims to hear, determine, and render judgment upon certain claims for basic and overtime compensation", "1859": "To amend the Fair Labor Standards Act of 1938, as amended, to increase the minimum hourly wage from 75 to 90 cents", "1860": "A bill entitled: The Maritime Drug Law Enforcement and Enhancement Act of 1988.", "1861": "A bill to control emissions of air pollutants from municipal waste incineration units, to provide for the safe disposal of ash produced by such units and for other purposes.", "1862": "To amend the Public Health Service Act to .provide for the establishment of a National Institute of Gerontology", "1863": "To provide for educational partnerships between science museums and National Laboratories.", "1864": "A bill to amend the Agriculture Act of 1949 to modify the dairy price support program.", "1865": "A bill to extend the Federal riot reinsurance and crime insurance programs.", "1866": "A bill to permit the retroactive medicaid payment of medicare cost-sharing for indigent beneficiaries.", "1867": "Providing for the use of money received by the United States from oil shale", "1868": "A bill to extend title XVII of the Public Health Service Act.", "1869": "To clarify and strengthen the Cargo-preference laws of the United States, and for other purposes", "1870": "A bill to amend the Department of Housing and Urban Development Act to provide for the establishment of a Business Advisory Committee.", "1871": "A bill to establish an alternative, outcomes-based process for authorizing innovative, high-quality higher education providers to participate in programs under title IV of the Higher Education Act of 1965.", "1872": "A bill to provide for the establishment of a Clean Energy Technology Manufacturing and Export Assistance Fund to assist United States businesses with exporting clean energy technology products and services.", "1873": "A bill to repeal the Residential Conservation Service Program and the Commercial and Apartment Conservation Service Program.", "1874": "To amend section 4(d) of the Natural Gas Act, with respect to the making of changes in rates and charges, and for other purposes", "1875": "A bill to provide additional funding for mental health care for veterans, and for other purposes.", "1876": "A bill to provide penalties for persons who obtain or attempt to obtain narcotics or other controlled substances from any pharmacist by terror, force, or violence, and for other purposes.", "1877": "To provide new penalties for the use, possession, sale, or transfer of a narcotic drug, marihuana, or a depressant or stimulant substance for members of the armed services", "1878": "A bill to preserve the domestic gold mining industry and to increase the domestic production of gold.", "1879": "A bill to protect the public health and safety by amending the narcotic, depressant, stimulant, and hallucinogenic drug laws in the District of Columbia, and for other purposes", "1880": "A bill to authorize the Federal Power Commission to exempt small hydroelectric projects from certain of the licensing provisions of the Federal Power Act.", "1881": "A bill to amend the net prohibiting certain fishing in U.S. waters in order to revise the penalty for violating the provisions of such act", "1882": "A bill to amend the Solid Waste Disposal Act to encourage the recycling of used oil, and for other purposes.", "1883": "To stabilize support levels for tobacco against disruptive fluctuations and to provide for adjustment in such levels in relation to farm cost", "1884": "A bill to encourage, enhance, and integrate Silver Alert plans throughout the United States, to authorize grants for the assistance of organizations to find missing adults, and for other purposes.", "1885": "To provide bonus funds to local educational agencies that adopt a policy to end social promotion.", "1886": "To require that until a comprehensive study is completed, the volume of cellulosic biofuel mandated under the renewable fuel program be limited to what is commercially available, and for other purposes.", "1887": "To amend title 18, United States Code, to make certain drug offenses under State law predicate offenses under the armed career criminal statute.", "1888": "A bill to provide for uniform state licensing of marine recreational fishermen, and other purposes.", "1889": "To amend the Interstate Commerce Act, as amended, in order to make unlawful, as unreasonable and unjust discrimination against and an undue burden upon interstate commerce, certain property tax assessments of common carrier property, and for other purposes", "1890": "To amend section 22 (relating to the endowment and support of colleges of agriculture and the mechanic arts) of the act of June 29, 1935, to increase the authorized appropriation for resident teaching grants to land grant institutions", "1891": "To prohibit the conducting of invasive research on great apes, and for other purposes.", "1892": "A bill to amend the Highway Revenue Act of 1956 so as to transfer to the Highway Trust Fund a portion of the receipts from the excise tax on passenger automobiles collected during the 1969 fiscal year; to rescind 1 percent of certain appropriations made f", "1893": "To amend title 28, United States Code, to provide Federal debt collection civil procedures.", "1894": "To make use of a firearm to commit a felony a Federal crime where such use violates State law, and for other purposes", "1895": "A bill to amend title XVIII and XIX of the Social Security Act to assure uninterrupted access to necessary medicines under the Medicare prescription drug program.", "1896": "To provide the President with the authority to maintain the essential domestic services of the Government while a sequestration order is in effect.", "1897": "To amend the act entitled An act authorizing the State of Delaware by and through its State highway department to construct, maintain, anti operate a toll bridge across the Delaware River near Wilmington, Del., approved July 13, 1916.", "1898": "To provide an additional 1 percent Federal excise tax on the sale of automobiles using internal combustion engines, and to provide that the revenue from such tax will be used for a research program to develop alternatives to the internal combustion engine", "1899": "A bill to supplement retirement benefits for State and local law enforcement officers.", "1900": "A bill to provide price incentives for production of crude oil from tertiary recovery projects.", "1901": "To amend section 22 (b) of the Internal Revenue Code so as to provide that $150 per month of retirement income shall be nontaxable", "1902": "To amend the Internal Revenue Code of 1954 to providee for public inspection of information required from certain organizations and trusts exempted from taxation.", "1903": "A bill to establish two additional offices of Assistant Secretaries of Agriculture and office of an Administrative Assistant Secretary of Agriculture, and for other purposes", "1904": "To repeal the act entitled An act to amend the railroad retirement acts, the Railroad Unemployment Insurance Act, and subchapter B of chapter 9 of the Internal Revenue Code; and for other purposes, approved July 31, 1946; and for other purposes", "1905": "A bill to require the Economic Regulatory Administration of the Department of Energy to complete the investigation of all oil overcharge cases pending within the Administration.", "1906": "To limit discrimination in health insurance coverage based on health status or past claims experience and to reform the provision of health coverage to small employer groups.", "1907": "A bill to authorize the appointment of citizens of Guam to the U.S. Military Academy, the U.S. Naval. Academy, and the U.S. Air Force Academy.", "1908": "To amend the Fair Packaging and Labeling Act to provide for a uniform system of quality grades for food products, to provide for a system of labeling of food products to disclose the ingredients thereof, to provide for a system of national standards for nutritional labeling of food produccts, and to provide for a system of labeling of perishable and semiperishabie foods", "1909": "A bill to promote a more adequate and responsive national program of water research and development, and for other purposes.", "1910": "A bill to extend for 1 year the authority of the Secretary o: Agriculture to make indemnity payments to dairy farmers who are directed to remove their milk from commercial markets because it contains residues of chemicals registered and approved for use b", "1911": "To inaugurate a comprehensive program of environmental research, development, and demonstration relating to contamination and depletion of ground water and ground water resources; and to establish an Interagency Ground Water Research Committee to improve coordination among Federal agencies and provide assistance for implementation of State management programs.", "1912": "To provide for the establishment of an Offsets Integrity Advisory Board, and for other purposes.", "1913": "A bill to authorize the Secretary of Education to make grants to support fire safety education programs on college campuses.", "1914": "A bill to encourage and facilitate the expansion and development of export markets for poultry and eggs produced in the United States.", "1915": "To provide for judicial review of the constitutionality of grants or loans under certain acts", "1916": "A bill to authorize appropriation for the operations of the Office of Environmental Quality and the Council on Environmental Quality during fiscal years 1982, 1983, and 1984.", "1917": "To amend title 18, United States Code, to reduce violent gang crime and protect law-abiding citizens and communities from violent criminals, and for other purposes.", "1918": "A bill to make it unlawful to manufacture, distribute, or possess with intent to distribute, a drug which is an imitation of a controlled substance or a drug which purports to act like a controlled substance.", "1919": "To amend chapter 11 of title 38, United States Code, to provide that certain medical questions involved in veterans claims shall be referred to medical panels appointed by the Director of the National Institutes of Health", "1920": "To prescribe the oath of office of justices and judges of the United States", "1921": "To modernize the Public Utility Holding Company Act of 1935, the Federal Power Act, the Fair Packaging and Labeling Act, and the Public Utility Regulatory Policies Act of 1978 to promote competition in the electric power industry, and for other purposes.", "1922": "A bill relative to the payment of salaries to recess appointees:", "1923": "To provide for Federal grants and contracts to carry out projects with respect to techniques and practices for the prevention, diminution, and control of juvenile delinquency", "1924": "A bill to amend the Gun Control Act of 1963 to provide for separate offense and consecutive sentencing in felonies involving the use of a firearm.", "1925": "A bill to prohibit United States assistance to develop or promote any rail connections or railway-related connections that traverse or connect Baku, Azerbaijan, Tbilisi, Georgia, and Kars, Turkey, and that specifically exclude cities in Armenia.", "1926": "A bill dividing the State of Florida into three judicial districts, defining the territory embraced 1n each, and fixing the time of holding terms of court therein", "1927": "To revise the procedure in the district courts relating to the disposition of the wages and effects of deceased and deserting seamen, and for other purposes.", "1928": "To ensure that proper information gathering and planning are undertaken to secure the preservation and recovery of the salmon and steelhead of the Columbia River Basin in a manner that protects and enhances local communities, ensures effective expenditure of Federal resources, and maintains reasonably priced, reliable power, to direct the Secretary of Commerce to seek scientific analysis of Federal efforts to restore salmon and steelhead listed under the Endangered Species Act of 1973, and for other purposes.", "1929": "A bill to repeal the prohibition against the filling of a vacancy in the office of district judge for the district of Delaware", "1930": "A bill to repeal part C of the Balanced Budget and Emergency Deficit Control Act of 1985 (relating to emergency powers to eliminate deficits in excess of maximum deficit amount), and to make conforming amendments in other provisions of that Act and in related provisions of the Congressional Budget Act.", "1931": "To amend section 221(f) of the National Housing Act to extend from July 1, 1963, to July 1, 1965, the termination date for the insurance of mortgages under subsections (d) (2) and (d) (4) of such section", "1932": "A bill to amend titles 5 and 37, United States Code, to provide for the continuance of pay and the authority to make certain expenditures and obligations during lapses in appropriations.", "1933": "To amend title 38, United States Code, to provide entitlement to educational assistance under the Montgomery GI Bill for members of the Selected Reserve who aggregate more than 2 years of active duty service in any five year period, and for other purposes.", "1934": "A bill to assist in reducing crime by requiring speedy trials in cases of persons charged with violations of Federal criminal laws, and for other purposes.", "1935": "A bill to make permanent the pension and individual retirement arrangement provisions of the Economic Growth and Tax Relief Reconciliation Act of 2001.", "1936": "A bill to reduce individual income tax rates, to increase savings of individuals, to broaden the income tax base, and for other purposes.", "1937": "To extend the Intermodal Surface Transportation Efficiency Act of 1991 through March 31, 1998.", "1938": "To establish a National Grammar Commission to reform the spelling of English words, to publish the U.S. Official Dictionary, and for other purposes", "1939": "To amend the Public Health Service Act to foster more effective implementation and coordination of clinical care for people with a complex metabolic or autoimmune disease, a disease resulting from insulin deficiency or insulin resistance, or complications caused by such a disease, and for other purposes.", "1940": "To provide an immediate program for the modernization and improvement of such merchant-type vessels in the reserve fleet as are necessary for national defense", "1941": "A bill to set forth a national program for development of synthetic fuels, and for other purposes.", "1942": "To amend title 28, United States Code, to set certain limitations on habeas corpus cases involving the dealth penalty.", "1943": "To establish and to consolidate certain hospital, medical, and public health functions of the Government in a Department of Health", "1944": "A bill to provide protections for workers with respect to their right to select or refrain from selecting representation by a labor organization.", "1945": "A bill to establish the Office of Law Enforcement in the United States Fish and Wildlife Service.", "1946": "A bill to amend the Federal Reserve Act to eliminate the prohibition on the payment of interest on demand deposits and to allow federally chartered savings and loan associations and credit unions to offer demand deposits and for other purposes.", "1947": "To provide off-budget treatment for the Highway Trust Fund, the Airport and Airway Trust Fund, the Inland Waterways Trust Fund, and the Harbor Maintenance Trust Fund.", "1948": "To require the Secretary of the Treasury to retain indefinitely records (including images) of redeemed savings bonds.", "1949": "To require regulation of wastes associated with the exploration, development, or production of crude oil, natural gas, or geothermal energy under the Solid Waste Disposal Act, and for other purposes.", "1950": "To amend the Agricultural Act of 1949 to provide a limitation on the downward adjustment of price supports for milk and butterfat and the products of milk and butterfat", "1951": "To amend section 6 of the Longshoremens and Harbor Workers Compensation Act so as to provide increased benefits in cases of disabling injuries, and for other purposes", "1952": "To establish, wherever feasible, guidelines, recommendations, and regulations that promote the regulatory acceptance of new and revised toxicological tests that protect human and animal health and the environment while reducing, refining, or replacing animal tests and ensuring human safety and product effectiveness.", "1953": "To grant the consent of the Congress to the Texas Low-Level Radioactive Waste Disposal Compact.", "1954": "A bill to amend the National Bureau of Standards Act of 1901 in order to broaden activities in the field of fire research and training, and for other purposes.", "1955": "To provide an equitable process for strengthening the passenger rail service network of Amtrak through the timely closure and realignment of routes with low economic performance.", "1956": "Conferring jurisdiction upon the District Court of the United States for the Western District of Oklahoma to hear, determine, and render judgment upon the claim of Troy Hensley, against the United States", "1957": "To create an electronic employment eligibility verification system to ensure that all workers in the United States are legally able to work, and for other purposes.", "1958": "To amend title 39, United States Code, to regulate the mailing of master keys for motor vehicle ignition switches, and for other purposes", "1959": "A bill to amend the National Narcotics Leadership Act of 1988 to establish a program to support and encourage local communities that first demonstrate a comprehensive, long-term commitment to reduce substance abuse among youth, and for other purposes.", "1960": "To restore the standards used for determining whether technical workers are not employees as in effect before the Tax Reform Act of 1986.", "1961": "To authorize the Secretary of Agriculture to continue to make certain emergency loans and to insure loans to farmers and stockmen in certain areas to refinance existing debts", "1962": "A bill to provide for the orderly marketing of turkeys and to assure consumers an adequate supply of turkeys and turkey products of wholesome quality.", "1963": "A bill to amend section 100 of title 28 of the United States Code in order to provide that the United States District Court for the District of Maryland shall no longer be required to hold court at Cumberland and Denton, Md.", "1964": "A bill to amend the Social Security Act to provide for inclusion of the services of licensed (registered) nurses under medicare and medicaid.", "1965": "To provide for compensating local peace officers who seize vehicles which are forfeited to the United States", "1966": "A bill relating to the useful life of property for purposes of computing the depreciation deduction under the Internal Revenue Code of 1964", "1967": "To provide for a flat fee for services performed in connection with the arrival in, or departure from, the United states of a private aircraft or private vessel, and for other purposes", "1968": "A bill to provide that the Secretary of Agriculture shall offer encouragement, advice, expertise, and other assistance for the purpose of establishing and maintaining farmers' markets designed to lower the cost of food for consumers and increase the income of small farmers.", "1969": "To amend the act of March 3. 1915, as amended, to increase the scope of the activities of the National Advisory Committee for Aeronautics (renamed in this act the National Advisory Committee for Aeronautics and Astronautic), to establish in the Congress a", "1970": "To authorize in certain cases the appointment of special counsel and investigators to assist grand juries in the exercise of their powers", "1971": "To ensure that American workers are able to follow, without financial harm, the recommendations of their employer and public health authorities to stay home when they have symptoms of a contagious disease that may put co-workers, customers, or the public at risk.", "1972": "A bill to amend titles XI and XVIII of the Social Security Act to improve efforts to combat medicare fraud, waste, and abuse.", "1973": "For the safety of life and property by making all commercial fishing vessels subject to the rules and regulations of the United States Coast Guard Marine Inspection", "1974": "A bill to provide for the modification and extension of the Federal Supplemental Compensation program, and for other purposes.", "1975": "To establish the Commission on Economic Indicators to conduct a study and submit a report containing recommendations concerning the appropriateness and accuracy of the methodology, calculations, and reporting used by the Government relating to certain economic indicators.", "1976": "To amend the Agricultural Marketing Agreements Act of 1937 to require hearings on the adequacy of milk marketing order prices under drought conditions", "1977": "To provide for the control of the alewife and other fish and aquatic animals in the waters of the Great Lakes which affects adversely the ecological balance of the Great Lakes", "1978": "To amend section 356 of title 38, United States Code, to provide a permanent rating of 50-percent disability for veterans who have suffered from active tuberculosis for 10 or more years", "1979": "To require the Secretary of the Department of Energy to issue a report on fusion innovation.", "1980": "To assure to persons within the jurisdiction of every State due process of law and equal protection of the laws, and to prevent the crime of lynching", "1981": "A bill reauthorizing programs for the Federal Aviation Administration, and for other purposes.", "1982": "To reclassify fees paid into the Nuclear Waste Fund as offsetting collections, and for other purposes.", "1983": "A bill to improve budgetary information by requiring that the unified budget presented by the President contain an operating budget and a capital budget, distinguish between general funds, trust funds, and enterprise funds, and for other purposes.", "1984": "To provide counseling and technical assistance to local educational agencies in rural areas in obtaining benefits under laws administered by the Commissioner of Education", "1985": "A bill making a supplemental appropriation for fiscal year 1982 for operating expenses of the Coast Guard.", "1986": "A bill to establish centers of excellence for green infrastructure, and for other purposes.", "1987": "To amend the Fish and Wildlife Improvement Act of 1978 to enable the Secretary of the Interior to more effectively utilize the proceeds of sales of certain items.", "1988": "To increase the personal incometax exemptions of a taxpayer (including the exemption for a spouse, the exemption for a dependent, and the additional exemption for old age or blindness) from $600 to $1,000", "1989": "An act to temporarily extend the public debt limit, and for other purposes.", "1990": "To protect the interests of bona fide tenants in the case of any foreclosure on any dwelling or residential real property, and for other purposes.", "1991": "To amend the National Wildlife Refuge System Administration Act of 1966 to improve management of the National Wildlife Refuge System, and for other purposes.", "1992": "A bill to require pipes, solder, and flux in drinking water supply systems to be lead free, and for other purposes.", "1993": "A bill to provide for the organization of interstate water and power users associations for the purpose of entering into contracts for the repayment of the costs of water and power projects on interstate streams and for the ownership, operation, and maint", "1994": "To provide supplementary unemployment compensation benefits in certain cases to workers unemployed during the national emergency, and for other purposes", "1995": "To extend the period during which the Administrator of the Environmental Protection Agency and States are prohibited from requiring a permit under section 402 of the Federal Water Pollution Control Act for certain discharges that are incidental to normal operation of vessels.", "1996": "A bill to provide for the reservation of certain federally generated power for use in the State of Montana.", "1997": "To provide for incentives to encourage health insurance coverage, and for other purposes.", "1998": "To amend Public Law 361, 77th Congress, to provide for admission of certain combat veterans to hospitalizationn Veterans Administration facilities ending adjudication of service connection of the disabilities for which they need treatment.", "1999": "A bill to reauthorize the Magnuson-Stevens Fishery Conservation and Management Act, and for other purposes.", "2000": "To amend the act of August 6, 1958 (72 Stat. 497), relating to service as chief judge of a U.S. district court", "2001": "To direct the Secretary of Education to award grants to States to pay the Federal share of carrying out full-day prekindergarten programs.", "2002": "To amend part II of the Interstate Commerce Act, as amended, to clarify and make certain the authority of the Interstate Commerce Commission to issue temporary, or term, certificates of public convenience and necessity.", "2003": "To mandate price stability as the primary goal of the monetary policy of the Board of Governors of the Federal Reserve System and the Federal Open Market Committee.", "2004": "A bill to prohibit royalty incentives for deepwater drilling, and for other purposes.", "2005": "To provide that Interstate Route No. 80 shall be known as the 80th Division Memorial Highway", "2006": "To amend title 46, United States Code, to accelerate to 2007 the application of the requirement that a tanker that carries oil in bulk as cargo must be equipped with a double hull, and for other purposes.", "2007": "To amend title XI of the Merchant Marine Act, 1936, as amended, with respect to Insurance of ship mortgages, and for other purposes", "2008": "A bill to amend section 520 of the Cranston-Gonzalez National Affordable Housing Act to authorize the Secretary of Housing and Urban Development to make grants to establish midnight basketball league training and partnership programs incorporating employment counseling, job-training, and other educational activities for residents of public housing and federally assisted housing and other low-income families.", "2009": "A bill to provide for the orderly transition from mandatory economic controls, continued monitoring of the economy.", "2010": "To make 5 percent across-the-board rescissions in non-defense, non-homeland-security discretionary spending for fiscal year 2007.", "2011": "To amend title la of the United States Code to make it unlawful to injure intimidate, or interfere with any fireman performing his duties during the course of any riot.", "2012": "To establish audit authority in the U.S. General Accounting Office over the Niagara Falls Bridge Commission.", "2013": "To improve and extend the duration of Public Law 874 of the Eightyfirst Congress, to extend the period during which appropriations may be made to pay entitlements under title II of Public Law 815 of the Eighty-first Congress, to provide temporary suppleme", "2014": "A bill to restore and promote competition in the petroleum industry.", "2015": "To amend the Federal Credit Reform Act of 1990 to include administrative costs in the estimated long-term costs to the Government of direct loans and loan guarantees and to systematically reduce the Federal credit subsidy rate, and for other purposes.", "2016": "A bill to extend the provisions of the Veterans Readjustment Assistance Act of 1952 until such time as existing laws authorizing compulsory military service cease to be effective; and to provide for payment of tuition and fees of veterans receiving . educ", "2017": "A bill to make it a Federal crime to kill or assault a fireman or law enforcement officer engaged in the performance of his duties when the offender travels in interstate commerce or uses any facility of interstate commerce for such purpose.", "2018": "A bill to regulate the interstate trafficking and sale of hypodermic needles and syringes.", "2019": "To exempt graduates of the United States Merchant Marine Academywho hold commissions in the Naval Reserve from induction or service under the Selective Service Act of 1948", "2020": "A bill to authorize the Secretary of Agriculture to furnish feed for livestock to farmers, ranchers, and stockmen in areas determined by him to be emergency areas.", "2021": "To protect workers from the corrupt and coercive Card Check system of organizing labor unions.", "2022": "A bill to authorize the Secretary of Transportation to contract with an independent engineer to review the construction methods of certain Federal highway projects, to require States to submit a project management plan for each highway project financed with Federal funds, and for other purposes.", "2023": "A bill to amend the Commodity Credit Corporation Charter Act for the purpose of requiring specified security measures of any warehouse used by the Commodity Credit Corporation to store agricultural commodities and for the purpose of requiring such Corporation to announce its withdrawal of grain from any warehouse because of the removal of such warehouse from such Corporation's approved list of warehouses.", "2024": "To amend the Interstate Commerce Act to modify the Interstate Commerce Commission's regulatory responsibilities over the trucking industry, and for other purposes.", "2025": "A bill to establish a national policy for the environment; to authorize studies, surveys, and research relating to ecological systems, natural resources, and the quality of the human environment; and to establish a Board of Environmental Quality Advisers", "2026": "To provide compensation to U.S. commercial fishing vessel owners for damages incurred by them as a result of an action of a vessel operated by a foreign government or a citizen of a foreign government", "2027": "To amend the Federal Power Act to clarify the jurisdiction of the Federal Power Commission over certain persons engaged in the transmission or sale at wholesale of electric energy", "2028": "To provide for the inspection of eggs and egg products by the U.S. Department of Agriculture, and for other purposes", "2029": "To provide for the strengthening of American educational resources for international studies and research", "2030": "To provide additional funding for cleanup activities under the Comprehensive Environmental Response, Compensation, and Liability Act for facilities on the National Priority List, and for other purposes.", "2031": "To amend section 143 of title 2, United States Code, relating to economic growth center development highways", "2032": "A bill to create the Marjorie Kinnan Rawlings National Wildlife Refuge in the State of Florida.", "2033": "A bill to amend the Uniformed and Overseas Citizens Absentee Voting Act to increase the ability of absent uniformed services voters and overseas voters to participate in elections for Federal office, and for other purposes.", "2034": "To facilitate nationwide availability of 2-1-1 telephone service for information and referral on health and human services, including volunteer services, and for other purposes.", "2035": "A bill to amend title VIII of the Public Health Service Act to revise and extend the programs of assistance under that title for nurse training.", "2036": "To impose limitations on the authority of the Secretary of the Interior to claim title or other rights to water absent specific direction of law or to abrogate, injure, or otherwise impair any right to the use of any quantity of water.", "2037": "A bill to regulate concentrated animal feeding operations for the protection of the environment and public health, and for other purposes.", "2038": "An original bill to amend the Solid Waste Disposal Act to authorize funds for fiscal year 1984.", "2039": "A bill to terminate certain functions of the Public Housing Administration, and for other purposes", "2040": "To amend the Internal Revenue Code of 1954 providing for gains from the disposition of depreciable realty", "2041": "To amend Public Law 89-108 to increase authorization levels for State and Indian tribal, municipal, rural, and industrial water supplies, to meet current and future water quantity and quality needs of the Red River Valley, to deauthorize certain project features and irrigation service areas, to enhance natural resources and fish and wildlife habitat, and for other purposes.", "2042": "To amend title 38 of the. United States. Code so. as to provide for direct and guaranteed home and farm loans for certain .veterans.", "2043": "To amend section 1314 of the act of August 7, 1953, Public Law 207, 83d Congress (67 Stat. 418), with respect to the authority of Federal officers and agencies to withhold information and limit the availability of records.", "2044": "To direct the Secretary of the Interior to reissue final rules relating to listing of the gray wolf in the Western Great Lakes and Wyoming under the Endangered Species Act of 1973, and for other purposes.", "2045": "A bill to establish doctoral fellowships designed to increase the pool of scientists and engineers trained specifically to address the global energy and environmental challenges of the 21st century.", "2046": "To amend the Higher Education Act of 1965 to address the issues of college affordability and transparency.", "2047": "A bill to help provide adequate dwelling accommodations for more families who have low or moderate incomes, who are elderly, or who are subjected to the special problems of displacement from their homes by Government action; to promote orderly community d", "2048": "A bill to authorize appropriations for conservation grants of the Environmental Protection Agency, to direct the Secretary of the Army and the Secretary of the Interior to conduct expedited feasibility studies of certain water projects in the State of California, and for other purposes.", "2049": "To amend title 49, United States Code, to provide assistance and slots with respect to air carrier service between high density airports and airports not receiving sufficient air service, to improve jet aircraft service to underserved markets, and for other purposes.", "2050": "To protect the Social Security and Medicare trust funds from the public debt limit, and for other purposes.", "2051": "Relating to the payment of alcohol and tobacco taxes by return.", "2052": "A bill to provide for the development of a low-emission engine for motor vehicles and for assistance to American industry in putting such engine into production as a replacement for the internal combustion engine", "2053": "To provide for the resolution of certain labor issues relating to the merger of the Metro-North Railroad and the Long Island Rail Road.", "2054": "A bill to amend paragraph (k) of section 403 of the Federal Food, Drug, and Cosmetic Act, as amended, to define the term chemical preservative as used in such paragraph.", "2055": "To prohibit the serving of alcoholic beverages to passengers on aircraft in flight", "2056": "To bring the tax reductions for individuals provided by the Tax Reform Act of 1969 into immediate effect", "2057": "A bill to authorize the Central Everglades Planning Project, Florida, and for other purposes.", "2058": "An original bill to authorize appropriations for the Department of Energy for national defense programs for fiscal year 1981, and for other purposes.", "2059": "To amend section 1677 of title 38, United States Code, relating to flight training, and amend section 1682 of such title to increase the rates of educational assistance allowance paid to veterans under such sections", "2060": "A bill relating to the administration of polygraph examinations and prepublication review requirements by Federal agencies.", "2061": "A bill to establish an effective program to alleviate conditions of substantial and persistent unemployment and underemployment in certain economically depressed areas.", "2062": "To amend section 22 (b) and section 25 (b) (1) of title 28 of the Internal Revenue Code by granting additional exemptions", "2063": "To amend chapter 29 of title 18, United States Code, with respect to publication or distribution of printed political material", "2064": "To provide for the disposition of the fund known as United States Treasury Special Deposit Account No. 3", "2065": "A bill to release the State of Ohio and the Ohio Turnpike Commission from restrictions with respect to the imposition and collection of tolls on the Ohio Turnpike.", "2066": "A bill to amend the Federal Power Act in order to provide for the regulation of the amount of project reservoir storage capacity that may be allotted for water quality control", "2067": "A bill relating to payments to producers for participation in the 1973 feed grain program.", "2068": "A bill to establish a final criterion for promulgation of a rule with respect to sediments to be used as remediation material at the Historic Area Remediation Site off the coast of the State of New Jersey.", "2069": "A bill to allow a credit against Federal income taxes or payments from the U.S. Treasury for State and local real property taxes or an equivalent portion of rent paid on their residences by individuals who have attained age 65.", "2070": "A bill to authorize a cost of living adjustment for the Federal judiciary.", "2071": "To amend certain requirements and penalties implemented under the Medicare and Medicaid programs by the HITECH Act of 2009, which would otherwise impede eligible professionals from adopting electronic health records to improve patient care.", "2072": "To authorize grants through the Centers for Disease Control and Prevention for mosquito control programs to prevent mosquito-borne diseases, and for other purposes.", "2073": "A bill to improve the administration and enhance the utility of the National Assessment of Educational Progress.", "2074": "A bill to amend title 18 and title 19 of the Social Security Act to require nursing facilities to provide medically related social services.", "2075": "To prohibit the use of Federal funds for the purchase of buses other than low-polluting buses.", "2076": "To require annual appropriations to pay the interest on the public debt", "2077": "A bill to amend the Federal-State Unemployment Compensation Act of 1978 to maintain current provisions (scheduled to be repealed) relating to the State trigger and to restore a former provision relating to the insured unemployment rate.", "2078": "To make certain individuals who participate in civil disorders civilly liable for damages to persons who suffer loss", "2079": "A bill to amend the Housing Act of 1950 in order to provide for loans to colleges and universities for science equipment and facilities.", "2080": "A bill to enhance the State inspection of meat and poultry in the United States, and for other purposes.", "2081": "A bill to amend title XI of the Housing and Community Development Act of 1974 for the purpose of providing that units of general local government receiving grants under the hold-harmless provisions of such title shall be entitled, after fiscal year 1977, to continue to receive at least the amount to which they are presently entitled under such provisions.", "2082": "To establish in the Veterans Administration a Department for the Cure of Alcoholism", "2083": "A bill to direct the Secretary of Transportation to work with the State of New York to ensure that a segment of Interstate Route 86 in the vicinity of Corning, New York, is designated as the Amo Houghton Bypass.", "2084": "A bill to extend the authorization for the ferry boat discretionary program, and for other purposes.", "2085": "A bill to amend titles XIX and XXI of the Social Security Act to provide States with the option of providing services to children with medically complex conditions under the Medicaid program and Children's Health Insurance Program through a care coordination program focused on improving health outcomes for children with medically complex conditions and lowering costs, and for other purposes.", "2086": "A bill to require persons who manufacture cigarettes or little cigars for sale or distribution in commerce to meet performance standards prescribed by the Consumer Product Safety Commission, and for other purposes.", "2087": "A bill granting the consent of Congress to States to enter into the Interstate Compact on Industrialized/Modular Buildings.", "2088": "To prohibit for 1 year the sale of participations under the Sales Participation Act of 1966 other than for housing mortgages held by the Federal National Mortgage Association and the Veterans Administration", "2089": "An original bill to authorize appropriations for the construction of certain highways in accordance with title 23 of the United States Code.", "2090": "To encourage national development by providing incentives for the establishment of new of expanded Jobproducing and job=training industrial and commercial facilities in rural areas having high proportions of persons with low incomes or which have experienced or face a substantial loss of population because of migration, and for other purposes", "2091": "A bill to provide that a student enrolled in a graduate program in psychology shall be eligible for student loans under the health professions student loan program.", "2092": "To authorize a Department of Veterans Affairs major medical facility lease in Atlanta, Georgia.", "2093": "To amend section 312 (c) of the Federal Aviation Act of 1958, relating to research and development, to require the Federal Aviation Administrator to provide for the development of a proximity warning device for use on all civil aircraft of the United States in the interest of safety in air commerce, and for other purposes", "2094": "To amend the Employment Act of 1946 to establish policies with respect to productive capital investments of the Government", "2095": "To amend the Workforce Investment Act of 1998 to prepare individuals with multiple barriers to employment to enter the workforce by providing such individuals with support services, job training, and education, and for other purposes.", "2096": "To amend the Agricultural Market Transition Act to extend the milk price support program through 2002 at an increased price support rate.", "2097": "To provide for the termination of Government operations which are in competition with private enterprise", "2098": "A bill to amend title 49, United States Code, with respect to length and weight limitations for buses, trucks, and other large vehicles on Federal highways, and for other purposes.", "2099": "A bill to establish an independent agency to be known as the United States Office of Transportation Consumers Counsel to represent the consumers of the Nation before Federal regulatory agencies and courts with respect to transportation matters; to improve", "2100": "To improve the understanding and coordination of critical care health services.", "2101": "To authorize the Secretary of Commerce to provide financial assistance to the States of Alaska, Washington, Oregon, California, and Idaho for salmon habitat restoration projects in coastal waters and upland drainages, and for other purposes.", "2102": "A bill to minimize duplication and to maximize efficiency in health planning and resource development.", "2103": "To amend the act of August 11, 1939, to provide that a percentage of the funds available under that act shall be apportioned among the States and paid to certain State agencies for projects pertaining to commercial fisheries", "2104": "To aid in promoting employment opportunities for members of minority groups", "2105": "A bill to amend the Employment Act of 1946 to provide for an informed public opinion upon price and income behavior which threatens national economic stability", "2106": "A bill to assure the first amendment rights of all citizens and to provide criminal penalties for violations thereof.", "2107": "To provide for financial aid in Industrialization of underdevloped areas, and for other purposes.", "2108": "A bill to amend subchapter G of chapter 1 of the Internal Revenue Code of 1954 (relating to the accumulated earnings tax).", "2109": "A bill to exempt newly discovered oil from the windfall profit tax.", "2110": "To provide for standards to beprescribed by the Secretary of Agriculture governing imported agricultural food products", "2111": "A bill to amend the Federal-Aid Highway Act of 1973 in order to increase the Federal share of the cost of certain railroad highway crossing demonstration projects.", "2112": "To provide that existing Federal tax subsidies will terminate on January 1, 1974, and to provide for a maximum duration of 2 years for Federal tax subsidies hereafter enacted", "2113": "To amend chapter 67 (relating to reared pay for nonregular service) of title 10, United States Code, to authorize payment of retired pay at reduced percentages to persons, otherwise eligible, at age 50, and for other purposes", "2114": "A bill to increase the national minimum wage to $1 an hour.", "2115": "Comprehensive Employment and Training Amendments [Restructures and generally revises the Comprehensive Employment and Training Act of 1973. Consolidates most administrative provisions of such Act into a sep XXXX]", "2116": "A bill to amend the Contract Work Hours Standards Act and the Walsh-Healey Act to permit employees to whom such Acts apply to work ten hours a day, four days a week, and for other purposes.", "2117": "To expedite the construction of needed public works and other facilities in areas of substantial unemployment", "2118": "To amend the provisions of the Elementary and Secondary Education Act of 1965 regarding school library media specialists, and for other purposes.", "2119": "A bill to amend chapter 37 of title 38 of the United States Code to broaden the class of veterans eligible for certain home loan benefits.", "2120": "To assure the development of petroleum resources necessary to the national security by providing a limitation on the quantity of crude petroleum and petroleum products that may be imported into the United States", "2121": "To increase the participation by counties in revenues from the National Wildlife Refuge system by amending the act of June 15, 1935, relating to such participation, and for other purposes", "2122": "A bill to promote freedom, fairness, and economic opportunity by repealing the income tax and other taxes, abolishing the Internal Revenue Service, and enacting a national sales tax to be administered primarily by the States.", "2123": "A bill to provide funds for wages of employees of certain insolvent railroads under the Comprehensive Employment and Training Act of 1973.", "2124": "A bill to provide a comprehensive system of liability and compensation for oil spill damage and removal costs.", "2125": "A bill to provide that the area of Canyon, in the State of Texas, shall be considered to be a rural area for purposes of title V of the Housing Act of 1949.", "2126": "To provide certain payments to assist in providing improved educational opportunities for children of migrant agricultural employees", "2127": "To amend part D of title XVIII of the Social Security Act to require the Secretary of Health and Human Services to negotiate and disclose lowest possible prices for prescription drug prices for Medicare beneficiaries.", "2128": "A bill to increase the maximum amount of aggregate payment which may be made in calendar years after 1976 to carry out conservation agreements under the Water Bank Act.", "2129": "A bill to strengthen and improve the private retirement system by establishing minimum standards for participation in and for vesting of benefits under pension and profit-sharing retirement plans, by allowing deductions to individuals for their contributions to retirement plans, by increasing contribution limitations for self-employed individuals and shareholder-employees of electing small business corporations, by imposing an excise tax on prohibited transactions.", "2130": "A bill to amend the Equal Credit Opportunity Act to prohibit discrimination against any applicant for credit on the basis of the geographical location of the applicant's residence.", "2131": "To provide for the discharge of minors who enlist in the naval service or the Coast Guard without consent of parents or guardian", "2132": "To promote marine and hydrokinetic renewable energy research and development, and for other purposes.", "2133": "To amend the Internal Revenue Code of 1986 to curb tax abuses by disallowing tax benefits claimed to arise from transactions without substantial economic substance, and for other purposes.", "2134": "To amend the Federal Election Campaign Act of 1971 to protect the equal participation of eligible voters in campaigns for election for Federal office.", "2135": "To remove the 18 or 36 month limitation on the period of COBRA continuation coverage.", "2136": "A bill to amend section 503 of the act en titled An act to expedite the provision of housing in connection with national defense, and for other purposes, ap proved October 14, 1940, as amended.", "2137": "To prohibit the National Endowment for the Humanities to provide funds to carry out the Popular Romance Project or any similar project relating to love or romance.", "2138": "To amend title 11 of the United States Code to provide protection for medical debt homeowners, to restore bankruptcy protections for individuals experiencing economic distress as caregivers to ill or disabled family members, and to exempt from means testing debtors whose financial problems were caused by serious medical problems.", "2139": "A bill to authorize Federal payments to the States to assist in constructing schools.", "2140": "A bill to provide Federal assistance to cities with high concentrations of foreign-born persons.", "2141": "To establish an effective Federal-State program to aid in alleviating conditions of substantial and persistent unemployment in certain economically depressed areas", "2142": "To amend section 8(b) (4) of the National Labor Relations Act, as amended", "2143": "A bill to require the appointment of one member of the Armed Forces as a member of the Atomic Energy Commission and to authorize the appointment of one additional member of the Armed Forces as a member of the Commission", "2144": "A bill to amend the Mental Retardation Facilities Construction Act to extend and improve the provisions thereof, and for other purposes", "2145": "To amend section 4216 (relating to definition of price) of the Internal Revenue Code of 1954", "2146": "to amend the Subversive Activities Control Act of 1950 so as to provide that no individual who willfully fails or refuses to answer, or falsely answers, certain questions relating to subversive activities, when summoned to appear before certain Federal ag", "2147": "A bill to extend the minimum wage provisions of the Fair Labor Standards Act of 1338 to employees performing work in or related to agriculture", "2148": "A bill to impose a windfall profit tax on domestic crude oil.", "2149": "A bill to authorize the National Science Foundation to designate certain institutions of higher education as national energy research centers.", "2150": "A bill to provide for quality assurance and utilization contract in home health care under the medicare, medicaid, and social services programs in accordance with a plan to be developed by a commission specifically established for that purpose.", "2151": "To amend the section 484(r) of the Higher Education Act of 1965 to exclude certain marijuana-related offenses from the drug-related offenses that result in students being barred from receiving Federal educational loans, grants, and work assistance, and for other purposes.", "2152": "A bill to exempt nonhazardous businesses from the Occupational Safety and Health Act of 1970 and for other purposes.", "2153": "A bill to incorporate the National Association of Colored Womens Clubs.", "2154": "A bill to insure the most effective and equitable distribution of infantile paralysis vaccine.", "2155": "To authorize an additional 41.000 miles for the National System of Interstate and Defense Highways", "2156": "A bill to provide tax relief for persons affected by the discharge of oil in connection with the explosion on, and sinking of, the mobile offshore drilling unit Deepwater Horizon.", "2157": "To promote the national security and stability of the United States economy by reducing the dependence of the United States on foreign oil through the use of alternative fuels and new vehicle technologies, and for other purposes.", "2158": "To require the Secretary of Education to award grants to local governments that have experienced at least a 15 percent decrease in property tax revenues to fund certain elementary and secondary school education programs.", "2159": "A bill to provide assistance to certain employers and States in 2011 and 2012, to improve the long-term solvency of the Unemployment Compensation program, and for other purposes.", "2160": "To amend the Intenal Revenue Code of 1954 to increase the credit against tax for retirement income", "2161": "A bill to strengthen and expand the Headstart program, with priority to the economically disadvantaged, to amend the Economic Opportunity Act of 1964.", "2162": "A bill to amend section 18 of the Railroad Retirement Act of 1937 to restore free transportation on any railroad carrier subject to that act for individuals receiving annuities or pensions under that act, and for their dependents, and for other purposes.", "2163": "A bill to improve the operation of the sugar price support program, and for other purposes.", "2164": "A bill to amend the Social Security Act to expand the availability of health care coverage for working individuals with disabilities, to establish a Ticket to Work and Self-Sufficiency Program in the Social Security Administration to provide such individuals with meaningful opportunities to work, and for other purposes.", "2165": "To amend title 14, United States Code, in order to correct certain inequities in the computation of service in the Coast Guard Womens Reserve", "2166": "To amend the prevailing wage provisions of the Davis Bacon Act to include subsistence allowances", "2167": "To provide financial and other support to the United Nations Population Fund to carry out activities to save women's lives, limit the incidence of abortion and maternal mortality associated with unsafe abortion, promote universal access to safe and reliable family planning, and assist women, children, and men in developing countries to live better lives.", "2168": "A bill to exempt certain automotive parts and accessories from the excise tax imposed by section 4061 of the Internal Revenue Code of 1954.", "2169": "A bill to establish a system of general support grants to State and local governments; to allow partial Federal income tax credit for State and local income tax payments; to authorize Federal collection of State income taxes: to enlarge the Federal estate", "2170": "To amend the Internal Revenue Code of 1986 with respect to the treatment of foreign oil and gas income.", "2171": "An original bill to amend the Public Works and Economic Development Act of 1965, to increase the antirecessionary effectiveness of the program.", "2172": "To amend section 22 (a) (general definition) of the Internal Revenue Code", "2173": "To authorize the Secretary of Transportation to establish safety standards,Rules, and regulations for railroad equipment, trackage, facilities, and operations, and for other purposes", "2174": "To amend the Bilingual Education Act with respect to the qualification of schools in which programs under such act may be carried out", "2175": "A bill to authorize appropriations to the Winston Churchill Memorial and Library in the United States for the construction of educational facilities at such memorial and library, and for other purposes.", "2176": "To provide for the payment of reasonable costs, expenses, and attorneys' fees to defendants in actions by the United States for the condemnation of real property after determination of the amount of just compensation, or after abandonment of such actions by the United States, and for other purposes", "2177": "To amend the Public Health Service Act to reauthorize and update the National Child Traumatic Stress Initiative for grants to address the problems of individuals who experience trauma and violence related stress.", "2178": "A bill to amend title 11 of the Railway Labor Act so as to provide that all employees of an air carrier shall be included in determining bargaining units for flight crews and aircraft dispatchers, and for other purposes", "2179": "To repeal a scheduled increase in the fee charged by the Government National Mortgage Association for guarantee of mortgage-backed securities.", "2180": "To amend XVIII of the Social Security Act to establish a Medicare demonstration project under which incentive payments are provided in certain areas in order to stabilize, maintain, or increase access to primary care services for individuals enrolled under part B of such title.", "2181": "To amend the Internal Revenue Code of 1986, the Employee Retirement Income Security Act of 1974, and the Public Health Service Act to permit extension of COBRA continuation coverage for individuals age 55 or older.", "2182": "To assist first-time homebuyers to purchase homes through first home ownership accounts, elimination of the capital gains tax on the sale of a principal residence, extension of mortgage bonds, modified FHA authority, and downpayment and shared equity plans.", "2183": "To amend .title II of the Social Security Act to eliminate the reduction in disability insurance benefits which is presently required in the case of an individual receiving workmens compensation benefits", "2184": "To assist in the conservation of rare felids and rare canids by supporting and providing financial resources for the conservation programs of nations within the range of rare felid and rare canid populations and projects of persons with demonstrated expertise in the conservation of rare felid and rare canid populations.", "2185": "To require institutions of higher education to notify students whether student housing facilities are equipped with automatic fire sprinkler systems.", "2186": "A bill to provide for wheat export marketing stamps to regulate the price of wheat in order to stabilize food prices and to establish the National Wheat Council.", "2187": "A bill to provide certain enhancements to the Montgomery GI Bill Program for certain individuals who serve as members of the Armed Forces after the September 11, 2001, terrorist attacks, and for other purposes.", "2188": "A bill to provide an effective method for the construction of lowrent homes for lowincome families with a minimum of Federal control and expenditure", "2189": "A bill to establish environmental laboratories within the States, regions, and Nation pursuant to policies and goals established in the National Environmental Policy Act of 1969", "2190": "To provide for increased participation in the acreage reserve program by producers of basic commodities in major disaster areas.", "2191": "To amend the Rural Electrification Act of 1936 to eliminate the requirement that central station service be unavailable in the case of rural electrification loans.", "2192": "A bill to provide for the regulation of the disposal of plastic materials and other garbage at sea; to provide for negotiation, regulation, and research regarding fishing with plastic driftnets; and for other purposes.", "2193": "A bill to encourage and stimulate the production and conservation of coal in the United States through research and development by creating a Coal Research and Development Commission, and for other purposes.", "2194": "A bill to amend section 216 of title 38, United States Code, relating to prosthetic research in the Veterans Administration.", "2195": "To permit all wheat farmers (including those who plant less than 15 acres of wheat) to vote in any wheat marketing quota referendum", "2196": "A bill to establish permanent Federal and State drug treatment programs for criminal offenders, and for other purposes.", "2197": "To increase transparency regarding debt instruments of the United States held by foreign governments, to assess the risks to the United States of such holdings, and for other purposes.", "2198": "To establish a national leadership initiative to promote and coordinate knowledge utilization in education, thereby increasing student achievement consistent with the objectives of the No Child Left Behind Act of 2001, and for other purposes.", "2199": "A bill to amend the Civil Rights Act to protect the rights of the unborn.", "2200": "To provide for the construction of a fish and wildlife marine laboratory and experiment station in the central gulf coast area of Florida.", "2201": "A bill to authorize extension of time limitations for a FERC-issued license.", "2202": "To provide for various programs and activities to respond to the problem of asthma in urban areas.", "2203": "To reauthorize the Secure Rural Schools and Community Self-Determination Act of 2000.", "2204": "To streamline and ensure onshore energy permitting, provide for onshore leasing certainty, and give certainty to oil shale development for American energy security, economic development, and job creation, and for other purposes.", "2205": "To improve sharing of immigration information among Federal, State, and local law enforcement officials, to improve State and local enforcement of immigration laws, and for other purposes.", "2206": "To amend the Carl D. Perkins Vocational and Technical Education Act of 1998 to strengthen and improve programs under that Act.", "2207": "To amend title 38, United States Code, to improve benefits under the Montgomery GI Bill by establishing an enhanced educational assistance program, by increasing the amount of basic educational assistance, by repealing the requirement for reduction in pay for participation in the program, by authorizing the Secretary of Veterans Affairs to make accelerated payments of basic educational assistance, and by reopening the period for certain VEAP participants to elect to participate in the program of basic educational assistance, and for other purposes.", "2208": "To provide equitable treatment for producers participating in the soilbank program on the basis of incorrect information furnished by the Government", "2209": "To amend the provisions of the Packers and Stockyards Act, 1921, as amended (7 U. S. C. 181) relating to practices in the marketing of livestock.", "2210": "A bill to foster and continue the family farm in the United States by providing young farmers with the necessary assistance to purchase family farm units.", "2211": "A bill authorizing the transfer of certain Presidential authority with respect to certain functions required by the Atomic Energy Act of 1954.", "2212": "A bill to amend the Clean Air Act to define the term Motor vehicle emission control inspection and maintenance program.", "2213": "A bill to strengthen and improve the protections and interests of participants and beneficiaries of employee pension and welfare benefit plans.", "2214": "A bill to establish the National Prostate Cancer Council for improved screening, early detection, assessment, and monitoring of prostate cancer, and to direct the development and implementation of a national strategic plan to expedite advancement of diagnostic tools and the transfer of such tools to patients.", "2215": "To give all persons serving in our Armed Forces the right to vote, regardless of age", "2216": "To authorize grants to enable local school agencies overburdened with war incurred or defense incurred school enrollments to increase school facilities", "2217": "A bill to prohibit permanently the issuance of regulations on the taxation of fringe benefits.", "2218": "A bill to improve the job and income security and retirement security of the American worker, and for other purposes.", "2219": "To provide for the use of public works and other economic programs in a coordinated efort to aid economically disadvantaged areas of the Nation", "2220": "A bill to establish a system for identifying, notifying, and preventing illness and death among workers who are at increased or high risk of occupational disease, and for other purposes.", "2221": "To amend the Higher Education Act of 1965 to preclude the consideration of nonliquid assets in the determination of Federal student financial assistance.", "2222": "A bill to provide disaster assistance to producers who suffered certain losses in the quantity of the 1989 crop of a commodity harvested as the result of damaging weather or related condition in 1988 or 1989, and for other purposes.", "2223": "To amend section 1120A(c) of the Elementary and Secondary Education Act of 1965 to assure comparability of opportunity for educationally disadvantaged students.", "2224": "A bill to authorize the continuation of Federal financial assistance for vaccination programs against polio, measles, and certain other diseases.", "2225": "A bill to amend the Food and Agriculture Act of 1977 relating to increases in the target prices of the 1979 crops of wheat, corn and other crops, under certain circumstances, and for other purposes.", "2226": "A bill to increase the level of price support for the 1953 and 1954 crops of any basic agricultural commodity", "2227": "To authorize health insurance issuers to continue to offer for sale current group health insurance coverage in satisfaction of the minimum essential health insurance coverage requirement, and for other purposes.", "2228": "To extend benefits under section8191 to title 5, United States Code, to lawenforcement officers and firemen notemployed by the United States who arekilled or totally disabled in the line ofduty", "2229": "A bill to require an acreage reduction program for each of the 1984 and 1985 crops of wheat and feed grains if the carryover from the preceding crop is excessive.", "2230": "To promote the welfare of the people by authorizing the appropriation of funds to assist the States and territories in the further development of their programs of general university extension education", "2231": "A bill to amend section 1445(b) of the Food and Agriculture Act of 1977 to modify the formula for distribution of funds authorized thereunder for agricultural research.", "2232": "To deem hospitals in Hillsdale County, Michigan, as being located in the Kalamazoo-Battle Creek, Michigan, Metropolitan Statistical Area for purposes of reimbursement under the Medicare Program."}, "label": {"0": "Health", "1": "Public Lands and Water Management", "2": "Health", "3": "Transportation", "4": "Public Lands and Water Management", "5": "Labor and Employment", "6": "Energy", "7": "Transportation", "8": "Transportation", "9": "Public Lands and Water Management", "10": "Energy", "11": "Energy", "12": "Agriculture", "13": "Civil Rights, Minority Issues, and Civil Liberties", "14": "Macroeconomics", "15": "Health", "16": "Labor and Employment", "17": "Environment", "18": "Transportation", "19": "Education", "20": "Public Lands and Water Management", "21": "Macroeconomics", "22": "Public Lands and Water Management", "23": "Public Lands and Water Management", "24": "Health", "25": "Transportation", "26": "Law, Crime, and Family Issues", "27": "Public Lands and Water Management", "28": "Law, Crime, and Family Issues", "29": "Energy", "30": "Energy", "31": "Transportation", "32": "Education", "33": "Public Lands and Water Management", "34": "Public Lands and Water Management", "35": "Education", "36": "Civil Rights, Minority Issues, and Civil Liberties", "37": "Law, Crime, and Family Issues", "38": "Health", "39": "Law, Crime, and Family Issues", "40": "Agriculture", "41": "Public Lands and Water Management", "42": "Public Lands and Water Management", "43": "Health", "44": "Macroeconomics", "45": "Macroeconomics", "46": "Macroeconomics", "47": "Labor and Employment", "48": "Energy", "49": "Law, Crime, and Family Issues", "50": "Energy", "51": "Public Lands and Water Management", "52": "Public Lands and Water Management", "53": "Public Lands and Water Management", "54": "Law, Crime, and Family Issues", "55": "Energy", "56": "Health", "57": "Law, Crime, and Family Issues", "58": "Public Lands and Water Management", "59": "Energy", "60": "Law, Crime, and Family Issues", "61": "Law, Crime, and Family Issues", "62": "Transportation", "63": "Law, Crime, and Family Issues", "64": "Law, Crime, and Family Issues", "65": "Public Lands and Water Management", "66": "Energy", "67": "Public Lands and Water Management", "68": "Labor and Employment", "69": "Health", "70": "Health", "71": "Public Lands and Water Management", "72": "Transportation", "73": "Transportation", "74": "Macroeconomics", "75": "Health", "76": "Community Development and Housing Issues", "77": "Energy", "78": "Agriculture", "79": "Macroeconomics", "80": "Agriculture", "81": "Agriculture", "82": "Law, Crime, and Family Issues", "83": "Macroeconomics", "84": "Macroeconomics", "85": "Law, Crime, and Family Issues", "86": "Public Lands and Water Management", "87": "Energy", "88": "Public Lands and Water Management", "89": "Transportation", "90": "Public Lands and Water Management", "91": "Law, Crime, and Family Issues", "92": "Public Lands and Water Management", "93": "Public Lands and Water Management", "94": "Public Lands and Water Management", "95": "Law, Crime, and Family Issues", "96": "Law, Crime, and Family Issues", "97": "Macroeconomics", "98": "Agriculture", "99": "Civil Rights, Minority Issues, and Civil Liberties", "100": "Energy", "101": "Civil Rights, Minority Issues, and Civil Liberties", "102": "Community Development and Housing Issues", "103": "Law, Crime, and Family Issues", "104": "Transportation", "105": "Transportation", "106": "Public Lands and Water Management", "107": "Agriculture", "108": "Public Lands and Water Management", "109": "Public Lands and Water Management", "110": "Law, Crime, and Family Issues", "111": "Agriculture", "112": "Law, Crime, and Family Issues", "113": "Law, Crime, and Family Issues", "114": "Community Development and Housing Issues", "115": "Labor and Employment", "116": "Public Lands and Water Management", "117": "Macroeconomics", "118": "Transportation", "119": "Energy", "120": "Public Lands and Water Management", "121": "Education", "122": "Labor and Employment", "123": "Community Development and Housing Issues", "124": "Law, Crime, and Family Issues", "125": "Public Lands and Water Management", "126": "Public Lands and Water Management", "127": "Public Lands and Water Management", "128": "Law, Crime, and Family Issues", "129": "Public Lands and Water Management", "130": "Environment", "131": "Agriculture", "132": "Transportation", "133": "Law, Crime, and Family Issues", "134": "Education", "135": "Agriculture", "136": "Law, Crime, and Family Issues", "137": "Public Lands and Water Management", "138": "Public Lands and Water Management", "139": "Public Lands and Water Management", "140": "Law, Crime, and Family Issues", "141": "Education", "142": "Agriculture", "143": "Agriculture", "144": "Education", "145": "Public Lands and Water Management", "146": "Public Lands and Water Management", "147": "Public Lands and Water Management", "148": "Labor and Employment", "149": "Law, Crime, and Family Issues", "150": "Health", "151": "Health", "152": "Macroeconomics", "153": "Community Development and Housing Issues", "154": "Environment", "155": "Labor and Employment", "156": "Energy", "157": "Energy", "158": "Environment", "159": "Transportation", "160": "Law, Crime, and Family Issues", "161": "Agriculture", "162": "Public Lands and Water Management", "163": "Transportation", "164": "Law, Crime, and Family Issues", "165": "Health", "166": "Health", "167": "Public Lands and Water Management", "168": "Law, Crime, and Family Issues", "169": "Macroeconomics", "170": "Transportation", "171": "Agriculture", "172": "Law, Crime, and Family Issues", "173": "Law, Crime, and Family Issues", "174": "Health", "175": "Environment", "176": "Energy", "177": "Energy", "178": "Energy", "179": "Public Lands and Water Management", "180": "Health", "181": "Education", "182": "Transportation", "183": "Environment", "184": "Public Lands and Water Management", "185": "Public Lands and Water Management", "186": "Agriculture", "187": "Law, Crime, and Family Issues", "188": "Agriculture", "189": "Energy", "190": "Community Development and Housing Issues", "191": "Public Lands and Water Management", "192": "Environment", "193": "Education", "194": "Agriculture", "195": "Education", "196": "Transportation", "197": "Civil Rights, Minority Issues, and Civil Liberties", "198": "Public Lands and Water Management", "199": "Public Lands and Water Management", "200": "Public Lands and Water Management", "201": "Public Lands and Water Management", "202": "Labor and Employment", "203": "Health", "204": "Transportation", "205": "Law, Crime, and Family Issues", "206": "Public Lands and Water Management", "207": "Transportation", "208": "Transportation", "209": "Transportation", "210": "Public Lands and Water Management", "211": "Community Development and Housing Issues", "212": "Macroeconomics", "213": "Public Lands and Water Management", "214": "Health", "215": "Agriculture", "216": "Public Lands and Water Management", "217": "Transportation", "218": "Macroeconomics", "219": "Health", "220": "Environment", "221": "Agriculture", "222": "Transportation", "223": "Community Development and Housing Issues", "224": "Environment", "225": "Agriculture", "226": "Public Lands and Water Management", "227": "Community Development and Housing Issues", "228": "Health", "229": "Law, Crime, and Family Issues", "230": "Transportation", "231": "Macroeconomics", "232": "Education", "233": "Transportation", "234": "Law, Crime, and Family Issues", "235": "Health", "236": "Transportation", "237": "Energy", "238": "Public Lands and Water Management", "239": "Law, Crime, and Family Issues", "240": "Energy", "241": "Civil Rights, Minority Issues, and Civil Liberties", "242": "Energy", "243": "Education", "244": "Law, Crime, and Family Issues", "245": "Transportation", "246": "Public Lands and Water Management", "247": "Transportation", "248": "Macroeconomics", "249": "Civil Rights, Minority Issues, and Civil Liberties", "250": "Health", "251": "Civil Rights, Minority Issues, and Civil Liberties", "252": "Civil Rights, Minority Issues, and Civil Liberties", "253": "Public Lands and Water Management", "254": "Law, Crime, and Family Issues", "255": "Public Lands and Water Management", "256": "Energy", "257": "Public Lands and Water Management", "258": "Education", "259": "Labor and Employment", "260": "Public Lands and Water Management", "261": "Health", "262": "Agriculture", "263": "Macroeconomics", "264": "Community Development and Housing Issues", "265": "Transportation", "266": "Public Lands and Water Management", "267": "Public Lands and Water Management", "268": "Public Lands and Water Management", "269": "Transportation", "270": "Transportation", "271": "Public Lands and Water Management", "272": "Energy", "273": "Transportation", "274": "Public Lands and Water Management", "275": "Law, Crime, and Family Issues", "276": "Public Lands and Water Management", "277": "Environment", "278": "Energy", "279": "Public Lands and Water Management", "280": "Health", "281": "Health", "282": "Agriculture", "283": "Transportation", "284": "Public Lands and Water Management", "285": "Agriculture", "286": "Law, Crime, and Family Issues", "287": "Public Lands and Water Management", "288": "Transportation", "289": "Law, Crime, and Family Issues", "290": "Health", "291": "Transportation", "292": "Public Lands and Water Management", "293": "Health", "294": "Transportation", "295": "Law, Crime, and Family Issues", "296": "Public Lands and Water Management", "297": "Energy", "298": "Agriculture", "299": "Macroeconomics", "300": "Public Lands and Water Management", "301": "Public Lands and Water Management", "302": "Labor and Employment", "303": "Public Lands and Water Management", "304": "Civil Rights, Minority Issues, and Civil Liberties", "305": "Energy", "306": "Public Lands and Water Management", "307": "Public Lands and Water Management", "308": "Public Lands and Water Management", "309": "Transportation", "310": "Transportation", "311": "Energy", "312": "Labor and Employment", "313": "Public Lands and Water Management", "314": "Transportation", "315": "Public Lands and Water Management", "316": "Transportation", "317": "Public Lands and Water Management", "318": "Transportation", "319": "Health", "320": "Transportation", "321": "Public Lands and Water Management", "322": "Macroeconomics", "323": "Transportation", "324": "Law, Crime, and Family Issues", "325": "Education", "326": "Public Lands and Water Management", "327": "Education", "328": "Public Lands and Water Management", "329": "Transportation", "330": "Public Lands and Water Management", "331": "Community Development and Housing Issues", "332": "Public Lands and Water Management", "333": "Health", "334": "Public Lands and Water Management", "335": "Transportation", "336": "Public Lands and Water Management", "337": "Law, Crime, and Family Issues", "338": "Law, Crime, and Family Issues", "339": "Law, Crime, and Family Issues", "340": "Public Lands and Water Management", "341": "Education", "342": "Education", "343": "Transportation", "344": "Public Lands and Water Management", "345": "Law, Crime, and Family Issues", "346": "Health", "347": "Public Lands and Water Management", "348": "Transportation", "349": "Agriculture", "350": "Community Development and Housing Issues", "351": "Public Lands and Water Management", "352": "Labor and Employment", "353": "Community Development and Housing Issues", "354": "Public Lands and Water Management", "355": "Public Lands and Water Management", "356": "Environment", "357": "Public Lands and Water Management", "358": "Environment", "359": "Public Lands and Water Management", "360": "Energy", "361": "Macroeconomics", "362": "Community Development and Housing Issues", "363": "Macroeconomics", "364": "Transportation", "365": "Transportation", "366": "Civil Rights, Minority Issues, and Civil Liberties", "367": "Health", "368": "Agriculture", "369": "Environment", "370": "Macroeconomics", "371": "Macroeconomics", "372": "Education", "373": "Civil Rights, Minority Issues, and Civil Liberties", "374": "Health", "375": "Transportation", "376": "Macroeconomics", "377": "Law, Crime, and Family Issues", "378": "Education", "379": "Public Lands and Water Management", "380": "Education", "381": "Labor and Employment", "382": "Public Lands and Water Management", "383": "Public Lands and Water Management", "384": "Law, Crime, and Family Issues", "385": "Energy", "386": "Health", "387": "Public Lands and Water Management", "388": "Law, Crime, and Family Issues", "389": "Labor and Employment", "390": "Civil Rights, Minority Issues, and Civil Liberties", "391": "Environment", "392": "Public Lands and Water Management", "393": "Transportation", "394": "Transportation", "395": "Health", "396": "Public Lands and Water Management", "397": "Environment", "398": "Civil Rights, Minority Issues, and Civil Liberties", "399": "Law, Crime, and Family Issues", "400": "Public Lands and Water Management", "401": "Agriculture", "402": "Transportation", "403": "Energy", "404": "Transportation", "405": "Public Lands and Water Management", "406": "Energy", "407": "Public Lands and Water Management", "408": "Environment", "409": "Agriculture", "410": "Health", "411": "Community Development and Housing Issues", "412": "Environment", "413": "Agriculture", "414": "Law, Crime, and Family Issues", "415": "Agriculture", "416": "Energy", "417": "Agriculture", "418": "Public Lands and Water Management", "419": "Public Lands and Water Management", "420": "Transportation", "421": "Agriculture", "422": "Public Lands and Water Management", "423": "Macroeconomics", "424": "Public Lands and Water Management", "425": "Health", "426": "Energy", "427": "Public Lands and Water Management", "428": "Education", "429": "Agriculture", "430": "Health", "431": "Education", "432": "Community Development and Housing Issues", "433": "Community Development and Housing Issues", "434": "Law, Crime, and Family Issues", "435": "Labor and Employment", "436": "Transportation", "437": "Environment", "438": "Public Lands and Water Management", "439": "Public Lands and Water Management", "440": "Macroeconomics", "441": "Law, Crime, and Family Issues", "442": "Public Lands and Water Management", "443": "Law, Crime, and Family Issues", "444": "Transportation", "445": "Education", "446": "Public Lands and Water Management", "447": "Public Lands and Water Management", "448": "Law, Crime, and Family Issues", "449": "Public Lands and Water Management", "450": "Energy", "451": "Civil Rights, Minority Issues, and Civil Liberties", "452": "Health", "453": "Public Lands and Water Management", "454": "Law, Crime, and Family Issues", "455": "Public Lands and Water Management", "456": "Transportation", "457": "Public Lands and Water Management", "458": "Agriculture", "459": "Health", "460": "Transportation", "461": "Transportation", "462": "Agriculture", "463": "Public Lands and Water Management", "464": "Public Lands and Water Management", "465": "Civil Rights, Minority Issues, and Civil Liberties", "466": "Transportation", "467": "Education", "468": "Public Lands and Water Management", "469": "Labor and Employment", "470": "Agriculture", "471": "Transportation", "472": "Health", "473": "Agriculture", "474": "Education", "475": "Public Lands and Water Management", "476": "Energy", "477": "Labor and Employment", "478": "Transportation", "479": "Environment", "480": "Public Lands and Water Management", "481": "Education", "482": "Public Lands and Water Management", "483": "Public Lands and Water Management", "484": "Public Lands and Water Management", "485": "Transportation", "486": "Community Development and Housing Issues", "487": "Environment", "488": "Public Lands and Water Management", "489": "Law, Crime, and Family Issues", "490": "Public Lands and Water Management", "491": "Energy", "492": "Environment", "493": "Transportation", "494": "Law, Crime, and Family Issues", "495": "Civil Rights, Minority Issues, and Civil Liberties", "496": "Energy", "497": "Health", "498": "Civil Rights, Minority Issues, and Civil Liberties", "499": "Transportation", "500": "Macroeconomics", "501": "Transportation", "502": "Environment", "503": "Community Development and Housing Issues", "504": "Environment", "505": "Law, Crime, and Family Issues", "506": "Public Lands and Water Management", "507": "Energy", "508": "Health", "509": "Education", "510": "Health", "511": "Civil Rights, Minority Issues, and Civil Liberties", "512": "Education", "513": "Health", "514": "Law, Crime, and Family Issues", "515": "Education", "516": "Civil Rights, Minority Issues, and Civil Liberties", "517": "Transportation", "518": "Transportation", "519": "Agriculture", "520": "Health", "521": "Public Lands and Water Management", "522": "Public Lands and Water Management", "523": "Macroeconomics", "524": "Public Lands and Water Management", "525": "Transportation", "526": "Labor and Employment", "527": "Macroeconomics", "528": "Transportation", "529": "Labor and Employment", "530": "Environment", "531": "Transportation", "532": "Education", "533": "Environment", "534": "Public Lands and Water Management", "535": "Health", "536": "Energy", "537": "Public Lands and Water Management", "538": "Public Lands and Water Management", "539": "Environment", "540": "Civil Rights, Minority Issues, and Civil Liberties", "541": "Agriculture", "542": "Transportation", "543": "Transportation", "544": "Public Lands and Water Management", "545": "Public Lands and Water Management", "546": "Environment", "547": "Environment", "548": "Energy", "549": "Macroeconomics", "550": "Education", "551": "Environment", "552": "Health", "553": "Health", "554": "Public Lands and Water Management", "555": "Environment", "556": "Transportation", "557": "Law, Crime, and Family Issues", "558": "Public Lands and Water Management", "559": "Law, Crime, and Family Issues", "560": "Education", "561": "Transportation", "562": "Transportation", "563": "Labor and Employment", "564": "Public Lands and Water Management", "565": "Macroeconomics", "566": "Agriculture", "567": "Labor and Employment", "568": "Macroeconomics", "569": "Health", "570": "Public Lands and Water Management", "571": "Public Lands and Water Management", "572": "Public Lands and Water Management", "573": "Public Lands and Water Management", "574": "Public Lands and Water Management", "575": "Macroeconomics", "576": "Transportation", "577": "Health", "578": "Public Lands and Water Management", "579": "Health", "580": "Public Lands and Water Management", "581": "Community Development and Housing Issues", "582": "Health", "583": "Environment", "584": "Energy", "585": "Labor and Employment", "586": "Environment", "587": "Public Lands and Water Management", "588": "Civil Rights, Minority Issues, and Civil Liberties", "589": "Environment", "590": "Transportation", "591": "Education", "592": "Law, Crime, and Family Issues", "593": "Public Lands and Water Management", "594": "Public Lands and Water Management", "595": "Transportation", "596": "Public Lands and Water Management", "597": "Law, Crime, and Family Issues", "598": "Education", "599": "Public Lands and Water Management", "600": "Environment", "601": "Environment", "602": "Law, Crime, and Family Issues", "603": "Energy", "604": "Labor and Employment", "605": "Transportation", "606": "Labor and Employment", "607": "Public Lands and Water Management", "608": "Transportation", "609": "Environment", "610": "Labor and Employment", "611": "Labor and Employment", "612": "Energy", "613": "Community Development and Housing Issues", "614": "Energy", "615": "Agriculture", "616": "Public Lands and Water Management", "617": "Public Lands and Water Management", "618": "Public Lands and Water Management", "619": "Energy", "620": "Civil Rights, Minority Issues, and Civil Liberties", "621": "Agriculture", "622": "Public Lands and Water Management", "623": "Energy", "624": "Education", "625": "Environment", "626": "Public Lands and Water Management", "627": "Macroeconomics", "628": "Community Development and Housing Issues", "629": "Environment", "630": "Public Lands and Water Management", "631": "Transportation", "632": "Labor and Employment", "633": "Public Lands and Water Management", "634": "Education", "635": "Environment", "636": "Education", "637": "Law, Crime, and Family Issues", "638": "Public Lands and Water Management", "639": "Law, Crime, and Family Issues", "640": "Public Lands and Water Management", "641": "Environment", "642": "Community Development and Housing Issues", "643": "Energy", "644": "Environment", "645": "Civil Rights, Minority Issues, and Civil Liberties", "646": "Public Lands and Water Management", "647": "Public Lands and Water Management", "648": "Civil Rights, Minority Issues, and Civil Liberties", "649": "Community Development and Housing Issues", "650": "Public Lands and Water Management", "651": "Education", "652": "Public Lands and Water Management", "653": "Energy", "654": "Macroeconomics", "655": "Law, Crime, and Family Issues", "656": "Community Development and Housing Issues", "657": "Public Lands and Water Management", "658": "Transportation", "659": "Health", "660": "Transportation", "661": "Education", "662": "Civil Rights, Minority Issues, and Civil Liberties", "663": "Public Lands and Water Management", "664": "Law, Crime, and Family Issues", "665": "Agriculture", "666": "Public Lands and Water Management", "667": "Law, Crime, and Family Issues", "668": "Health", "669": "Agriculture", "670": "Environment", "671": "Labor and Employment", "672": "Law, Crime, and Family Issues", "673": "Energy", "674": "Law, Crime, and Family Issues", "675": "Law, Crime, and Family Issues", "676": "Transportation", "677": "Energy", "678": "Macroeconomics", "679": "Agriculture", "680": "Law, Crime, and Family Issues", "681": "Macroeconomics", "682": "Public Lands and Water Management", "683": "Agriculture", "684": "Education", "685": "Energy", "686": "Labor and Employment", "687": "Education", "688": "Law, Crime, and Family Issues", "689": "Environment", "690": "Law, Crime, and Family Issues", "691": "Law, Crime, and Family Issues", "692": "Education", "693": "Energy", "694": "Education", "695": "Education", "696": "Macroeconomics", "697": "Public Lands and Water Management", "698": "Law, Crime, and Family Issues", "699": "Transportation", "700": "Public Lands and Water Management", "701": "Civil Rights, Minority Issues, and Civil Liberties", "702": "Agriculture", "703": "Public Lands and Water Management", "704": "Agriculture", "705": "Public Lands and Water Management", "706": "Public Lands and Water Management", "707": "Law, Crime, and Family Issues", "708": "Public Lands and Water Management", "709": "Health", "710": "Public Lands and Water Management", "711": "Agriculture", "712": "Law, Crime, and Family Issues", "713": "Public Lands and Water Management", "714": "Transportation", "715": "Community Development and Housing Issues", "716": "Civil Rights, Minority Issues, and Civil Liberties", "717": "Public Lands and Water Management", "718": "Community Development and Housing Issues", "719": "Agriculture", "720": "Education", "721": "Transportation", "722": "Community Development and Housing Issues", "723": "Education", "724": "Law, Crime, and Family Issues", "725": "Health", "726": "Law, Crime, and Family Issues", "727": "Health", "728": "Agriculture", "729": "Macroeconomics", "730": "Macroeconomics", "731": "Macroeconomics", "732": "Macroeconomics", "733": "Energy", "734": "Health", "735": "Labor and Employment", "736": "Environment", "737": "Macroeconomics", "738": "Health", "739": "Labor and Employment", "740": "Public Lands and Water Management", "741": "Environment", "742": "Transportation", "743": "Transportation", "744": "Agriculture", "745": "Public Lands and Water Management", "746": "Public Lands and Water Management", "747": "Agriculture", "748": "Public Lands and Water Management", "749": "Education", "750": "Law, Crime, and Family Issues", "751": "Agriculture", "752": "Law, Crime, and Family Issues", "753": "Agriculture", "754": "Energy", "755": "Agriculture", "756": "Macroeconomics", "757": "Environment", "758": "Law, Crime, and Family Issues", "759": "Public Lands and Water Management", "760": "Public Lands and Water Management", "761": "Public Lands and Water Management", "762": "Agriculture", "763": "Agriculture", "764": "Community Development and Housing Issues", "765": "Environment", "766": "Law, Crime, and Family Issues", "767": "Law, Crime, and Family Issues", "768": "Law, Crime, and Family Issues", "769": "Transportation", "770": "Health", "771": "Environment", "772": "Environment", "773": "Health", "774": "Transportation", "775": "Civil Rights, Minority Issues, and Civil Liberties", "776": "Public Lands and Water Management", "777": "Agriculture", "778": "Labor and Employment", "779": "Agriculture", "780": "Agriculture", "781": "Transportation", "782": "Law, Crime, and Family Issues", "783": "Health", "784": "Public Lands and Water Management", "785": "Civil Rights, Minority Issues, and Civil Liberties", "786": "Public Lands and Water Management", "787": "Public Lands and Water Management", "788": "Education", "789": "Health", "790": "Community Development and Housing Issues", "791": "Environment", "792": "Education", "793": "Health", "794": "Law, Crime, and Family Issues", "795": "Health", "796": "Agriculture", "797": "Public Lands and Water Management", "798": "Transportation", "799": "Health", "800": "Health", "801": "Civil Rights, Minority Issues, and Civil Liberties", "802": "Agriculture", "803": "Energy", "804": "Health", "805": "Energy", "806": "Agriculture", "807": "Community Development and Housing Issues", "808": "Transportation", "809": "Health", "810": "Public Lands and Water Management", "811": "Transportation", "812": "Macroeconomics", "813": "Civil Rights, Minority Issues, and Civil Liberties", "814": "Environment", "815": "Macroeconomics", "816": "Community Development and Housing Issues", "817": "Macroeconomics", "818": "Law, Crime, and Family Issues", "819": "Transportation", "820": "Community Development and Housing Issues", "821": "Agriculture", "822": "Civil Rights, Minority Issues, and Civil Liberties", "823": "Energy", "824": "Agriculture", "825": "Macroeconomics", "826": "Community Development and Housing Issues", "827": "Public Lands and Water Management", "828": "Health", "829": "Agriculture", "830": "Health", "831": "Transportation", "832": "Health", "833": "Health", "834": "Public Lands and Water Management", "835": "Environment", "836": "Law, Crime, and Family Issues", "837": "Public Lands and Water Management", "838": "Public Lands and Water Management", "839": "Community Development and Housing Issues", "840": "Energy", "841": "Labor and Employment", "842": "Community Development and Housing Issues", "843": "Health", "844": "Community Development and Housing Issues", "845": "Labor and Employment", "846": "Health", "847": "Transportation", "848": "Law, Crime, and Family Issues", "849": "Environment", "850": "Public Lands and Water Management", "851": "Energy", "852": "Energy", "853": "Agriculture", "854": "Education", "855": "Health", "856": "Public Lands and Water Management", "857": "Transportation", "858": "Agriculture", "859": "Transportation", "860": "Health", "861": "Public Lands and Water Management", "862": "Environment", "863": "Health", "864": "Community Development and Housing Issues", "865": "Transportation", "866": "Law, Crime, and Family Issues", "867": "Macroeconomics", "868": "Education", "869": "Labor and Employment", "870": "Agriculture", "871": "Energy", "872": "Labor and Employment", "873": "Public Lands and Water Management", "874": "Public Lands and Water Management", "875": "Public Lands and Water Management", "876": "Energy", "877": "Transportation", "878": "Agriculture", "879": "Energy", "880": "Law, Crime, and Family Issues", "881": "Public Lands and Water Management", "882": "Law, Crime, and Family Issues", "883": "Law, Crime, and Family Issues", "884": "Public Lands and Water Management", "885": "Labor and Employment", "886": "Health", "887": "Community Development and Housing Issues", "888": "Law, Crime, and Family Issues", "889": "Public Lands and Water Management", "890": "Health", "891": "Public Lands and Water Management", "892": "Energy", "893": "Public Lands and Water Management", "894": "Civil Rights, Minority Issues, and Civil Liberties", "895": "Public Lands and Water Management", "896": "Public Lands and Water Management", "897": "Energy", "898": "Public Lands and Water Management", "899": "Public Lands and Water Management", "900": "Civil Rights, Minority Issues, and Civil Liberties", "901": "Education", "902": "Public Lands and Water Management", "903": "Energy", "904": "Transportation", "905": "Law, Crime, and Family Issues", "906": "Energy", "907": "Public Lands and Water Management", "908": "Public Lands and Water Management", "909": "Law, Crime, and Family Issues", "910": "Community Development and Housing Issues", "911": "Public Lands and Water Management", "912": "Law, Crime, and Family Issues", "913": "Agriculture", "914": "Macroeconomics", "915": "Public Lands and Water Management", "916": "Environment", "917": "Environment", "918": "Agriculture", "919": "Environment", "920": "Agriculture", "921": "Community Development and Housing Issues", "922": "Education", "923": "Public Lands and Water Management", "924": "Health", "925": "Transportation", "926": "Public Lands and Water Management", "927": "Environment", "928": "Energy", "929": "Energy", "930": "Environment", "931": "Health", "932": "Law, Crime, and Family Issues", "933": "Environment", "934": "Transportation", "935": "Agriculture", "936": "Public Lands and Water Management", "937": "Law, Crime, and Family Issues", "938": "Education", "939": "Energy", "940": "Law, Crime, and Family Issues", "941": "Agriculture", "942": "Public Lands and Water Management", "943": "Environment", "944": "Public Lands and Water Management", "945": "Environment", "946": "Law, Crime, and Family Issues", "947": "Public Lands and Water Management", "948": "Public Lands and Water Management", "949": "Public Lands and Water Management", "950": "Law, Crime, and Family Issues", "951": "Transportation", "952": "Agriculture", "953": "Macroeconomics", "954": "Transportation", "955": "Community Development and Housing Issues", "956": "Public Lands and Water Management", "957": "Energy", "958": "Energy", "959": "Law, Crime, and Family Issues", "960": "Energy", "961": "Macroeconomics", "962": "Transportation", "963": "Public Lands and Water Management", "964": "Law, Crime, and Family Issues", "965": "Civil Rights, Minority Issues, and Civil Liberties", "966": "Agriculture", "967": "Environment", "968": "Law, Crime, and Family Issues", "969": "Energy", "970": "Public Lands and Water Management", "971": "Health", "972": "Agriculture", "973": "Public Lands and Water Management", "974": "Public Lands and Water Management", "975": "Transportation", "976": "Public Lands and Water Management", "977": "Public Lands and Water Management", "978": "Health", "979": "Macroeconomics", "980": "Agriculture", "981": "Labor and Employment", "982": "Transportation", "983": "Energy", "984": "Transportation", "985": "Agriculture", "986": "Public Lands and Water Management", "987": "Public Lands and Water Management", "988": "Civil Rights, Minority Issues, and Civil Liberties", "989": "Public Lands and Water Management", "990": "Transportation", "991": "Public Lands and Water Management", "992": "Public Lands and Water Management", "993": "Community Development and Housing Issues", "994": "Health", "995": "Education", "996": "Public Lands and Water Management", "997": "Agriculture", "998": "Transportation", "999": "Public Lands and Water Management", "1000": "Transportation", "1001": "Education", "1002": "Law, Crime, and Family Issues", "1003": "Environment", "1004": "Public Lands and Water Management", "1005": "Law, Crime, and Family Issues", "1006": "Energy", "1007": "Transportation", "1008": "Civil Rights, Minority Issues, and Civil Liberties", "1009": "Law, Crime, and Family Issues", "1010": "Community Development and Housing Issues", "1011": "Law, Crime, and Family Issues", "1012": "Public Lands and Water Management", "1013": "Transportation", "1014": "Public Lands and Water Management", "1015": "Agriculture", "1016": "Transportation", "1017": "Labor and Employment", "1018": "Law, Crime, and Family Issues", "1019": "Transportation", "1020": "Agriculture", "1021": "Transportation", "1022": "Transportation", "1023": "Law, Crime, and Family Issues", "1024": "Community Development and Housing Issues", "1025": "Law, Crime, and Family Issues", "1026": "Public Lands and Water Management", "1027": "Education", "1028": "Public Lands and Water Management", "1029": "Energy", "1030": "Civil Rights, Minority Issues, and Civil Liberties", "1031": "Community Development and Housing Issues", "1032": "Energy", "1033": "Public Lands and Water Management", "1034": "Health", "1035": "Health", "1036": "Transportation", "1037": "Labor and Employment", "1038": "Public Lands and Water Management", "1039": "Energy", "1040": "Environment", "1041": "Civil Rights, Minority Issues, and Civil Liberties", "1042": "Health", "1043": "Environment", "1044": "Community Development and Housing Issues", "1045": "Agriculture", "1046": "Environment", "1047": "Public Lands and Water Management", "1048": "Education", "1049": "Labor and Employment", "1050": "Law, Crime, and Family Issues", "1051": "Public Lands and Water Management", "1052": "Public Lands and Water Management", "1053": "Transportation", "1054": "Civil Rights, Minority Issues, and Civil Liberties", "1055": "Civil Rights, Minority Issues, and Civil Liberties", "1056": "Transportation", "1057": "Law, Crime, and Family Issues", "1058": "Law, Crime, and Family Issues", "1059": "Public Lands and Water Management", "1060": "Health", "1061": "Law, Crime, and Family Issues", "1062": "Agriculture", "1063": "Agriculture", "1064": "Public Lands and Water Management", "1065": "Energy", "1066": "Public Lands and Water Management", "1067": "Community Development and Housing Issues", "1068": "Transportation", "1069": "Law, Crime, and Family Issues", "1070": "Macroeconomics", "1071": "Transportation", "1072": "Agriculture", "1073": "Public Lands and Water Management", "1074": "Transportation", "1075": "Transportation", "1076": "Agriculture", "1077": "Public Lands and Water Management", "1078": "Environment", "1079": "Energy", "1080": "Health", "1081": "Law, Crime, and Family Issues", "1082": "Transportation", "1083": "Public Lands and Water Management", "1084": "Public Lands and Water Management", "1085": "Community Development and Housing Issues", "1086": "Community Development and Housing Issues", "1087": "Macroeconomics", "1088": "Energy", "1089": "Energy", "1090": "Public Lands and Water Management", "1091": "Environment", "1092": "Environment", "1093": "Environment", "1094": "Health", "1095": "Macroeconomics", "1096": "Transportation", "1097": "Education", "1098": "Transportation", "1099": "Law, Crime, and Family Issues", "1100": "Civil Rights, Minority Issues, and Civil Liberties", "1101": "Public Lands and Water Management", "1102": "Environment", "1103": "Public Lands and Water Management", "1104": "Education", "1105": "Education", "1106": "Energy", "1107": "Agriculture", "1108": "Environment", "1109": "Labor and Employment", "1110": "Environment", "1111": "Public Lands and Water Management", "1112": "Labor and Employment", "1113": "Energy", "1114": "Public Lands and Water Management", "1115": "Health", "1116": "Transportation", "1117": "Law, Crime, and Family Issues", "1118": "Health", "1119": "Agriculture", "1120": "Health", "1121": "Law, Crime, and Family Issues", "1122": "Labor and Employment", "1123": "Environment", "1124": "Public Lands and Water Management", "1125": "Education", "1126": "Civil Rights, Minority Issues, and Civil Liberties", "1127": "Transportation", "1128": "Transportation", "1129": "Agriculture", "1130": "Public Lands and Water Management", "1131": "Civil Rights, Minority Issues, and Civil Liberties", "1132": "Community Development and Housing Issues", "1133": "Public Lands and Water Management", "1134": "Agriculture", "1135": "Public Lands and Water Management", "1136": "Public Lands and Water Management", "1137": "Public Lands and Water Management", "1138": "Health", "1139": "Agriculture", "1140": "Law, Crime, and Family Issues", "1141": "Transportation", "1142": "Transportation", "1143": "Civil Rights, Minority Issues, and Civil Liberties", "1144": "Education", "1145": "Environment", "1146": "Law, Crime, and Family Issues", "1147": "Transportation", "1148": "Environment", "1149": "Environment", "1150": "Education", "1151": "Education", "1152": "Law, Crime, and Family Issues", "1153": "Energy", "1154": "Macroeconomics", "1155": "Transportation", "1156": "Public Lands and Water Management", "1157": "Agriculture", "1158": "Education", "1159": "Public Lands and Water Management", "1160": "Law, Crime, and Family Issues", "1161": "Community Development and Housing Issues", "1162": "Public Lands and Water Management", "1163": "Public Lands and Water Management", "1164": "Transportation", "1165": "Environment", "1166": "Public Lands and Water Management", "1167": "Health", "1168": "Agriculture", "1169": "Labor and Employment", "1170": "Health", "1171": "Civil Rights, Minority Issues, and Civil Liberties", "1172": "Public Lands and Water Management", "1173": "Macroeconomics", "1174": "Education", "1175": "Macroeconomics", "1176": "Public Lands and Water Management", "1177": "Energy", "1178": "Health", "1179": "Macroeconomics", "1180": "Public Lands and Water Management", "1181": "Labor and Employment", "1182": "Environment", "1183": "Education", "1184": "Public Lands and Water Management", "1185": "Transportation", "1186": "Agriculture", "1187": "Labor and Employment", "1188": "Environment", "1189": "Energy", "1190": "Law, Crime, and Family Issues", "1191": "Law, Crime, and Family Issues", "1192": "Civil Rights, Minority Issues, and Civil Liberties", "1193": "Environment", "1194": "Agriculture", "1195": "Community Development and Housing Issues", "1196": "Public Lands and Water Management", "1197": "Community Development and Housing Issues", "1198": "Public Lands and Water Management", "1199": "Law, Crime, and Family Issues", "1200": "Transportation", "1201": "Public Lands and Water Management", "1202": "Macroeconomics", "1203": "Law, Crime, and Family Issues", "1204": "Health", "1205": "Transportation", "1206": "Public Lands and Water Management", "1207": "Energy", "1208": "Energy", "1209": "Environment", "1210": "Law, Crime, and Family Issues", "1211": "Macroeconomics", "1212": "Public Lands and Water Management", "1213": "Transportation", "1214": "Macroeconomics", "1215": "Macroeconomics", "1216": "Community Development and Housing Issues", "1217": "Civil Rights, Minority Issues, and Civil Liberties", "1218": "Environment", "1219": "Macroeconomics", "1220": "Law, Crime, and Family Issues", "1221": "Community Development and Housing Issues", "1222": "Public Lands and Water Management", "1223": "Education", "1224": "Public Lands and Water Management", "1225": "Public Lands and Water Management", "1226": "Health", "1227": "Public Lands and Water Management", "1228": "Law, Crime, and Family Issues", "1229": "Agriculture", "1230": "Public Lands and Water Management", "1231": "Transportation", "1232": "Public Lands and Water Management", "1233": "Transportation", "1234": "Agriculture", "1235": "Macroeconomics", "1236": "Environment", "1237": "Public Lands and Water Management", "1238": "Public Lands and Water Management", "1239": "Education", "1240": "Health", "1241": "Health", "1242": "Law, Crime, and Family Issues", "1243": "Transportation", "1244": "Law, Crime, and Family Issues", "1245": "Public Lands and Water Management", "1246": "Energy", "1247": "Education", "1248": "Education", "1249": "Civil Rights, Minority Issues, and Civil Liberties", "1250": "Macroeconomics", "1251": "Environment", "1252": "Energy", "1253": "Labor and Employment", "1254": "Civil Rights, Minority Issues, and Civil Liberties", "1255": "Agriculture", "1256": "Environment", "1257": "Energy", "1258": "Energy", "1259": "Transportation", "1260": "Transportation", "1261": "Energy", "1262": "Energy", "1263": "Law, Crime, and Family Issues", "1264": "Macroeconomics", "1265": "Environment", "1266": "Education", "1267": "Agriculture", "1268": "Environment", "1269": "Health", "1270": "Transportation", "1271": "Law, Crime, and Family Issues", "1272": "Agriculture", "1273": "Education", "1274": "Labor and Employment", "1275": "Law, Crime, and Family Issues", "1276": "Environment", "1277": "Law, Crime, and Family Issues", "1278": "Agriculture", "1279": "Law, Crime, and Family Issues", "1280": "Transportation", "1281": "Environment", "1282": "Labor and Employment", "1283": "Transportation", "1284": "Environment", "1285": "Transportation", "1286": "Environment", "1287": "Community Development and Housing Issues", "1288": "Energy", "1289": "Health", "1290": "Energy", "1291": "Energy", "1292": "Environment", "1293": "Law, Crime, and Family Issues", "1294": "Education", "1295": "Transportation", "1296": "Agriculture", "1297": "Community Development and Housing Issues", "1298": "Health", "1299": "Health", "1300": "Labor and Employment", "1301": "Agriculture", "1302": "Environment", "1303": "Macroeconomics", "1304": "Environment", "1305": "Law, Crime, and Family Issues", "1306": "Health", "1307": "Health", "1308": "Labor and Employment", "1309": "Health", "1310": "Energy", "1311": "Community Development and Housing Issues", "1312": "Health", "1313": "Health", "1314": "Environment", "1315": "Health", "1316": "Health", "1317": "Civil Rights, Minority Issues, and Civil Liberties", "1318": "Civil Rights, Minority Issues, and Civil Liberties", "1319": "Transportation", "1320": "Environment", "1321": "Transportation", "1322": "Transportation", "1323": "Health", "1324": "Energy", "1325": "Law, Crime, and Family Issues", "1326": "Energy", "1327": "Community Development and Housing Issues", "1328": "Energy", "1329": "Environment", "1330": "Health", "1331": "Transportation", "1332": "Transportation", "1333": "Macroeconomics", "1334": "Transportation", "1335": "Health", "1336": "Transportation", "1337": "Environment", "1338": "Community Development and Housing Issues", "1339": "Civil Rights, Minority Issues, and Civil Liberties", "1340": "Law, Crime, and Family Issues", "1341": "Law, Crime, and Family Issues", "1342": "Labor and Employment", "1343": "Transportation", "1344": "Environment", "1345": "Energy", "1346": "Law, Crime, and Family Issues", "1347": "Energy", "1348": "Law, Crime, and Family Issues", "1349": "Law, Crime, and Family Issues", "1350": "Health", "1351": "Health", "1352": "Law, Crime, and Family Issues", "1353": "Macroeconomics", "1354": "Education", "1355": "Macroeconomics", "1356": "Environment", "1357": "Health", "1358": "Environment", "1359": "Energy", "1360": "Law, Crime, and Family Issues", "1361": "Transportation", "1362": "Transportation", "1363": "Community Development and Housing Issues", "1364": "Labor and Employment", "1365": "Education", "1366": "Transportation", "1367": "Health", "1368": "Education", "1369": "Transportation", "1370": "Environment", "1371": "Education", "1372": "Health", "1373": "Labor and Employment", "1374": "Civil Rights, Minority Issues, and Civil Liberties", "1375": "Health", "1376": "Health", "1377": "Health", "1378": "Transportation", "1379": "Civil Rights, Minority Issues, and Civil Liberties", "1380": "Energy", "1381": "Health", "1382": "Law, Crime, and Family Issues", "1383": "Health", "1384": "Community Development and Housing Issues", "1385": "Law, Crime, and Family Issues", "1386": "Law, Crime, and Family Issues", "1387": "Health", "1388": "Energy", "1389": "Energy", "1390": "Health", "1391": "Health", "1392": "Macroeconomics", "1393": "Environment", "1394": "Education", "1395": "Community Development and Housing Issues", "1396": "Transportation", "1397": "Education", "1398": "Energy", "1399": "Community Development and Housing Issues", "1400": "Macroeconomics", "1401": "Education", "1402": "Education", "1403": "Energy", "1404": "Agriculture", "1405": "Labor and Employment", "1406": "Labor and Employment", "1407": "Energy", "1408": "Energy", "1409": "Energy", "1410": "Transportation", "1411": "Transportation", "1412": "Health", "1413": "Health", "1414": "Education", "1415": "Environment", "1416": "Law, Crime, and Family Issues", "1417": "Health", "1418": "Agriculture", "1419": "Transportation", "1420": "Macroeconomics", "1421": "Health", "1422": "Energy", "1423": "Education", "1424": "Law, Crime, and Family Issues", "1425": "Law, Crime, and Family Issues", "1426": "Macroeconomics", "1427": "Labor and Employment", "1428": "Environment", "1429": "Macroeconomics", "1430": "Environment", "1431": "Energy", "1432": "Health", "1433": "Labor and Employment", "1434": "Labor and Employment", "1435": "Environment", "1436": "Law, Crime, and Family Issues", "1437": "Health", "1438": "Community Development and Housing Issues", "1439": "Transportation", "1440": "Macroeconomics", "1441": "Law, Crime, and Family Issues", "1442": "Law, Crime, and Family Issues", "1443": "Transportation", "1444": "Law, Crime, and Family Issues", "1445": "Energy", "1446": "Environment", "1447": "Labor and Employment", "1448": "Law, Crime, and Family Issues", "1449": "Transportation", "1450": "Law, Crime, and Family Issues", "1451": "Community Development and Housing Issues", "1452": "Health", "1453": "Transportation", "1454": "Health", "1455": "Law, Crime, and Family Issues", "1456": "Law, Crime, and Family Issues", "1457": "Agriculture", "1458": "Education", "1459": "Environment", "1460": "Environment", "1461": "Transportation", "1462": "Agriculture", "1463": "Macroeconomics", "1464": "Transportation", "1465": "Macroeconomics", "1466": "Health", "1467": "Labor and Employment", "1468": "Macroeconomics", "1469": "Energy", "1470": "Agriculture", "1471": "Civil Rights, Minority Issues, and Civil Liberties", "1472": "Transportation", "1473": "Energy", "1474": "Environment", "1475": "Health", "1476": "Energy", "1477": "Transportation", "1478": "Agriculture", "1479": "Environment", "1480": "Health", "1481": "Community Development and Housing Issues", "1482": "Law, Crime, and Family Issues", "1483": "Education", "1484": "Environment", "1485": "Agriculture", "1486": "Health", "1487": "Environment", "1488": "Health", "1489": "Environment", "1490": "Transportation", "1491": "Health", "1492": "Energy", "1493": "Health", "1494": "Law, Crime, and Family Issues", "1495": "Law, Crime, and Family Issues", "1496": "Macroeconomics", "1497": "Civil Rights, Minority Issues, and Civil Liberties", "1498": "Energy", "1499": "Labor and Employment", "1500": "Education", "1501": "Health", "1502": "Energy", "1503": "Labor and Employment", "1504": "Law, Crime, and Family Issues", "1505": "Civil Rights, Minority Issues, and Civil Liberties", "1506": "Law, Crime, and Family Issues", "1507": "Health", "1508": "Transportation", "1509": "Health", "1510": "Transportation", "1511": "Education", "1512": "Law, Crime, and Family Issues", "1513": "Health", "1514": "Health", "1515": "Civil Rights, Minority Issues, and Civil Liberties", "1516": "Law, Crime, and Family Issues", "1517": "Health", "1518": "Environment", "1519": "Health", "1520": "Law, Crime, and Family Issues", "1521": "Labor and Employment", "1522": "Transportation", "1523": "Labor and Employment", "1524": "Law, Crime, and Family Issues", "1525": "Transportation", "1526": "Environment", "1527": "Agriculture", "1528": "Agriculture", "1529": "Macroeconomics", "1530": "Macroeconomics", "1531": "Transportation", "1532": "Transportation", "1533": "Civil Rights, Minority Issues, and Civil Liberties", "1534": "Law, Crime, and Family Issues", "1535": "Education", "1536": "Labor and Employment", "1537": "Labor and Employment", "1538": "Environment", "1539": "Labor and Employment", "1540": "Law, Crime, and Family Issues", "1541": "Health", "1542": "Energy", "1543": "Energy", "1544": "Law, Crime, and Family Issues", "1545": "Law, Crime, and Family Issues", "1546": "Health", "1547": "Environment", "1548": "Civil Rights, Minority Issues, and Civil Liberties", "1549": "Law, Crime, and Family Issues", "1550": "Labor and Employment", "1551": "Environment", "1552": "Education", "1553": "Energy", "1554": "Education", "1555": "Health", "1556": "Law, Crime, and Family Issues", "1557": "Energy", "1558": "Transportation", "1559": "Law, Crime, and Family Issues", "1560": "Labor and Employment", "1561": "Transportation", "1562": "Energy", "1563": "Transportation", "1564": "Education", "1565": "Civil Rights, Minority Issues, and Civil Liberties", "1566": "Macroeconomics", "1567": "Law, Crime, and Family Issues", "1568": "Law, Crime, and Family Issues", "1569": "Law, Crime, and Family Issues", "1570": "Education", "1571": "Health", "1572": "Energy", "1573": "Agriculture", "1574": "Community Development and Housing Issues", "1575": "Energy", "1576": "Civil Rights, Minority Issues, and Civil Liberties", "1577": "Health", "1578": "Macroeconomics", "1579": "Agriculture", "1580": "Macroeconomics", "1581": "Transportation", "1582": "Law, Crime, and Family Issues", "1583": "Law, Crime, and Family Issues", "1584": "Law, Crime, and Family Issues", "1585": "Education", "1586": "Environment", "1587": "Education", "1588": "Agriculture", "1589": "Energy", "1590": "Transportation", "1591": "Health", "1592": "Civil Rights, Minority Issues, and Civil Liberties", "1593": "Community Development and Housing Issues", "1594": "Health", "1595": "Environment", "1596": "Transportation", "1597": "Macroeconomics", "1598": "Energy", "1599": "Energy", "1600": "Health", "1601": "Law, Crime, and Family Issues", "1602": "Health", "1603": "Community Development and Housing Issues", "1604": "Labor and Employment", "1605": "Law, Crime, and Family Issues", "1606": "Civil Rights, Minority Issues, and Civil Liberties", "1607": "Macroeconomics", "1608": "Transportation", "1609": "Law, Crime, and Family Issues", "1610": "Environment", "1611": "Health", "1612": "Law, Crime, and Family Issues", "1613": "Energy", "1614": "Education", "1615": "Environment", "1616": "Energy", "1617": "Agriculture", "1618": "Agriculture", "1619": "Environment", "1620": "Law, Crime, and Family Issues", "1621": "Health", "1622": "Health", "1623": "Civil Rights, Minority Issues, and Civil Liberties", "1624": "Transportation", "1625": "Civil Rights, Minority Issues, and Civil Liberties", "1626": "Environment", "1627": "Health", "1628": "Labor and Employment", "1629": "Civil Rights, Minority Issues, and Civil Liberties", "1630": "Health", "1631": "Civil Rights, Minority Issues, and Civil Liberties", "1632": "Energy", "1633": "Agriculture", "1634": "Labor and Employment", "1635": "Transportation", "1636": "Macroeconomics", "1637": "Health", "1638": "Community Development and Housing Issues", "1639": "Law, Crime, and Family Issues", "1640": "Health", "1641": "Labor and Employment", "1642": "Environment", "1643": "Education", "1644": "Transportation", "1645": "Energy", "1646": "Community Development and Housing Issues", "1647": "Macroeconomics", "1648": "Macroeconomics", "1649": "Civil Rights, Minority Issues, and Civil Liberties", "1650": "Community Development and Housing Issues", "1651": "Community Development and Housing Issues", "1652": "Civil Rights, Minority Issues, and Civil Liberties", "1653": "Health", "1654": "Law, Crime, and Family Issues", "1655": "Agriculture", "1656": "Environment", "1657": "Health", "1658": "Law, Crime, and Family Issues", "1659": "Law, Crime, and Family Issues", "1660": "Transportation", "1661": "Civil Rights, Minority Issues, and Civil Liberties", "1662": "Law, Crime, and Family Issues", "1663": "Law, Crime, and Family Issues", "1664": "Labor and Employment", "1665": "Civil Rights, Minority Issues, and Civil Liberties", "1666": "Health", "1667": "Health", "1668": "Energy", "1669": "Education", "1670": "Macroeconomics", "1671": "Community Development and Housing Issues", "1672": "Transportation", "1673": "Energy", "1674": "Law, Crime, and Family Issues", "1675": "Community Development and Housing Issues", "1676": "Education", "1677": "Labor and Employment", "1678": "Macroeconomics", "1679": "Macroeconomics", "1680": "Law, Crime, and Family Issues", "1681": "Education", "1682": "Civil Rights, Minority Issues, and Civil Liberties", "1683": "Education", "1684": "Transportation", "1685": "Education", "1686": "Civil Rights, Minority Issues, and Civil Liberties", "1687": "Macroeconomics", "1688": "Law, Crime, and Family Issues", "1689": "Civil Rights, Minority Issues, and Civil Liberties", "1690": "Law, Crime, and Family Issues", "1691": "Macroeconomics", "1692": "Transportation", "1693": "Health", "1694": "Energy", "1695": "Transportation", "1696": "Agriculture", "1697": "Law, Crime, and Family Issues", "1698": "Civil Rights, Minority Issues, and Civil Liberties", "1699": "Law, Crime, and Family Issues", "1700": "Health", "1701": "Civil Rights, Minority Issues, and Civil Liberties", "1702": "Energy", "1703": "Macroeconomics", "1704": "Energy", "1705": "Transportation", "1706": "Law, Crime, and Family Issues", "1707": "Agriculture", "1708": "Macroeconomics", "1709": "Education", "1710": "Labor and Employment", "1711": "Environment", "1712": "Agriculture", "1713": "Civil Rights, Minority Issues, and Civil Liberties", "1714": "Labor and Employment", "1715": "Agriculture", "1716": "Transportation", "1717": "Community Development and Housing Issues", "1718": "Education", "1719": "Health", "1720": "Environment", "1721": "Environment", "1722": "Education", "1723": "Law, Crime, and Family Issues", "1724": "Health", "1725": "Agriculture", "1726": "Energy", "1727": "Transportation", "1728": "Environment", "1729": "Health", "1730": "Environment", "1731": "Law, Crime, and Family Issues", "1732": "Civil Rights, Minority Issues, and Civil Liberties", "1733": "Education", "1734": "Community Development and Housing Issues", "1735": "Law, Crime, and Family Issues", "1736": "Transportation", "1737": "Macroeconomics", "1738": "Transportation", "1739": "Labor and Employment", "1740": "Education", "1741": "Energy", "1742": "Health", "1743": "Community Development and Housing Issues", "1744": "Transportation", "1745": "Transportation", "1746": "Transportation", "1747": "Transportation", "1748": "Civil Rights, Minority Issues, and Civil Liberties", "1749": "Law, Crime, and Family Issues", "1750": "Law, Crime, and Family Issues", "1751": "Health", "1752": "Education", "1753": "Environment", "1754": "Education", "1755": "Community Development and Housing Issues", "1756": "Transportation", "1757": "Macroeconomics", "1758": "Law, Crime, and Family Issues", "1759": "Energy", "1760": "Civil Rights, Minority Issues, and Civil Liberties", "1761": "Energy", "1762": "Community Development and Housing Issues", "1763": "Education", "1764": "Macroeconomics", "1765": "Health", "1766": "Law, Crime, and Family Issues", "1767": "Education", "1768": "Environment", "1769": "Community Development and Housing Issues", "1770": "Community Development and Housing Issues", "1771": "Law, Crime, and Family Issues", "1772": "Health", "1773": "Health", "1774": "Education", "1775": "Agriculture", "1776": "Education", "1777": "Law, Crime, and Family Issues", "1778": "Environment", "1779": "Education", "1780": "Civil Rights, Minority Issues, and Civil Liberties", "1781": "Law, Crime, and Family Issues", "1782": "Civil Rights, Minority Issues, and Civil Liberties", "1783": "Transportation", "1784": "Law, Crime, and Family Issues", "1785": "Energy", "1786": "Environment", "1787": "Law, Crime, and Family Issues", "1788": "Law, Crime, and Family Issues", "1789": "Environment", "1790": "Health", "1791": "Community Development and Housing Issues", "1792": "Community Development and Housing Issues", "1793": "Law, Crime, and Family Issues", "1794": "Community Development and Housing Issues", "1795": "Agriculture", "1796": "Law, Crime, and Family Issues", "1797": "Agriculture", "1798": "Macroeconomics", "1799": "Law, Crime, and Family Issues", "1800": "Civil Rights, Minority Issues, and Civil Liberties", "1801": "Macroeconomics", "1802": "Education", "1803": "Labor and Employment", "1804": "Labor and Employment", "1805": "Law, Crime, and Family Issues", "1806": "Agriculture", "1807": "Education", "1808": "Education", "1809": "Environment", "1810": "Health", "1811": "Environment", "1812": "Civil Rights, Minority Issues, and Civil Liberties", "1813": "Transportation", "1814": "Community Development and Housing Issues", "1815": "Health", "1816": "Environment", "1817": "Agriculture", "1818": "Education", "1819": "Environment", "1820": "Health", "1821": "Education", "1822": "Education", "1823": "Transportation", "1824": "Macroeconomics", "1825": "Transportation", "1826": "Civil Rights, Minority Issues, and Civil Liberties", "1827": "Macroeconomics", "1828": "Law, Crime, and Family Issues", "1829": "Environment", "1830": "Agriculture", "1831": "Transportation", "1832": "Law, Crime, and Family Issues", "1833": "Transportation", "1834": "Environment", "1835": "Health", "1836": "Environment", "1837": "Environment", "1838": "Law, Crime, and Family Issues", "1839": "Macroeconomics", "1840": "Education", "1841": "Health", "1842": "Transportation", "1843": "Transportation", "1844": "Macroeconomics", "1845": "Law, Crime, and Family Issues", "1846": "Education", "1847": "Macroeconomics", "1848": "Community Development and Housing Issues", "1849": "Environment", "1850": "Civil Rights, Minority Issues, and Civil Liberties", "1851": "Energy", "1852": "Macroeconomics", "1853": "Civil Rights, Minority Issues, and Civil Liberties", "1854": "Labor and Employment", "1855": "Community Development and Housing Issues", "1856": "Education", "1857": "Education", "1858": "Law, Crime, and Family Issues", "1859": "Labor and Employment", "1860": "Law, Crime, and Family Issues", "1861": "Environment", "1862": "Health", "1863": "Education", "1864": "Agriculture", "1865": "Law, Crime, and Family Issues", "1866": "Health", "1867": "Energy", "1868": "Health", "1869": "Transportation", "1870": "Community Development and Housing Issues", "1871": "Education", "1872": "Energy", "1873": "Energy", "1874": "Energy", "1875": "Health", "1876": "Law, Crime, and Family Issues", "1877": "Law, Crime, and Family Issues", "1878": "Macroeconomics", "1879": "Health", "1880": "Energy", "1881": "Transportation", "1882": "Environment", "1883": "Agriculture", "1884": "Law, Crime, and Family Issues", "1885": "Education", "1886": "Energy", "1887": "Law, Crime, and Family Issues", "1888": "Agriculture", "1889": "Transportation", "1890": "Agriculture", "1891": "Environment", "1892": "Transportation", "1893": "Law, Crime, and Family Issues", "1894": "Law, Crime, and Family Issues", "1895": "Health", "1896": "Macroeconomics", "1897": "Transportation", "1898": "Transportation", "1899": "Labor and Employment", "1900": "Energy", "1901": "Macroeconomics", "1902": "Macroeconomics", "1903": "Agriculture", "1904": "Labor and Employment", "1905": "Energy", "1906": "Health", "1907": "Education", "1908": "Agriculture", "1909": "Environment", "1910": "Agriculture", "1911": "Environment", "1912": "Environment", "1913": "Education", "1914": "Agriculture", "1915": "Law, Crime, and Family Issues", "1916": "Environment", "1917": "Law, Crime, and Family Issues", "1918": "Law, Crime, and Family Issues", "1919": "Health", "1920": "Law, Crime, and Family Issues", "1921": "Energy", "1922": "Law, Crime, and Family Issues", "1923": "Law, Crime, and Family Issues", "1924": "Law, Crime, and Family Issues", "1925": "Transportation", "1926": "Law, Crime, and Family Issues", "1927": "Transportation", "1928": "Environment", "1929": "Law, Crime, and Family Issues", "1930": "Macroeconomics", "1931": "Community Development and Housing Issues", "1932": "Macroeconomics", "1933": "Education", "1934": "Law, Crime, and Family Issues", "1935": "Labor and Employment", "1936": "Macroeconomics", "1937": "Transportation", "1938": "Education", "1939": "Health", "1940": "Transportation", "1941": "Energy", "1942": "Law, Crime, and Family Issues", "1943": "Health", "1944": "Labor and Employment", "1945": "Environment", "1946": "Macroeconomics", "1947": "Macroeconomics", "1948": "Macroeconomics", "1949": "Energy", "1950": "Agriculture", "1951": "Labor and Employment", "1952": "Health", "1953": "Environment", "1954": "Law, Crime, and Family Issues", "1955": "Transportation", "1956": "Law, Crime, and Family Issues", "1957": "Labor and Employment", "1958": "Transportation", "1959": "Law, Crime, and Family Issues", "1960": "Labor and Employment", "1961": "Agriculture", "1962": "Agriculture", "1963": "Law, Crime, and Family Issues", "1964": "Health", "1965": "Transportation", "1966": "Macroeconomics", "1967": "Transportation", "1968": "Agriculture", "1969": "Transportation", "1970": "Law, Crime, and Family Issues", "1971": "Health", "1972": "Health", "1973": "Transportation", "1974": "Labor and Employment", "1975": "Macroeconomics", "1976": "Agriculture", "1977": "Environment", "1978": "Health", "1979": "Energy", "1980": "Civil Rights, Minority Issues, and Civil Liberties", "1981": "Transportation", "1982": "Environment", "1983": "Macroeconomics", "1984": "Education", "1985": "Transportation", "1986": "Transportation", "1987": "Environment", "1988": "Macroeconomics", "1989": "Macroeconomics", "1990": "Community Development and Housing Issues", "1991": "Environment", "1992": "Agriculture", "1993": "Energy", "1994": "Labor and Employment", "1995": "Environment", "1996": "Energy", "1997": "Health", "1998": "Health", "1999": "Agriculture", "2000": "Law, Crime, and Family Issues", "2001": "Education", "2002": "Transportation", "2003": "Macroeconomics", "2004": "Energy", "2005": "Transportation", "2006": "Transportation", "2007": "Transportation", "2008": "Community Development and Housing Issues", "2009": "Macroeconomics", "2010": "Macroeconomics", "2011": "Law, Crime, and Family Issues", "2012": "Transportation", "2013": "Education", "2014": "Energy", "2015": "Macroeconomics", "2016": "Education", "2017": "Law, Crime, and Family Issues", "2018": "Health", "2019": "Transportation", "2020": "Agriculture", "2021": "Labor and Employment", "2022": "Transportation", "2023": "Agriculture", "2024": "Transportation", "2025": "Environment", "2026": "Transportation", "2027": "Energy", "2028": "Agriculture", "2029": "Education", "2030": "Environment", "2031": "Transportation", "2032": "Environment", "2033": "Civil Rights, Minority Issues, and Civil Liberties", "2034": "Health", "2035": "Health", "2036": "Environment", "2037": "Agriculture", "2038": "Environment", "2039": "Community Development and Housing Issues", "2040": "Macroeconomics", "2041": "Environment", "2042": "Community Development and Housing Issues", "2043": "Civil Rights, Minority Issues, and Civil Liberties", "2044": "Environment", "2045": "Education", "2046": "Education", "2047": "Community Development and Housing Issues", "2048": "Environment", "2049": "Transportation", "2050": "Macroeconomics", "2051": "Macroeconomics", "2052": "Transportation", "2053": "Transportation", "2054": "Agriculture", "2055": "Transportation", "2056": "Macroeconomics", "2057": "Environment", "2058": "Energy", "2059": "Community Development and Housing Issues", "2060": "Civil Rights, Minority Issues, and Civil Liberties", "2061": "Labor and Employment", "2062": "Macroeconomics", "2063": "Civil Rights, Minority Issues, and Civil Liberties", "2064": "Macroeconomics", "2065": "Transportation", "2066": "Energy", "2067": "Agriculture", "2068": "Environment", "2069": "Community Development and Housing Issues", "2070": "Agriculture", "2071": "Health", "2072": "Health", "2073": "Education", "2074": "Health", "2075": "Transportation", "2076": "Macroeconomics", "2077": "Labor and Employment", "2078": "Civil Rights, Minority Issues, and Civil Liberties", "2079": "Education", "2080": "Agriculture", "2081": "Community Development and Housing Issues", "2082": "Health", "2083": "Transportation", "2084": "Transportation", "2085": "Health", "2086": "Health", "2087": "Community Development and Housing Issues", "2088": "Community Development and Housing Issues", "2089": "Transportation", "2090": "Community Development and Housing Issues", "2091": "Education", "2092": "Health", "2093": "Transportation", "2094": "Macroeconomics", "2095": "Labor and Employment", "2096": "Agriculture", "2097": "Macroeconomics", "2098": "Transportation", "2099": "Transportation", "2100": "Health", "2101": "Environment", "2102": "Health", "2103": "Transportation", "2104": "Civil Rights, Minority Issues, and Civil Liberties", "2105": "Macroeconomics", "2106": "Civil Rights, Minority Issues, and Civil Liberties", "2107": "Community Development and Housing Issues", "2108": "Macroeconomics", "2109": "Energy", "2110": "Agriculture", "2111": "Transportation", "2112": "Macroeconomics", "2113": "Labor and Employment", "2114": "Labor and Employment", "2115": "Labor and Employment", "2116": "Labor and Employment", "2117": "Transportation", "2118": "Education", "2119": "Community Development and Housing Issues", "2120": "Energy", "2121": "Environment", "2122": "Macroeconomics", "2123": "Transportation", "2124": "Environment", "2125": "Community Development and Housing Issues", "2126": "Education", "2127": "Health", "2128": "Environment", "2129": "Labor and Employment", "2130": "Civil Rights, Minority Issues, and Civil Liberties", "2131": "Transportation", "2132": "Energy", "2133": "Macroeconomics", "2134": "Civil Rights, Minority Issues, and Civil Liberties", "2135": "Health", "2136": "Community Development and Housing Issues", "2137": "Education", "2138": "Health", "2139": "Education", "2140": "Community Development and Housing Issues", "2141": "Labor and Employment", "2142": "Labor and Employment", "2143": "Energy", "2144": "Health", "2145": "Macroeconomics", "2146": "Civil Rights, Minority Issues, and Civil Liberties", "2147": "Labor and Employment", "2148": "Energy", "2149": "Energy", "2150": "Health", "2151": "Education", "2152": "Labor and Employment", "2153": "Civil Rights, Minority Issues, and Civil Liberties", "2154": "Health", "2155": "Transportation", "2156": "Energy", "2157": "Energy", "2158": "Education", "2159": "Labor and Employment", "2160": "Macroeconomics", "2161": "Education", "2162": "Labor and Employment", "2163": "Agriculture", "2164": "Health", "2165": "Transportation", "2166": "Labor and Employment", "2167": "Civil Rights, Minority Issues, and Civil Liberties", "2168": "Transportation", "2169": "Macroeconomics", "2170": "Energy", "2171": "Transportation", "2172": "Macroeconomics", "2173": "Transportation", "2174": "Education", "2175": "Education", "2176": "Community Development and Housing Issues", "2177": "Health", "2178": "Labor and Employment", "2179": "Community Development and Housing Issues", "2180": "Health", "2181": "Health", "2182": "Community Development and Housing Issues", "2183": "Labor and Employment", "2184": "Environment", "2185": "Education", "2186": "Agriculture", "2187": "Education", "2188": "Community Development and Housing Issues", "2189": "Environment", "2190": "Agriculture", "2191": "Energy", "2192": "Environment", "2193": "Energy", "2194": "Health", "2195": "Agriculture", "2196": "Health", "2197": "Macroeconomics", "2198": "Education", "2199": "Civil Rights, Minority Issues, and Civil Liberties", "2200": "Environment", "2201": "Energy", "2202": "Health", "2203": "Education", "2204": "Energy", "2205": "Labor and Employment", "2206": "Education", "2207": "Education", "2208": "Agriculture", "2209": "Agriculture", "2210": "Agriculture", "2211": "Energy", "2212": "Environment", "2213": "Labor and Employment", "2214": "Health", "2215": "Civil Rights, Minority Issues, and Civil Liberties", "2216": "Education", "2217": "Macroeconomics", "2218": "Macroeconomics", "2219": "Community Development and Housing Issues", "2220": "Labor and Employment", "2221": "Education", "2222": "Agriculture", "2223": "Education", "2224": "Health", "2225": "Agriculture", "2226": "Agriculture", "2227": "Health", "2228": "Labor and Employment", "2229": "Agriculture", "2230": "Education", "2231": "Agriculture", "2232": "Health"}, "sub_labels": {"0": "Facilities construction, regulation, and payments", "1": "Water Resources Development", "2": "Comprehensive health care reform", "3": "Air Transportation and Safety", "4": "Water Resources Development", "5": "Fair Labor Standards", "6": "Energy Conservation", "7": "Roads and Highways", "8": "Maritime Issues, Including Safety and Security", "9": "Natural Resources, Public Lands, and Forest Management", "10": "Electricity and Hydroelectricity", "11": "Natural Gas and Oil", "12": "Fisheries and Fishing", "13": "Ethnic Minority and Racial Group Discrimination", "14": "Taxation, Tax policy, and Broad Tax Reform", "15": "Health Workforce, Licensing & Training", "16": "Employee Relations and Labor Unions", "17": "Hazardous Waste and Toxic Chemical Regulation, Treatment, and Disposal", "18": "Roads and Highways", "19": "Higher Education", "20": "Native American Affairs", "21": "Taxation, Tax policy, and Broad Tax Reform", "22": "Water Resources Development", "23": "National Parks, Memorials and Recreation", "24": "Health Insurance", "25": "District of Columbia Affairs", "26": "Family Issues and Domestic Violence", "27": "Natural Resources, Public Lands, and Forest Management", "28": "Child Abuse and Child Pornography", "29": "Coal", "30": "Electricity and Hydroelectricity", "31": "Roads and Highways", "32": "Education of Underprivileged Students", "33": "Natural Resources, Public Lands, and Forest Management", "34": "Natural Resources, Public Lands, and Forest Management", "35": "General education", "36": "Right to Privacy and Access to Government Information", "37": "Police, Fire, and Weapons Control", "38": "Mental Health and Cognitive Capacities", "39": "Prisons", "40": "Food Inspection and Safety", "41": "Natural Resources, Public Lands, and Forest Management", "42": "Native American Affairs", "43": "Comprehensive health care reform", "44": "Taxation, Tax policy, and Broad Tax Reform", "45": "Taxation, Tax policy, and Broad Tax Reform", "46": "Taxation, Tax policy, and Broad Tax Reform", "47": "Employment Training and Workforce Development", "48": "Energy Conservation", "49": "Police, Fire, and Weapons Control", "50": "Natural Gas and Oil", "51": "General Public Lands and Water Management", "52": "Natural Resources, Public Lands, and Forest Management", "53": "Natural Resources, Public Lands, and Forest Management", "54": "Juvenile Crime and the Juvenile Justice System", "55": "Alternative and Renewable Energy", "56": "Comprehensive health care reform", "57": "Family Issues and Domestic Violence", "58": "Natural Resources, Public Lands, and Forest Management", "59": "General engergy", "60": "Illegal Drug Production, Trafficking, and Control", "61": "Criminal and Civil Code", "62": "Air Transportation and Safety", "63": "General Law", "64": "Court Administration", "65": "Natural Resources, Public Lands, and Forest Management", "66": "General engergy", "67": "Natural Resources, Public Lands, and Forest Management", "68": "Migrant and Seasonal workers, Farm Labor Issues", "69": "General health", "70": "Mental Health and Cognitive Capacities", "71": "Natural Resources, Public Lands, and Forest Management", "72": "Truck and Automobile Transportation and Safety", "73": "Maritime Issues, Including Safety and Security", "74": "Taxation, Tax policy, and Broad Tax Reform", "75": "Tobacco Abuse, Treatment, and Education", "76": "Secondary Mortgage Market and Government Sponsored Housing Entities", "77": "General engergy", "78": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "79": "Taxation, Tax policy, and Broad Tax Reform", "80": "General agriculture", "81": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "82": "Court Administration", "83": "Taxation, Tax policy, and Broad Tax Reform", "84": "Monetary Supply, Federal Reserve Board, and the Treasury", "85": "Court Administration", "86": "National Parks, Memorials and Recreation", "87": "Natural Gas and Oil", "88": "National Parks, Memorials and Recreation", "89": "Roads and Highways", "90": "Natural Resources, Public Lands, and Forest Management", "91": "White Collar Crime and Organized Crime", "92": "Water Resources Development", "93": "National Parks, Memorials and Recreation", "94": "Natural Resources, Public Lands, and Forest Management", "95": "Riots, Crime Prevention, and Crime Control", "96": "Police, Fire, and Weapons Control", "97": "National Budget and Debt", "98": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "99": "Right to Privacy and Access to Government Information", "100": "General engergy", "101": "Voting Rights, Participation, and Related Issues", "102": "Veterans Housing Assistance and Military Housing Programs", "103": "Police, Fire, and Weapons Control", "104": "Air Transportation and Safety", "105": "Railroad Transportation and Safety", "106": "National Parks, Memorials and Recreation", "107": "Food Inspection and Safety", "108": "U.S. Dependencies and Territorial Issues", "109": "National Parks, Memorials and Recreation", "110": "Court Administration", "111": "Animal and Crop Disease, Pest Control, and Domesticated Animal Welfare", "112": "Criminal and Civil Code", "113": "Court Administration", "114": "Housing and Community Development", "115": "Employee Benefits", "116": "National Parks, Memorials and Recreation", "117": "Taxation, Tax policy, and Broad Tax Reform", "118": "Maritime Issues, Including Safety and Security", "119": "Natural Gas and Oil", "120": "Natural Resources, Public Lands, and Forest Management", "121": "Higher Education", "122": "Employee Benefits", "123": "Secondary Mortgage Market and Government Sponsored Housing Entities", "124": "Court Administration", "125": "General Public Lands and Water Management", "126": "Water Resources Development", "127": "National Parks, Memorials and Recreation", "128": "Criminal and Civil Code", "129": "Native American Affairs", "130": "Land and Water Conservation", "131": "Other agriculture, federal agricultural census", "132": "Public Works (Infrastructure Development)", "133": "Family Issues and Domestic Violence", "134": "General education", "135": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "136": "Court Administration", "137": "National Parks, Memorials and Recreation", "138": "Native American Affairs", "139": "National Parks, Memorials and Recreation", "140": "Police, Fire, and Weapons Control", "141": "Educational Excellence", "142": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "143": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "144": "Higher Education", "145": "Natural Resources, Public Lands, and Forest Management", "146": "Water Resources Development", "147": "Natural Resources, Public Lands, and Forest Management", "148": "Worker Safety and Protection, Occupational and Safety Health Administration", "149": "Court Administration", "150": "Research and development", "151": "Health Insurance", "152": "Taxation, Tax policy, and Broad Tax Reform", "153": "Urban Economic Development and General Urban Issues", "154": "Species and Habitat Protection", "155": "Employment Training and Workforce Development", "156": "Electricity and Hydroelectricity", "157": "Energy Research and Development", "158": "Land and Water Conservation", "159": "Maritime Issues, Including Safety and Security", "160": "Police, Fire, and Weapons Control", "161": "Agricultural Trade", "162": "National Parks, Memorials and Recreation", "163": "Truck and Automobile Transportation and Safety", "164": "Court Administration", "165": "Prescription drug coverage and costs", "166": "Prescription drug coverage and costs", "167": "Natural Resources, Public Lands, and Forest Management", "168": "Illegal Drug Production, Trafficking, and Control", "169": "Inflation and Interest Rates", "170": "Railroad Transportation and Safety", "171": "Agricultural Trade", "172": "Juvenile Crime and the Juvenile Justice System", "173": "Family Issues and Domestic Violence", "174": "Public health and disease prevention", "175": "Species and Habitat Protection", "176": "Natural Gas and Oil", "177": "Coal", "178": "Natural Gas and Oil", "179": "Native American Affairs", "180": "Facilities construction, regulation, and payments", "181": "Arts and Humanities", "182": "Maritime Issues, Including Safety and Security", "183": "Species and Habitat Protection", "184": "Native American Affairs", "185": "Water Resources Development", "186": "Fisheries and Fishing", "187": "Juvenile Crime and the Juvenile Justice System", "188": "Agricultural Research and Development", "189": "Natural Gas and Oil", "190": "Low and Middle-Income Housing Programs and Needs", "191": "Water Resources Development", "192": "Air pollution, Climate Change, and Noise Pollution", "193": "Higher Education", "194": "Agricultural Marketing, Research, and Promotion", "195": "Education of Underprivileged Students", "196": "Truck and Automobile Transportation and Safety", "197": "general civil rights", "198": "Natural Resources, Public Lands, and Forest Management", "199": "Natural Resources, Public Lands, and Forest Management", "200": "Native American Affairs", "201": "National Parks, Memorials and Recreation", "202": "Employee Benefits", "203": "Research and development", "204": "Roads and Highways", "205": "Executive Branch Agencies Dealing with Law and Crime", "206": "National Parks, Memorials and Recreation", "207": "Railroad Transportation and Safety", "208": "Maritime Issues, Including Safety and Security", "209": "Maritime Issues, Including Safety and Security", "210": "National Parks, Memorials and Recreation", "211": "General Community Development and Housing Issues", "212": "Taxation, Tax policy, and Broad Tax Reform", "213": "National Parks, Memorials and Recreation", "214": "Research and development", "215": "Food Inspection and Safety", "216": "National Parks, Memorials and Recreation", "217": "General Transportation", "218": "Taxation, Tax policy, and Broad Tax Reform", "219": "Health Insurance", "220": "General environment", "221": "Agricultural Trade", "222": "Air Transportation and Safety", "223": "Secondary Mortgage Market and Government Sponsored Housing Entities", "224": "Hazardous Waste and Toxic Chemical Regulation, Treatment, and Disposal", "225": "General agriculture", "226": "National Parks, Memorials and Recreation", "227": "Architectural competition, cellulose home insulation", "228": "Health Workforce, Licensing & Training", "229": "Executive Branch Agencies Dealing with Law and Crime", "230": "Maritime Issues, Including Safety and Security", "231": "Taxation, Tax policy, and Broad Tax Reform", "232": "General education", "233": "General Transportation", "234": "Illegal Drug Production, Trafficking, and Control", "235": "Substance, Alcohol and Drug Abuse, Treatment and Education", "236": "Truck and Automobile Transportation and Safety", "237": "Natural Gas and Oil", "238": "Natural Resources, Public Lands, and Forest Management", "239": "Court Administration", "240": "Electricity and Hydroelectricity", "241": "Anti-Government Activities", "242": "General engergy", "243": "Education of Underprivileged Students", "244": "Police, Fire, and Weapons Control", "245": "Railroad Transportation and Safety", "246": "National Parks, Memorials and Recreation", "247": "Air Transportation and Safety", "248": "Taxation, Tax policy, and Broad Tax Reform", "249": "Ethnic Minority and Racial Group Discrimination", "250": "Research and development", "251": "Right to Privacy and Access to Government Information", "252": "Ethnic Minority and Racial Group Discrimination", "253": "National Parks, Memorials and Recreation", "254": "Executive Branch Agencies Dealing with Law and Crime", "255": "National Parks, Memorials and Recreation", "256": "Alternative and Renewable Energy", "257": "U.S. Dependencies and Territorial Issues", "258": "Elementary and Secondary Education", "259": "Employment Training and Workforce Development", "260": "Water Resources Development", "261": "Substance, Alcohol and Drug Abuse, Treatment and Education", "262": "Food Inspection and Safety", "263": "Taxation, Tax policy, and Broad Tax Reform", "264": "Rural Housing", "265": "Air Transportation and Safety", "266": "Natural Resources, Public Lands, and Forest Management", "267": "National Parks, Memorials and Recreation", "268": "National Parks, Memorials and Recreation", "269": "Maritime Issues, Including Safety and Security", "270": "Railroad Transportation and Safety", "271": "Natural Resources, Public Lands, and Forest Management", "272": "Energy Conservation", "273": "General Transportation", "274": "Water Resources Development", "275": "Child Abuse and Child Pornography", "276": "National Parks, Memorials and Recreation", "277": "Hazardous Waste and Toxic Chemical Regulation, Treatment, and Disposal", "278": "General engergy", "279": "Water Resources Development", "280": "Prescription drug coverage and costs", "281": "Health Insurance", "282": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "283": "Maritime Issues, Including Safety and Security", "284": "Water Resources Development", "285": "Animal and Crop Disease, Pest Control, and Domesticated Animal Welfare", "286": "Family Issues and Domestic Violence", "287": "Native American Affairs", "288": "Maritime Issues, Including Safety and Security", "289": "Court Administration", "290": "Comprehensive health care reform", "291": "Maritime Issues, Including Safety and Security", "292": "National Parks, Memorials and Recreation", "293": "Health Workforce, Licensing & Training", "294": "General Transportation", "295": "Criminal and Civil Code", "296": "Water Resources Development", "297": "Energy Research and Development", "298": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "299": "Inflation and Interest Rates", "300": "General Public Lands and Water Management", "301": "Natural Resources, Public Lands, and Forest Management", "302": "Fair Labor Standards", "303": "Water Resources Development", "304": "Ethnic Minority and Racial Group Discrimination", "305": "Natural Gas and Oil", "306": "Natural Resources, Public Lands, and Forest Management", "307": "General Public Lands and Water Management", "308": "National Parks, Memorials and Recreation", "309": "Truck and Automobile Transportation and Safety", "310": "Railroad Transportation and Safety", "311": "Energy Conservation", "312": "Employee Benefits", "313": "Water Resources Development", "314": "Mass Transportation and Safety", "315": "Natural Resources, Public Lands, and Forest Management", "316": "Public Works (Infrastructure Development)", "317": "National Parks, Memorials and Recreation", "318": "Truck and Automobile Transportation and Safety", "319": "Health Insurance", "320": "Maritime Issues, Including Safety and Security", "321": "Natural Resources, Public Lands, and Forest Management", "322": "Taxation, Tax policy, and Broad Tax Reform", "323": "Railroad Transportation and Safety", "324": "Family Issues and Domestic Violence", "325": "Higher Education", "326": "Water Resources Development", "327": "Educational Excellence", "328": "National Parks, Memorials and Recreation", "329": "Truck and Automobile Transportation and Safety", "330": "Native American Affairs", "331": "Secondary Mortgage Market and Government Sponsored Housing Entities", "332": "Natural Resources, Public Lands, and Forest Management", "333": "Health Insurance", "334": "Natural Resources, Public Lands, and Forest Management", "335": "Public Works (Infrastructure Development)", "336": "National Parks, Memorials and Recreation", "337": "Police, Fire, and Weapons Control", "338": "Family Issues and Domestic Violence", "339": "Executive Branch Agencies Dealing with Law and Crime", "340": "Water Resources Development", "341": "Elementary and Secondary Education", "342": "Elementary and Secondary Education", "343": "Public Works (Infrastructure Development)", "344": "Native American Affairs", "345": "Executive Branch Agencies Dealing with Law and Crime", "346": "Long-term care, home health, hospice, and rehabilitation services", "347": "Native American Affairs", "348": "Roads and Highways", "349": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "350": "Veterans Housing Assistance and Military Housing Programs", "351": "U.S. Dependencies and Territorial Issues", "352": "Employee Benefits", "353": "Urban Economic Development and General Urban Issues", "354": "National Parks, Memorials and Recreation", "355": "National Parks, Memorials and Recreation", "356": "Pollution and Conservation in Coastal & Other Navigable Waterways", "357": "Natural Resources, Public Lands, and Forest Management", "358": "Environment Research and Development", "359": "National Parks, Memorials and Recreation", "360": "Energy Conservation", "361": "Monetary Supply, Federal Reserve Board, and the Treasury", "362": "Low and Middle-Income Housing Programs and Needs", "363": "National Budget and Debt", "364": "Roads and Highways", "365": "Air Transportation and Safety", "366": "general civil rights", "367": "Regulation of drug industry, medical devices, and clinical labs", "368": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "369": "Species and Habitat Protection", "370": "Taxation, Tax policy, and Broad Tax Reform", "371": "Taxation, Tax policy, and Broad Tax Reform", "372": "Higher Education", "373": "Gender, Identity and Sexual Orientation Discrimination", "374": "Comprehensive health care reform", "375": "Other transportation", "376": "Monetary Supply, Federal Reserve Board, and the Treasury", "377": "Child Abuse and Child Pornography", "378": "Higher Education", "379": "National Parks, Memorials and Recreation", "380": "Elementary and Secondary Education", "381": "General Labor", "382": "National Parks, Memorials and Recreation", "383": "Water Resources Development", "384": "Court Administration", "385": "Nuclear Energy and Nuclear Regulatory Commission Issues", "386": "Provider and insurer payment and regulation", "387": "Water Resources Development", "388": "Child Abuse and Child Pornography", "389": "Fair Labor Standards", "390": "Right to Privacy and Access to Government Information", "391": "Land and Water Conservation", "392": "National Parks, Memorials and Recreation", "393": "Maritime Issues, Including Safety and Security", "394": "Maritime Issues, Including Safety and Security", "395": "Research and development", "396": "Natural Resources, Public Lands, and Forest Management", "397": "Species and Habitat Protection", "398": "Disability or Disease Discrimination", "399": "Court Administration", "400": "Natural Resources, Public Lands, and Forest Management", "401": "Agricultural Trade", "402": "Truck and Automobile Transportation and Safety", "403": "Electricity and Hydroelectricity", "404": "Maritime Issues, Including Safety and Security", "405": "Native American Affairs", "406": "Energy Conservation", "407": "Natural Resources, Public Lands, and Forest Management", "408": "Hazardous Waste and Toxic Chemical Regulation, Treatment, and Disposal", "409": "Agricultural Trade", "410": "Long-term care, home health, hospice, and rehabilitation services", "411": "Veterans Housing Assistance and Military Housing Programs", "412": "Species and Habitat Protection", "413": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "414": "Police, Fire, and Weapons Control", "415": "Animal and Crop Disease, Pest Control, and Domesticated Animal Welfare", "416": "Electricity and Hydroelectricity", "417": "Agricultural Trade", "418": "National Parks, Memorials and Recreation", "419": "Natural Resources, Public Lands, and Forest Management", "420": "Roads and Highways", "421": "Agricultural Trade", "422": "Water Resources Development", "423": "Taxation, Tax policy, and Broad Tax Reform", "424": "Natural Resources, Public Lands, and Forest Management", "425": "Health Insurance", "426": "Natural Gas and Oil", "427": "General Public Lands and Water Management", "428": "Higher Education", "429": "Agricultural Research and Development", "430": "Health Workforce, Licensing & Training", "431": "Higher Education", "432": "Housing and Community Development", "433": "Housing and Community Development", "434": "Police, Fire, and Weapons Control", "435": "Worker Safety and Protection, Occupational and Safety Health Administration", "436": "Maritime Issues, Including Safety and Security", "437": "Waste Disposal", "438": "Water Resources Development", "439": "U.S. Dependencies and Territorial Issues", "440": "National Budget and Debt", "441": "Illegal Drug Production, Trafficking, and Control", "442": "Natural Resources, Public Lands, and Forest Management", "443": "Court Administration", "444": "Transportation Research and Development", "445": "Elementary and Secondary Education", "446": "Natural Resources, Public Lands, and Forest Management", "447": "Water Resources Development", "448": "Executive Branch Agencies Dealing with Law and Crime", "449": "Water Resources Development", "450": "Nuclear Energy and Nuclear Regulatory Commission Issues", "451": "First Amendment Issues", "452": "Regulation of drug industry, medical devices, and clinical labs", "453": "Natural Resources, Public Lands, and Forest Management", "454": "Illegal Drug Production, Trafficking, and Control", "455": "General Public Lands and Water Management", "456": "Roads and Highways", "457": "Native American Affairs", "458": "Fisheries and Fishing", "459": "Long-term care, home health, hospice, and rehabilitation services", "460": "Maritime Issues, Including Safety and Security", "461": "Maritime Issues, Including Safety and Security", "462": "Food Inspection and Safety", "463": "National Parks, Memorials and Recreation", "464": "Natural Resources, Public Lands, and Forest Management", "465": "general civil rights", "466": "Air Transportation and Safety", "467": "Higher Education", "468": "National Parks, Memorials and Recreation", "469": "General Labor", "470": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "471": "Air Transportation and Safety", "472": "General health", "473": "Agricultural Trade", "474": "General education", "475": "National Parks, Memorials and Recreation", "476": "Electricity and Hydroelectricity", "477": "Employee Benefits", "478": "Truck and Automobile Transportation and Safety", "479": "Drinking Water Safety", "480": "Natural Resources, Public Lands, and Forest Management", "481": "General education", "482": "Water Resources Development", "483": "Water Resources Development", "484": "Water Resources Development", "485": "Maritime Issues, Including Safety and Security", "486": "General Community Development and Housing Issues", "487": "Pollution and Conservation in Coastal & Other Navigable Waterways", "488": "Natural Resources, Public Lands, and Forest Management", "489": "Juvenile Crime and the Juvenile Justice System", "490": "Water Resources Development", "491": "Natural Gas and Oil", "492": "General environment", "493": "Transportation Research and Development", "494": "Court Administration", "495": "Right to Privacy and Access to Government Information", "496": "Energy Research and Development", "497": "Health Insurance", "498": "general civil rights", "499": "Maritime Issues, Including Safety and Security", "500": "Taxation, Tax policy, and Broad Tax Reform", "501": "Truck and Automobile Transportation and Safety", "502": "Air pollution, Climate Change, and Noise Pollution", "503": "General Community Development and Housing Issues", "504": "Air pollution, Climate Change, and Noise Pollution", "505": "Police, Fire, and Weapons Control", "506": "Natural Resources, Public Lands, and Forest Management", "507": "Energy Conservation", "508": "Prescription drug coverage and costs", "509": "Educational Excellence", "510": "Substance, Alcohol and Drug Abuse, Treatment and Education", "511": "Disability or Disease Discrimination", "512": "Educational Excellence", "513": "Facilities construction, regulation, and payments", "514": "Court Administration", "515": "Higher Education", "516": "Right to Privacy and Access to Government Information", "517": "Roads and Highways", "518": "Maritime Issues, Including Safety and Security", "519": "Animal and Crop Disease, Pest Control, and Domesticated Animal Welfare", "520": "Health Insurance", "521": "Water Resources Development", "522": "National Parks, Memorials and Recreation", "523": "Taxation, Tax policy, and Broad Tax Reform", "524": "National Parks, Memorials and Recreation", "525": "Truck and Automobile Transportation and Safety", "526": "Employee Benefits", "527": "Taxation, Tax policy, and Broad Tax Reform", "528": "Air Transportation and Safety", "529": "Fair Labor Standards", "530": "Air pollution, Climate Change, and Noise Pollution", "531": "Maritime Issues, Including Safety and Security", "532": "Higher Education", "533": "Drinking Water Safety", "534": "National Parks, Memorials and Recreation", "535": "Research and development", "536": "Natural Gas and Oil", "537": "Native American Affairs", "538": "U.S. Dependencies and Territorial Issues", "539": "Pollution and Conservation in Coastal & Other Navigable Waterways", "540": "Disability or Disease Discrimination", "541": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "542": "Air Transportation and Safety", "543": "Air Transportation and Safety", "544": "National Parks, Memorials and Recreation", "545": "National Parks, Memorials and Recreation", "546": "General environment", "547": "Land and Water Conservation", "548": "Natural Gas and Oil", "549": "Taxation, Tax policy, and Broad Tax Reform", "550": "General education", "551": "Drinking Water Safety", "552": "General health", "553": "General health", "554": "National Parks, Memorials and Recreation", "555": "Air pollution, Climate Change, and Noise Pollution", "556": "Air Transportation and Safety", "557": "Executive Branch Agencies Dealing with Law and Crime", "558": "National Parks, Memorials and Recreation", "559": "Riots, Crime Prevention, and Crime Control", "560": "Higher Education", "561": "Air Transportation and Safety", "562": "Maritime Issues, Including Safety and Security", "563": "Employee Relations and Labor Unions", "564": "Natural Resources, Public Lands, and Forest Management", "565": "Taxation, Tax policy, and Broad Tax Reform", "566": "Agricultural Marketing, Research, and Promotion", "567": "Employment Training and Workforce Development", "568": "Taxation, Tax policy, and Broad Tax Reform", "569": "Mental Health and Cognitive Capacities", "570": "Natural Resources, Public Lands, and Forest Management", "571": "Natural Resources, Public Lands, and Forest Management", "572": "Water Resources Development", "573": "General Public Lands and Water Management", "574": "Water Resources Development", "575": "Taxation, Tax policy, and Broad Tax Reform", "576": "Roads and Highways", "577": "Comprehensive health care reform", "578": "Natural Resources, Public Lands, and Forest Management", "579": "Health Insurance", "580": "Natural Resources, Public Lands, and Forest Management", "581": "Low and Middle-Income Housing Programs and Needs", "582": "Children and Prenatal Care", "583": "Species and Habitat Protection", "584": "Nuclear Energy and Nuclear Regulatory Commission Issues", "585": "Employee Benefits", "586": "Environment Research and Development", "587": "Water Resources Development", "588": "Voting Rights, Participation, and Related Issues", "589": "Air pollution, Climate Change, and Noise Pollution", "590": "Maritime Issues, Including Safety and Security", "591": "Arts and Humanities", "592": "Court Administration", "593": "National Parks, Memorials and Recreation", "594": "Natural Resources, Public Lands, and Forest Management", "595": "Maritime Issues, Including Safety and Security", "596": "Natural Resources, Public Lands, and Forest Management", "597": "Court Administration", "598": "Arts and Humanities", "599": "U.S. Dependencies and Territorial Issues", "600": "Drinking Water Safety", "601": "Pollution and Conservation in Coastal & Other Navigable Waterways", "602": "Court Administration", "603": "Energy Conservation", "604": "Employment Training and Workforce Development", "605": "Air Transportation and Safety", "606": "Employment Training and Workforce Development", "607": "Natural Resources, Public Lands, and Forest Management", "608": "Maritime Issues, Including Safety and Security", "609": "Land and Water Conservation", "610": "Employee Benefits", "611": "Employment Training and Workforce Development", "612": "Natural Gas and Oil", "613": "Secondary Mortgage Market and Government Sponsored Housing Entities", "614": "Alternative and Renewable Energy", "615": "Agricultural Trade", "616": "National Parks, Memorials and Recreation", "617": "Water Resources Development", "618": "Water Resources Development", "619": "General engergy", "620": "Voting Rights, Participation, and Related Issues", "621": "Food Inspection and Safety", "622": "U.S. Dependencies and Territorial Issues", "623": "Energy Conservation", "624": "Higher Education", "625": "Air pollution, Climate Change, and Noise Pollution", "626": "Water Resources Development", "627": "National Budget and Debt", "628": "Low and Middle-Income Housing Programs and Needs", "629": "Indoor Environmental Hazards", "630": "Native American Affairs", "631": "Truck and Automobile Transportation and Safety", "632": "Employment Training and Workforce Development", "633": "Water Resources Development", "634": "Higher Education", "635": "Species and Habitat Protection", "636": "Vocational Education", "637": "Police, Fire, and Weapons Control", "638": "Water Resources Development", "639": "Riots, Crime Prevention, and Crime Control", "640": "Native American Affairs", "641": "Species and Habitat Protection", "642": "Housing and Community Development", "643": "Alternative and Renewable Energy", "644": "Drinking Water Safety", "645": "Gender, Identity and Sexual Orientation Discrimination", "646": "National Parks, Memorials and Recreation", "647": "Natural Resources, Public Lands, and Forest Management", "648": "First Amendment Issues", "649": "General Community Development and Housing Issues", "650": "Water Resources Development", "651": "General education", "652": "Natural Resources, Public Lands, and Forest Management", "653": "Natural Gas and Oil", "654": "National Budget and Debt", "655": "Family Issues and Domestic Violence", "656": "General Community Development and Housing Issues", "657": "National Parks, Memorials and Recreation", "658": "Mass Transportation and Safety", "659": "Regulation of drug industry, medical devices, and clinical labs", "660": "Maritime Issues, Including Safety and Security", "661": "Retirement and lifelong learning", "662": "Right to Privacy and Access to Government Information", "663": "Water Resources Development", "664": "Executive Branch Agencies Dealing with Law and Crime", "665": "Agricultural Trade", "666": "Water Resources Development", "667": "Executive Branch Agencies Dealing with Law and Crime", "668": "Long-term care, home health, hospice, and rehabilitation services", "669": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "670": "Hazardous Waste and Toxic Chemical Regulation, Treatment, and Disposal", "671": "Employee Benefits", "672": "Family Issues and Domestic Violence", "673": "Natural Gas and Oil", "674": "Illegal Drug Production, Trafficking, and Control", "675": "Police, Fire, and Weapons Control", "676": "Maritime Issues, Including Safety and Security", "677": "Electricity and Hydroelectricity", "678": "Taxation, Tax policy, and Broad Tax Reform", "679": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "680": "Court Administration", "681": "Taxation, Tax policy, and Broad Tax Reform", "682": "National Parks, Memorials and Recreation", "683": "Agricultural Research and Development", "684": "General education", "685": "Natural Gas and Oil", "686": "Employee Benefits", "687": "Higher Education", "688": "Family Issues and Domestic Violence", "689": "Hazardous Waste and Toxic Chemical Regulation, Treatment, and Disposal", "690": "Court Administration", "691": "Criminal and Civil Code", "692": "Education of Underprivileged Students", "693": "Electricity and Hydroelectricity", "694": "Higher Education", "695": "Higher Education", "696": "Taxation, Tax policy, and Broad Tax Reform", "697": "Natural Resources, Public Lands, and Forest Management", "698": "Executive Branch Agencies Dealing with Law and Crime", "699": "Air Transportation and Safety", "700": "Water Resources Development", "701": "Anti-Government Activities", "702": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "703": "Natural Resources, Public Lands, and Forest Management", "704": "Food Inspection and Safety", "705": "Natural Resources, Public Lands, and Forest Management", "706": "Water Resources Development", "707": "Family Issues and Domestic Violence", "708": "National Parks, Memorials and Recreation", "709": "Health Workforce, Licensing & Training", "710": "Native American Affairs", "711": "Agricultural Trade", "712": "Court Administration", "713": "National Parks, Memorials and Recreation", "714": "Roads and Highways", "715": "Housing and Community Development", "716": "general civil rights", "717": "Native American Affairs", "718": "Veterans Housing Assistance and Military Housing Programs", "719": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "720": "General education", "721": "Maritime Issues, Including Safety and Security", "722": "Secondary Mortgage Market and Government Sponsored Housing Entities", "723": "Higher Education", "724": "Court Administration", "725": "Comprehensive health care reform", "726": "Court Administration", "727": "Children and Prenatal Care", "728": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "729": "Taxation, Tax policy, and Broad Tax Reform", "730": "Inflation and Interest Rates", "731": "General Domestic Macroeconomic Issues", "732": "National Budget and Debt", "733": "Natural Gas and Oil", "734": "Research and development", "735": "Employment Training and Workforce Development", "736": "General environment", "737": "Taxation, Tax policy, and Broad Tax Reform", "738": "Children and Prenatal Care", "739": "Employment Training and Workforce Development", "740": "National Parks, Memorials and Recreation", "741": "Hazardous Waste and Toxic Chemical Regulation, Treatment, and Disposal", "742": "Maritime Issues, Including Safety and Security", "743": "Air Transportation and Safety", "744": "Food Inspection and Safety", "745": "Natural Resources, Public Lands, and Forest Management", "746": "National Parks, Memorials and Recreation", "747": "Agricultural Trade", "748": "Natural Resources, Public Lands, and Forest Management", "749": "Higher Education", "750": "Police, Fire, and Weapons Control", "751": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "752": "Juvenile Crime and the Juvenile Justice System", "753": "Agricultural Trade", "754": "Coal", "755": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "756": "Price Control and Stabilization", "757": "Waste Disposal", "758": "Juvenile Crime and the Juvenile Justice System", "759": "Native American Affairs", "760": "Native American Affairs", "761": "Water Resources Development", "762": "General agriculture", "763": "General agriculture", "764": "Housing and Community Development", "765": "Waste Disposal", "766": "Court Administration", "767": "Court Administration", "768": "Otjer Laws", "769": "Railroad Transportation and Safety", "770": "Health Insurance", "771": "Land and Water Conservation", "772": "Species and Habitat Protection", "773": "Health consequences of a nuclear attack, regulation of health care apps", "774": "Air Transportation and Safety", "775": "First Amendment Issues", "776": "National Parks, Memorials and Recreation", "777": "Food Inspection and Safety", "778": "Employee Relations and Labor Unions", "779": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "780": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "781": "Railroad Transportation and Safety", "782": "Family Issues and Domestic Violence", "783": "Health Insurance", "784": "Natural Resources, Public Lands, and Forest Management", "785": "Right to Privacy and Access to Government Information", "786": "Natural Resources, Public Lands, and Forest Management", "787": "National Parks, Memorials and Recreation", "788": "General education", "789": "Public health and disease prevention", "790": "Elderly and Disabled Housing", "791": "Hazardous Waste and Toxic Chemical Regulation, Treatment, and Disposal", "792": "General education", "793": "Prescription drug coverage and costs", "794": "Court Administration", "795": "Provider and insurer payment and regulation", "796": "Agricultural Trade", "797": "National Parks, Memorials and Recreation", "798": "Truck and Automobile Transportation and Safety", "799": "Regulation of drug industry, medical devices, and clinical labs", "800": "Health Insurance", "801": "First Amendment Issues", "802": "General agriculture", "803": "Energy Conservation", "804": "Tobacco Abuse, Treatment, and Education", "805": "Electricity and Hydroelectricity", "806": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "807": "Secondary Mortgage Market and Government Sponsored Housing Entities", "808": "Maritime Issues, Including Safety and Security", "809": "Regulation of drug industry, medical devices, and clinical labs", "810": "Water Resources Development", "811": "Air Transportation and Safety", "812": "Monetary Supply, Federal Reserve Board, and the Treasury", "813": "Ethnic Minority and Racial Group Discrimination", "814": "Land and Water Conservation", "815": "National Budget and Debt", "816": "Rural Economic Development", "817": "National Budget and Debt", "818": "Police, Fire, and Weapons Control", "819": "Mass Transportation and Safety", "820": "Secondary Mortgage Market and Government Sponsored Housing Entities", "821": "General agriculture", "822": "Voting Rights, Participation, and Related Issues", "823": "Electricity and Hydroelectricity", "824": "Other agriculture, federal agricultural census", "825": "Inflation and Interest Rates", "826": "Low and Middle-Income Housing Programs and Needs", "827": "General Public Lands and Water Management", "828": "Health Insurance", "829": "Food Inspection and Safety", "830": "Facilities construction, regulation, and payments", "831": "Roads and Highways", "832": "Provider and insurer payment and regulation", "833": "General health", "834": "Native American Affairs", "835": "General environment", "836": "Police, Fire, and Weapons Control", "837": "Native American Affairs", "838": "Native American Affairs", "839": "Veterans Housing Assistance and Military Housing Programs", "840": "Nuclear Energy and Nuclear Regulatory Commission Issues", "841": "Employee Benefits", "842": "Low and Middle-Income Housing Programs and Needs", "843": "Health Insurance", "844": "Veterans Housing Assistance and Military Housing Programs", "845": "Employee Benefits", "846": "Research and development", "847": "Maritime Issues, Including Safety and Security", "848": "Illegal Drug Production, Trafficking, and Control", "849": "General environment", "850": "Native American Affairs", "851": "Natural Gas and Oil", "852": "General engergy", "853": "General agriculture", "854": "Higher Education", "855": "Facilities construction, regulation, and payments", "856": "Native American Affairs", "857": "Maritime Issues, Including Safety and Security", "858": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "859": "Air Transportation and Safety", "860": "Comprehensive health care reform", "861": "National Parks, Memorials and Recreation", "862": "Hazardous Waste and Toxic Chemical Regulation, Treatment, and Disposal", "863": "Facilities construction, regulation, and payments", "864": "Low and Middle-Income Housing Programs and Needs", "865": "General Transportation", "866": "Juvenile Crime and the Juvenile Justice System", "867": "Taxation, Tax policy, and Broad Tax Reform", "868": "Higher Education", "869": "Youth Employment, Youth Job Corps Programs, and Child Labor", "870": "Food Inspection and Safety", "871": "Natural Gas and Oil", "872": "Employee Relations and Labor Unions", "873": "Native American Affairs", "874": "Water Resources Development", "875": "Native American Affairs", "876": "Alternative and Renewable Energy", "877": "Maritime Issues, Including Safety and Security", "878": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "879": "Electricity and Hydroelectricity", "880": "Court Administration", "881": "Water Resources Development", "882": "Court Administration", "883": "Executive Branch Agencies Dealing with Law and Crime", "884": "U.S. Dependencies and Territorial Issues", "885": "Employee Benefits", "886": "Facilities construction, regulation, and payments", "887": "Housing and Community Development", "888": "Criminal and Civil Code", "889": "National Parks, Memorials and Recreation", "890": "Substance, Alcohol and Drug Abuse, Treatment and Education", "891": "Natural Resources, Public Lands, and Forest Management", "892": "Alternative and Renewable Energy", "893": "Water Resources Development", "894": "Disability or Disease Discrimination", "895": "Native American Affairs", "896": "Natural Resources, Public Lands, and Forest Management", "897": "Natural Gas and Oil", "898": "National Parks, Memorials and Recreation", "899": "Water Resources Development", "900": "Anti-Government Activities", "901": "Elementary and Secondary Education", "902": "Natural Resources, Public Lands, and Forest Management", "903": "Natural Gas and Oil", "904": "Air Transportation and Safety", "905": "Police, Fire, and Weapons Control", "906": "Natural Gas and Oil", "907": "Natural Resources, Public Lands, and Forest Management", "908": "Natural Resources, Public Lands, and Forest Management", "909": "Court Administration", "910": "Elderly and Disabled Housing", "911": "National Parks, Memorials and Recreation", "912": "Court Administration", "913": "General agriculture", "914": "Taxation, Tax policy, and Broad Tax Reform", "915": "National Parks, Memorials and Recreation", "916": "General environment", "917": "Drinking Water Safety", "918": "Food Inspection and Safety", "919": "General environment", "920": "Food Inspection and Safety", "921": "Housing and Community Development", "922": "Higher Education", "923": "Natural Resources, Public Lands, and Forest Management", "924": "Public health and disease prevention", "925": "Truck and Automobile Transportation and Safety", "926": "Water Resources Development", "927": "Air pollution, Climate Change, and Noise Pollution", "928": "Alternative and Renewable Energy", "929": "Energy Conservation", "930": "Land and Water Conservation", "931": "Mental Health and Cognitive Capacities", "932": "Family Issues and Domestic Violence", "933": "Air pollution, Climate Change, and Noise Pollution", "934": "General Transportation", "935": "Animal and Crop Disease, Pest Control, and Domesticated Animal Welfare", "936": "National Parks, Memorials and Recreation", "937": "Police, Fire, and Weapons Control", "938": "General education", "939": "General engergy", "940": "Prisons", "941": "Food Inspection and Safety", "942": "Natural Resources, Public Lands, and Forest Management", "943": "Drinking Water Safety", "944": "National Parks, Memorials and Recreation", "945": "Land and Water Conservation", "946": "Police, Fire, and Weapons Control", "947": "Natural Resources, Public Lands, and Forest Management", "948": "General Public Lands and Water Management", "949": "Natural Resources, Public Lands, and Forest Management", "950": "Court Administration", "951": "Public Works (Infrastructure Development)", "952": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "953": "Taxation, Tax policy, and Broad Tax Reform", "954": "Truck and Automobile Transportation and Safety", "955": "Rural Economic Development", "956": "Water Resources Development", "957": "Energy Conservation", "958": "Natural Gas and Oil", "959": "Police, Fire, and Weapons Control", "960": "Nuclear Energy and Nuclear Regulatory Commission Issues", "961": "Taxation, Tax policy, and Broad Tax Reform", "962": "Air Transportation and Safety", "963": "Native American Affairs", "964": "Court Administration", "965": "Voting Rights, Participation, and Related Issues", "966": "Food Inspection and Safety", "967": "Air pollution, Climate Change, and Noise Pollution", "968": "Police, Fire, and Weapons Control", "969": "Nuclear Energy and Nuclear Regulatory Commission Issues", "970": "Natural Resources, Public Lands, and Forest Management", "971": "Health Insurance", "972": "Food Inspection and Safety", "973": "Water Resources Development", "974": "National Parks, Memorials and Recreation", "975": "Maritime Issues, Including Safety and Security", "976": "National Parks, Memorials and Recreation", "977": "National Parks, Memorials and Recreation", "978": "Mental Health and Cognitive Capacities", "979": "Monetary Supply, Federal Reserve Board, and the Treasury", "980": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "981": "other labor", "982": "Air Transportation and Safety", "983": "Natural Gas and Oil", "984": "Air Transportation and Safety", "985": "Food Inspection and Safety", "986": "Natural Resources, Public Lands, and Forest Management", "987": "Natural Resources, Public Lands, and Forest Management", "988": "Age Discrimination", "989": "Water Resources Development", "990": "Railroad Transportation and Safety", "991": "Native American Affairs", "992": "Natural Resources, Public Lands, and Forest Management", "993": "Urban Economic Development and General Urban Issues", "994": "Long-term care, home health, hospice, and rehabilitation services", "995": "General education", "996": "Water Resources Development", "997": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "998": "General Transportation", "999": "National Parks, Memorials and Recreation", "1000": "Maritime Issues, Including Safety and Security", "1001": "Elementary and Secondary Education", "1002": "Police, Fire, and Weapons Control", "1003": "Environmental education", "1004": "Water Resources Development", "1005": "Executive Branch Agencies Dealing with Law and Crime", "1006": "Natural Gas and Oil", "1007": "Truck and Automobile Transportation and Safety", "1008": "Voting Rights, Participation, and Related Issues", "1009": "Court Administration", "1010": "General Community Development and Housing Issues", "1011": "General Law", "1012": "Native American Affairs", "1013": "General Transportation", "1014": "National Parks, Memorials and Recreation", "1015": "Food Inspection and Safety", "1016": "Railroad Transportation and Safety", "1017": "Employee Benefits", "1018": "Criminal and Civil Code", "1019": "Roads and Highways", "1020": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1021": "Maritime Issues, Including Safety and Security", "1022": "Roads and Highways", "1023": "Family Issues and Domestic Violence", "1024": "General Community Development and Housing Issues", "1025": "Police, Fire, and Weapons Control", "1026": "Water Resources Development", "1027": "Elementary and Secondary Education", "1028": "Water Resources Development", "1029": "Natural Gas and Oil", "1030": "Voting Rights, Participation, and Related Issues", "1031": "Veterans Housing Assistance and Military Housing Programs", "1032": "General engergy", "1033": "National Parks, Memorials and Recreation", "1034": "Facilities construction, regulation, and payments", "1035": "Health Insurance", "1036": "Air Transportation and Safety", "1037": "Youth Employment, Youth Job Corps Programs, and Child Labor", "1038": "Water Resources Development", "1039": "Natural Gas and Oil", "1040": "Pollution and Conservation in Coastal & Other Navigable Waterways", "1041": "First Amendment Issues", "1042": "Facilities construction, regulation, and payments", "1043": "Species and Habitat Protection", "1044": "Secondary Mortgage Market and Government Sponsored Housing Entities", "1045": "Agricultural Trade", "1046": "Species and Habitat Protection", "1047": "Natural Resources, Public Lands, and Forest Management", "1048": "Educational Excellence", "1049": "Migrant and Seasonal workers, Farm Labor Issues", "1050": "Court Administration", "1051": "National Parks, Memorials and Recreation", "1052": "National Parks, Memorials and Recreation", "1053": "Roads and Highways", "1054": "Gender, Identity and Sexual Orientation Discrimination", "1055": "general civil rights", "1056": "Roads and Highways", "1057": "Court Administration", "1058": "Court Administration", "1059": "National Parks, Memorials and Recreation", "1060": "Facilities construction, regulation, and payments", "1061": "Police, Fire, and Weapons Control", "1062": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1063": "Fisheries and Fishing", "1064": "National Parks, Memorials and Recreation", "1065": "Alternative and Renewable Energy", "1066": "Water Resources Development", "1067": "Urban Economic Development and General Urban Issues", "1068": "Maritime Issues, Including Safety and Security", "1069": "Police, Fire, and Weapons Control", "1070": "National Budget and Debt", "1071": "Roads and Highways", "1072": "Fisheries and Fishing", "1073": "National Parks, Memorials and Recreation", "1074": "Roads and Highways", "1075": "Maritime Issues, Including Safety and Security", "1076": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1077": "U.S. Dependencies and Territorial Issues", "1078": "Air pollution, Climate Change, and Noise Pollution", "1079": "Energy Conservation", "1080": "Prescription drug coverage and costs", "1081": "Executive Branch Agencies Dealing with Law and Crime", "1082": "Roads and Highways", "1083": "Water Resources Development", "1084": "National Parks, Memorials and Recreation", "1085": "Secondary Mortgage Market and Government Sponsored Housing Entities", "1086": "Housing and Community Development", "1087": "Taxation, Tax policy, and Broad Tax Reform", "1088": "Electricity and Hydroelectricity", "1089": "Electricity and Hydroelectricity", "1090": "National Parks, Memorials and Recreation", "1091": "Environment Research and Development", "1092": "Air pollution, Climate Change, and Noise Pollution", "1093": "Species and Habitat Protection", "1094": "Health Insurance", "1095": "Taxation, Tax policy, and Broad Tax Reform", "1096": "Truck and Automobile Transportation and Safety", "1097": "Higher Education", "1098": "Maritime Issues, Including Safety and Security", "1099": "Court Administration", "1100": "Anti-Government Activities", "1101": "Natural Resources, Public Lands, and Forest Management", "1102": "Hazardous Waste and Toxic Chemical Regulation, Treatment, and Disposal", "1103": "General Public Lands and Water Management", "1104": "Retirement and lifelong learning", "1105": "General education", "1106": "Natural Gas and Oil", "1107": "Other agriculture, federal agricultural census", "1108": "General environment", "1109": "Employee Benefits", "1110": "Land and Water Conservation", "1111": "Native American Affairs", "1112": "Employee Relations and Labor Unions", "1113": "Energy Conservation", "1114": "Natural Resources, Public Lands, and Forest Management", "1115": "Health Insurance", "1116": "Truck and Automobile Transportation and Safety", "1117": "Police, Fire, and Weapons Control", "1118": "Public health and disease prevention", "1119": "Agricultural Trade", "1120": "Comprehensive health care reform", "1121": "Police, Fire, and Weapons Control", "1122": "Employee Relations and Labor Unions", "1123": "Environmental education", "1124": "General Public Lands and Water Management", "1125": "Educational Excellence", "1126": "general civil rights", "1127": "Truck and Automobile Transportation and Safety", "1128": "Roads and Highways", "1129": "Food Inspection and Safety", "1130": "Water Resources Development", "1131": "Ethnic Minority and Racial Group Discrimination", "1132": "Homeless Issues", "1133": "National Parks, Memorials and Recreation", "1134": "Food Inspection and Safety", "1135": "Natural Resources, Public Lands, and Forest Management", "1136": "Natural Resources, Public Lands, and Forest Management", "1137": "National Parks, Memorials and Recreation", "1138": "Public health and disease prevention", "1139": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1140": "Family Issues and Domestic Violence", "1141": "Truck and Automobile Transportation and Safety", "1142": "Roads and Highways", "1143": "general civil rights", "1144": "Elementary and Secondary Education", "1145": "Species and Habitat Protection", "1146": "Prisons", "1147": "General Transportation", "1148": "Indoor Environmental Hazards", "1149": "Waste Disposal", "1150": "Elementary and Secondary Education", "1151": "Elementary and Secondary Education", "1152": "Family Issues and Domestic Violence", "1153": "Alternative and Renewable Energy", "1154": "Monetary Supply, Federal Reserve Board, and the Treasury", "1155": "Roads and Highways", "1156": "Native American Affairs", "1157": "Agricultural Trade", "1158": "Vocational Education", "1159": "Natural Resources, Public Lands, and Forest Management", "1160": "Police, Fire, and Weapons Control", "1161": "Housing and Community Development", "1162": "Natural Resources, Public Lands, and Forest Management", "1163": "Natural Resources, Public Lands, and Forest Management", "1164": "Maritime Issues, Including Safety and Security", "1165": "Recycling", "1166": "Natural Resources, Public Lands, and Forest Management", "1167": "Children and Prenatal Care", "1168": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1169": "Employee Benefits", "1170": "Comprehensive health care reform", "1171": "Voting Rights, Participation, and Related Issues", "1172": "Native American Affairs", "1173": "Taxation, Tax policy, and Broad Tax Reform", "1174": "Higher Education", "1175": "Taxation, Tax policy, and Broad Tax Reform", "1176": "National Parks, Memorials and Recreation", "1177": "Energy Conservation", "1178": "Health Insurance", "1179": "Monetary Supply, Federal Reserve Board, and the Treasury", "1180": "Water Resources Development", "1181": "Employee Benefits", "1182": "Air pollution, Climate Change, and Noise Pollution", "1183": "Arts and Humanities", "1184": "Natural Resources, Public Lands, and Forest Management", "1185": "Maritime Issues, Including Safety and Security", "1186": "Agricultural Marketing, Research, and Promotion", "1187": "Worker Safety and Protection, Occupational and Safety Health Administration", "1188": "Air pollution, Climate Change, and Noise Pollution", "1189": "General engergy", "1190": "Illegal Drug Production, Trafficking, and Control", "1191": "Court Administration", "1192": "First Amendment Issues", "1193": "Air pollution, Climate Change, and Noise Pollution", "1194": "Food Inspection and Safety", "1195": "Secondary Mortgage Market and Government Sponsored Housing Entities", "1196": "Natural Resources, Public Lands, and Forest Management", "1197": "Rural Economic Development", "1198": "Water Resources Development", "1199": "Juvenile Crime and the Juvenile Justice System", "1200": "Truck and Automobile Transportation and Safety", "1201": "Water Resources Development", "1202": "Taxation, Tax policy, and Broad Tax Reform", "1203": "Illegal Drug Production, Trafficking, and Control", "1204": "Research and development", "1205": "Roads and Highways", "1206": "National Parks, Memorials and Recreation", "1207": "Natural Gas and Oil", "1208": "Natural Gas and Oil", "1209": "Air pollution, Climate Change, and Noise Pollution", "1210": "Police, Fire, and Weapons Control", "1211": "Taxation, Tax policy, and Broad Tax Reform", "1212": "Native American Affairs", "1213": "Maritime Issues, Including Safety and Security", "1214": "Taxation, Tax policy, and Broad Tax Reform", "1215": "Price Control and Stabilization", "1216": "Low and Middle-Income Housing Programs and Needs", "1217": "general civil rights", "1218": "Hazardous Waste and Toxic Chemical Regulation, Treatment, and Disposal", "1219": "General Domestic Macroeconomic Issues", "1220": "Family Issues and Domestic Violence", "1221": "General Community Development and Housing Issues", "1222": "Water Resources Development", "1223": "General education", "1224": "Natural Resources, Public Lands, and Forest Management", "1225": "Natural Resources, Public Lands, and Forest Management", "1226": "Research and development", "1227": "Natural Resources, Public Lands, and Forest Management", "1228": "Court Administration", "1229": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1230": "Natural Resources, Public Lands, and Forest Management", "1231": "Public Works (Infrastructure Development)", "1232": "Water Resources Development", "1233": "Truck and Automobile Transportation and Safety", "1234": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1235": "Taxation, Tax policy, and Broad Tax Reform", "1236": "Species and Habitat Protection", "1237": "Water Resources Development", "1238": "National Parks, Memorials and Recreation", "1239": "Elementary and Secondary Education", "1240": "Research and development", "1241": "Comprehensive health care reform", "1242": "Family Issues and Domestic Violence", "1243": "Roads and Highways", "1244": "Court Administration", "1245": "Native American Affairs", "1246": "Natural Gas and Oil", "1247": "Elementary and Secondary Education", "1248": "Higher Education", "1249": "Right to Privacy and Access to Government Information", "1250": "Taxation, Tax policy, and Broad Tax Reform", "1251": "Pollution and Conservation in Coastal & Other Navigable Waterways", "1252": "Energy Research and Development", "1253": "Employment Training and Workforce Development", "1254": "Right to Privacy and Access to Government Information", "1255": "General agriculture", "1256": "Species and Habitat Protection", "1257": "Alternative and Renewable Energy", "1258": "Natural Gas and Oil", "1259": "Maritime Issues, Including Safety and Security", "1260": "Maritime Issues, Including Safety and Security", "1261": "Natural Gas and Oil", "1262": "Electricity and Hydroelectricity", "1263": "Illegal Drug Production, Trafficking, and Control", "1264": "Taxation, Tax policy, and Broad Tax Reform", "1265": "Species and Habitat Protection", "1266": "Arts and Humanities", "1267": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1268": "Pollution and Conservation in Coastal & Other Navigable Waterways", "1269": "Comprehensive health care reform", "1270": "Roads and Highways", "1271": "Criminal and Civil Code", "1272": "Agricultural Marketing, Research, and Promotion", "1273": "Elementary and Secondary Education", "1274": "Employee Relations and Labor Unions", "1275": "Court Administration", "1276": "Species and Habitat Protection", "1277": "Police, Fire, and Weapons Control", "1278": "Agricultural Trade", "1279": "Executive Branch Agencies Dealing with Law and Crime", "1280": "Truck and Automobile Transportation and Safety", "1281": "Drinking Water Safety", "1282": "Youth Employment, Youth Job Corps Programs, and Child Labor", "1283": "Maritime Issues, Including Safety and Security", "1284": "Air pollution, Climate Change, and Noise Pollution", "1285": "Mass Transportation and Safety", "1286": "General environment", "1287": "Veterans Housing Assistance and Military Housing Programs", "1288": "Energy Conservation", "1289": "Health Insurance", "1290": "Alternative and Renewable Energy", "1291": "Alternative and Renewable Energy", "1292": "Species and Habitat Protection", "1293": "Child Abuse and Child Pornography", "1294": "Educational Excellence", "1295": "Air Transportation and Safety", "1296": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1297": "Rural Economic Development", "1298": "Research and development", "1299": "Public health and disease prevention", "1300": "Employee Relations and Labor Unions", "1301": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1302": "Air pollution, Climate Change, and Noise Pollution", "1303": "Monetary Supply, Federal Reserve Board, and the Treasury", "1304": "Environment Research and Development", "1305": "Court Administration", "1306": "Provider and insurer payment and regulation", "1307": "Health Workforce, Licensing & Training", "1308": "Youth Employment, Youth Job Corps Programs, and Child Labor", "1309": "Long-term care, home health, hospice, and rehabilitation services", "1310": "Energy Conservation", "1311": "Veterans Housing Assistance and Military Housing Programs", "1312": "Medical liability, fraud and abuse", "1313": "Facilities construction, regulation, and payments", "1314": "Air pollution, Climate Change, and Noise Pollution", "1315": "Facilities construction, regulation, and payments", "1316": "Facilities construction, regulation, and payments", "1317": "Gender, Identity and Sexual Orientation Discrimination", "1318": "Right to Privacy and Access to Government Information", "1319": "Air Transportation and Safety", "1320": "Land and Water Conservation", "1321": "Truck and Automobile Transportation and Safety", "1322": "General Transportation", "1323": "Health Workforce, Licensing & Training", "1324": "Natural Gas and Oil", "1325": "Family Issues and Domestic Violence", "1326": "Electricity and Hydroelectricity", "1327": "Low and Middle-Income Housing Programs and Needs", "1328": "Energy Research and Development", "1329": "Pollution and Conservation in Coastal & Other Navigable Waterways", "1330": "Comprehensive health care reform", "1331": "Roads and Highways", "1332": "Air Transportation and Safety", "1333": "Taxation, Tax policy, and Broad Tax Reform", "1334": "Truck and Automobile Transportation and Safety", "1335": "Research and development", "1336": "Roads and Highways", "1337": "Species and Habitat Protection", "1338": "Secondary Mortgage Market and Government Sponsored Housing Entities", "1339": "First Amendment Issues", "1340": "Court Administration", "1341": "Court Administration", "1342": "Employee Relations and Labor Unions", "1343": "Roads and Highways", "1344": "Drinking Water Safety", "1345": "Electricity and Hydroelectricity", "1346": "Prisons", "1347": "Alternative and Renewable Energy", "1348": "Court Administration", "1349": "Child Abuse and Child Pornography", "1350": "Research and development", "1351": "Research and development", "1352": "Court Administration", "1353": "National Budget and Debt", "1354": "Higher Education", "1355": "Taxation, Tax policy, and Broad Tax Reform", "1356": "Recycling", "1357": "Long-term care, home health, hospice, and rehabilitation services", "1358": "Species and Habitat Protection", "1359": "Coal", "1360": "Court Administration", "1361": "Mass Transportation and Safety", "1362": "Roads and Highways", "1363": "General Community Development and Housing Issues", "1364": "Migrant and Seasonal workers, Farm Labor Issues", "1365": "Higher Education", "1366": "Railroad Transportation and Safety", "1367": "Facilities construction, regulation, and payments", "1368": "Elementary and Secondary Education", "1369": "Public Works (Infrastructure Development)", "1370": "Air pollution, Climate Change, and Noise Pollution", "1371": "Education of Underprivileged Students", "1372": "Public health and disease prevention", "1373": "Employee Benefits", "1374": "Right to Privacy and Access to Government Information", "1375": "Public health and disease prevention", "1376": "Mental Health and Cognitive Capacities", "1377": "Prescription drug coverage and costs", "1378": "Maritime Issues, Including Safety and Security", "1379": "general civil rights", "1380": "Natural Gas and Oil", "1381": "Substance, Alcohol and Drug Abuse, Treatment and Education", "1382": "Police, Fire, and Weapons Control", "1383": "Public health and disease prevention", "1384": "Low and Middle-Income Housing Programs and Needs", "1385": "Court Administration", "1386": "Court Administration", "1387": "Health Workforce, Licensing & Training", "1388": "Alternative and Renewable Energy", "1389": "General engergy", "1390": "Health Insurance", "1391": "Health Insurance", "1392": "Taxation, Tax policy, and Broad Tax Reform", "1393": "Species and Habitat Protection", "1394": "Elementary and Secondary Education", "1395": "General Community Development and Housing Issues", "1396": "Air Transportation and Safety", "1397": "Educational Excellence", "1398": "Natural Gas and Oil", "1399": "Urban Economic Development and General Urban Issues", "1400": "Industrial Policy", "1401": "Higher Education", "1402": "Higher Education", "1403": "Electricity and Hydroelectricity", "1404": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1405": "Employment Training and Workforce Development", "1406": "Employee Benefits", "1407": "Electricity and Hydroelectricity", "1408": "General engergy", "1409": "Natural Gas and Oil", "1410": "Maritime Issues, Including Safety and Security", "1411": "Maritime Issues, Including Safety and Security", "1412": "Long-term care, home health, hospice, and rehabilitation services", "1413": "Public health and disease prevention", "1414": "Educational Excellence", "1415": "Pollution and Conservation in Coastal & Other Navigable Waterways", "1416": "Police, Fire, and Weapons Control", "1417": "General health", "1418": "Food Inspection and Safety", "1419": "Maritime Issues, Including Safety and Security", "1420": "Taxation, Tax policy, and Broad Tax Reform", "1421": "Health Workforce, Licensing & Training", "1422": "Alternative and Renewable Energy", "1423": "Education of Underprivileged Students", "1424": "Child Abuse and Child Pornography", "1425": "Juvenile Crime and the Juvenile Justice System", "1426": "Taxation, Tax policy, and Broad Tax Reform", "1427": "Worker Safety and Protection, Occupational and Safety Health Administration", "1428": "General environment", "1429": "Monetary Supply, Federal Reserve Board, and the Treasury", "1430": "Species and Habitat Protection", "1431": "Alternative and Renewable Energy", "1432": "Children and Prenatal Care", "1433": "Employee Benefits", "1434": "Employee Benefits", "1435": "General environment", "1436": "Criminal and Civil Code", "1437": "Children and Prenatal Care", "1438": "Secondary Mortgage Market and Government Sponsored Housing Entities", "1439": "Maritime Issues, Including Safety and Security", "1440": "National Budget and Debt", "1441": "Criminal and Civil Code", "1442": "Illegal Drug Production, Trafficking, and Control", "1443": "Air Transportation and Safety", "1444": "Family Issues and Domestic Violence", "1445": "Natural Gas and Oil", "1446": "Pollution and Conservation in Coastal & Other Navigable Waterways", "1447": "Employee Benefits", "1448": "Court Administration", "1449": "Roads and Highways", "1450": "Court Administration", "1451": "Housing and Community Development", "1452": "Tobacco Abuse, Treatment, and Education", "1453": "Public Works (Infrastructure Development)", "1454": "Medical liability, fraud and abuse", "1455": "Criminal and Civil Code", "1456": "Criminal and Civil Code", "1457": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1458": "Higher Education", "1459": "Species and Habitat Protection", "1460": "General environment", "1461": "Maritime Issues, Including Safety and Security", "1462": "Fisheries and Fishing", "1463": "National Budget and Debt", "1464": "Other transportation", "1465": "Taxation, Tax policy, and Broad Tax Reform", "1466": "Facilities construction, regulation, and payments", "1467": "Employee Benefits", "1468": "Monetary Supply, Federal Reserve Board, and the Treasury", "1469": "General engergy", "1470": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1471": "Right to Privacy and Access to Government Information", "1472": "Air Transportation and Safety", "1473": "Natural Gas and Oil", "1474": "Waste Disposal", "1475": "Health Insurance", "1476": "Electricity and Hydroelectricity", "1477": "Maritime Issues, Including Safety and Security", "1478": "Food Inspection and Safety", "1479": "Pollution and Conservation in Coastal & Other Navigable Waterways", "1480": "General health", "1481": "Rural Housing", "1482": "Child Abuse and Child Pornography", "1483": "Special Education", "1484": "Waste Disposal", "1485": "Agricultural Marketing, Research, and Promotion", "1486": "Long-term care, home health, hospice, and rehabilitation services", "1487": "Drinking Water Safety", "1488": "Regulation of drug industry, medical devices, and clinical labs", "1489": "Land and Water Conservation", "1490": "Railroad Transportation and Safety", "1491": "Public health and disease prevention", "1492": "Natural Gas and Oil", "1493": "Children and Prenatal Care", "1494": "Criminal and Civil Code", "1495": "Criminal and Civil Code", "1496": "National Budget and Debt", "1497": "Gender, Identity and Sexual Orientation Discrimination", "1498": "Natural Gas and Oil", "1499": "Employee Benefits", "1500": "Higher Education", "1501": "Children and Prenatal Care", "1502": "Natural Gas and Oil", "1503": "Employee Benefits", "1504": "Family Issues and Domestic Violence", "1505": "Anti-Government Activities", "1506": "Court Administration", "1507": "Medical liability, fraud and abuse", "1508": "Maritime Issues, Including Safety and Security", "1509": "Long-term care, home health, hospice, and rehabilitation services", "1510": "Air Transportation and Safety", "1511": "Education of Underprivileged Students", "1512": "Court Administration", "1513": "Health Insurance", "1514": "Public health and disease prevention", "1515": "general civil rights", "1516": "Criminal and Civil Code", "1517": "Medical liability, fraud and abuse", "1518": "Land and Water Conservation", "1519": "Health Insurance", "1520": "Police, Fire, and Weapons Control", "1521": "Employee Benefits", "1522": "Air Transportation and Safety", "1523": "Worker Safety and Protection, Occupational and Safety Health Administration", "1524": "Police, Fire, and Weapons Control", "1525": "Roads and Highways", "1526": "Species and Habitat Protection", "1527": "Food Inspection and Safety", "1528": "Animal and Crop Disease, Pest Control, and Domesticated Animal Welfare", "1529": "Industrial Policy", "1530": "Monetary Supply, Federal Reserve Board, and the Treasury", "1531": "Roads and Highways", "1532": "Maritime Issues, Including Safety and Security", "1533": "general civil rights", "1534": "Prisons", "1535": "Higher Education", "1536": "Employee Benefits", "1537": "Employment Training and Workforce Development", "1538": "Land and Water Conservation", "1539": "General Labor", "1540": "Family Issues and Domestic Violence", "1541": "Facilities construction, regulation, and payments", "1542": "Natural Gas and Oil", "1543": "Natural Gas and Oil", "1544": "Family Issues and Domestic Violence", "1545": "Court Administration", "1546": "Mental Health and Cognitive Capacities", "1547": "Land and Water Conservation", "1548": "Gender, Identity and Sexual Orientation Discrimination", "1549": "Court Administration", "1550": "Employee Benefits", "1551": "Hazardous Waste and Toxic Chemical Regulation, Treatment, and Disposal", "1552": "Special Education", "1553": "Natural Gas and Oil", "1554": "Elementary and Secondary Education", "1555": "Public health and disease prevention", "1556": "Court Administration", "1557": "Nuclear Energy and Nuclear Regulatory Commission Issues", "1558": "Maritime Issues, Including Safety and Security", "1559": "Police, Fire, and Weapons Control", "1560": "Employee Relations and Labor Unions", "1561": "Railroad Transportation and Safety", "1562": "General engergy", "1563": "General Transportation", "1564": "Educational Excellence", "1565": "Gender, Identity and Sexual Orientation Discrimination", "1566": "Taxation, Tax policy, and Broad Tax Reform", "1567": "Police, Fire, and Weapons Control", "1568": "Police, Fire, and Weapons Control", "1569": "Police, Fire, and Weapons Control", "1570": "General education", "1571": "Comprehensive health care reform", "1572": "Natural Gas and Oil", "1573": "Agricultural Trade", "1574": "Architectural competition, cellulose home insulation", "1575": "Alternative and Renewable Energy", "1576": "Ethnic Minority and Racial Group Discrimination", "1577": "Provider and insurer payment and regulation", "1578": "National Budget and Debt", "1579": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1580": "Taxation, Tax policy, and Broad Tax Reform", "1581": "General Transportation", "1582": "Court Administration", "1583": "Court Administration", "1584": "Court Administration", "1585": "Elementary and Secondary Education", "1586": "Land and Water Conservation", "1587": "Elementary and Secondary Education", "1588": "Animal and Crop Disease, Pest Control, and Domesticated Animal Welfare", "1589": "Natural Gas and Oil", "1590": "Maritime Issues, Including Safety and Security", "1591": "Facilities construction, regulation, and payments", "1592": "Voting Rights, Participation, and Related Issues", "1593": "Low and Middle-Income Housing Programs and Needs", "1594": "Facilities construction, regulation, and payments", "1595": "Environment Research and Development", "1596": "Maritime Issues, Including Safety and Security", "1597": "Taxation, Tax policy, and Broad Tax Reform", "1598": "Energy Conservation", "1599": "Electricity and Hydroelectricity", "1600": "Research and development", "1601": "Riots, Crime Prevention, and Crime Control", "1602": "Facilities construction, regulation, and payments", "1603": "Rural Economic Development", "1604": "Worker Safety and Protection, Occupational and Safety Health Administration", "1605": "Court Administration", "1606": "Anti-Government Activities", "1607": "National Budget and Debt", "1608": "Maritime Issues, Including Safety and Security", "1609": "Police, Fire, and Weapons Control", "1610": "Waste Disposal", "1611": "Research and development", "1612": "Police, Fire, and Weapons Control", "1613": "Natural Gas and Oil", "1614": "General education", "1615": "Species and Habitat Protection", "1616": "General engergy", "1617": "Food Inspection and Safety", "1618": "Agricultural Trade", "1619": "Hazardous Waste and Toxic Chemical Regulation, Treatment, and Disposal", "1620": "Prisons", "1621": "Facilities construction, regulation, and payments", "1622": "Health Insurance", "1623": "general civil rights", "1624": "Truck and Automobile Transportation and Safety", "1625": "Right to Privacy and Access to Government Information", "1626": "Species and Habitat Protection", "1627": "Comprehensive health care reform", "1628": "Employment Training and Workforce Development", "1629": "Voting Rights, Participation, and Related Issues", "1630": "Facilities construction, regulation, and payments", "1631": "Anti-Government Activities", "1632": "Natural Gas and Oil", "1633": "General agriculture", "1634": "Employee Benefits", "1635": "Railroad Transportation and Safety", "1636": "Taxation, Tax policy, and Broad Tax Reform", "1637": "Public health and disease prevention", "1638": "General Community Development and Housing Issues", "1639": "Juvenile Crime and the Juvenile Justice System", "1640": "Public health and disease prevention", "1641": "Worker Safety and Protection, Occupational and Safety Health Administration", "1642": "Hazardous Waste and Toxic Chemical Regulation, Treatment, and Disposal", "1643": "Higher Education", "1644": "Public Works (Infrastructure Development)", "1645": "Natural Gas and Oil", "1646": "Urban Economic Development and General Urban Issues", "1647": "Taxation, Tax policy, and Broad Tax Reform", "1648": "Taxation, Tax policy, and Broad Tax Reform", "1649": "Anti-Government Activities", "1650": "Low and Middle-Income Housing Programs and Needs", "1651": "Housing and Community Development", "1652": "Right to Privacy and Access to Government Information", "1653": "Health Insurance", "1654": "Police, Fire, and Weapons Control", "1655": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1656": "Air pollution, Climate Change, and Noise Pollution", "1657": "Long-term care, home health, hospice, and rehabilitation services", "1658": "Criminal and Civil Code", "1659": "Court Administration", "1660": "Maritime Issues, Including Safety and Security", "1661": "Right to Privacy and Access to Government Information", "1662": "Criminal and Civil Code", "1663": "Police, Fire, and Weapons Control", "1664": "Worker Safety and Protection, Occupational and Safety Health Administration", "1665": "Gender, Identity and Sexual Orientation Discrimination", "1666": "Public health and disease prevention", "1667": "Public health and disease prevention", "1668": "Natural Gas and Oil", "1669": "General education", "1670": "Taxation, Tax policy, and Broad Tax Reform", "1671": "Elderly and Disabled Housing", "1672": "General Transportation", "1673": "Energy Research and Development", "1674": "Child Abuse and Child Pornography", "1675": "Housing and Community Development", "1676": "Educational Excellence", "1677": "Employee Benefits", "1678": "National Budget and Debt", "1679": "Monetary Supply, Federal Reserve Board, and the Treasury", "1680": "Police, Fire, and Weapons Control", "1681": "Higher Education", "1682": "Right to Privacy and Access to Government Information", "1683": "General education", "1684": "Maritime Issues, Including Safety and Security", "1685": "Higher Education", "1686": "Gender, Identity and Sexual Orientation Discrimination", "1687": "Taxation, Tax policy, and Broad Tax Reform", "1688": "Criminal and Civil Code", "1689": "Right to Privacy and Access to Government Information", "1690": "Police, Fire, and Weapons Control", "1691": "Monetary Supply, Federal Reserve Board, and the Treasury", "1692": "General Transportation", "1693": "Health Insurance", "1694": "Natural Gas and Oil", "1695": "Air Transportation and Safety", "1696": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1697": "Riots, Crime Prevention, and Crime Control", "1698": "Ethnic Minority and Racial Group Discrimination", "1699": "Court Administration", "1700": "Provider and insurer payment and regulation", "1701": "Ethnic Minority and Racial Group Discrimination", "1702": "Nuclear Energy and Nuclear Regulatory Commission Issues", "1703": "Taxation, Tax policy, and Broad Tax Reform", "1704": "Natural Gas and Oil", "1705": "Roads and Highways", "1706": "General Law", "1707": "Agricultural Marketing, Research, and Promotion", "1708": "Taxation, Tax policy, and Broad Tax Reform", "1709": "Elementary and Secondary Education", "1710": "Employment Training and Workforce Development", "1711": "Pollution and Conservation in Coastal & Other Navigable Waterways", "1712": "General agriculture", "1713": "Right to Privacy and Access to Government Information", "1714": "Employee Benefits", "1715": "Agricultural Trade", "1716": "Air Transportation and Safety", "1717": "Low and Middle-Income Housing Programs and Needs", "1718": "Elementary and Secondary Education", "1719": "Research and development", "1720": "Air pollution, Climate Change, and Noise Pollution", "1721": "Waste Disposal", "1722": "General education", "1723": "Executive Branch Agencies Dealing with Law and Crime", "1724": "Comprehensive health care reform", "1725": "Agricultural Trade", "1726": "Natural Gas and Oil", "1727": "Roads and Highways", "1728": "Species and Habitat Protection", "1729": "Medical liability, fraud and abuse", "1730": "Species and Habitat Protection", "1731": "Court Administration", "1732": "Gender, Identity and Sexual Orientation Discrimination", "1733": "Education of Underprivileged Students", "1734": "Housing and Community Development", "1735": "Otjer Laws", "1736": "Maritime Issues, Including Safety and Security", "1737": "Taxation, Tax policy, and Broad Tax Reform", "1738": "Air Transportation and Safety", "1739": "Worker Safety and Protection, Occupational and Safety Health Administration", "1740": "Elementary and Secondary Education", "1741": "Natural Gas and Oil", "1742": "Health Insurance", "1743": "Rural Housing", "1744": "Railroad Transportation and Safety", "1745": "Roads and Highways", "1746": "Air Transportation and Safety", "1747": "Mass Transportation and Safety", "1748": "Right to Privacy and Access to Government Information", "1749": "Police, Fire, and Weapons Control", "1750": "Executive Branch Agencies Dealing with Law and Crime", "1751": "Health Insurance", "1752": "Higher Education", "1753": "Environment Research and Development", "1754": "Elementary and Secondary Education", "1755": "Veterans Housing Assistance and Military Housing Programs", "1756": "Roads and Highways", "1757": "Taxation, Tax policy, and Broad Tax Reform", "1758": "Criminal and Civil Code", "1759": "Alternative and Renewable Energy", "1760": "Voting Rights, Participation, and Related Issues", "1761": "Energy Conservation", "1762": "Urban Economic Development and General Urban Issues", "1763": "Higher Education", "1764": "Taxation, Tax policy, and Broad Tax Reform", "1765": "Medical liability, fraud and abuse", "1766": "White Collar Crime and Organized Crime", "1767": "Educational Excellence", "1768": "Pollution and Conservation in Coastal & Other Navigable Waterways", "1769": "Veterans Housing Assistance and Military Housing Programs", "1770": "Low and Middle-Income Housing Programs and Needs", "1771": "Executive Branch Agencies Dealing with Law and Crime", "1772": "Facilities construction, regulation, and payments", "1773": "Health Insurance", "1774": "Educational Excellence", "1775": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1776": "Higher Education", "1777": "Executive Branch Agencies Dealing with Law and Crime", "1778": "Land and Water Conservation", "1779": "Vocational Education", "1780": "Right to Privacy and Access to Government Information", "1781": "Prisons", "1782": "Right to Privacy and Access to Government Information", "1783": "Public Works (Infrastructure Development)", "1784": "Executive Branch Agencies Dealing with Law and Crime", "1785": "Natural Gas and Oil", "1786": "Land and Water Conservation", "1787": "Family Issues and Domestic Violence", "1788": "Criminal and Civil Code", "1789": "Indoor Environmental Hazards", "1790": "Long-term care, home health, hospice, and rehabilitation services", "1791": "Housing and Community Development", "1792": "Homeless Issues", "1793": "Criminal and Civil Code", "1794": "Secondary Mortgage Market and Government Sponsored Housing Entities", "1795": "Agricultural Trade", "1796": "Illegal Drug Production, Trafficking, and Control", "1797": "Agricultural Trade", "1798": "Monetary Supply, Federal Reserve Board, and the Treasury", "1799": "Court Administration", "1800": "Ethnic Minority and Racial Group Discrimination", "1801": "National Budget and Debt", "1802": "Higher Education", "1803": "Employee Benefits", "1804": "Employment Training and Workforce Development", "1805": "Child Abuse and Child Pornography", "1806": "Agricultural Trade", "1807": "Higher Education", "1808": "Arts and Humanities", "1809": "Hazardous Waste and Toxic Chemical Regulation, Treatment, and Disposal", "1810": "Research and development", "1811": "Air pollution, Climate Change, and Noise Pollution", "1812": "Anti-Government Activities", "1813": "Roads and Highways", "1814": "Urban Economic Development and General Urban Issues", "1815": "Tobacco Abuse, Treatment, and Education", "1816": "General environment", "1817": "Agricultural Trade", "1818": "Arts and Humanities", "1819": "Air pollution, Climate Change, and Noise Pollution", "1820": "Regulation of drug industry, medical devices, and clinical labs", "1821": "Higher Education", "1822": "General education", "1823": "Air Transportation and Safety", "1824": "Taxation, Tax policy, and Broad Tax Reform", "1825": "Public Works (Infrastructure Development)", "1826": "Anti-Government Activities", "1827": "National Budget and Debt", "1828": "Court Administration", "1829": "Air pollution, Climate Change, and Noise Pollution", "1830": "Food Inspection and Safety", "1831": "General Transportation", "1832": "Riots, Crime Prevention, and Crime Control", "1833": "Railroad Transportation and Safety", "1834": "Species and Habitat Protection", "1835": "Prescription drug coverage and costs", "1836": "Pollution and Conservation in Coastal & Other Navigable Waterways", "1837": "Environment Research and Development", "1838": "Criminal and Civil Code", "1839": "Taxation, Tax policy, and Broad Tax Reform", "1840": "Elementary and Secondary Education", "1841": "Health Workforce, Licensing & Training", "1842": "Maritime Issues, Including Safety and Security", "1843": "Roads and Highways", "1844": "Taxation, Tax policy, and Broad Tax Reform", "1845": "Court Administration", "1846": "Educational Excellence", "1847": "Taxation, Tax policy, and Broad Tax Reform", "1848": "Secondary Mortgage Market and Government Sponsored Housing Entities", "1849": "Species and Habitat Protection", "1850": "Right to Privacy and Access to Government Information", "1851": "Natural Gas and Oil", "1852": "Taxation, Tax policy, and Broad Tax Reform", "1853": "First Amendment Issues", "1854": "Fair Labor Standards", "1855": "General Community Development and Housing Issues", "1856": "Education of Underprivileged Students", "1857": "Education of Underprivileged Students", "1858": "Court Administration", "1859": "Fair Labor Standards", "1860": "Illegal Drug Production, Trafficking, and Control", "1861": "Air pollution, Climate Change, and Noise Pollution", "1862": "Long-term care, home health, hospice, and rehabilitation services", "1863": "Educational Excellence", "1864": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1865": "Riots, Crime Prevention, and Crime Control", "1866": "Comprehensive health care reform", "1867": "Natural Gas and Oil", "1868": "Comprehensive health care reform", "1869": "Maritime Issues, Including Safety and Security", "1870": "Housing and Community Development", "1871": "Higher Education", "1872": "Alternative and Renewable Energy", "1873": "Energy Conservation", "1874": "Natural Gas and Oil", "1875": "Medical liability, fraud and abuse", "1876": "Illegal Drug Production, Trafficking, and Control", "1877": "Criminal and Civil Code", "1878": "Monetary Supply, Federal Reserve Board, and the Treasury", "1879": "Substance, Alcohol and Drug Abuse, Treatment and Education", "1880": "Electricity and Hydroelectricity", "1881": "Maritime Issues, Including Safety and Security", "1882": "Recycling", "1883": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1884": "Otjer Laws", "1885": "Elementary and Secondary Education", "1886": "Alternative and Renewable Energy", "1887": "Illegal Drug Production, Trafficking, and Control", "1888": "Fisheries and Fishing", "1889": "General Transportation", "1890": "General agriculture", "1891": "Species and Habitat Protection", "1892": "Roads and Highways", "1893": "Executive Branch Agencies Dealing with Law and Crime", "1894": "Police, Fire, and Weapons Control", "1895": "Prescription drug coverage and costs", "1896": "National Budget and Debt", "1897": "Roads and Highways", "1898": "Truck and Automobile Transportation and Safety", "1899": "Employee Benefits", "1900": "Natural Gas and Oil", "1901": "Taxation, Tax policy, and Broad Tax Reform", "1902": "Taxation, Tax policy, and Broad Tax Reform", "1903": "General agriculture", "1904": "Employee Benefits", "1905": "Natural Gas and Oil", "1906": "Health Insurance", "1907": "Higher Education", "1908": "Food Inspection and Safety", "1909": "Environment Research and Development", "1910": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1911": "Drinking Water Safety", "1912": "Air pollution, Climate Change, and Noise Pollution", "1913": "Higher Education", "1914": "Agricultural Marketing, Research, and Promotion", "1915": "Court Administration", "1916": "General environment", "1917": "White Collar Crime and Organized Crime", "1918": "Illegal Drug Production, Trafficking, and Control", "1919": "Health consequences of a nuclear attack, regulation of health care apps", "1920": "Court Administration", "1921": "Electricity and Hydroelectricity", "1922": "Court Administration", "1923": "Juvenile Crime and the Juvenile Justice System", "1924": "Criminal and Civil Code", "1925": "Railroad Transportation and Safety", "1926": "Court Administration", "1927": "Maritime Issues, Including Safety and Security", "1928": "Species and Habitat Protection", "1929": "Court Administration", "1930": "National Budget and Debt", "1931": "Secondary Mortgage Market and Government Sponsored Housing Entities", "1932": "National Budget and Debt", "1933": "Elementary and Secondary Education", "1934": "Court Administration", "1935": "Employee Benefits", "1936": "Taxation, Tax policy, and Broad Tax Reform", "1937": "General Transportation", "1938": "Retirement and lifelong learning", "1939": "Public health and disease prevention", "1940": "Maritime Issues, Including Safety and Security", "1941": "Alternative and Renewable Energy", "1942": "Criminal and Civil Code", "1943": "General health", "1944": "Employee Relations and Labor Unions", "1945": "Species and Habitat Protection", "1946": "Monetary Supply, Federal Reserve Board, and the Treasury", "1947": "National Budget and Debt", "1948": "Monetary Supply, Federal Reserve Board, and the Treasury", "1949": "Natural Gas and Oil", "1950": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1951": "Worker Safety and Protection, Occupational and Safety Health Administration", "1952": "Comprehensive health care reform", "1953": "Hazardous Waste and Toxic Chemical Regulation, Treatment, and Disposal", "1954": "Police, Fire, and Weapons Control", "1955": "Railroad Transportation and Safety", "1956": "Court Administration", "1957": "Employment Training and Workforce Development", "1958": "Truck and Automobile Transportation and Safety", "1959": "Illegal Drug Production, Trafficking, and Control", "1960": "Employee Benefits", "1961": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1962": "Agricultural Marketing, Research, and Promotion", "1963": "Court Administration", "1964": "Provider and insurer payment and regulation", "1965": "General Transportation", "1966": "Taxation, Tax policy, and Broad Tax Reform", "1967": "Air Transportation and Safety", "1968": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1969": "Air Transportation and Safety", "1970": "Court Administration", "1971": "Public health and disease prevention", "1972": "Medical liability, fraud and abuse", "1973": "Maritime Issues, Including Safety and Security", "1974": "Employee Benefits", "1975": "General Domestic Macroeconomic Issues", "1976": "Agricultural Marketing, Research, and Promotion", "1977": "Species and Habitat Protection", "1978": "Public health and disease prevention", "1979": "Nuclear Energy and Nuclear Regulatory Commission Issues", "1980": "general civil rights", "1981": "Air Transportation and Safety", "1982": "Hazardous Waste and Toxic Chemical Regulation, Treatment, and Disposal", "1983": "National Budget and Debt", "1984": "General education", "1985": "Maritime Issues, Including Safety and Security", "1986": "Transportation Research and Development", "1987": "Species and Habitat Protection", "1988": "Taxation, Tax policy, and Broad Tax Reform", "1989": "National Budget and Debt", "1990": "Secondary Mortgage Market and Government Sponsored Housing Entities", "1991": "Species and Habitat Protection", "1992": "Food Inspection and Safety", "1993": "Electricity and Hydroelectricity", "1994": "Employee Benefits", "1995": "Species and Habitat Protection", "1996": "General engergy", "1997": "Health Insurance", "1998": "Long-term care, home health, hospice, and rehabilitation services", "1999": "Fisheries and Fishing", "2000": "Court Administration", "2001": "Education of Underprivileged Students", "2002": "General Transportation", "2003": "Monetary Supply, Federal Reserve Board, and the Treasury", "2004": "Natural Gas and Oil", "2005": "Roads and Highways", "2006": "Maritime Issues, Including Safety and Security", "2007": "Maritime Issues, Including Safety and Security", "2008": "Low and Middle-Income Housing Programs and Needs", "2009": "Price Control and Stabilization", "2010": "National Budget and Debt", "2011": "Riots, Crime Prevention, and Crime Control", "2012": "Roads and Highways", "2013": "Elementary and Secondary Education", "2014": "Natural Gas and Oil", "2015": "National Budget and Debt", "2016": "Higher Education", "2017": "Police, Fire, and Weapons Control", "2018": "Regulation of drug industry, medical devices, and clinical labs", "2019": "Maritime Issues, Including Safety and Security", "2020": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "2021": "Employee Relations and Labor Unions", "2022": "Roads and Highways", "2023": "Agricultural Trade", "2024": "Truck and Automobile Transportation and Safety", "2025": "General environment", "2026": "Maritime Issues, Including Safety and Security", "2027": "Electricity and Hydroelectricity", "2028": "Food Inspection and Safety", "2029": "General education", "2030": "General environment", "2031": "Roads and Highways", "2032": "Species and Habitat Protection", "2033": "Voting Rights, Participation, and Related Issues", "2034": "Public health and disease prevention", "2035": "Health Workforce, Licensing & Training", "2036": "Drinking Water Safety", "2037": "Animal and Crop Disease, Pest Control, and Domesticated Animal Welfare", "2038": "Waste Disposal", "2039": "General Community Development and Housing Issues", "2040": "Taxation, Tax policy, and Broad Tax Reform", "2041": "Land and Water Conservation", "2042": "Veterans Housing Assistance and Military Housing Programs", "2043": "Right to Privacy and Access to Government Information", "2044": "Species and Habitat Protection", "2045": "Higher Education", "2046": "Higher Education", "2047": "Low and Middle-Income Housing Programs and Needs", "2048": "Environment Research and Development", "2049": "Air Transportation and Safety", "2050": "National Budget and Debt", "2051": "Taxation, Tax policy, and Broad Tax Reform", "2052": "Truck and Automobile Transportation and Safety", "2053": "Railroad Transportation and Safety", "2054": "Food Inspection and Safety", "2055": "Air Transportation and Safety", "2056": "Taxation, Tax policy, and Broad Tax Reform", "2057": "Land and Water Conservation", "2058": "General engergy", "2059": "Veterans Housing Assistance and Military Housing Programs", "2060": "Right to Privacy and Access to Government Information", "2061": "Employment Training and Workforce Development", "2062": "Taxation, Tax policy, and Broad Tax Reform", "2063": "First Amendment Issues", "2064": "Monetary Supply, Federal Reserve Board, and the Treasury", "2065": "Roads and Highways", "2066": "Electricity and Hydroelectricity", "2067": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "2068": "Pollution and Conservation in Coastal & Other Navigable Waterways", "2069": "Elderly and Disabled Housing", "2070": "Food Inspection and Safety", "2071": "Facilities construction, regulation, and payments", "2072": "Public health and disease prevention", "2073": "Educational Excellence", "2074": "Facilities construction, regulation, and payments", "2075": "Mass Transportation and Safety", "2076": "National Budget and Debt", "2077": "Employee Benefits", "2078": "Anti-Government Activities", "2079": "Higher Education", "2080": "Food Inspection and Safety", "2081": "Rural Housing", "2082": "Substance, Alcohol and Drug Abuse, Treatment and Education", "2083": "Roads and Highways", "2084": "Maritime Issues, Including Safety and Security", "2085": "Children and Prenatal Care", "2086": "Tobacco Abuse, Treatment, and Education", "2087": "General Community Development and Housing Issues", "2088": "Secondary Mortgage Market and Government Sponsored Housing Entities", "2089": "Roads and Highways", "2090": "Rural Economic Development", "2091": "Higher Education", "2092": "Facilities construction, regulation, and payments", "2093": "Air Transportation and Safety", "2094": "Monetary Supply, Federal Reserve Board, and the Treasury", "2095": "Employment Training and Workforce Development", "2096": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "2097": "Industrial Policy", "2098": "Roads and Highways", "2099": "General Transportation", "2100": "Health Insurance", "2101": "Species and Habitat Protection", "2102": "Comprehensive health care reform", "2103": "Maritime Issues, Including Safety and Security", "2104": "Ethnic Minority and Racial Group Discrimination", "2105": "Inflation and Interest Rates", "2106": "general civil rights", "2107": "Urban Economic Development and General Urban Issues", "2108": "Taxation, Tax policy, and Broad Tax Reform", "2109": "Natural Gas and Oil", "2110": "Agricultural Trade", "2111": "Roads and Highways", "2112": "Taxation, Tax policy, and Broad Tax Reform", "2113": "Employee Benefits", "2114": "Fair Labor Standards", "2115": "Employment Training and Workforce Development", "2116": "Fair Labor Standards", "2117": "Public Works (Infrastructure Development)", "2118": "Elementary and Secondary Education", "2119": "Veterans Housing Assistance and Military Housing Programs", "2120": "Natural Gas and Oil", "2121": "Species and Habitat Protection", "2122": "Taxation, Tax policy, and Broad Tax Reform", "2123": "Railroad Transportation and Safety", "2124": "Pollution and Conservation in Coastal & Other Navigable Waterways", "2125": "Rural Housing", "2126": "General education", "2127": "Prescription drug coverage and costs", "2128": "Land and Water Conservation", "2129": "Employee Benefits", "2130": "general civil rights", "2131": "Maritime Issues, Including Safety and Security", "2132": "Energy Research and Development", "2133": "Taxation, Tax policy, and Broad Tax Reform", "2134": "Voting Rights, Participation, and Related Issues", "2135": "Health Insurance", "2136": "Veterans Housing Assistance and Military Housing Programs", "2137": "Arts and Humanities", "2138": "Health Insurance", "2139": "Elementary and Secondary Education", "2140": "General Community Development and Housing Issues", "2141": "Employment Training and Workforce Development", "2142": "Employee Relations and Labor Unions", "2143": "Nuclear Energy and Nuclear Regulatory Commission Issues", "2144": "Facilities construction, regulation, and payments", "2145": "Taxation, Tax policy, and Broad Tax Reform", "2146": "Anti-Government Activities", "2147": "Migrant and Seasonal workers, Farm Labor Issues", "2148": "Natural Gas and Oil", "2149": "Other Energy", "2150": "Long-term care, home health, hospice, and rehabilitation services", "2151": "Elementary and Secondary Education", "2152": "Worker Safety and Protection, Occupational and Safety Health Administration", "2153": "Ethnic Minority and Racial Group Discrimination", "2154": "Public health and disease prevention", "2155": "Roads and Highways", "2156": "Natural Gas and Oil", "2157": "Alternative and Renewable Energy", "2158": "General education", "2159": "Employee Benefits", "2160": "Taxation, Tax policy, and Broad Tax Reform", "2161": "Education of Underprivileged Students", "2162": "Employee Benefits", "2163": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "2164": "Health Insurance", "2165": "Maritime Issues, Including Safety and Security", "2166": "Fair Labor Standards", "2167": "Gender, Identity and Sexual Orientation Discrimination", "2168": "Truck and Automobile Transportation and Safety", "2169": "Taxation, Tax policy, and Broad Tax Reform", "2170": "Natural Gas and Oil", "2171": "Public Works (Infrastructure Development)", "2172": "Taxation, Tax policy, and Broad Tax Reform", "2173": "Railroad Transportation and Safety", "2174": "Education of Underprivileged Students", "2175": "General education", "2176": "General Community Development and Housing Issues", "2177": "Children and Prenatal Care", "2178": "Employee Benefits", "2179": "Secondary Mortgage Market and Government Sponsored Housing Entities", "2180": "Facilities construction, regulation, and payments", "2181": "Health Insurance", "2182": "Secondary Mortgage Market and Government Sponsored Housing Entities", "2183": "Employee Benefits", "2184": "Species and Habitat Protection", "2185": "Higher Education", "2186": "Agricultural Trade", "2187": "Higher Education", "2188": "Low and Middle-Income Housing Programs and Needs", "2189": "General environment", "2190": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "2191": "Electricity and Hydroelectricity", "2192": "Pollution and Conservation in Coastal & Other Navigable Waterways", "2193": "Coal", "2194": "Long-term care, home health, hospice, and rehabilitation services", "2195": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "2196": "Substance, Alcohol and Drug Abuse, Treatment and Education", "2197": "Taxation, Tax policy, and Broad Tax Reform", "2198": "Elementary and Secondary Education", "2199": "First Amendment Issues", "2200": "Species and Habitat Protection", "2201": "Electricity and Hydroelectricity", "2202": "Public health and disease prevention", "2203": "Elementary and Secondary Education", "2204": "Natural Gas and Oil", "2205": "Employee Benefits", "2206": "Vocational Education", "2207": "Higher Education", "2208": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "2209": "Agricultural Marketing, Research, and Promotion", "2210": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "2211": "Nuclear Energy and Nuclear Regulatory Commission Issues", "2212": "Air pollution, Climate Change, and Noise Pollution", "2213": "Employee Benefits", "2214": "Public health and disease prevention", "2215": "Voting Rights, Participation, and Related Issues", "2216": "General education", "2217": "Taxation, Tax policy, and Broad Tax Reform", "2218": "Industrial Policy", "2219": "Housing and Community Development", "2220": "Worker Safety and Protection, Occupational and Safety Health Administration", "2221": "Higher Education", "2222": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "2223": "Education of Underprivileged Students", "2224": "Public health and disease prevention", "2225": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "2226": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "2227": "Health Insurance", "2228": "Employee Benefits", "2229": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "2230": "Higher Education", "2231": "Agricultural Research and Development", "2232": "Facilities construction, regulation, and payments"}} \ No newline at end of file diff --git a/Topic_Models/Data/congressional_bill_test_processed.pkl b/Topic_Models/Data/congressional_bill_test_processed.pkl deleted file mode 100644 index ade45ccd..00000000 Binary files a/Topic_Models/Data/congressional_bill_test_processed.pkl and /dev/null differ diff --git a/Topic_Models/Data/congressional_bill_train.json b/Topic_Models/Data/congressional_bill_train.json deleted file mode 100644 index 9092e27a..00000000 --- a/Topic_Models/Data/congressional_bill_train.json +++ /dev/null @@ -1 +0,0 @@ -{"text": {"0": "To designate the Department of Veterans Affairs medical center in Big Spring, Texas, as the George H. O'Brien, Jr., Department of Veterans Affairs Medical Center.", "1": "To authorize certain modifications in the existing project for the Columbia River at the mouth, Oregon and Washington", "2": "A bill to provide for a national commission on health care reform.", "3": "To amend SAFETEA-LU to ensure that projects that assist the establishment of aerotropolis transportation systems are eligible for certain grants, and for other purposes.", "4": "A bill to extend the service area for the San Luis Unit of the Central Valley Project, and for other purposes.", "5": "To amend the Bacon-Davis Act, as amended, and the Walsh-Healey Government Contracts Act, as amended, to prevent suspension of their provisions by the President", "6": "A bill to establish a small business energy efficiency program, and for other purposes.", "7": "To amend section 103 of title 23, United States Code, to authorize modifications or revisions in the Interstate System", "8": "A bill to extend the provisions of title XII of the Merchant Marine Act, 1936, relating to war risk insurance.", "9": "To relinquish all Federal interests in certain lands in the State of Louisiana to correct errors resulting from possible omission of lands from previous surveys, and for other purposes.", "10": "To amend the Federal Water Power Act with respect to the control of the volume and flow of water in connection with power projects", "11": "A bill to require the President to take all necessary action to strictly enforce the regulation promulgated under section 4 of the Emergency Petroleum Allocation Act of 1973 and all orders issued under such act.", "12": "A bill to authorize appropriations to the Secretary of Commerce for the Magnuson-Stevens Fishery Conservation and Management Act for fiscal years 2004, 2005, 2006, 2007, and 2008, and for other purposes.", "13": "To prohibit discrimination in employment because of race, color, national origin, or ancestry", "14": "Relating to the war tax rate on retail sale of furs", "15": "A bill to establish a Chiropractic Section in the Medical Service Corps of the Army.", "16": "To amend the Labor-Manage ment Relations Act, 1947, in order to facilitate the freedom of association of professional personnel", "17": "A bill to help protect the public against the threat of chemical attack.", "18": "To amend the Highway Safety Act of 1970 to provide additional funds for .highway safety programs by authorizing appropriations for such programs in an amount equal to 40 percent of the revenue collected from Federal taxes relating to alcohol", "19": "A bill to extend the date for initiating education and training courses for veterans of World War II", "20": "A bill to promote the development of Native American culture and art.", "21": "To require the Secretary of the Treasury to gather and compile information with respect to the financial cost of assisting taxpayers to comply with the tax laws of the United States, and for other purposes", "22": "To authorize the improvement of the Walnut Creek Basin, Calif., for flood control as recommended in House Document 76, 86th Congress", "23": "To amend the National Historic Preservation Act for purposes of establishing a national historic lighthouse preservation program.", "24": "A bill to strengthen and improve Medicaid services to low-income children and pregnant women, and for other purposes.", "25": "A bill to amend the act of August 12, 1955 (69 Stat. 699), relating to elections in the District of Columbia.", "26": "To establish grant programs and provide other forms of Federal assistance to pregnant women, children in need of adoptive families, and individuals and families adopting children.", "27": "To authorize the conveyance of a parcel of land in Whitney Lake, Texas.", "28": "To amend the Public Health Service Act to establish a State family support grant program to end the practice of parents giving legal custody of their seriously emotionally disturbed children to State agencies for the purpose of obtaining mental health services for those children.", "29": "A bill to encourage the deployment of clean coal technologies so as to assure the development of additional electric generation and industrial energy capacity.", "30": "A bill to facilitate the transmission of electric power by the United States.", "31": "To provide for an extension of highway 82 and Interstate Highway 5 in the states of Washington and Oregon", "32": "To amend the Elementary and Secondary Education Act of 1935 to continue the authorized programs after June 30, 1968, through block grants to the States", "33": "A bill to designate certain lands in the Noxubee National Wildlife Refuge, Oktibbeha County, Miss., as wilderness.", "34": "Providing for an extension of the time during which annual assessment work on mining claims held by location in the United States, including Alaska, may be made, and for other purposes", "35": "To provide that, in the determination of the amount which certain local educational agencies. are entitled to receive for school construction purposes, no reduction in such amount shall be made for prior construction under the WPA, PWA, and NYA programs", "36": "To further secure personal privacy and to protect the constitutional right of individuals to ignore unwarranted governmental requests for personal information", "37": "A bill to provide compensation to survivors of local law enforcement officers killed while apprehending persons for committing Federal crimes.", "38": "To encourage States and units of general local government to use amounts received under the community development block grant program and the community mental health services and substance abuse block grant programs to provide housing counseling and financial counseling for individuals before their release from inpatient or residential institutions for individuals with mental illness and periodic evaluation of the appropriateness of such counseling after such release.", "39": "To extend the provisions of the act of October 11, 1949 (63 Stat. 759,ch. 672 32 D.C. Code 417), to authorize the commitment of persons of unsound mind found on Federal reservations in Loudoun County, Va., to St. Elizabeths Hospital in the District of Col", "40": "To require the Food and Drug Administration to carry out certain activities with respect to food choking hazards to children, including a program to provide education to the public.", "41": "To adjust the boundaries of Pisgah National Forest in McDowell County, North Carolina.", "42": "To provide for the construction and maintenance of a high school formenIndian pupils within the exterior boundaries of the Fort Berthold Reservation", "43": "To promote the provision of telehealth by establishing a Federal standard for telehealth, and for other purposes.", "44": "To amend certain provisions of the Internal Revenue Code of 1954, and certain provisions of title 28, United States Code, relating to taxation", "45": "To provide for the establishment of a commission to review and make recommendations to Congress on the reform and simplification of the Internal Revenue Code of 1986.", "46": "To remove the excise tax on musical instruments , and for other purposes", "47": "To amend the Internal revenue Code of 1954 to provide that annuitants may elect to have their annuities taxed in the manner provided by the Internal Revenue Code of 1939.", "48": "A bill to encourage the conservation of energy by requiring that certain buildings financed with Federal funds are so designed and constructed that the windows in such buildings can be opened and closed manually.", "49": "A bill to prevent the militarization of Federal, State, and local law enforcement by Federal excess property transfers and grant programs.", "50": "A bill to authorize appropriations for the Strategic Petroleum Reserve, and for other purposes.", "51": "A bill to amend the Interstate Land Sales Full Disclosure Act for purposes of regulating the sale or lease of time-share intervals.", "52": "To provide for the reconveyance of lands in certain reservoir projects in Texas, to former owners of such lands", "53": "A bill to designate certain lands within the National Forest System as wilderness.", "54": "To establish a priority in the disposal of real property resulting from the closure or realignment of military installations toward States and other entities that agree to convert the property into correctional facilities for youthful offenders to be operated as military-style boot camps and to require the Secretary of Defense to develop a program to promote the expanded use of such correctional facilities.", "55": "A bill to establish a forgivable loan program for geothermal reservoir confirmation, to amend existing geothermal leasing and permitting laws, and for other purposes.", "56": "A bill to repeal the provisions of the Patient Protection and Affordable Care Act providing for the Independent Payment Advisory Board.", "57": "To amend the Social Security Act to provide that the Secretary of Health, Education, and Welfare shall, under certain circumstances, disclose the current addresses of husbands and parents who have deserted their families", "58": "To provide for the conveyance of certain public land near the City of Douglas, Arizona, for use as a shooting range.", "59": "To enhance the benefits of the national electric system by encouraging and supporting State programs for renewable energy sources, universal electric service, affordable electric service, and energy conservation and efficiency, and for other purposes.", "60": "To amend the Controlled Substances Act to permit certain partial fillings of prescriptions.", "61": "A bill to establish rational criteria for the mandatory imposition of the sentence of death, and for other purposes.", "62": "A bill to establish a commission to study the impact of deregulation of the airline industry on small town America.", "63": "A bill making supplemental appropriations for the fiscal year ending September 30, 2014, for border security, law enforcement, humanitarian assistance, and for other purposes.", "64": "A bill to eliminate the appellate jurisdiction of the U.S. Supreme Court with respect to certain abortion cases.", "65": "To provide for the disposition of the Philadelphia Army Base, Philadelphia, Pa", "66": "To repeal the Public Utility Holding Company Act of 1935, to enact the Public Utility Holding Company Act of 1999, and for other purposes.", "67": "To convey for public purposes certain Federal lands in Riverside County, California, that have been identified for disposal.", "68": "To assure equal access for farm workers to programs and procedures instituted for the protection of American working men and women, and for other purposes", "69": "A bill to establish a Federal Interagency Committee on Emergency Medical Services and a Federal Interagency Committee on Emergency Medical Services Advisory Council, and for other purposes.", "70": "A bill to amend titles XVI, XVIII, and XIX of the Social Security Act with respect to services and benefits for chronically mentally ill individuals.", "71": "To establish a national policy regarding recreational use of snowmobiles on public lands, to provide for a coordinated national snowmobile safety program, and for other related purposes", "72": "A bill to amend subsection 216 (c) of the Motor Carrier Act, 1935, to require the establishment by motor carriers of reasonable through routes and joint rates, charges, and classifications", "73": "A bill to direct the Secretary of Transportation to take certain action in connection with the outporting of certain vessels.", "74": "To amend title 31, United States Code, to allow certain State and local tax debt to be collected through the reduction of Federal tax refunds.", "75": "To require the labeling, advertising, and promotion of tobacco products to disclose the additives to and constituents of the products and tobacco smoke, and for other purposes.", "76": "To amend the National Housing Act to reform and simplify the single family home mortgage insurance program of the Department of Housing and Urban Development, and for other purposes.", "77": "To terminate the obligation of funds by the United States for the superconducting super collider project.", "78": "A bill to provide for emergency increases in the support level for the 1974 crop of flue-cured tobacco.", "79": "A bill to make the income tax credit for increasing research activities permanent.", "80": "A bill to establish an Agricultural Land Review Commission; to establish a demonstration program for protecting agricultural land from being used for nonagricultural purposes; and for other purposes.", "81": "A bill to repeal the provisions of the Agriculture and Consumer Protection Act of 1973 which provide for payments to farmers in the event of crop failures with respect to crops planted in lieu of wheat or feed grains.", "82": "To authorize the appointment of one additional district judge for the southern district of California", "83": "To tax capital gains at the same rate as ordinary income.", "84": "To amend section 24 of the Federal Reserve Act to permit national banks to make loans on unimproved real estate in certain circumstances", "85": "To amend sections 1331 and 1332, title 28, chapter 85, United States Code, dealing is part with the jurisdiction of district courts of the United States", "86": "A bill to authorize appropriations for the Coastal Heritage Trail Route in the State of New Jersey, and for other purposes.", "87": "To amend the Energy Policy Act of 2005 to authorize discounted sales of royalty oil and gas taken in-kind from a Federal oil or gas lease to provide additional resources to Federal low-income energy assistance programs.", "88": "To consolidate Vicksburg National Military Park and to provide for certain adjustments necessitated by the installation of a park tour road, and for other purposes", "89": "A bill to authorize appropriations for the Appalachian highway system and local access roads serving the Appalachian region, and for other purposes.", "90": "A bill to disclaim interest in certain rights in certain lands in the State of Nevada.", "91": "To enhance the ability of law enforcement to combat money laundering, and for other purposes.", "92": "A bill to amend the act of May 13, 1954, relating to the Saint Lawrence Seaway Development Corporation to provide for a 7-year term of office for the Administrator.", "93": "To provide a site for construction of a national health museum, and for other purposes.", "94": "A bill to provide certain authority to reduce erosion within the Cuyahoga Valley National Recreation Area.", "95": "To amend title f8 of the United States Code to prohibit travel or use of any facility in interstate or. foreign commerce with intent to incite a riot or other violent civil disturbance, and for other purposes", "96": "To abolish the National Board for the Promotion of Rifle Practice and to eliminate the promotion of civilian marksmanship by the Department of Defense.", "97": "To provide that Congress shall establish a budget ceiling for each fiscal year, and to provide the appropriation acts which violate any such ceiling shall require a two-thirds vote in each House", "98": "A bill to amend the rice marketing quota provisions of the Agricultural Adjustment Act of 1938, as amended.", "99": "A bill to establish a regulatory framework for the comprehensive protection of personal data for individuals under the aegis of the Federal Trade Commission, to amend the Children's Online Privacy Protection Act of 1998 to improve provisions relating to collection, use, and disclosure of personal information of children, and for other purposes.", "100": "A bill to establish energy supply targets to the year 2000 and to establish procedure for an annual review and update of these targets.", "101": "Making unlawful the require ment for the payment of a poll tax as a prerequisite to voting in a primary or other election for national officers", "102": "A bill to extend coverage of the automobile assistance program and the specially adopted housing program to those veterans qualifying for assistance under section 351 of title 38, United States Code.", "103": "A bill to prohibit possession, manufacture, sale, importation, and mailing of ballistic knives.", "104": "To amend section 6 (a) of Public Law 377 of the act of May 13, 1946, entitled An act to provide Federal aid for the development of public airports, as amended by Public Law 382 of October 25, 1949 (63 Stat.903)", "105": "A bill to make the Alaska Railroad subject to the Government Corporation Control Act", "106": "A bill to recognize the organization known as the National Mining Hall of Fame and Museum.", "107": "To protect the Nation's consumers and to assist the commercial fishing industry through the inspection of establishments processing fish and fishery product in commerce", "108": "To encourage the discovery, development, and production of tin in the United States, its Territories, and possessions.", "109": "To establish a Redwood National Park in the State of California, and for other purposes", "110": "A bill to amend certain provisions of title 28, United States Code, relating to venue in the district courts and the courts of appeals.", "111": "A bill to establish a National Commission on Pesticides, and to provide for a program of investigation, basic research, and development to improve the effectiveness of pesticides and to eliminate their hazards to the environment, fish and wildlife, and ma", "112": "A bill to require the United States Sentencing Commission to amend the Federal sentencing guidelines to provide an enhanced penalty for follow-on bombings.", "113": "A bill to increase the annual salaries of justices and judges of the United States.", "114": "To amend the act entitled An act to expedite the provisions of housing in connection with national defense, and for other purposes, approved October 14, 1940, as amended", "115": "A bill to amend the Federal Unemployment Tax Act to provide additional limitation on the reduction on the credit applicable to employers in certain States which have outstanding loan balances, and for other purposes.", "116": "A bill to protect Yellowstone National Park, the Clarks Fork of the Yellowstone National Wild and Scenic River and the Absaroka-Beartooth Wilderness Area, and for other purposes.", "117": "To amend section 5042 of the internal Revenue Code of 1954 to provide an exemption from tax for certain wine produced for personal use", "118": "To amend the act of March 3, 1899, to authorize the United States to recover by civil actions the cost of removing certain obstructions from the navigable waters of the United States, and for other purposes", "119": "A bill entitled Spill Prevention and Cleanup for Energy Transportation Systems Act of 1977.", "120": "To stimulate , the exploration, production, and conservation of strategic and critical ores, metals, and minerals and for the establishment within the Defense Materials Procurement Agency of a Mine Incentive Payments Division, and for other purposes", "121": "To reinstate the World War II veterans education program, and to per mit World Wax II veterans to obtain educational benefits thereunder to pro vide an additional period during which Korean conflict veterans may initiate and pursue programs of education a", "122": "A bill to extend the Emergency Unemployment Compensation program for an additional year.", "123": "A bill to restructure and recapitalize the Federal Home Loan Mortgage Corporation and for other purposes.", "124": "A bill to discontinue divisions of the court in the district of Kansas", "125": "To authorize the Secretary of the Interior to establish and administer a program of direct Federal employment to improve the quality of the environment, the public lands, Indian reservations, and commonly owned and shared resources through a program of recreational development, reforestation and conservation management, and for other purpcses", "126": "A bill authorizing the construction of local flood-protection works on the Mississippi River at St. Paul and South St. Paul, Minn.", "127": "To authorize the Secretary of the Interior to cooperate with the State of Kentucky to acquire non-Federal cave properties within the authorized boundaries of Mammoth Cave National Park in the State of Kentucky, and for other purposes.", "128": "To establish Federal, State, and local programs for the investigation, reporting, and prevention of bias crimes.", "129": "To authorize the Secretary of the Army to connect the sewage system of St. Josephs Indian School with that of the town of Chamberlain, S. Dak.", "130": "To restore the authority of the Secretary of Agriculture to extend existing and expiring contracts under the conservation reserve program.", "131": "A bill to provide 100 per centum Federal funding of financial audits of facilities participating in medicare and medicaid conducted by State personnel.", "132": "To prohibit the establishment of a valley authority in any State that would be substantially affected thereby until the people of the affected areas of such State have voted affirmatively for such valley authority", "133": "To allow a custodial parent a refundable credit for unpaid child support payments and to require a parent who is chronically delinquent in child support to include the amount of the unpaid obligation in gross income.", "134": "A bill to clarify the limits of the authority of the Department of Education.", "135": "To amend the provisions of law relating to the planting of crops on acreage diverted under the cotton, wheat, and feed grains programs", "136": "To consolidate the two judicial districts of the State of South Carolina into a single judicial district and to make suitable transitional provisions with respect thereto", "137": "To establish a commission to formulate plans for a memorial to Adlai E. Stevenson", "138": "To provide for the construction of an irrigation distribution system and drainage works for restricted Indian lands within the Coachella Valley County Water District in RiVerside County, Calif., and for other purposes.", "139": "A bill relating to the provision of facilities and services for the accommodation of visitors in the national parks, monuments, and reservations, authorizing the Secretary of the Interior to guarantee the obligations of concessioners incurred for such pur", "140": "To amend the Arms Export Control Act to provide that certain firearms listed as curios or relics may be imported into the United States by a licensed importer without obtaining authorization from the Department of State or the Department of Defense, and for other purposes.", "141": "A bill entitled the Education Consolidation and Improvement Act Amendments of 1987.", "142": "To amend the tobacco-marketing-quota provisions of the Agricultural Adjustment Act of 1938, as amended.", "143": "To provide for mandatory price support through the marketing year ending In 1964, for milk used in manufactured dairy products and for butterfat to maintain the productive capacity of our dairy farming industry to promote the orderly marketing of an adequ", "144": "To amend the Higher Education Act of 1965 to strengthen Federal-State partnerships in postsecondary education.", "145": "To expedite salvage and sanitation harvesting of timber stands located on National Forest System lands.", "146": "To amend the act of July 4, 1955, as amended, relating to the construction of irrigation distribution systems", "147": "A bill to designate the Trinity Alps Wilderness, Klamath, Shasta-Trinity, and Six Rivers National Forests in the State of California.", "148": "To provide workmen's compensation protection to individuals denied benefits under State law for disability or death from lung cancer caused by exposure to ionizing radiation during their employment in uranium mines to authorize the Secretary of Labor to provide or make provision for payment of supplementary compensation to persons receiving workmen's compensation benefits under State law for such disability or death to reimburse States for the payment of certain workmen's compensation claims to provide grants to States for research and planning with respect .to ionizing radiation injuries in uranium mines and for other purposes", "149": "To confer jurisdiction upon the U.S. Court of Claims to hear, determine, and render judgment upon the claim of N. V. Phillips Gloeillampenfabrieken, a corporation duly organized and existing under the laws of the Kingdom of the Netherlands and having its principal office in Eindhoven in that country", "150": "A bill to transfer the National Institute of Mental Health to the National Institutes of Health.", "151": "To improve treatment for veterans exposed to radiation while in military service.", "152": "Relating to the computation of retirement income credit in the case of joint income-tax returns.", "153": "To amend the Area Redevelopment Act to permit the repayment of assistance furnished from State and local sources concurrently with the repayment of Federal assistance in certain cases", "154": "To declare and determine the policy by the Congress with respect to the primary authority of the several States to control, regulate, and manage fish and wildlife within their territorial boundaries to confirm to the several States such primary authority and responsibility to relinquish, disavow, and disclaim any power of the United States with respect to the management, regulation, and control of fish and wildlife on lands owned by the United States and specifying the exceptions applicable thereto", "155": "To amend the Internal Revenue Code of X1954 to allow a credit against income tax to employers for .the expenses of providing training programs for employees and prospective employees", "156": "To amend the Federal Power Act to establish procedures designed to balance reasonable power needs and reasonable environmental factors in planning and authorizing the construction and operation of bulk electric power facilities", "157": "To establish a wind engineering research program within the National Institute of Standards and Technology.", "158": "A bill to amend section 901 of the Alaska National Interest Lands Conservation Act.", "159": "To amend the Merchant Marine Act, 1936, to provide for more equitable treatment of a Regional Maritime Academy.", "160": "To provide the Secretary of Commerce with the authority to make grants to States, counties, and local communities to pay for up to one-half of the costs of training programs for firemen", "161": "To amend the Standard Container Act of May 21. 1928 (45 Stat. 685 15 U. S. C. 257-257i) to provide for a three-eights basket for fruits and vegetables", "162": "A bill to alter the boundaries of the Stones River National Battlefield, and for other purposes.", "163": "A bill to amend section 1 (15) of the Interstate Commerce Act, so as to give to the Interstate Commerce Commission authority for use in alleviating car shortages during periods of emergency or threatened emergency", "164": "A bill to amend chapter 215 of title 18 of the United States Code with regard to the grand jury.", "165": "To provide for the provision by hospitals receiving Federal funds through the Medicare Program or Medicaid Program of emergency contraceptives to women who are survivors of sexual assault.", "166": "A bill to amend section 340B of the Public Health Service Act to revise and expand the drug discount program under that section to improve the provision of discounts on drug purchases for certain safety net providers.", "167": "A bill to provide for an expanded forest resources extension program.", "168": "A bill to amend the Controlled Substances Act to treat as dispensing the delivery of a controlled substance by a pharmacy to a practitioner, pursuant to a patient-specific prescription of the practitioner, under certain circumstances.", "169": "A bill to direct the Secretary of Labor to change the name of the Wholesale Price Index to the Basic Price Index.", "170": "To authorize appropriations for Local Rail Freight Assistance through fiscal year 1994.", "171": "To revise the quota-control system on the Importation of certain meat land meat products", "172": "To provide assistance to local educational agencies for the prevention and reduction of violent crime in elementary and secondary schools.", "173": "To realign structures and reallocate resources in the Federal Government, in keeping with the core American belief that families are the best protection for children and the bedrock of any society, to bolster United States diplomacy and assistance targeted at ensuring that every child can grow up in a permanent, safe, nurturing, and loving family, and to strengthen intercountry adoption to the United States and around the world and ensure that it becomes a viable and fully developed option for providing families for children in need, and for other purposes.", "174": "To amend the Public Health Service Act to support research and training in diseases of arthritis and rheumatism, and to aid the ,States in the development of community programs for the control of these diseases, and for other purposes", "175": "A bill to provide for the orderly implementation of Environmental Protection Agency programs established to comply with the Endangered Species Act of 1973.", "176": "A bill to amend section 3 of the Natural Gas Act of 1938, to prohibit importation of petroleum from any country which expropriates, nationalizes, or seizes American owned petroleum property without adequate compensation, after January 1, 1971", "177": "To declare an emergency and to create the National Coal Emergency Act of 1950", "178": "A bill to restrict participation in offshore oil and gas leasing by a person who engages in any activity for which sanctions may be imposed under section 5 of the Iran Sanctions Act of 1996, to require the lessee under an offshore oil and gas lease to disclose any participation by the lessee in certain energy-related joint ventures, investments, or partnerships located outside Iran, and for other purposes.", "179": "A bill to provide the Quileute Indian Tribe Tsunami and Flood Protection, and for other purposes.", "180": "To provide for a National Commission on Board and Care Facility Quality to review and recommend standards for board and care facilities.", "181": "Relating to the tax treatment of transfers of rights to copyrights and literary, musical, and artistic compositions", "182": "To continue temporary authority of the Maritime Commission until March 1, 1948", "183": "A bill to amend the Act of July 2, 1940, as amended, to increase the amount authorized to be appropriated for the Canal Zone Biological Area.", "184": "A bill to amend the Act entitled An Act conferring jurisdiction on certain courts of the United States to hear and render judgment in connection with certain claims of the Cherokee Nation of Oklahoma, approved December 23, 1982.", "185": "A bill to authorize the construction of a replacement lock and dam for locks and dam 26, Mississippi River, Alton, Ill.", "186": "A bill to consent to the amendment of the Pacific Marine Fisheries Compact and to the participation of certain additional States in such compact in accordance with the terms of such amendment", "187": "To provide Federal assistance for projects which will demonstrate or develop techniques and practices leading to a solution of the Nations juvenile delinquency control problem", "188": "To support research and development programs in agricultural biotechnology and genetic engineering targeted to addressing the food and economic needs of the developing world.", "189": "To amend sections 4(a), 4(e), 7 (e) , and 15 of the Natural Gas Act, relating to rates and contracts of natural gas companies and the granting of certificates of public convenience and necessity to such companies, and relating to hearings and procedures i", "190": "To assist in the provision of affordable housing to low-income families affected by Hurricane Katrina.", "191": "A bill to convey right-of-way to Eagle Creek Inter-Community Water Supply Association.", "192": "To amend the Internal Revenue Code of 1986 to assist small business refiners in complying with Environmental Protection Agency sulfur regulations.", "193": "A bill to authorize Federal loans and matching grants as alternative forms of assistance to colleges and universitiesfor the construction, rehabilitation, alteration, conversion, or improvement of classroom buildings and other academic facilities.", "194": "A bill to improve farm commodity prices, to strengthen the national economy through a comprehensive, demand-oriented agricultural export policy, and for other purposes.", "195": "A bill to amend the Head Start Act to authorize block grants to States for prekindergarten education.", "196": "A bill to amend the Interstate Commerce Act by including independent owner-operator truckers as an exempted class under section 203(b) of that Act.", "197": "To establish a commission to enforce antidiscrimination provisions in Government contracts, and for other purposes", "198": "A bill to authorize implementation of the San Joaquin River Restoration Settlement, and for other purposes.", "199": "A bill to establish a ski area permit system on national forest lands established from the public domain, and for other purposes.", "200": "A bill to amend the Native American Languages Act to provide for the support of Native American Language Survival Schools, and for other purposes.", "201": "A bill to authorize the establishment of a Beringian Heritage International Park.", "202": "A bill to provide assistance for employees who are separated from employment as a result of reductions in service by air carriers, and closures of airports, caused by terrorist actions or security measures.", "203": "To provide for research and education with respect to triple-negative breast cancer, and for other purposes.", "204": "To develop a national intermodal surface transportation system, to authorize funds for construction of highways, for highway safety programs, and for mass transit programs, and for other purposes.", "205": "To authorize payment of $25,000 reward for information which leads to the apprehension and conviction of the person or persons responsible for a bomb explosion in the U.S. Capitol Building on March 1, 1971", "206": "To amend the Woodrow Wilson Memorial Bridge Authority Act of 1995 to provide for continued engineering, design, right-of-way acquisition, and construction related to the project to upgrade the Woodrow Wilson Memorial Bridge.", "207": "To amend title 49, United States Code, to provide for the extension of certain deadlines related to positive train control, and for other purposes.", "208": "A bill to require all recreational vessels to have and to post passenger capacity limits and for other purposes.", "209": "To provide for the issuance of commissions in the United States Coast Guard Reserve as temporary members to members of the St. Andrews Bay Pilots Association and the Port St. Joe Pilots Association", "210": "To authorize the Secretary of the Interior to revise the boundary of the Minute Man National Historical Park in the State of Massachusetts.", "211": "A bill to limit financial assistance under title I of the Housing Act of 1949, after July 1, 1965, to projects which cannot be self liquidating under applicable State law.", "212": "A bill to expand the working condition fringe exception of the Internal Revenue Code of 1954 with respect to employee use of vehicles.", "213": "A bill to designate a mountain in the State of Alaska as Denali.", "214": "A bill to provide for the development of a long-range plan to advance the national attack on arthritis and related musculoskeletal diseases and for arthritis training and demonstration centers, and for other purposes.", "215": "To direct the President to develop a comprehensive safety program to ensure the quality and wholesomeness of all fish products intended for human consumption in the United States.", "216": "An original bill authorizing appropriations to the Secretary of the Interior for services necessary to the nonperforming arts functions of the John F. Kennedy Center for the Performing Arts, and for other purposes.", "217": "To amend section 2314, United States Code, title 18, with respect to the transportation in interstate commerce of articles obtained by false or fraudulent pretenses, representations, or promises, or through any scheme or artifice to defraud.", "218": "A bill to disregard, for purposes of certain taxes imposed by the Internal Revenue Code of 1954 with respect to employees, certain changes since 1975 in the treatment of individuals as employees.", "219": "To provide that veterans suffering from active pulmonary tuberculosis shall be deemed to be permanently and totally disabled for pension purposes while hospitalized", "220": "A bill to encourage the prevention of air and water pollution by allowing the cost of treatment works for the abatement of air and stream pollution to be amortized at an accelerated rate for income-tax purposes.", "221": "To restrict imports of beef, veal, and mutton into the United States", "222": "To amend title XI of the Federal Aviation Act of 1958 to provide that certain provisions of insurance contracts covering loss of life or personal injury of passengers being transported in air transportation shall be null and void", "223": "A bill to exempt programs of the Federal National Mortgage Association from state usury laws and for other purposes.", "224": "A bill providing emergency relief to individuals injured as a result of the disposal of toxic or hazardous substances, and for other purposes.", "225": "A bill to amend certain provisions of the Federal Food, Drug, and Cosmetic Act", "226": "A bill to authorize appropriations for the American Folklife Center for fiscal years 1985 and 1986.", "227": "A bill to provide for a demonstration program for the provision of child care services in public housing projects.", "228": "To increase the number of graduate medical education positions treating veterans, to improve the compensation of health care providers, medical directors, and directors of Veterans Integrated Service Networks of the Department of Veterans Affairs, and for other purposes.", "229": "To provide the Department of Justice the necessary authority to apprehend, prosecute, and convict individuals committing animal enterprise terror.", "230": "A bill to amend the act of March 4, 1915, relating to the welfare of seamen, in order to authorize the two watch system on certain voyages of less than 1,800 miles", "231": "A bill to provide a uniform system for axing and adjusting the pay of employees in recognized trades or crafts, and for other purposes.", "232": "A bill to establish certain rights of professional employees in public schools operating under the laws of any of the several States or any territory or possession of the United States, to prohibit practices which are inimical to the welfare of such publi", "233": "A bill to provide for improved investment in national transportation infrastructure.", "234": "A bill to amend the Controlled Substances Act to authorize a Marihuana pretrial diversion program in order that persons subject to arrest for the unlawful possession of small amounts of marihuana or hashish for personal use may receive drug-related counseling rather than be subject to criminal prosecution pursuant to section 404(a) of such Act; and for other purposes.", "235": "To provide for the detection and treatment of members of the Armed Forces who are narcotics addicts, and for other purposes", "236": "A bill to prevent automobile manufacturers from coercing automobile dealers to purchase unwanted merchandise", "237": "A bill to establish a moratorium on oil and gas-related seismic activities off the coastline of the State of Florida, and for other purposes.", "238": "To authorize the Secretary of Agriculture to carry out a Forest Stewardship Assistance Program for owners of nonindustrial private forest land, and for other purposes.", "239": "To establish the rules of evidence to be followed for insanity as a defense in criminal prosecutions", "240": "To prohibit Federal agencies from planning the sale of the Southeastern Power Administration.", "241": "To amend section 700 of chapter33 of title 18 of the United States Code to provide penalties for showing disrespect for the flag of the United States", "242": "To provide for the use of Federal facilities to demonstrate environmental technologies.", "243": "To assist certain urban and rural local educational agencies that have a high concentration of children from low-income families.", "244": "A bill to amend chapter 44, title 18, United States Code, to prohibit the unlawful possession of firearms.", "245": "To amend the Railway Labor Act and to authorize agreements providing for union membership and agreements for deductions from the wages of carriers employees for certain purposes and under certain conditions", "246": "To establish the Mount Rogers National Recreation Area in Jefferson National Forest in Virginia, and for other purposes", "247": "To amend sections 901 (a) and 902(a) of the Federal Aviation Act of 1958, so as to authorize the imposition of civil penalties in certain additional cases and to increase the monetary amount of lines for violation of the criminal provisions", "248": "To exempt admissions to moving picture theaters from the Federal tax on admissions", "249": "To enforce the provision of the 14th amendment to the Constitution of the United States relating to equal protection of the laws by providing a system of racial integration for the public schools in the several States and a method for enforcing such integ", "250": "A bill to enhance research and education in the areas of pharmaceutical and biotechnology science and engineering, including therapy development and manufacturing, analytical technologies, modeling, and informatics.", "251": "A bill to amend sections- 1 and- 3- of the Foreign Agents Registration Act of 1938, as amended.", "252": "A bill to establish the Minority Business Development Administration in the Department of Commerce, to clarify the relationship between such Administration and the Small Business Administration, and for other purposes.", "253": "A bill to authorize the establishment of the Fort Bowie National Historic Site, in the State of Arizona, and for other purposes.", "254": "To place deputy US. marshals under, the competitive civil service, and for other purposes", "255": "A bill to authorize the establishment of the Burr Trail National Rural Scenic Road in the State of Utah, and for other purposes.", "256": "To provide biorefinery assistance eligibility to renewable chemicals projects, and for other purposes.", "257": "A bill authorizing the transfer to the Government of the Virgin Islands of title to Water Island, Saint Thomas, Virgin Islands, and the acquisition of some of the outstanding leasehold interests in such island.", "258": "A bill to make demonstration grants to eligible local educational agencies or consortia of eligible local educational agencies for the purpose of increasing the numbers of school nurses in public elementary schools and secondary schools.", "259": "A bill to establish a demonstration project to train unemployed workers for employment as health care professionals, and for other purposes.", "260": "A bill to amend the act of June 5, 1944, relating to the construction, operation, and maintenance of Hungry Horse Dam, Montana.", "261": "To assist the several States in establishing hospital facilities and. programs of posthospital aftercare for the care, treatment, and rehabilitation of narcotic addicts, and for other purposes", "262": "To amend certain provisions of the Federal Food, Drug, and Cosmetic Act", "263": "A bill relating to the effective date of the provision in the Economic Recovery Tax Act of 1981 which permits elections under section 2032A of the Internal Revenue Code of 1954 to be made on late estate tax returns.", "264": "To amend the Bankhead-Jones Farm Tenant Act to provide more adequate credit for low-income farmers, including part-time farmers", "265": "A bill to clarify the rights of smokers and nonsmokers aboard air carrier aircraft.", "266": "To amend Public Law No. 177, 62d Congress, approved June 4, 1912", "267": "A bill designating the part established pursuant to the act of April 35, 1947 (61 Stat. 52), as the Theodore Roosevelt National Park", "268": "To provide that the Ozark National Scenic Riverways shall be administered in accordance with the general management plan for that unit of the National Park System, and for other purposes.", "269": "A bill to establish a national policy of promoting and facilitating the operation, maintenance, and development of deep-draft seaports, inland river ports, and domestic waterways necessary for foreign and domestic waterborne commerce; and to require recovery of a portion of certain expenditures of the United States Corps of Engineers for the operation, maintenance, and construction of inland shallow-draft and deep-draft navigational channels and other projects as appropriate.", "270": "A bill to amend section 1(12) of the Interstate Commerce Act to provide that railroads shall not discriminate against the movement or interchange of railroad refrigerator cars not owned by a railroad, and for other purposes.", "271": "To amend the Mineral Leasing Act to require that a portion of revenues from new Federal mineral and geothermal leases be paid to States for use to supplement the education of students in kindergarten through grade 12 and public support of institutions of higher education, and for other purposes.", "272": "To promote the construction of green buildings in the United States, and for other purposes.", "273": "To increase the annual compensation of members of the Interstate Commerce Commission", "274": "A bill to designate the comprehensive Missouri River Basin development program as the Pick-Sloan Missouri Basin program.", "275": "To provide protection and victim services to children abducted by family members.", "276": "A bill to change the names of the Edison Home National Historic Site and the Edison Laboratory National Monument, to authorize the acceptance of donations, and for other purposes.", "277": "A bill granting the consent of the Congress to amendments to the Southeast Interstate Low-Level Radioactive Waste Management Compact.", "278": "A bill to develop a national methanol energy policy and to coordinate efforts to implement such policy.", "279": "To grant the consent of Congress to the States of Colorado, Iowa, Kansas, Minnesota, Missouri, Montana, Nebraska, North Dakota, South Dakota, and Wyoming to negotiate and enter into a compact relating to the conservation, development, and utilization of w", "280": "A bill to assist physicians and other professionals in prescribing drugs covered under Federal-State programs. to provide for the preparation and distribution of State drug formularies, and to encourage economy in the prescribing and dispensing of prescri", "281": "To provide parity under group health plans and group health insurance coverage in the provision of benefits for prosthetic devices and components and benefits for other medical and surgical services.", "282": "A bill to establish a program providing stability of price and supplies of dairy products.", "283": "A bill to ensure American control of certain vessels engaged in processing of fish within the United States Exclusive Economic Zone.", "284": "A bill to provide for increasing the storage capacity of the Bumping Lake Reservoir, Yakima River Basin, Wash.", "285": "To amend the transitional provisions of the act approved August 7, 1959, entitled Nematocide, Plant Regulator, Defoliant, and Desiccant Amendment of 1959", "286": "A bill to provide for Federal support and encouragement of State, local, and community activities to prevent domestic violence and assist victims of domestic violence, to provide for coordination of Federal programs and activities relating to domestic violence, and for other purposes.", "287": "A bill to permit the leasing of oil and gas rights on certain lands held in trust for the Navajo Nation or allotted to a member of the Navajo Nation, in any case in which there is consent from a specified percentage interest in the parcel of land under consideration for lease.", "288": "A bill to authorize the employment of certain foreign citizens on the vessel Seafreeze Atlantic, Official No. 517242.", "289": "A bill to provide for certain jury trails in condemnation proceedings in district courts of the United States.", "290": "To amend the Public Health Service Act to provide that a part of any States grant for comprehensive. public health services shall be available only for the conduct of programs designed to determine, and meet, the need of the State for health care personnel", "291": "A bill authorizing the modification of the Mississippi River, Baton Rouge to the Gulf of Mexico, barge channel through Devils Swamp, La. (Baton Rouge Harbor).", "292": "To establish the New York Canal National Heritage Corridor as an affiliated unit of the National Park System, and for other purposes.", "293": "To amend the Public Health Service Act and the Vocational Education Act of 1946 to provide an emergency 5year program of grants and scholarships for education in the fields of medicine, osteopathy, dentistry, dental hygiene, public health, and nursing pro", "294": "A bill to require the Secretary of Transortation to take into consideration the public interest in the freedom of movement of surface land transortation when rescribing rules and regulations to govern the oening of drawbridges across the navigable rivers and other waters of the United States, to authorize the Secretary of Transortation to assess a civil enalty for any violation of such regulations, and for other purposes. ", "295": "A bill to provide appropriate protection to attorney-client privileged communications and attorney work product.", "296": "A bill to authorize amendments to certain repayment and water service contracts for the Frenchman unit of the Pick-Sloan Missouri River Basin program.", "297": "A bill to amend the Department of Energy High-End Computing Revitalization Act of 2004 to improve the high-end computing research and development program of the Department of Energy, and for other purposes.", "298": "A bill to repeal certain Acts relating to cooperative agricultural extension world and to amend the Smith-Lever Act of May 8, 1914, as amended, to provide for cooperative agricultural extension work between the agricultural colleges in the several States,", "299": "A bill to provide for the monitoring of the economy for the purpose of controlling inflation.", "300": "To require the Secretary of the Interior to make reimbursement for certain damages incurred as a result of bonding regulations adopted by the Bureau of Land Management on February 28, 1997, and subsequently determined to be in violation of Federal law.", "301": "A bill to designate certain lands in the Sheldon National Antelope Refuge, Washoe County, Nev., as wilderness.", "302": "To amend chapter 31 of title 40, United States Code (commonly known as the Davis-Bacon Act) to provide an exemption from the prevailing wage requirements for certain non-profit organizations.", "303": "A bill to establish a federally declared floodway for the Colorado River below Davis Dam.", "304": "To deny the Prince Edward School Foundation and its successors tax-exempt status during the period beginning on October 3, 1984, and ending when it has demonstrated its nondiscrimination policy for 2 consecutive school years by having more than a token number of black students in attendance, black teachers on the faculty, and black individuals in administrative and clerical positions.", "305": "A bill to reinstate and validate United States oil and gas leases numbered OCS-P-0218 and OCS-P-0226.", "306": "To develop a rare earth materials program, to amend the National Materials and Minerals Policy, Research and Development Act of 1980, and for other purposes.", "307": "A bill to direct the Administrator of General Services to acquire by exchange certain property in the possession of the Texas National Guard.", "308": "To modify the boundaries of Grand Teton National Park to include certain land within the GT Park Subdivision, and for other purposes.", "309": "To amend title 49, United States Code, with respect to passenger motor vehicle crash avoidance information, and for other purposes.", "310": "A bill to enable the Oregon Short Line Railroad Co. to convey title to certain lands in Idaho to the Pocatello First Corp. of the Church of Jesus Christ of Latter-day Saints.", "311": "To amend the Internal Revenue Code of 1986 to enhance energy conservation, research, and development and to provide for security and diversity in the energy supply for the American people.", "312": "A bill to authorize the Civil Service Commission to furnish assistance to provide for the emergency transitional employment by State or local governments of Federal employees who lose their positions as the result of reductions in force In areas of high u", "313": "To appropriate $300,000 for advance planning of the New Hogan Dam on the Calaveras River in California.", "314": "A bill to amend the Urban Mass Transportation Assistance Act of 1964 with respect to reduced fare ridership for elderly or handicapped persons.", "315": "To facilitate the efficient extraction of mineral resources in southeast Arizona by authorizing and directing an exchange of Federal and non-Federal land, and for other purposes.", "316": "To establish an Office of Public Works Coordination and Acceleration; to authorize the preparation of a plan for acceleration of public works when necessary to avoid serious nationwide unemployment levels; and for other", "317": "To authorize designated employees of the National Park Service and the U.S. Forest Service to make arrests for violation of Federal laws and regulations, and for other purposes", "318": "To amend title 49, United States Code, to allow States to regulate tow truck operations.", "319": "A bill to permit the State of New Mexico to revise its agreement, entered into under section 218 of the Social Security Act, so as to extend social security coverage to certain hospital employees in such State.", "320": "A bill to terminate the authorization of the navigation study and survey of the Wabash River, Ind.", "321": "To prohibit the leasing or rental of public lands of the United States except on condition that free public access thereto be provided", "322": "To amend the Internal Revenue Code of 1986 to disregard certain amounts of capital expenditures in applying $10,000,000 limit on such issues.", "323": "To authorize the reduction or elimination of the hazards of public railhighway grade crossings along ithe highspeed rail line between Washington, D.C., and Boston, Mass", "324": "To provide unemployment insurance to those who are separated from their employment as a result of domestic violence, dating violence, sexual assault, or stalking.", "325": "A bill to eliminate certain abuses in Federal student aid programs, to prescribe criminal penalties for misconduct by persons connected with such programs.", "326": "To provide for reimbursing Summers County, W. Va., for the loss of tax revenue by reason of the acquisition of land by the United States for the Bluestone Reservoir project", "327": "To increase the amount of student loan forgiveness available to qualified teachers, with an emphasis on special education teachers.", "328": "To extend indefinitely the authority of the Secretary of the Interior to collect a commercial operation fee in the Delaware Water Gap National Recreation Area, and for other purposes.", "329": "A bill to amend the Interstate Commerce Act in order to provide civil liability for violations of such act by common carriers by motor vehicle and freight forwarders.", "330": "A bill to transfer in trust to the Minnesota Chippewa Tribe, White Earth Indian Reservation, certain submarginal lands of the United States and to make such lands parts of the reservation involved.", "331": "A bill to provide for the expansion of affordable refinancing of mortgages held by the Federal National Mortgage Association and the Federal Home Loan Mortgage Corporation.", "332": "A bill to authorize the disposition of certain property at Hot Springs National Park, in the State of Arkansas, and for other purposes.", "333": "To repeal certain provisions of the Patient Protection and Affordable Care Act relating to the premium tax credits and cost-sharing subsidies.", "334": "To authorize Western States to make selections of public land within their borders in lieu of receiving 5 percent of the proceeds of the sale of public land lying within said States as provided by their respective enabling Acts.", "335": "To extend title V of the Public Works and Economic Development Act of 1965 for 2 additional years", "336": "A bill to amend the Act which establised the Frederick Law Olmsted National Historic Site, in the Commonwealth of Massachusetts, by modifying the boundary and for other purposes.", "337": "To allow States to develop or expand instant gun checking capabilities, to allow a tax credit for the purchase of safe storage devices for firearms, to promote the fitting of handguns with child safety locks, and to prevent children from injuring themselves and others with firearms.", "338": "A bill to amend the Social Security Act to strengthen and improve the program of Federal support for foster care of dependent children, to establish a program of Federal support to encourage adoptions of children with special needs.", "339": "A bill to provide for programs for the prosecution of driving while intoxicated charges to be included in the Edward Byrne Memorial State and Local Enforcement Assistance Program.", "340": "To appropriate $132,000 for advance planning of the Terminus Dam on the Kaweah River in California.", "341": "A bill to promote the domestic recruiting of teachers for teaching positions in overseas dependents' schools of the Department of Defense, and for other purposes.", "342": "To authorize a 2-year program of Federal financial assistance for all elementary and secondary school children in all of the States", "343": "To assist certain classes of municipalities to finance vitally needed and specific types of public works by providing for a guaranty by the United States of approved bonds hereafter issued by these municipalities.", "344": "A bill to authorize the sale of certain land of John Little Crow", "345": "A bill to authorize appropriations for the United States Customs Service for fiscal years 2000 and 2001, and for other purposes.", "346": "A bill to eliminate the benefit reduction which is provided for supplemental security income recipients in certain long-term care institutions when such institutions do not meet the standards established by States under section 1616(e) of the Social Security Act, to authorize payments to States to cover the cost of training and compensating personnel to inspect such institutions, and for other purposes.", "347": "A bill to declare that certain federally owned laid is held by the United States in trust for the Stockbridge Munsee community, and to make such lands parts of the reservation involved", "348": "A bill to amend section 144 of title 23 of the United States Code, relating to the special bridge replacement program, in order to make highway bridge projects costing more than one million dollars in those States receiving minimum apportionments of federal funds under such program eligible for Federal aid under the discretionary part of the program.", "349": "To provide grants to enhance the most effective freezing methods to improve access to affordable and locally produced specialty crops.", "350": "A bill to provide for discounted sales to eligible veterans of homes held for an extended time by the Veterans' Administration.", "351": "A bill to further amend section 8 of the Puerto Rico Federal Relations Act as amended by section 606 of the Act of March 12, (P.L. 96-205) authorizing appropriations for certain insular areas of the United States, and for other purposes.", "352": "To encourage the establishment of voluntary pension plans by selfemployed individuals", "353": "A bill to establish a Department of Urban Affairs and Housing, and for other purposes.", "354": "A bill to provide for the addition of the names of the States of Alaska sad Hawaii to the list of the 48 States inscribed upon the walls of the Lincoln National Memorial", "355": "A bill to amend section 38, United States Code, to authorize the Administrator to make contributions for construction projects on land adjacent to national cemeteries in order to facilitate safe ingress or egress.", "356": "A bill to require States to establish highway stormwater management programs.", "357": "To direct the Secretary of the Interior to convey a parcel of real property to Beaver County, Utah.", "358": "To establish a comprehensive risk assessment program within the Environmental Protection Agency, and for other purposes.", "359": "A bill to authorize the establishment of the Fort Union National Monument in the State of New Mexico, and for other purposes", "360": "To encourage benchmarking and disclosure of energy information for commercial buildings.", "361": "A bill to amend section 2 of the act entitled An act to create a Library of Congress Trust Fund Board, and for other purposes: approved March 3, 1925, as amended (2 U.S.C. 1b8), relating to deposits with the Treasurer of the United States of gifts and b", "362": "A bill to authorize a new corporation to support State and local strategies for achieving more affordable housing; to increase homeownership; and for other purposes.", "363": "A bill to establish a procedure for the pro rata reduction in expenditures during periods when projected revenues are insufficient to fully fund such expenditures, and for other purposes.", "364": "To provide that certain highways extending from Laredo, Tex., to the point where U.S. Highway 81 crosses .the border between North Dakota and Canada shall be known collectively as the Pan American Highway", "365": "A bill to authorize the Philadelphia, Baltimore & Washington Railroad Co. to construct, maintain, and operate a branch track or siding over Second Street BE., in the District of Columbia", "366": "A bill to provide for the enforcement of civil rights, provision for schools for military personnel dependents in areas where regular schools are closed by desegregation, to provide for voting referees, and for other purposes.", "367": "A bill to amend and supplement the Federal Food, Drug, and Cosmetic Act with respect to the manufacture and distribution of drugs, and for other purposes.", "368": "To revitalize the cotton growing and cotton manufacturing industry and to reduce Government expenditures for price support and other subsidy operations", "369": "A bill to designate a national marine sanctuary in the Hawaiian Islands for the protection of humpback whales and their habitat.", "370": "To increase from $600 to $1,500 the personal income tax exemptions of a taxpayer (including the exemption for a spouse, the exemption for a dependent, and the additional exemption for old age or blindness)", "371": "To permit refund or credit to brewers of taxes pair on beer lost or wasted in bottling operations", "372": "To amend the Internal .Revenue Code of 1954 to allow teachers to deduct from gross income the expenses incurred in pursuing courses for academic credit and degrees at institutions of higher education. and including .certain travel", "373": "A bill to provide a remedy for sex discrimination by the insurance business with respect to the availability and scope of insurance coverage for women.", "374": "To prevent and cure diabetes and to promote and improve the care of individuals with diabetes for the reduction of health disparities within racial and ethnic minority groups, including the African-American, Hispanic American, Asian American and Pacific Islander, and American Indian and Alaskan Native communities.", "375": "A bill to amend the Interstate Commerce Act to require that certain emergency equipment be carried in any motor vehicle operated by a motor carrier to transport a charter party of passengers, a majority of whom are at least 60 years of age.", "376": "To modernize the Federal Reserve System and to provide for prompt disclosure of certain decisions of the Federal Open Market Committee.", "377": "A bill to facilitate implementation of the 1980 Hague Convention on the Civil Aspects of International Child Abduction, and for other purposes.", "378": "To improve and increase postsecondary education opportunities throughout the Nation by providing assistance to the States for the development and construction of comprehensive community colleges", "379": "A bill to amend the Land and Water Conservation Fund Act of 1965 to allow for the recreation planning, acquisition, or development for indoor facilities.", "380": "A bill to make certain exceptions to the appellate jurisdiction of the Supreme Court of the United States and of the United States court of appeals in actions relating to the public schools.", "381": "To require the Bureau of Labor Statistics of the Department of Labor to collect, report on, and disseminate data necessary for an actual account of individuals who are out of work in the United States.", "382": "To provide for the establishment of the Cape Lookout National Seashore in the State of North Carolina, and for other purposes", "383": "A bill to reauthorize the Reclamation States Emergency Drought Relief Act of 1991, and for other purposes.", "384": "A bill to amend Section 706 to Title 5, United States Code, to strengthen the judicial review provisions of the Administrative Procedure Act by giving courts more authority to overturn unfair agency action.", "385": "A bill to require the Nuclear Regulatory Commission to conduct an independent safety assessment of the Indian Point Nuclear Power Plant.", "386": "To amend chapter 55 of title 10, United States Code, to provide health benefits for the dependents of war vetterans who die of a service-connected disability", "387": "To authorize the construction of a dam and dike to prevent the flow of tidal waters into oar Creek, Douglas County, Oreg", "388": "To amend section 1201 of title 18, United States Code, to assure a sufficiently severe penalty for kidnappings of children that are not returned unharmed.", "389": "A bill to provide for the establishment of a U.S. Court of Labor-Management Relations which shall have jurisdiction over certain labor disputes in industries substantially affecting commerce", "390": "A bill to place reasonable limitations on the use of National Security Letters, and for other purposes.", "391": "To amend the Food Security Act of 1985 to expand the number of acres authorized for inclusion in the conservation reserve.", "392": "A bill to create a body corporate known as Daughters of Union Veterans of the Civil War.", "393": "To amend the act of June 22, 1936, to provide that the Federal Government shall improve or participate in the improvement of certain navigable waters affecting drought areas if the benefits exceed 80 percent of the estimated cost.", "394": "To authorize coastwise and Great Lakes documentation for the vessel IMPULSE.", "395": "A bill to create a Citrus Disease Research and Developing Trust Fund to support research on diseases impacting the citrus industry, and for other purposes.", "396": "A bill to provide permanent funding for the Bureau of Land Management Payment in Lieu of Taxes program and for other purposes.", "397": "To authorize the Secretary of the Interior to identify and declare wildlife disease emergencies and to coordinate rapid response to these emergencies, and for other purposes.", "398": "A bill to amend the Communication Act of 1934 to provide that telephone receivers may not be sold in interstate commerce unless they are manufactured in a manner which permits their use by persons with hearing impairments.", "399": "A bill to provide for holding terms of the U.S. District Court for the District of Connecticut at New London.", "400": "A bill to authorize the Secretary of Agriculture and other agency heads to enter into agreements with foreign fire organizations for assistance in wildfire protection.", "401": "A bill to amend the export Administration Act of 1969 to provide for the regulation of the export of agricultural commodities.", "402": "To establish conditions on any distribution of funds under the Emergency Economic Stabilization Act of 2008 to provide relief for the automotive industry, dealerships, and suppliers, and for other purposes.", "403": "A bill to reform the Powerplant and Industrial Fuel Use Act of 1978 to encourage a reduction in air pollution and oil consumption by existing electric powerplants and to aid utilities in converting to alternate fuels.", "404": "To provide that certain persons who served in the merchant marine shall not be liable for induction into the armed services under the Selective Service Act of 1948", "405": "A bill to provide for the return to the former Indian owners and their successors in interest of certain lands acquired in connection with the Garrison Dam and Reservoir project of all oil and gas rights and interests in such lands", "406": "To amend the Energy Policy and Conservation Act to improve energy standards for home appliances, and for other purposes.", "407": "A bill to authorize the exchange of certain land located in the State of Idaho, and for other purposes.", "408": "A bill to amend the internal revenue code of 1986 to allow a credit against income tax for dry cleaning equipment which uses reduced amounts of hazardous substances.", "409": "A bill to establish standards of fair practices that shall be observed by handlers and associations of producers in their dealings in agricultural products.", "410": "A bill to remove unelected, unaccountable bureaucrats from seniors' personal health decisions by repealing the Independent Payment Advisory Board.", "411": "A bill to extend temporarily the extended period of protection for members of uniformed services relating to mortgages, mortgage foreclosure, and eviction, and for other purposes.", "412": "A bill to amend section 42 of title 18, United States Code, to prohibit the importation and shipment of certain species of carp.", "413": "To provide an additional opportunity for administrative or judicial relief for socially disadvantaged farmers and ranchers who were discriminated against by the Department of Agriculture in farm credit and benefit programs.", "414": "A bill to provide a special procedure for the establishment of safety and health standards for fire fighters.", "415": "To amend the Animal Welfare Act to prohibit dog fighting ventures.", "416": "A bill to clarify and reaffirm the intent of Congress with respect to the transmission and sale of electric power and energy generated or purchased in the southwestern power area.", "417": "To make permanent the existing suspensions of the tax on the first domestic processing of coconut oil, palm oil, palm-kernel oil, and fatty acids, salts, combinations, or mixtures thereof", "418": "To authorize a right-of-way through Joshua Tree National Park, and for other purposes.", "419": "A bill to establish a national policy encouraging States to develop and implement land use programs.", "420": "A bill to amend section 103(e)(2) of title 23, United States Code, relating to the cost of to certain routes on the National System of Interstate and Defense Highways.", "421": "To authorize the National Potato Grade Labeling Act, which provides quality requirement for, and the inspection,certification, and labeling of, Irish potatoes.", "422": "A bill to authorize appropriations for the saline water program for fiscal year 1975.", "423": "A bill to provide a 1-year extension for individuals of the waiver of estimated tax penalties for underpayments of tax which are attributable to the Tax Reform Act of 1986.", "424": "To amend the Federal Land Policy and Management Act of 1976 to provide for determining tort liability of holders of rights-of-way over Federal lands under the ordinary rules of negligence and to clarify the exemption from right-of-way rental fees for certain rural electric and telephone facilities.", "425": "To establish a demonstration project to create Medicare Consumer Coalitions to provide Medicare beneficiaries with accurate and understandable information with respect to managed care health benefits under the Medicare Program and to negotiate with Medicare+Choice organizations offering Medicare+Choice plans to improve and expand benefits under the plans.", "426": "A bill to provide production for certain categories of crude oil by exempting such crude oil from price and allocation regulations under the Emergency Petroleum Allocation Act of 1973.", "427": "To authorize the conveyance of Bunker Hill Island in Lake Cumberland near Burnside, Ky., to the Commonwealth of Kentucky for public park purposes.", "428": "To strengthen the national security, advance the cause of peace, and assure the preeminence of the United States in the academic, scientific, and technical disciplines through programs designed to stimulate the development and to increase the number of st", "429": "A bill to establish a National Agricultural Research, Extension, and Teaching Policy Advisory Board.", "430": "A bill to provide tax incentives to encourage physicians, dentists, and optometrists to practice in physician shortage areas", "431": "A bill to amend the definition of independent student for purposes of the need analysis in the Higher Education Act of 1965 to include older adopted students.", "432": "A bill to empower communities and individuals by consolidating and reforming the programs of the Department of Housing and Urban Development.", "433": "To authorize the Secretary of Homeland Security to make grants to encourage community safety by incorporating disaster mitigation and emergency preparedness into comprehensive land use planning and urban development, and for other purposes.", "434": "To require the Attorney General, through the Office of Justice Programs of the Department of Justice, to establish a 5-year competitive grant program to establish pilot programs to reduce the rate of occurrence of gun-related crimes in high-crime communities.", "435": "To provide for of the health and safety of persons wot Ing in the coal mining industry of. United States, and for other purposes,", "436": "A bill to provide for the care of members of the Coast Guard and their dependents in naval hospitals in certain cases", "437": "To amend the act of September 25, 1950, so as to provide that the liability of the town of Mills, Wyo., to furnish sewerage service under such act shall not extend to future construction by the United States", "438": "To authorize a further preliminary examination and a new survey of Goose River, in the State of North Dakota, a tributary to the Red River of the North (Minnesota North Dakota), for flood control, for rim off and water flow retardation, and soil erosion p", "439": "A bill to amend the State Technical Services Act of 1965 to make municipal governments eligible for technical services under the act, to extend the act through fiscal year 1976.", "440": "To provide for disciplined and responsible action in the consideration and execution of the Federal budget", "441": "A bill to amend the Controlled Substances Act to provide the penalty of death for certain drug crimes.", "442": "A bill to establish a program at the Forest Service and the Department of the Interior to carry out collaborative ecological restoration treatments for priority forest landscapes on public land, and for other purposes.", "443": "To permit suits to be brought against the United States to adjudicate disputed land titles", "444": "To authorize the conduct of certain research and development through the Coast Guard in order to develop an effective electronic guidance system", "445": "A bill to provide grants to States to improve high schools and raise graduation rates while ensuring rigorous standards, to develop and implement effective school models for struggling students and dropouts, and to improve State policies to raise graduation rates, and for other purposes.", "446": "To restore employment and educational opportunities in, and improve the economic stability of, counties containing National Forest System land, while also reducing Forest Service management costs, by ensuring that such counties have a dependable source of revenue from National Forest System land, to provide a temporary extension of the Secure Rural Schools and Community Self-Determination Act of 2000, and for other purposes.", "447": "A bill to modify the flood control project for the Kaskaskia River, Ill., with respect to certain requirements for local cooperation.", "448": "A bill to establish a commission to review the Federal Bureau of Investigation.", "449": "To expand the Mni Wiconi Rural Water Supply Project, and for other purposes.", "450": "To expand domestic fossil fuel production, develop more nuclear power, and expand renewable electricity, and for other purposes.", "451": "A bill to amend chapter 13 of title 18, United States Code, to impose criminal penalties for damage to religious property and for obstruction of persons in the free exercise of religious beliefs.", "452": "To provide incentives for pharmaceutical companies, biotechnology companies, and medical device companies to invest in research and development with respect to antibiotic drugs, antivirals, diagnostic tests, and vaccines that may be used to identify, treat, or prevent serious and life-threatening infectious diseases.", "453": "A bill to designate certain lands within the Pea Island National Wildlife Refuge, Dare County, N.C., as wilderness.", "454": "To provide for the determination that Cuba is a major drug-transit country for purposes of section 490(h) of the Foreign Assistance Act of 1961.", "455": "A bill to amend section 303 of the Federal Land Policy and Management Act.", "456": "To amend section 125 of title 23, United States Code, relating to highway emergency relief, to authorize additional appropriations necessary as a result of recent floods and other disasters", "457": "A bill to provide for the protection of Indian graves and burial grounds, and for other purposes.", "458": "To provide a 5-year program of assistance to enable depressed segments of the fishing industry in the United States to regain a favorable economic status, and for other purposes", "459": "A bill to title XVIII of the Social Security Act to promote the coverage of frail elderly medicare beneficiaries permanently residing in nursing facilities in specialized health insurance programs for the frail elderly.", "460": "To improve and clarify certain laws affecting the Coast Guard Reserve", "461": "A bill declaring the Grand (Neosho) River above the town of Fort Gibson, Muskogee County, Okla., to be not navigable water of the United States.", "462": "To regulate the registration, manufacture, labeling, and inspection of fertllizer and fertilizer materials shipped in Interstate commerce, and for other purposes", "463": "A bill to provide for boundary adjustments of the Badlands National Monument, in the State of South Dakota, and for other purposes", "464": "To establish civil and criminal penalties for the obstruction of lawful hunts conducted on Federal lands under the jurisdiction of the Secretary of Agriculture or Secretary of the Interior.", "465": "To provide means of further securing and protecting the civil rights of persons within the jurisdiction of the United States", "466": "A bill to require the posting on certain aircraft of information relating to the date of manufacture of the aircraft, and for other purposes.", "467": "To amend the Veterans Readjustment Assistance Act of 1952 to make the educational benefits provided for therein available to all veterans whether or not they serve during a period of war or of armed hostilities.", "468": "A bill to create a National Cemetery Commission for the consolidation of national cemetery activities within one civiliancommission, and for other purposes", "469": "A bill to provide tax relief for American workers and businesses, to put workers back on the job while rebuilding and modernizing America, and to provide pathways back to work for Americans looking for jobs.", "470": "A bill to amend the BankheadJones Farm Tenant Act so as to provide a more effective distribution of mortgage loans insured under title I, to give holders of such mortgage loans preference in the refinancing of loans on a noninsured basis, to adjust the lo", "471": "To increase the safety for crew and passengers on an aircraft providing emergency medical services.", "472": "A bill to extend expiring authorities of the Veterans' Administration to make grants related to State nursing home facilities, exchange of medical information, and support of medical schools.", "473": "A bill to require implementation of a marketing loan program for agricultural commodities if negotiations fail to produce an international agreement on agricultural trade.", "474": "To amend Public Law 874, Mat Congress, to require the Federal Government to operate schools for the education of children whose schools are closed in order to avoid compliance with the 14th amendment of the Constitution of the United States", "475": "To amend the Historic Sites Act to provide that the effect on sites, buildings, and objects of historic value of projects involving the expenditure of Federal funds shall be taken into account in the planning of such projects, and to provide for the publi", "476": "To prohibit the Tennessee Valley Authority from acquiring or utilizing, in carrying out its operations and functions, any coal mined by strip mining methods", "477": "To amend .the Internal Revenue Code of 1954 to provide that constructQon workers and seasonal or migrant agricultural workers shall be allowed the deduction for moving expenses without regard to the length of time they are employed at their new principal place of work", "478": "A bill to provide for emergency bridge loan assistance to automobile manufacturers and component suppliers.", "479": "A bill to provide for the maintenance or enhancement of the quality of water in rural areas.", "480": "A bill to authorize the conveyance of certain national forest land to Coconino County, Ariz.", "481": "A bill to provide for the education of children on Federal reservations and other federally owned property not. subject to State or local taxation, and for other purposes", "482": "A bill to amend the act granting the consent of Congress to the States of Montana, North Dakota, South Dakota, and Wyoming to negotiate and enter into a compact relating to the waters of the Little Missouri River in order to extend the expiration date of ", "483": "To amend the Water Resources Development Act of 1990 to require full Federal funding of the project to construct a lock at Sault Saint Marie, Michigan.", "484": "An original bill to designate a portion of the Rappahannock River in the Commonwealth of Virginia as the John W. Warner Rapids.", "485": "To promote and foster the development of. a modern merchantmarine by encouraging the orderly replacement and modernization of merchant vessels, and for other purposes", "486": "To amend section 112 (n) of the Internal Revenue Code to provide that gain from the sale or exchange of the taxpayers home will not be taxed whether or not he replaces it with another residence", "487": "A bill to require the approval of each of the Great Lakes States for any diversion of water from the Great Lakes or the Great Lakes drainage basin for use outside of the Great Lakes States and to prohibit Federal studies of the feasibility of any such diversion.", "488": "To appropriate funds far planning the New Hope Reservoir project, North Carolina", "489": "To provide Federal assistance for projects which will evaluate and demonstrate techniques and practices leading to a solution of the Nations problems relating to the prevention and control of juvenile delinquency and youth offenses and to provide training", "490": "Adopting and authorizing the improvement of Bransons Cove, Lower Machodoc River, Va", "491": "A bill to prevent certain acquisitions of domestic petroleum companies by major international energy concerns.", "492": "A bill to provide Coastal Impact Assistance to State and local governments, to amend the Outer Continental Shelf Lands Act Amendments of 1978, the Land and Water Conservation Fund Act of 1965, the Urban Park and Recreation Recovery Act, and the Federal Aid in Wildlife Restoration Act (commonly referred to as the Pittman-Robertson Act) to establish a fund to meet the outdoor conservation and recreation needs of the American people, and for other purposes.", "493": "To authorize the Secretary of Transportation to carry out s special program of transportation research and development utilizing the special experience and manpower of the aerospace and defense industries, and for other purposes", "494": "To confer jurisdiction upon the Court of Claims to determine the amounts due and owing and render judgment upon the claims of certain employees of the Alaska Railroad for overtime work performed", "495": "To amend the Communications Act of 1934 to strengthen and clarify prohibitions on electronic eavesdropping, and for other purposes.", "496": "To terminate the gas turbine-modular helium reactor program of the Department of Energy, and to dedicate the savings to deficit reduction.", "497": "To modernize the Federal Employees Health Benefits Program, and for other purposes.", "498": "To further secure and protect the civil rights of persons within the jurisdiction of the United States.", "499": "A bill to repeal section 303 (b) of the Interstate Commerce Act, as amended, relating to the water carrier bulk commodity exemption, and for other purposes.", "500": "A bill to deny tax-exempt status to private foundations and organizations engaging in improper transactions with certain Government officials and former Government officials, and to impose an income tax of 100 percent on income received by such officials ", "501": "To authorize the Secretary of Transportation to establish a pilot program to study the benefits of using hair specimens for preemployment controlled substances tests of commercial motor vehicle operators, and for other purposes.", "502": "To authorize the Secretary of Health, Education, and Welfare to prescribe safe standards for the discharge of substances into the air by motor vehicles", "503": "To establish the Modular Construction Commission and provide for national regulation of modular home construction, and for other purposes.", "504": "Authorizing a study of dust control measures at Long Island, Port Isabel, Tex. ", "505": "To amend the Federal Firearms Act to provide the use in the commission of certain crimes of firearms transported in interstate commerce", "506": "To direct the Secretaries of Agriculture and the Interior to conduct a yield and cost study of timber management investment opportunities on Federal timberlands in California, Oregon, and Washington, and for other purposes.", "507": "To amend the Energy Policy Act of 1992 to require the Federal Government to acquire not fewer than 50,000 plug-in hybrid electric vehicles.", "508": "A bill to amend the title XVIII of the Social Security Act to provide a prescription benefit program for all medicare beneficiaries.", "509": "To create or adopt, and implement, rigorous and voluntary American education content standards in mathematics and science covering kindergarten through grade 12, to provide for the assessment of student proficiency benchmarked against such standards, and for other purposes.", "510": "To amend the Drug-Free Schools and Communities Act of 1986 to revise certain requirements relating to the provision of drug abuse education and prevention programs in elementary and secondary schools, and for other purposes.", "511": "To prohibit discrimination on the basis of genetic information with respect to health insurance and employment.", "512": "To require the installation of a system for filtering or blocking matter on the Internet on computers in schools and libraries with Internet access, and for other purposes.", "513": "To amend the Social Security Act to require the Secretary of Health and Human Services to equalize the labor and non-labor portions of the standardized amounts used to determine the amount of payment made to rural and urban hospitals under part A of the medicare program for the operating costs of inpatient hospital services, to amend the Public Health Service Act to improve the capacity of rural hospitals to provide health services, and for other purposes.", "514": "A bill to amend section 3006A of title 18, United States Code, to improve the delivery of legal services in the criminal justice system to those persons financially unable to obtain adequate representation, and for other purposes.", "515": "A bill to amend the direct and guaranteed student loan programs under the Higher Education Act of 1965 to publicize the current loan deferral program for full-time volunteers with the Peace Corps, VISTA, and tax-exempt organizations, and for other purposes.", "516": "To prohibit health insurers and group health plans from discriminating against individuals on the basis of genetic information.", "517": "A bill to authorize a study on methods to commemorate the nationally significant highway known as Route 66, and for other purposes.", "518": "A bill to amend titles 23 and 49, United States Code, to ensure that transportation and infrastructure projects carried out using Federal financial assistance are constructed with steel, iron, and manufactured goods that are produced in the United States, and for other purposes.", "519": "To establish a National Chronic Wasting Disease Task Force, and for other purposes.", "520": "To amend the Social Security Amendments of 1965 to eliminate the provisions which deny hospital :insurance benefits 'to uninsured individuals who are members of certain organizations or have been convicted of certain offenses, and to eliminate the provisions which deny supplementary medical insurance benefits to persons who have been convicted of certain offenses", "521": "A bill authorizing the repayment of certain required contributions by local interests toward the construction cost of improvements of rivers and harbors and other waterways. in the interest of navigation. flood control, hurricane protection, beach erosion", "522": "To provide for the establishment of the Guadalupe Mountains National Park in the State of Texas, and for other purposes", "523": "Relating to the basis for income tax purposes of property held by surviving joint tenants and surviving tenants by the entirety", "524": "A bill to establish the Potomac River Historical Area in the States of Maryland, Virginia, and West Virginia.", "525": "A bill to provide that operators of commercial motor vehicles who are licensed under State law need not meet requirements of Federal law which establish standards for eyesight as a qualification for operation of such a vehicle.", "526": "To amend the Railroad Retirement Act of 1974 to prevent the canceling of annuities to certain divorced spouses of workers whose widows elect to receive lump sum payments.", "527": "A bill to amend section 280A of the Internal Revenue Code of 1954 with respect to rentals of dwelling units to family members, and for other purposes.", "528": "To amend section 701(e) of the Federal Aviation Act of 1958 so as to limit the use of Civil Aeronautics Board reports and testimony of Board personnel regarding aircraft accidents", "529": "To prohibit an employer from inquiring whether an applicant for employment has been convicted of a criminal offense, except in certain circumstances.", "530": "A bill to authorize and direct the establishment of a coordinated national program relating to climate of the atmosphere and ocean, to require an annual report of the program to Congress.", "531": "To promote the construction in the United States of modern, efficient documented vessels suitable for commercial and national defense purposes, to strengthen the defense industrial base, and for other purposes.", "532": "A bill to establish a College Savings Bond Program and to amend the Internal Revenue Code of 1986 to provide that gross income of an individual shall not include income from certain savings bonds the proceeds of which are used to pay certain postsecondary educational expenses, and for other purposes.", "533": "A bill to provide that Fort Montgomery, N.Y., may tap the West Point water supply line, and for other purposes.", "534": "A bill to establish the Roosevelt Campobello International Park, and for other purposes.", "535": "To award Dr. Jonas E. Salk a gratuity of $10,000 per annum in recognition of his outstanding achievement to humanity", "536": "To protect consumers from price-gouging of gasoline and other fuels, and for other purposes.", "537": "To provide for the modification of the Tongue River Dam for the Northern Cheyenne Indian Tribe, to protect the contract water rights of such Tribe, to settle their water rights claims, and to correct safety problems in such dam.", "538": "To amend the Fair Labor Standards Act of 1938 in respect to rates of wages in Puerto Rico", "539": "To amend the act- of March 3, 1899, relating to penalties for wrongful deposit of certain refuse, injury to harbor improvements, and obstruction of navigable waters. ", "540": "A bill to amend section 404 of the Federal Aviation Act of 1958 to prohibit discrimination against handicapped persons in air transportation.", "541": "To amend the Agricultural Act of 1949 with respect to price support for cotton.", "542": "A bill to amend section 4491 of the Internal Revenue Code of 1954 to provide that the weight portion of the excise tax on the use of civil aircraft shall apply to piston-engined aircraft only if they have a maximum certificated takeoff weight of more than", "543": "A bill to amend the Federal Boat Safety Act of 1971 in order to increase the Federal Government's share of the costs of State boat safety programs during fiscal year 1975 and thereafter, and to increase the authorization for appropriations for such programs.", "544": "A bill to improve the administration of the national parks system by the Secretary of the Interior, and to clarify the authorities applicable to the system, and for other purposes", "545": "A bill to amend Public Law 99-647, establishing the Blackstone River Valley Heritage Corridor Commission, to authorize the Commission to take immediate action in furtherance of its purposes and to increase the authorization of appropriations for the Commission.", "546": "To authorize appropriations to promote innovation and technology transfer in wastewater discharge reduction and water conservation, and for other purposes.", "547": "To authorize the Secretary of the Interior to create a Bureau of Reclamation partnership with the North Bay Water Reuse Authority and other regional partners to achieve objectives relating to water supply, water quality, and environmental restoration.", "548": "A bill to stabilize domestic oil prices by creating an independent corporation to buy and sell crude oil and petroleum products.", "549": "To amend section 6334 of the Internal Revenue Code of 1954 to exempt from levy property necessary to satisfy the taxpayers liabilities to his employees for wages and fringe benefits", "550": "To provide grants to eligible urban local educational agencies to enable the agencies to recruit and retain qualified teachers.", "551": "To amend the Federal Water Pollution Control Act, as amended, to establish the Federal Water Pollution Control Administration, to increase grants for construction of municipal sewage treatment works, to provide financial assistance to municipalities and o", "552": "To amend the Public Health Service Act to strengthen education, prevention, and treatment programs relating to stroke, and for other purposes.", "553": "A bill to require the Trustees of the medicare trust funds to report recommendations on resolving projected financial imbalance in medicare trust funds.", "554": "A bill to establish a Boundary for the Black Canyon of the Gunnison National Monument, and for other purposes.", "555": "To amend the Clean Air Act regarding transportation fuels and establishment of a low carbon fuel standard.", "556": "A bill to allow for additional flights beyond the perimeter restriction application to Ronald Reagan Washington National Airport.", "557": "A bill to direct the Inspector General of the Department of Justice to submit semi-annual reports regarding settlements relating to false claims and fraud against the Federal Government.", "558": "To amend the Act of May 15, 1965, authorizing the Secretary of the Interior to designate the Nez Perce National Historical Park in the State of Idaho, and for other purposes.", "559": "A bill to reduce recidivism by providing community-centered programs of supervision and services for persons charged with offenses against the United States.", "560": "A bill to provide increased opportunities for students in higher education for offcampus employment by establishing programs of work-study cooperative education.", "561": "To amend the FAA Modernization and Reform Act of 2012 with respect to maintenance providers, and for other purposes.", "562": "To authorize the construction of an inland waterway in Pennsylvania for barge and other navigation, and for other purposes", "563": "A bill to amend the Labor Management Reporting and Disclosure Act of 1959 to require that all officers of national labor organizations be elected by secret ballot of the members.", "564": "To enable the Secretary of Agriculture to develop the resources of the national forests, and for other purposes", "565": "To promote freedom, fairness, and economic opportunity for families by reducing the power and reach of the Federal establishment.", "566": "To stabilize the market supply and price of farm-produced feed grain and livestock to insure the continuous ample volume of meat products for consumers and to provide equitable opportunity for farm producers to achieve income parity, to provide means of m", "567": "A bill to assist in the reduction of unemployment through the acceleration of public works programs of the Federal Government and State and local public bodies.", "568": "To direct the Secretary of the Treasury to develop and present to Congress a legislative proposal to establish a consumption tax.", "569": "To amend the Public Health Service Act to ensure sufficient resources and increase efforts for research at the National Institutes of Health relating to Alzheimer's disease, to authorize an education and outreach program to promote public awareness and risk reduction with respect to Alzheimer's disease (with particular emphasis on education and outreach in Hispanic populations), and for other purposes.", "570": "To encourage the discovery of gold, the development of gold mines, and the production of domestic gold", "571": "A bill to establish standards for the settlement of disputed title claims to certain real properties alleged to be public lands of the United States, and for other purposes.", "572": "A bill to modify the criteria used by the Corps of Engineers to dredge small ports.", "573": "To exempt States and political subdivisions thereof from the tax on conveyances, and for other purposes", "574": "To extend the jurisdiction of the Mississippi River Commission to include an additional geographic area.", "575": "To provide for the refund or credit of the internal-revenue tax paid on spirits lost or rendered unmarketable by reason of the floods of 1951 where such spirits were in the possession of (1) the original taxpayer or rectified for bottling or use in rectif", "576": "To prohibit the use of Federal funds to carry out the highway project known as the Trans-Texas Corridor.", "577": "A bill to require the Center for Medicare and Medicaid Innovation to test the effect of including telehealth services in Medicare health care delivery reform models.", "578": "To amend the act of August 11, 1939, with respect to the allocation of funds available under that act, and for other purposes", "579": "A bill to improve the quality of health plans and health care that is provided through the Federal Government and to protect health care consumers.", "580": "To provide for a land exchange involving Federal lands in the Lincoln National Forest in the State of New Mexico, and for other purposes.", "581": "To amend the U.S. Housing Act of 1937 to increase by $1,000 per room the statutory limit on the cost of a lowrent housing project", "582": "To combat the rise of prenatal opioid abuse and neonatal abstinence syndrome.", "583": "To amend the Wild Free-Roaming Horses and Burros Act to provide for State and tribal management and protection of wild free-roaming horses and burros, and for other purposes.", "584": "To establish the power of the Individual States and the local subdivisions thereof to prevent construction of nuclear devices within their territorial limits", "585": "A bill to require pension plans to provide optional annuities for surviving spouses and certain vesting rights to employees whose employment is involuntarily terminated without cause.", "586": "A bill to increase the efficiency of the Coast and Geodetic Survey, and for other purposes.", "587": "A bill to amend Title III of the Colorado River Basin Project Act (Public Law 90-537; 82 Stat. 885, as amended by Public Law 95-578; 92 Stat. 2471 and Public Law 96-375; 94 Stat. 1505).", "588": "A bill to provide incentives for States to invest in practices and technology that are designed to expedite voting at the polls and to simplify voter registration.", "589": "To improve the establishment of any lower ground-level ozone standards, and for other purposes.", "590": "A bill to clarify logbook requirements in title 46, United States Code.", "591": "A bill to provide for the establishment of . Federal Advisory Council on the Arts to assist in the growth and development of the fine arts in the United States.", "592": "A bill to amend chapter 3 of title 28, United States Code, to modify en banc procedures for the Ninth Circuit Court of Appeals, and for other purposes.", "593": "To authorize the establishment of the National African-American Museum within the Smithsonian Institution.", "594": "Authorizing the Chief of Engineers to relocate boat basin at Winona, Minn", "595": "A bill to authorize the admittance of the vessel City of New Orleans to American registry and to permit the use of such vessel in the coastwise trade between the State of Alaska and the State of Washington.", "596": "A bill to provide for the establishment and operation of a mining and metallurgical research establishment in the State of Minnesota", "597": "To provide far the appointment of public defenders a the district courts of the United States", "598": "To authorize the appropriation of $5 million to carry out the purposes of the National Cultural Center Act and to designate the National Cultural Center, authorized to be constructed by such Act, as the John Fitzgerald Kennedy Center of the Performing Art", "599": "To amend the Foreign Assistance Act of 1961 to provide for assistance to refugees and other flood victims in the Republic of the Philippines", "600": "To amend the Safe Drinking Water Act to require testing of underground sources of drinking water in connection with hydraulic fracturing operations, and for other purposes.", "601": "A bill to provide for the creation, restoration, protection, enhancement, and conservation of coastal wetlands, and to conserve North American wetland ecosystems and waterfowl and the other migratory birds and fish and wildlife that depend upon such habitats, and for other purposes.", "602": "To provide that district courts of the United States shall not have jurisdiction to enjoin or modify the operation of State laws respecting legislative districts where comparable relief is available in State courts, and for other purposes", "603": "A bill to establish a program in the Department of Energy to encourage consumers to trade-in older vehicles for more fuel-efficient vehicles and motorcycles, and for other purposes.", "604": "A bill to amend the Worker Adjustment and Retraining Notification Act to minimize the adverse effects of employment dislocation, and for other purposes.", "605": "To establish a temporary commission to study air safety conditions in the United States.", "606": "A bill to amend the Comprehensive Employment and Training Act of 1973 to provide that certain private employers participating in manpower programs may be reimbursed in amounts not exceeding 50 percent of the salaries paid to low-income persons by such employers.", "607": "A bill to designate certain lands in the Great Smoky Mountains National Park as wilderness; to provide for settlement of all claims of Swain County, North Carolina, against the United States under the agreement dated July 30, 1943, and for other purposes.", "608": "To make clear that fishermens organizations, regardless of their technical legal status, have a voice in the ex-vessel sale of fish or other aquatic products on which the livelihood of their members depends", "609": "To direct the Secretary of the Interior to study and formulate a comprehensive plan containing recommendations regarding the action that should be taken to preserve, develop, and make accessible for public use and benefit the Long Island Sound and related shoreline areas in the States of New York, Connecticut, and Rhode Island", "610": "To authorize. the payment of an allowance not to exceed $10 per day toemployees assigned to duty at the Shellfish Research Center, Dauphin Island, Ala., and for other purposes", "611": "To .amend the Internal Revenue Code of 1954 to allow a credit against income tax to employers for- the expenses of providing training programs for employees and prospective employees", "612": "To increase the supply and lower the cost of petroleum by temporarily suspending the acquisition of petroleum for the Strategic Petroleum Reserve.", "613": "To modernize the manufactured housing loan insurance program under title I of the National Housing Act.", "614": "A bill to establish a Solar Energy Development Bank to provide long-term low-interest loans for the purchase and installation of solar energy equipment in commercial and residential buildings in the United States.", "615": "To provide that the transportation of mollusk shells (including clam and oyster shells) from the point of extraction to the dockside shall be taken into account in computing percentage depletion", "616": "A bill to designate a portion of the Arctic National Wildlife Refuge as wilderness.", "617": "To direct the Secretary of the Interior to take actions to support non-Federal investments in water infrastructure improvements in the Sacramento Valley, and for other purposes.", "618": "A bill to authorize the acquisition of the Big Cypress National Fresh Water Reserve in the State of Florida.", "619": "A bill to promote the general welfare by establishing a National Energy Production Board to assure early development of energy resources on the public domain and on other Federal lands and on the Outer Continental Shelf in order to overcome the dependence", "620": "To enforce the constitutional right to vote, to confer jurisdiction upon the district courts of the United States to provide injunctive relief against discrimination in public accommodations, to authorize the Attorney General to institute suits to protect", "621": "A bill to amend the Federal Meat Inspection Act to require that imported meat and meat food products made in whole or in part of imported meat be labeled imported at all stages of distribution until delivery to the ultimate consumer.", "622": "To enable the people of Hawaii to form a constitution and State government and to be admitted into the Union on an equal footing with the original States", "623": "A bill to authorize appropriations for the energy conservation program for schools and hospitals and for the energy conservation program for buildings owned by units of local government and public care institutions, and for other purposes.", "624": "A bill to clarify the provision of section 3626(b) of title 39, United States Code, defining an institution of higher education.", "625": "A bill to amend the Clean Air Act to reduce emissions from electric powerplants, and for other purposes.", "626": "A bill to authorize a program for runoff and water flow retardation and soil erosion prevention for the Pecos River watershed in New Mexico and Texas", "627": "To prohibit the use of gold for the settlement of international balances with the Government of France which such Government is in arrears in the payment of its obligations to the United States", "628": "To accelerate the construction and rehabilitation of low- and moderate income housing in the United States in order to fulfill the national goal declared in the Housing Act of 1949 of a decent179912142-12177 home and a suitable living environment for every American family", "629": "To ensure that amounts paid for home improvements to mitigate radon gas qualify for the tax deduction for medical care expenses.", "630": "A bill relating to the status of the Little Shell Band of Chippewa Indians of Montana", "631": "A bill to provide for more effective regulation of vehicles not originally manufactured to meet Federal safety standards.", "632": "A bill to amend the National Apprenticeship Act to require minimum funding for certain outreach recruitment and training programs, to restore a national information collection system, to limit the authority to conduct reductions in force within the Bureau of Apprenticeship and Training of the Department of Labor, and for other purposes.", "633": "To amend the act entitled An act for the control of floods oil the Mississippi river and its tributaries, and for other purposes, approved May 15, 1928Nil.", "634": "A bill to build capacity at community colleges in order to meet increased demand for community college education while maintaining the affordable tuition rates and the open-door policy that are the hallmarks of the community college system.", "635": "To revise section 3084, title 18, of the United States Code, concerning the enforcement of certain provisions of such code, and for other purposes", "636": "A bill to promote and assist in the extension and improvement of vocational education, provide for a more effective use of available Federal funds, and for other purposes", "637": "To reform the Bureau of Alcohol, Tobacco, Firearms, and Explosives, modernize firearms laws and regulations, protect the community from criminals, and for other purposes.", "638": "To amend the Flood Control Act of 1950 as it applies to the Libby Dam on the Kootenai River in the State of Montana", "639": "To amend title 18 of the United States Code. to prohibit travel or use of any facility, in interstate or foreign commerce with intent to incite . a riot or other violent civil disturbance and for other purposes", "640": "A bill to declare the ownership of the timber on the allotments on the Northern Cheyenne Indian Reservation, and to authorize the sale thereof", "641": "To amend the Endangered Species Act of 1973 to require the preparation of economic impact analysis with respect to certain actions to protect endangered species and threatened species, and for other purposes.", "642": "A bill to amend the Community Services Act of 1974 to make certain technical and conforming amendments.", "643": "A bill to encourage the use of alcohol in motor vehicle fuels by requiring certain retailers to make alcohol-blended fuels available for sale, by allowing the rapid amortization of facilities producing alcohol for use in motor vehicle fuels, and by exempting alcohol-blended fuels from certain requirements of the Clean Air Act.", "644": "A bill to prohibit the expenditure of Federal funds by the Secretary of Health, Education, and Welfare to promote the fluoridation of public water supplies.", "645": "A bill to amend section 901(a) (relating to prohibition of sex discrimination) of the Education Amendments of 1972 to exempt from the prohibition of such section musical programs or activities, and programs or activities designed for parents and students.", "646": "To authorize the Secretary of the Interior to provide preservation and interpretation assistance for resources associated with the New Bedford Whaling National Historical Park in the Commonwealth of Massachusetts, and for other purposes.", "647": "To authorize an investigation and study of coastal hazards from offshore drilling on the Outer Continental Shelf in the Atlantic Ocean", "648": "A bill to provide for the establishment of the Special Envoy to Promote Religious Freedom of Religious Minorities in the Near East and South Central Asia.", "649": "A bill to repeal certain provisions of law applicable to federally assisted housing", "650": "A bill to authorize the construction of a project for flood control in the vicinity of Albuquerque, New Mexico, and for other purposes.", "651": "To improve education by increasing the freedom of the Nation's teachers to change employment across State lines without substantial loss of retirement benefits through establishment of a Federal-State program", "652": "A bill to designate certain lands in the Everglades National Park, Fla., as wilderness.", "653": "To provide for the timely consideration of all licenses, permits, and approvals required under Federal law with respect to the siting, construction, expansion, or operation of any natural gas pipeline projects.", "654": "To reduce the annual rate of pay of Members of Congress if a Government shutdown occurs during a year, and for other purposes.", "655": "To implement demonstration projects at federally qualified community health centers to promote universal access to family centered, evidence-based behavioral health interventions that prevent child maltreatment and promote family well-being by addressing parenting practices and skills for families from diverse socioeconomic, cultural, racial, ethnic, and other backgrounds, and for other purposes.", "656": "To authorize the payment of certain claims for structural or other major defects in homes covered by Federal Housing Administration insured mortgages, and to require indemnification bonds in the case of certain new construction under Federal Housing Admin", "657": "A bill to authorize the Society of the Third Infantry Division to erect a Memorial in the District of Columbia or its environs.", "658": "A bill to amend the Washington Area Transit Authority Compact to require the inclusion of roll commuter service in the mass transit plan, and for other purposes", "659": "To expand the authority of the Secretary of Health and Human Services to impose debarments in order to ensure the integrity of drug, biological product, and device regulation, and for other purposes.", "660": "To authorize the maritime Administrator to undertake investigations and studies culminating in contract plans and specifications with respect to the establishment and development of integrated total marine transport systems utilizing nuclear-powered merchant vessels, and for other purposes", "661": "A bill to amend section 170 of the Internal Revenue Code of 1954 to revise and make permanent the provisions for allowing a deduction for contributions for conservation purposes.", "662": "To amend the Truth in Lending Act to protect the right to financial privacy by establishing standards with respect to the type and amount of information which creditors may require borrowers to provide in connection with consumer loan applications, and for other purposes.", "663": "A bill to require a study to be conducted of the effect of increasing the diversion of water from Lake Michigan Into the Illinois Waterway for navigation, and for other purposes.", "664": "To provide safeguards with respect to the Federal Bureau of Investigation criminal background checks prepared for employment purposes, and for other purposes.", "665": "To provide for orderly trade in fresh fruits and vegetables, and for other purposes", "666": "To prevent Federal dam and reservoir projects from interfering with sustained-yield timber operations", "667": "To expand and improve the use of DNA analysis in criminal investigations, and for other purposes.", "668": "A bill to continue the current waiver of liability presumption for home health agencies and skilled nursing facilities under the medicare program in order to protect beneficiary access to home health and extended care services.", "669": "A bill to amend section 8c(2) (A) of the Agricultural Adjustment Act to provide for marketing orders for apples produced in Colorado, Utah, New Mexico, Illinois, and Ohio", "670": "A bill to establish a Presidential commission on nuclear waste, and for other purposes.", "671": "A bill to extend the period for which unemployment benefits are payable under title I of the Emergency Unemployment Compensation Act of 1991, and for other purposes.", "672": "To provide unemployment insurance and leave from employment to battered women.", "673": "A bill authorizing natural gas and hazardous liquid pipeline safety programs for fiscal year 1987, and for other purposes.", "674": "To make the Controlled Substances Act inapplicable with respect to marihuana in States that have legalized marijuana and have in effect a statewide regulatory regime to protect certain Federal interests, and for other purposes.", "675": "A bill to amend section 923 of title 18, United States Code, to require the keeping of records with respect to dispositions of ammunition, and to require a study of the use and possible regulation of sales of ammunition.", "676": "To amend the Shipping Act of 1984 to restore the application of the antitrust laws to certain agreements and conduct to which such Act applies.", "677": "To amend the Rural Electrification Act of 1936 to return the Rural Electrification Administration to its original mission of providing credit to rural electric cooperatives which are unable to obtain needed financing in the private sector.", "678": "A bill to amend chapters 2 and 21 of the Internal Revenue Code of 1954, and title II of the Social Security Act, to reduce social security tax rates and provide a new method for their determination in the future, to remove the dollar limitation presently ", "679": "To extend for an additional 4year period the provisions of the National Wool Act of 1954", "680": "To amend section 1823 of title 28, United States Code, to authorize the payment of travel expenses for certain witness service", "681": "To reduce the excise tax on club dues and fees from 20 percent to 10 percent", "682": "A bill to further protect the outstanding scenic, natural, and scientific values of the Grand Canyon by enlarging the Grand Canyon National Park in the State of Arizona, and for other purposes.", "683": "A bill to amend the Farm Disaster Assistance Act of 1987 to extend the reporting date for the ethanol cost effectiveness study.", "684": "To amend Public Law 87-276, so as to extend its provisions for 3 additional years, to expand the program under that act to provide for the training of teachers of all exceptional children, and for other purposes", "685": "A bill to provide a temporary I1/2-cent increase in the tax on gasoline and the tax on diesel fuel and special motor fuels used in highway vehicles.", "686": "To amend the Internal Revenue Code of 1954 to promote additional protection for the rights of participants in private pension plans, to establish minimum standards for vesting, to establish an insurance corporation within the Department of the Treasury, and for other purposes", "687": "To provide for the partial cancellation or repayment of Perkins and Stafford loans for student borrowers who perform a year or more of full-time, low-paid service as Peace Corps and VISTA volunteers, and comparable full-time, low-paid service with a tax-exempt community service organization in the private sector.", "688": "A bill to establish a bipartisan national commission to study ways of improving Federal and State efforts to enforce child support obligations and recoup delinquent child support payments.", "689": "To provide for congressional approval of a nuclear aircraft carrier waste disposal plan before the construction of CVN-76, and for other purposes.", "690": "To limit injunctive relief, and prohibit the award of costs (including attorney's fees) against a judicial officer for action taken in a judicial capacity.", "691": "To amend title 18, United States Code, to establish penalties for aggravated identity theft, and for other purposes.", "692": "To establish a grant program to promote emotional and social development and school readiness.", "693": "A bill to prohibit the Tennessee Valley Authority from acquiring or utilizing, in carrying out its operations and functions, any coal mined by strip mining methods", "694": "A bill to amend section 422(c) of the Higher Education Act of 1965, relating to the eligibility of new State guarantee agencies for advances to reserve funds under such section.", "695": "To amend title 38, United States Code, to authorize veterans who are entitled to educational assistance under the Post-9/11 Educational Assistance Program of the Department of Veterans Affairs to use such entitlement to participate in a career transition internship program for veterans.", "696": "A bill to delay the effective date of the provisions of Revenue Ruling 83-3 which relate to the deductibility of certain expenses paid by ministers.", "697": "To authorize an exchange of lands and interests therein between the city of San Diego, Calif., and the United States, and for other purposes", "698": "To amend title 28, United States Code, to modify the residency requirement for United States attorneys and assistant United States attorneys.", "699": "To amend the Federal Aviation Act of 1958 for the purpose of enhancing competition among air carriers, and for other purposes.", "700": "Authorizing the modification of the Trinidad Dam on Purgatoire River, Colo., in the interest of flood control and allied purposes", "701": "To amend the Internal Security Act of 1950 to authorize the Federal Government to institute measures for the protection of defense production and of classified information released to industry against acts of subversion, and for other purposes", "702": "A bill to provide a grace period for the prohibition on Consolidated Farm Service Agency lending to delinquent borrowers, and for other purposes.", "703": "To establish on public lands of the United States a national wilderness preservation system for the permanent good of the whole people, to provide for the protection and administration of areas within this system by existing Federal agencies and for the g", "704": "A bill to allow States to apply more stringent marking, labeling, packaging, or ingredient requirements than those set under the Federal Meat Inspection Act", "705": "To extend the life of the Lewis and Clark Trail Commission, and for other purposes", "706": "To reauthorize the national dam safety program, and for other purposes.", "707": "To require the Secretary of Labor, in consultation with the Secretary of Health and Human Services, to draft disclosures describing the rights and liabilities of customers of domestic care services and require that such services provide such disclosures to customers in any contract for such services.", "708": "A bill to provide for the use of hand-propelled vessels in Yellowstone National Park, Grand Teton National Park, and the National Elk Refuge, and for other purposes.", "709": "To amend section 306 of the Public Health Service Act so as to make school health educators eligible for traineeships under that section, and for other purposes", "710": "A bill to encourage the efficient use of existing resources and assets related to Indian agricultural research, development and exports within the United States Department of Agriculture, and for other purposes.", "711": "A bill to amend the Agriculture Trade Act of 1978 to make modifications in the Market Promotion Program.", "712": "To amend the National Defense Authorization Act for Fiscal Year 2012 to provide for the trial of covered persons detained in the United States pursuant to the Authorization for Use of Military Force and to repeal the requirement for military custody.", "713": "To authorize the erection of a national monument symbolizing the ideal of democracy in the fulfillment of the act of August 31, 1954 (68 Stat. 1029)an act to create a National Monument Commission, and for other purposes.", "714": "Authorizing the State of California to collect tells for the use of certain highway crossings across the Bay of San Francisco", "715": "An original bill to reauthorize housing and community development programs, and for other purposes.", "716": "A bill to amend the Small Business Act to include clothing and textile supplies in the industry categories to which the set-aside programs established under such Act apply.", "717": "A bill to provide for the recognition of certain Native communities and the settlement of certain claims under the Alaska Native Claims Settlement Act, and for other purposes.", "718": "To extend the veterans home loan program to February 1, 1965 to provide for direct loans to veterans in areas where housing credit is otherwise not generally available and for other purposes", "719": "To amend the Federal Crop Insurance Act to provide producers with the opportunity to purchase crop insurance coverage based on both an individual yield and loss basis and an area yield and loss basis in order to allow producers to cover all or a portion of their deductible under the individual yield and loss policy, to improve the accuracy of actual production history determinations, and for other purposes.", "720": "A bill to clarify the application of Title IX of the Education Amendments of 1972.", "721": "A bill to establish guidelines for timely compensation for temporary injury incurred by seaman on fishing industry vessels and to require additional safety regulations for fishing industry vessels.", "722": "A bill to increase mortgage limits under homeownership assistance programs administered by the Secretary of Housing and Urban Development.", "723": "To increase the rates of certain educational and readjustment allowances payable to veterans in order to compensate for the higher cost of living in Alaska", "724": "A bill to restore the applicability of the general statute of limitations for the prosecution of violations of Federal criminal law to the prosecution of violations of the Federal Election Campaign Act of 1971.", "725": "A bill to provide for a minimum medicare payment level of 90 percent for rural referral centers allowable capital-related costs.", "726": "To provide competitive grants for training court reporters and closed captioners to meet requirements for realtime writers under the Telecommunications Act of 1996, and for other purposes.", "727": "To amend the Public Health Service Act to allow qualifying children's hospitals to participate in the 340B drug discount program.", "728": "A bill to expand and extend .the loan program for bona fide fur farmers, and for other purposes.", "729": "A bill to establish a commission to develop legislation designed to reform tax policy and entitlement benefit programs and to ensure a sound fiscal future for the United States, and for other purposes.", "730": "To provide that manufacturers located in areas of substantial labor surplus in the United States shall be entitled to preference in obtaining contracts to furnish articles, materials, or supplies for use by the Federal Government", "731": "To establish a National Institute of Population Growth and to transfer to the Institute the functions of the Secretary of Health, Education, and Welfare, and of the Director of the Office of Economic Opportunity relating to population research and family planning services", "732": "A bill to rescind unobligated stimulus funds and require that such funds be used for Federal budget deficit reduction.", "733": "A bill to clarify that a State has the sole authority to regulate hydraulic fracturing on Federal land within the boundaries of the State.", "734": "A bill to provide for a comprehensive, coordinated 5-year research program to determine the causes of and cure for cancer, to develop cancer preventative vaccines or other preventatives, and for other purposes.", "735": "To establish an Adult Job Corps demonstration program for the United States-Mexico border area.", "736": "A bill to increase the investment credit allowable with respect to facilities to control water and air pollution.", "737": "To provide for the sharing with qualified local governmental institutions of a portion of the tax revenues received by the United States", "738": "To amend the Public Health Service Act, the Social Security Act, and the Internal Revenue Code of 1986 with respect to preventive health programs.", "739": "A bill to maximize employment opportunities for all Americans in rural and urban poverty areas, and to alleviate structural unemployment among young people through bonus incentives to private and independent sector sponsors, and to achieve more efficient,", "740": "To recognize the Navy UDT-SEAL Museum in Fort Pierce, Florida, as the official national museum of Navy SEALS and their predecessors.", "741": "A bill to regulate interstate commerce to protect health and the environment from hazardous chemical substances.", "742": "To provide for the licensing of operators of certain vessels on the navigable waters of the United States", "743": "To amend section 601 of the Federal Aviation Act of 1958 to require the Administrator of the Federal Aviation Administration to prescribe rules and regulations providing for the mandatory installation of transponder equipment aboard all aircraft", "744": "To amend section 402 (d) of the Federal Food Drug, and Cosmetic Act", "745": "To designate certain lands in Montana as widerness, to release other forest lands for multiple use management, and for other purposes.", "746": "A bill to create a National Museum of Women's History Advisory Committee.", "747": "A bill to assure that sales of agricultural commodities by the United States are made at prices which are not less than the cost of production.", "748": "To provide for the payment of compensation, including severance damages, for rights-of-way acquired by the United States in connection with reclamation projects the construction of which commenced after January 1, 1961", "749": "To authorize loans for study at nonprofit institutions of higher education", "750": "To amend title 18, United States Code, to protect federally funded public safety officers.", "751": "A bill to require the Secretary of Agriculture to report to the Congress each year certain information relating to the import and export of agricultural commodities", "752": "To extend the Juvenile Delinquency and Youth Offenses Control- Act of 1961", "753": "A bill to establish the negotiating objectives of the United States with respect to the WTO Agreement on Agriculture, to establish criteria for the accession of state trading regimes to the WTO, and for other purposes.", "754": "To reduce the Nation's dependence on petroleum by enhancing the use of coal.", "755": "A bill to amend the Agricultural Adjustment Act to require the Secretary of Agriculture to make decisions relating to proposed amendments to milk marketing orders not later than 90 days after the date on which the Secretary holds a hearing.", "756": "To give the President of theUnited States standby authority to impose wage and price controls", "757": "A bill to authorize an agreement between the United States and Mexico for the joint operation and maintenance by the International Boundary and Water Commission, United States and Mexico, of the Nogales sanitation project, and for other purposes", "758": "To protect the public safety by imposing minimum, mandatory prison sentences for drug crimes involving minors.", "759": "To provide Federal recognition of the Mowa Band of Choctaw Indians of Alabama.", "760": "To confer jurisdiction on the State of Montana with respect to offenses committed within Indian country within such State", "761": "A bill to amend Public Law 394, 84th Congress, to authorize the construction of supplemental irrigation facilities for the Yuma Mesa Irrigation District, Arizona", "762": "To provide supplementary benefits for recipients of public assistance and benefits for others who are in need through the issuance of stamps or certificates to be used in the acquisition of surplus agricultural commodities; to provide for improved nutriti", "763": "A bill to amend the Agriculture and Consumer Protection Act of 1973 and the Food Stamp Act of 1964.", "764": "A bill to establish the Office of Sustainable Housing and Communities, to establish the Interagency Council on Sustainable Communities, to establish a comprehensive planning grant program, to establish a sustainability challenge grant program, and for other purposes.", "765": "To amend the Solid Waste Disposal Act to authorize each State to prohibit the importation of solid waste into the State for incineration or disposal.", "766": "To amend section 1871 of title 28 of the United States Code relating to the travel, allowance of grand and petit jurors", "767": "To amend section 371, title 28, United States Code, to provide an alternative plan for the retirement of justices and judges, and so forth", "768": "To direct the Attorney General to establish six centers to provide facilities for conducting research into the motivations and behavioral patterns of persons who have been convicted of crimes and violence", "769": "A bill to enhance rail competition and to ensure reasonable rail rates in any case in which there is an absence of effective competition.", "770": "To repeal the Patient Protection and Affordable Care Act and to take meaningful steps to lower health care costs and increase access to health insurance coverage without raising taxes, cutting Medicare benefits for seniors, adding to the national deficit, intervening in the doctor-patient relationship, or instituting a government takeover of health care.", "771": "To amend and reauthorize certain provisions relating to Long Island Sound restoration and stewardship.", "772": "A bill to provide for the control of illegally taken fish and wildlife, and for other purposes.", "773": "To establish a demonstration program to provide financial incentives to encourage the adoption and use of interactive personal health records and to encourage health information exchange networks to link clinical data to such personal health records.", "774": "To amend the Civil Aeronaut, Act of 1938 in order to authorize 1r, or reduced rate transportation for r tired employees of air carriers, and other purposes", "775": "A bill to protect the freedom of the press under the First Amendment to the Constitution.", "776": "A bill to amend the Archaeological Resources Protection Act of 1979 to strengthen the enforcement provisions of that Act, and for other purposes.", "777": "A bill to amend the act of August 31, 1922, to prevent the introduction and spread of diseases and parasites harmful to honeybees.", "778": "To provide collective bargaining rights for public safety officers employed by States or their political subdivisions.", "779": "To temporarily waive the risk management purchase requirement for agricultural producers adversely impacted by Hurricane Irene or Tropical Storm Lee so that such producers are eligible to receive assistance under the Supplemental Revenue Assistance Program (SURE), Emergency Assistance for Livestock, Honey Bees, and Farm-Raised Fish Program (ELAP), and Tree Assistance Program (TAP).", "780": "To provide for increased wheat acreage allotments in the Tulelake area of California", "781": "To amend title 49, United States Code, to ensure competition in the rail industry, enable rail customers to obtain reliable rail service, and provide those customers with a reasonable process for challenging rate and service disputes.", "782": "To authorize a State to temporarily extend a waiver granted with respect to the State program of aid to families with dependent children.", "783": "To amend title XVIII- of the Social Security Act to include drugs requiring a doctors prescription among the medical expenses with respect to which payment may be made under the voluntary program of supplementary, medical insurance benefits for the aged", "784": "To provide for a study of options for protecting the open space characteristics of certain lands in and adjacent to the Arapaho and Roosevelt National Forests in Colorado, and for other purposes.", "785": "A bill to encourage film corporations to donate certain historical film to educational organizations by increasing the limit on the charitable contribution deduction of such corporations.", "786": "To designate the Stornetta Public Lands as an Outstanding Natural Area to be administered as a part of the National Landscape Conservation System, and for other purposes.", "787": "A bill vesting in the American Battle Monuments Commission the care and maintenance of the original Iwo Jima Memorial on Mount Surabachi, Iwo Jima volcanic islands, Pacific Ocean area.", "788": "An original bill to improve learning and teaching by providing a national framework for education reform; to promote the research, consensus building, and systemic changes needed to ensure equitable educational opportunities and high levels of educational achievement for all American students; to provide a framework for reauthorization of all Federal education programs; to promote the development and adoption of a voluntary national system of skill standards and certifications; and for other purposes.", "789": "To provide for a review of all Federal programs that assess or mitigate the risks to women's health from environmental exposures, and for a study of the research needs of the Federal Government relating to such risks.", "790": "Relating. to the applicability .of the 3-percent interest rate for loans to provide housing for the elderly or handicapped under section 202 of the Housing Act of-19-69", "791": "A bill to provide that ionization smoke detectors containing any radioactive isotope shall be considered banned hazardous substance subject to the prohibitions of the Federal Hazardous Substances Act.", "792": "To encourage states to increase the proportion of the expenditures in the State for public education which are derived from State rather than local revenue sources", "793": "A bill to reduce the costs of prescription drugs for Medicare beneficiaries and to guarantee access to comprehensive prescription drug coverage under part D of the Medicare program, and for other purposes.", "794": "To provide for the division of the State of North Dakota into two judicial districts", "795": "To prescribe alternative payment mechanisms for the payment of annual enrollment fees for the TRICARE program of the military health care system.", "796": "To revise the quota control system on the importation of certain meat and meat products", "797": "A bill to amend title 44, United States Code, to redesignate the National Historical Publications Commission as the National Historical Publications and Records Commission, to increase the membership of such Commission, and to increase the authorization of appropriations for such Commission.", "798": "To promote higher standards of quality control in the manufacture of motor vehicles to provide for the establishment by the Secretary of Commerce of standards for new motor vehicle warranties and for motor vehicle dealer franchise agreements to prescribe effective remedies for breach of such warranties and agreements and for other purposes", "799": "A bill to prevent the use of heroin for any drug maintenance program.", "800": "To allow employees of Federally-qualified health centers to obtain health coverage under chapter 89 of title 5, United States Code.", "801": "A bill to guarantee the free flow of information to the public through a free and active press while protecting the right of the public to effective law enforcement and the fair administration of justice.", "802": "To create an Agricultural Research and Industrial Board; to define its powers and duties; and for other purposes.", "803": "A bill to increase the authorization of appropriations for low-income energy assistance, weatherization, and state energy conservation grant programs, to expand the use of energy savings performance contracts, and for other purposes.", "804": "A bill to amend section 5701 (a) (2) of the Internal Revenue Code of 1954 so as to change the bracket tax on cigars to an ad valorem tax.", "805": "To establish a New England Regional Power and Environmental Protection Agency for the purpose of assuring adequate and reliable low-cost electric power to the people of New England, protecting and enhancing the environment, and providing a vehicle for research and development programs", "806": "A bill to limit the liability of a broker who sells any agricultural commodity on behalf of his principal when that commodity serves as security for any loan made, insured, or guaranteed under a program administered by the Farmers Home Administration.", "807": "To require the holder of a subordinate lien on the property that secures a federally related mortgage loan, upon a request by the homeowner for a short sale, to make a timely decision whether to allow the sale.", "808": "A bill to provide compensation to U.S. commercial fishing vessel owners for damages incurred by them as a result of an action of a vessel operated by a foreign government or a citizen of a foreign government.", "809": "A bill to direct that a clinical investigation of the safety and efficacy of dimethyl sulfoxide as a drug to be used by persons with arthritis be conducted through the National Institute of Arthritis, Metabolism, and Digestive Diseases.", "810": "To grant the consent of Congress to an amendment to a compact ratified by the States of Louisiana and Texas and relating to the waters of the Sabine River.", "811": "A bill to amend the Federal Airport Act in order to extend the time for making grants under the provisions of such act.", "812": "Making certain changes in laws applicable to the Department of the Treasury so as to permit the effectuation by the President and the Secretary of the Treasury of the recommendations regarding the Department of the Treasury made by the Commission on Organ", "813": "A bill to insure the equal protection of the laws and to protect the liberty citizens as guaranteed by the fourteenth amendment, by eliminating Federal court jurisdiction over forced school attendance.", "814": "A bill to authorize the Secretary of Agriculture to pay the expenses of an Advisory Boll and Water Conservation", "815": "To amend the congressional budget process to provide for a pay-as-you-go budget for the United States, to provide for a biennial budget for the United States, and to provide line item veto authority for the President, and for other purposes.", "816": "A bill to establish the Northern Great Plains Rural Development Commission, and for other purposes.", "817": "To rescind certain budget authority proposed to be rescinded (R92-54) in a special message transmitted to the Congress by the President on March 20, 1992, in accordance with section 1012 of the Impoundment Control Act of 1974.", "818": "To provide compensation to individuals who are injured by an escaped prescribed fire and to amend the tort procedure provisions of title 28, United States Code, relating to claims for such fires, and for other purposes.", "819": "To amend the Urban Mass Transportation Act of 1984 to authorize financial assistance for planning, engineering, designing, and other technical studies", "820": "To provide for the modification of the existing mortgage (held by the Federal National Mortgage Association) covering Overlook Mutual Homes in Dayton, Ohio", "821": "To amend the Agricultural Act ox 1956 to provide donations of surplus food commodities to State penal institutions", "822": "To amend section 2004 of the Revised Statutes of the United States to provide that all citizens of the United States may vote at all elections without being required to take literacy tests", "823": "A bill to amend the Federal Columbia River Transmission System Act to provide for the reconstitution of outstanding repayment obligations of the Administrator of the Bonneville Power Administration for the appropriated capital investments in the Federal Columbia River Power System.", "824": "To amend the Agricultural Research, Extension, and Education Reform Act of 1998 to establish an educational program to improve the risk management skills of agricultural producers.", "825": "To provide authority for the President to stabilize prices, wages, interest rates, and corporate dividends.", "826": "To increase the number of tenant-based rental assistance vouchers made available for low-income families displaced by Hurricane Sandy.", "827": "To extend for 2 years the period in which payments in lieu of taxes may be made with respect to certain real property transferred by the Reconstruction Finance Corporation and its subsidiaries to other Government departments", "828": "A bill to amend titles II and XVII of the Social Security Act to include qualified drugs, requiring a physician's prescription or certification and approved by a formulary committee, among the items and services covered under the hospital insurance program.", "829": "A bill to amend sections 201(s) and 409 of the Federal Food, Drug, and Cosmetic Act, as amended, relating to food additives", "830": "A bill to amend the Community Health Centers Act to provide for the extension thereof, and for other purposes.", "831": "Authorizing the State of Rhode Island or its instrumentality to maintain, repair, and operate the bridge across. Mount Hope Bay subject to the terms and conditions of the act approved March 23, 1906", "832": "A bill to improve access to emergency medical services through medical liability reform and additional Medicare payments.", "833": "To amend the Public Health Service Act to assist research and development projects for the effective utilization of advances in science and technology in the delivery of health care", "834": "To address the need for private financing of home ownership and economic development on and near reservation lands, and for other purposes.", "835": "To implement the provisions of the International Convention for the Prevention of the Pollution of the Sea by 011, 1954", "836": "To amend sections 33 and 34 of the Federal Fire Prevention and Control Act of 1974, and for other purposes.", "837": "A bill to confer jurisdiction on the State of Washington with respect to offenses committed on Indian reservations within such State", "838": "A bill to provide for the assumption of the control and operation by Indian tribes and communities of certain programs and services provided for them by the Federal Government, and for other purposes.", "839": "A bill to amend the Military Selective Service Act of 1967 to authorize modifications of the system of selecting persons for induction into the Armed Forces under this Act", "840": "To amend the Atomic Energy Act of 1954 to prohibit the disposal of non-byproduct material at certain mill tailings disposal sites, and for other purposes.", "841": "A bill to ensure that college textbooks and supplemental materials are available and affordable.", "842": "Relative to maximum rents on housing accommodations; to repeal certain provisions of Public Law 388, Seventy ninth Congress; Public Law 129, Eightieth Congress; and Public Law 31, Eighty first Congress, and for other purposes", "843": "A bill to warn certain consumers in connection with the purchase of a medicare supplemental policy.", "844": "To provide assistance in acquiring specially adapted housing for blind veterans who have disabilities of such a nature that they require specially adapted housing", "845": "To enable the States to provide an additional 13 weeks of unemployment compensation for individuals who exhaust their benefit rights under existing State law", "846": "A bill to provide for the expansion of Federal efforts concerning the prevention, education, treatment, and research activities related to Lyme and other tick-borne diseases, including the establishment of a Tick-Borne Diseases Advisory Committee.", "847": "To authorize the Secretary of Commerce to sell the MV Chestatee", "848": "To amend the Controlled Substances Act with regard to the provision of emergency medical services.", "849": "A bill to repeal the State preemption clause in the Comprehensive Environmental Response, Compensation, and Liability Act of 1980.", "850": "To provide for the partition and distribution of the assets of the Ute Indian Tribe of the Uintah and Ouray Reservation in Utah between the mixedblood members thereof and for the termination of Federal supervision over the property and persons of the mixe", "851": "To authorize the issuance of right-of-way permits for natural gas pipelines in Glacier National Park, and for other purposes.", "852": "An original bill to authorize appropriations for fiscal year 2012 for defense activities of the Department of Energy, and for other purposes.", "853": "A bill to provide tax and regulatory relief for farmers and to improve the competitiveness of American agricultural commodities and products in global markets.", "854": "To provide procedures for the selection of the Commandant of the Air Force Institute of Technology, and for other purposes.", "855": "To amend the act of January 30, 1913, to remove certain- restrictions on the American Hospital on Paris", "856": "A bill to elevate the position of Director of the Indian Health Service within the Department of Health and Human Services to Assistant Secretary for Indian Health, and for other purposes.", "857": "To designate the navigation lock on the Sacramento Deep Water Ship Channel project, California, as the William G. Stone Navigation Lock", "858": "A bill to eliminate the Federal quota and price support programs for tobacco, to provide assistance to quota holders, tobacco producers, and tobacco-dependent communities, and for other purposes.", "859": "To amend section 307(c) of the Federal Aviation Act of 1958 to require the Administrator of the Federal Aviation Agency to prescribe air traffic rules governing the use of landing areas by certain aircraft", "860": "To amend title 38, United States Code, to establish standards of access to care for veterans seeking health care from the Department of Veterans Affairs, and for other purposes.", "861": "A bill to amend the act of June 27, 1960, (74 Stat. 220), relating to the preservation of historical and archeological data.", "862": "A bill to enable States located on a river or acquifer affected by the siting of a repository for high-level radioactive waste or spent nuclear fuel to participate effectively in the site selection, review, and approval process for such repository, and for other purposes.", "863": "To provide Medicare payments to Department of Veterans Affairs medical facilities for items and services provided to Medicare-eligible veterans for non-service-connected conditions.", "864": "A bill to establish in the Department of Housing and Urban Development a direct low-interest loan program to assist homeowners and other owners of residential structures in purchasing and installing more effective insulation and heating equipment.", "865": "To protect the national-defense effort and the normal flow of interstate and foreign commerce from the interferences caused by the movement of business enterprises to premises leased from States and political subdivisions of States", "866": "A bill to authorize demonstration projects designed to help young adult criminal offenders through the services of members of VISTA and the Teacher Corns or other qualified teachers.", "867": "To amend section 1481 of the Internal Revenue Code of 1954 (relating to mitigation of the effect of rengotiation of Government contracts) and section 3806 of the Internal Revenue Code of 1939.", "868": "To clarify the authority of the Federal Financing Bank to purchase loans guaranteed under part B of title IV of the Higher Education Act of 1965, and for other purposes.", "869": "To establish a National Board on workforce skills and to develop a comprehensive school-to-work transition program for students in the United States.", "870": "A bill to amend section 408 of the Federal Food, Drug, and Cosmetic Act to authorize emergency action with respect to pesticide chemicals which present an imminent hazard to the public health, to revise the procedures under such section for changes in tolerances and exemptions for pesticide chemicals, and for other purposes.", "871": "A bill to provide for the development of oil and gas leasing in the Outer Continental Shelf pursuant to programs developed by interstate agencies established under interstate agencies established under interstate compacts.", "872": "To amend the National Labor Relations Act to ensure the right of employees to a secret-ballot election conducted by the National Labor Relations Board.", "873": "To provide for medical services to nonIndians in Indian hospitals, and for other purposes", "874": "Providing for the examination and survey of the San Antonio River, Tex.", "875": "To amend the act entitled An act to authorize the purchase, sale, and exchange of certain Indian lands on the Yakima Indian Reservation, and for other purposes, approved July 28, 1955", "876": "A bill to amend section 44C of the Internal Revenue Code of 1954 to facilitate the use of alcohol fuel.", "877": "A bill amending title 46, United States Code, to require inspection by the Coast Guard of fishing vessels, to require certain safety equipment to be aboard such vessels, and for other purposes.", "878": "To provide marketing quotas for potatoes, and to provide that the price support benefits paid to any producer of potatoes during a crop year shall not exceed $10,000", "879": "To extend the deadline under the Federal Power Act applicable to the construction of a hydroelectric project in the State of Ohio.", "880": "Conferring jurisdiction on the Court of Claims to hear, determine, and render judgment on the claims of W. C. Jackson", "881": "To authorize additional appropriations for the lower San Joaquin River project", "882": "To provide for a preliminary examination and survey of the Buffalo River, Minn., for flood control purposes", "883": "A bill to raise the present level of grades for United States deputy marshals", "884": "To ratify and confirm Act 249 of the Session Laws of Hawaii, 1955, as amended, and to authorize the issuance of certain highway revenue bonds by the Territory of Hawaii", "885": "A bill to provide an 18-month moratorium on employer revisions upon termination of single-employer defined benefit pension plans.", "886": "A bill to ensure that individuals detained by the Department of Homeland Security are treated humanely, provided adequate medical care, and granted certain specified rights.", "887": "A bill to establish a National Rebuilding and Development Bank, to provide for a long-range program to assist in assuring decent neighborhoods for all citizens.", "888": "A bill to amend chapter 101 of title 18, United States Code, to impose criminal penalties for offenses relating to certain aviation reports and records.", "889": "To provide for the establishment of Cape Cod National Seashore Park", "890": "To provide for a National Institute of Drug Addiction and Alcoholism, and to require community mental health facilities to provide treatment and rehabilitation programs for drug addicts and other persons with drug-related problems", "891": "A bill to withdraw certain public lands in Eddy County, New Mexico, and for other purposes.", "892": "A bill to provide for research and development to encourage and promote the production of synthetic fuels, and for other purposes.", "893": "A bill to add $17,996,558 to the budget ceiling for new acquisitions at Sleeping Bear Dunes National Lakeshore.", "894": "To safeguard individual privacy of genetic information from the misuse of records maintained by agencies or their contractors or grantees for the purpose of research, diagnosis, treatment, or identification of genetic disorders, and to provide to individuals access to records concerning their genome which are maintained by agencies for any purpose.", "895": "A bill to authorize the partition or sale of inherited interests in allotted Indian lands, and for other purposes.", "896": "To amend section 320 of title 23 of the United States Code to increase the authorization for that section, and to earmark such increase for a bridge across Markland Dam on the Ohio River", "897": "A bill to make permanent the exemption of gasohol from the Federal motor fuels excise taxes, and for other purposes.", "898": "To authorize an interpretive center and related visitor facilities within the Four Corners Monument Tribal Park, and for other purposes.", "899": "A bill authorizing the change in name of certain water resource projects under jurisdiction of the Department of the Army", "900": "To amend the Subversive Activities Control Act of 1950 to authorize the payment of rewards to persons who furnish information leading to convictions of organizations or individuals of failure to register as required by such act", "901": "A bill to establish a demonstration program that encourages State educational agencies to assist teachers, parents, and communities in establishing new public schools, and for other purposes.", "902": "To provide adjustments in order to make uniform the estate acquired for the Vega Dam and Reservoir, Collbran project, Colo., by authorizing the Secretary of the Interior to reoonvey mineral interests in certain lands", "903": "A bill to amend and strengthen the Natural Gas Pipeline Safety Act of 1968, and to authorize additional appropriations therefor.", "904": "To amend the Federal Aviation Act of 1958 to require the Secretary of Transportation to issue regulations providing for a program for the disinsection of aircraft arriving in the United States", "905": "A bill to prohibit the possession and transfer of non-sporting handguns, and for other purposes.", "906": "To amend the Energy Policy and Conservation Act to encourage summer fill and fuel budgeting programs for propane, kerosene, and heating oil.", "907": "Granting the consent and approval of Congress to the middle Atlantic Interstate Forest Fire Protection Compact.", "908": "A bill authorizing appropriations for the construction, operation, and maintenance of the western land boundary fence project, and for other purposes", "909": "A bill to define the circumstances in which foreign states are immune from the jurisdiction of U.S. courts and in which execution may not be levied on their assets, and for other purposes.", "910": "To amend tire United States Housing Act of 1937 to establish a program for the housing of elderly persons of low income", "911": "To authorize a national memorial at, or proximate to, the World Trade Center site to commemorate the tragic events of September 11, 2001, to establish the World Trade Center Memorial Advisory Board, and for other purposes.", "912": "A bill to authorize the U.S. Customs Court to maintain an office at the city of Los Angeles.", "913": "A bill to modernize the conservation title of the Food Security Act of 1985, protect long-term taxpayer investment, increase small and midsize farmers access to programs, and prioritize modern-day conservation needs through management practices, local engagement, and stewardship.", "914": "To restore the income tax credit for investment in certain depreciable property", "915": "A bill to authorize the establishment at Antietam National Battlefield of a memorial to the officers and enlisted men of the Fifth, Sixth, and Ninth New Hampshire Volunteer Infantry Regiments and the First New Hampshire Light Artillery Battery who fought in the Battle of Antietam on September 17, 1862, and for other purposes.", "916": "An original bill to restore the value of every American in environmental decisions, and for other purposes.", "917": "A bill to extend certain authorizations under the Federal Water Pollution Control Act, as amended.", "918": "A bill to consolidate in a single independent agency in the Executive branch the responsibilities regarding food safety, labeling, and inspection currently divided among several Federal agencies.", "919": "To amend the Internal Revenue Code of 1954 to impose an excise tax on. the discharge of pollutants", "920": "To require the Secretary of Agriculture to issue regulations for the purchase and eradication of swine infected with or exposed to brucellosis.", "921": "To establish an emergency community facilities and public works program in the Community Facilities Administration of the Housing and Home Finance Agency", "922": "To amend section 2107 of title 10, United States Code, to provide additional Reserve Officers' Training Corps scholarships for the Army, Navy, and Air Force", "923": "To authorize the transfer to the regents of the University of California, for agricultural purposes, of certain real property in Napa County, Calif", "924": "To require group and individual health plans to provide coverage for colorectal cancer screenings.", "925": "To provide for for resarch, design, development, and construction of fully operational passenger motor vehicles in prototype quantities embodying certain safety features", "926": "A bill to fund the dredging to deepen Baltimore Harbor and Channel, to provide within Baltimore Harbor spoil disposal sites enlarged in capacity by dewatering, and to prevent spoil disposal at Hart and Miller Islands in the Chesapeake Bay.", "927": "To improve, strengthen, and accelerate programs for the prevention and abatement of air pollution", "928": "To require an accounting for financial support made to promote the production or use of renewable energy, and for other purposes.", "929": "A bill to authorize the Administrator of the General Services Administration to provide technical assistance to cities to implement programs which are designed to increase the use of carpools by computers.", "930": "To amend the Soil Conservation and Domestic Allotment Act so as to permit the making of payments to farmers for certain water-conservation practices", "931": "To increase access to community behavioral health services for all Americans and to improve Medicaid reimbursement for community behavioral health services.", "932": "A bill to promote the economic security and safety of victims of domestic violence, dating violence, sexual assault, or stalking, and for other purposes.", "933": "A bill to phaseout production of certain ozone-depleting chemicals; to institute a policy promoting safe alternatives to ozone-depleting chemicals; and for other purposes.", "934": "An original bill making appropriations for the Department of Transportation and related agencies for the fiscal year ending September 30, 1985, and for other purposes.", "935": "A bill to amend the Plant Quarantine Act of August 20, 1912, as amended, to eliminate certain unnecessary regulatory requirements.", "936": "To require the National Park Service to make necessary safety improvements to the Statue of Liberty and to reopen the Statue to the public.", "937": "To amend the matching grant program for bulletproof armor vests to eliminate the matching requirement for certain officers.", "938": "Making appropriations for the Office of Education for tire fiscal year ending June 30, 1971, and for other purposes", "939": "To lower energy costs to consumers, increase electric system reliability and provide environmental improvements, through the rapid deployment of distributed energy resources, and for other purposes.", "940": "A bill to provide all prisoners with an opportunity to present exculpatory DNA evidence, and for other purposes.", "941": "To amend the Federal Meat Inspection Act, the Poultry Products Inspection Act, and the Federal Food, Drug, and Cosmetic Act to provide for improved public health and food safety through enhanced enforcement, and for other purposes.", "942": "To direct Federal public land management officials to exercise their authority under existing law to facilitate use of and access to Federal public lands for fishing, sport hunting, and recreational shooting, and for other purposes.", "943": "To make provisions of the act of August 28, 1937, relating to the conservation of water resourecs in the arid and semiarid areas of the United States, applicable to the entire United States", "944": "To establish in the State of California the Toyon National Urban Park", "945": "A bill to exempt from the Lacey Act Amendments of 1981 certain water transfers by the North Texas Municipal Water District and the Greater Texoma Utility Authority.", "946": "To reform the manner in which firearms are manufactured and distributed by providing an incentive to State and local governments to bring claims for the rising costs of gun violence in their communities.", "947": "A bill to stimulate the investment of venture capital in the production of strategic and critical metals or minerals.", "948": "A bill to provide for the revestment of certain lands or interests therein acquired for the Harlan County Reservoir, Nebraska, by the reconveyance of suchlands or interests therein to the former owners thereof.", "949": "To amend the Desert Land Acts to permit anyone who is a citizen, or who has filed his declaration of intention to become a citizen, of the United States to make entry of desert lands", "950": "A bill to prohibit an award of costs, including attorney's fees, or injunctive relief, against a judicial officer for action taken in a judicial capacity.", "951": "A bill to improve the accountability and transparency in infrastructure spending by requiring a life-cycle cost analysis of major infrastructure projects, providing the flexibility to use alternate infrastructure type bidding procedures to reduce project costs, and requiring the use of design standards to improve efficiency and save taxpayer dollars.", "952": "Relating to burley tobacco farm acreage allotments under the Agricultural Adjustment Act of 1938.", "953": "Granting to married persons living in Alabama the same Federal income tax consideration and treatments upon filing joint tax returns as is now enjoyed and extended to those living in community property States", "954": "A bill to amend the Motor Carrier Safety Act of 1984 to eliminate application of the commercial zone exemption to commercial motor vehicle safety regulations, and for other purposes.", "955": "A bill to amend the Agricultural Act of 1961 to allow the Secretary of Agriculture to provide financial assistance for the economic development of rural enterprise zones, and to amend the Internal Revenue Code of 1954 to provide tax incentives for small businesses located in rural enterprise zones.", "956": "A bill to amend the East Bench Irrigation District Water Contract Extension Act to permit the Secretary of the Interior to extend the contract for certain water services.", "957": "To increase the corporate average fuel economy standards for automobiles, and for other purposes.", "958": "To amend the Outer Continental Shelf Lands Act to authorize the Secretary of the Interior to establish an Ocean Energy Safety Institute, to promote the use of best available and safest offshore drilling technologies, and for other purposes.", "959": "To revise the Transportation of Explosives Act, chapter 39, title 18, of the United States Code, as amended.", "960": "A bill to require the Secretary of Energy to carry out activities relating to the first and second nuclear waste repositories, the monitored retrievable storage facility, and for other purposes in accordance with The Mission Plan for the Civilian Radioactive Waste Management Program, and the proposed amendment to the Mission Plan dated January, 1987.", "961": "To provide that no interest shal be imposed on any underpayment of tax resulting from the retroactive application of the amendment denying the deduction for personal exemptions under the alternative minimum tax.", "962": "To establish a two-year pilot program requiring performance standards and goals for expenditures in certain Federal Government programs to be included in the Federal budget, and for other purposes.", "963": "A bill to provide an extension of the time frame for nomination of a selection pool under the Cook Inlet land exchange.", "964": "A bill to amend the Legal Services Corporation Act to authorize appropriations for additional fiscal years, and for other purposes.", "965": "A bill to provide for the mailing of certain election material to voters free of postage.", "966": "A bill to prohibit the purchase of foreign beef by a school participating in the school lunch, school breakfast, or child care food program, and for other purposes.", "967": "To amend the Clean Air Act requirements relating to gasoline to prevent future supply shortages and price spikes in the gasoline market, and for other purposes.", "968": "To reauthorize certain DNA-related grant programs under the Justice For All Act of 2004, and for other purposes.", "969": "A bill authorizing surveys and studies bearing upon the possible use of atomic energy for utility service requirements of buildings and grounds under the Architect of the Capitol, and for other purposes", "970": "To provide for conveyance of certain land to the city of New Orleans", "971": "To provide greater flexibility to States in the use of certain public health grants-in-aid", "972": "Making additional appropriations for functions of the Food and Drug Administration for the year ending June 30, 1956, to initiate a program of expansion and Improvement of services to help safeguard the health of the American people", "973": "A bill to establish national policy respecting the development and use of water resources and for other purposes", "974": "To modify the boundary of the Mary McLeod Bethune Council House National Historic Site in Washington, District of Columbia.", "975": "A bill to grant permanent easements for the construction, maintenance, and use of boat docks and similar structures on certain property of the United States in the State of Oklahoma.", "976": "To establish a Federal .Recreation Service in the Department of Health, Education, and Welfare, and for other purposes", "977": "A bill to amend the Colorado River Storage Act with respect to the protection of national parks and monuments under the provisions of such act.", "978": "A bill to amend the Public Health Services Act and the Social Security Act to extend health information technology assistance eligibility to behavioral health, mental health, and substance abuse professionals and facilities, and for other purposes.", "979": "To create United States money in the form of noninterest bearing credit in accordance with the 1st and 5th clauses of section 8 of Article I of the Constitution of the United States, to provide for noninterest bearing loans of the money so created to State and local governments solely for the purpose of funding capital projects.", "980": "A bill to amend the Federal Farm Loan Act approved July 16, 1916, and acts amendatory thereto and supplementary thereof", "981": "To amend the National Labor Relations Act to allow individuals against whom injunctive relief is sought an opportunity to be heard.", "982": "To amend title 49, United States Code, to expand passenger facility fee eligibility for noise compatibility projects.", "983": "A bill to amend section 28 of the Mineral Leasing Act of 1920, and to authorize a trans-Alaska oil and gas pipeline, and for other purposes.", "984": "A bill to promote interstate and foreign commerce and strengthen the national defense by providing for commercial cargo and transport aircraft adaptable to military transport service", "985": "To require the Secretary of Health, Education, and Welfare to fix a minimum standard of 3.5 percent butter fat for whole milk", "986": "A bill to amend title I of the Reclamation Project Authorization Act of 1972 in order to provide for the establishment of the Russell Lakes Waterfowl Management Area as a replacement for the authorized Mishak National Wildlife Refuge, and for other purposes.", "987": "To provide for the acquisition of lands by the United States required for the reservoir created by the construction of Oahe Dam on the Missouri River and for rehabilitation of the Indians of the Cheyenne River Sioux Reservation, S. Dak., and for other pur", "988": "A bill to provide for a Federal contribution toward the cost of the dam and reservoir to be constructed on the Canadian River by the State of New Mexico.", "989": "A bill to amend the National Dam Safety Program Act to establish a program to provide grant assistance to States for the rehabilitation and repair of deficient dams.", "990": "To assure performance by railroads engaged in interstate commerce of transportation services necessary to the maintenance of a national transportation system, and for other purposes", "991": "A bill to authorize the sale of certain Indian lands situated in Duchesne and Randlett, Utah, and in and adjacent to Myton, Utah", "992": "A bill to facilitate the management of certain land and recreational resources of reclamation projects in or adjacent to the national forests of South Dakota, and for other purposes", "993": "A bill to increase the supply of decent housing and to consolidate, extend and improve laws relating to housing and urban renewal and development", "994": "A bill making supplemental appropriation for payments under home health service grants and making an appropriation for payments under multipurpose senior centers.", "995": "A bill to amend the Illinois Land Conservation Act of 1995 to provide for the use of certain fees and receipts collected under that Act for public schools and public roads in the vicinity of Midewin National Tallgrass Prairie, Illinois.", "996": "To provide for cooperation in financing and prosecuting early development of the John Day project on the Columbia River, Oreg. and Wash., for navigation, irrigation, flood control, and power production", "997": "A bill to provide surplus commodities to farmers who lost grain stored in certain insolvent warehouses.", "998": "A bill to empower States with authority for most taxing and spending for highway programs and mass transit programs, and for other purposes.", "999": "To establish the John H. Chafee Blackstone River Valley National Historical Park, and for other purposes.", "1000": "A bill to make applicable to the Tennessee-Tombigbee Waterway certain provisions of law relating to taxation on fuel used in commercial transportation on inland waterways.", "1001": "To encourage and assist in the expansion and improvement of educational programs to meet critical national needs through the early identification of student aptitudes, strengthening of counseling and guidance services in public high schools, provision of ", "1002": "A bill to require that certain notifications occur whenever a query to the National Instant Criminal Background Check System reveals that a person listed in the Violent Gang and Terrorist Organization File is attempting to purchase a firearm, and for other purposes.", "1003": "To amend the National Environmental Education Act to establish an Environmental Education Clearing Division to collect certain environmental information and make that information available to educational institutions in the United States and other interested persons.", "1004": "To prepare a feasibility study and implement demonstration projects to restore the San Gabriel River Watershed in California.", "1005": "To amend section 2 of Public Law 927, 84th Congress, 2d session, and to repeal section 6 of Public Law 927, 84th Congress, 2d session", "1006": "To amend the Internal Revenue Code of 1954 regarding credits and payments in the case of certain uses of gasoline and lubricating oil", "1007": "A bill to amend part II of the Interstate Commerce Act in order to completely exempt certain vehicles used in agriculture from the provisions thereof", "1008": "A bill to amend the Help America Vote Act of 2002 to protect voting rights and to improve the administration of Federal elections, and for other purposes.", "1009": "A bill to provide for making a temporary judgeship for the northern district of Alabama permanent, and creating a new judgeship for the middle district of Alabama.", "1010": "To establish a community self-determination program to aid the people of urban and rural communities in securing gainful employment, achieving the ownership and control of the resources of their community, expanding opportunity, stability, and self-determination, and making their maximum contribution to the strength and well-being of the Nation", "1011": "To provide indemnification and liability protection to, and facilitate the procurement of insurance for, contractors responding to the World Trade Center attacks.", "1012": "To settle the Black Hills claim with the Sioux Nation of Indians.", "1013": "A bill to provide for the reduction in interstate commerce of the quantity of materials which must ultimately be disposed of, and for other purposes", "1014": "A bill to provide for the acquisition of the William Johnson House and its addition to the Natchez National Historical Park, and for other purposes.", "1015": "A bill to amend the Federal Seed Act with respect to prohibitions relating to interstate commerce in seed mixtures intended for lawn and turf purposes and prohibitions relating to importation of certain seeds, and for other purposes.", "1016": "A bill to provide an alternative plan for providing essential rail services to the Midwest and Northeast regions of the United States, to modernize certain railroad procedures.", "1017": "To amend the Railroad Retirement Act and the Social Security Act to eliminate those provisions which restrict the right of a survivor to receive benefits simultaneously under both acts", "1018": "A bill to establish criminal penalties for failing to inform and warn of serious dangers.", "1019": "To provide a temporary increase in the tax on gasoline and special fuels to provide additional revenue for the highway trust fund", "1020": "To provide for the donation of surplus food commodities to locate penal and correctional institutions, and for other purposes", "1021": "To amend the Maritime Academy Act of 1958 to require repayment of amounts paid for the training of merchant marine officers who do not serve in the merchant marine or Armed Forces", "1022": "To provide for the establishment and administration of a segment of the Great Prairie Parkway in the State of South Dakota", "1023": "A bill to improve and strengthen the child support collection system, and for other purposes.", "1024": "To amend the National Housing Act to authorize the insurance of loans to defray mortgage payments on homes owned by persons who are temporarily unemployed or whose income has been drastically reduced as the result of adverse economic conditions prevailing in an industry or area", "1025": "A bill to amend certain provisions of Federal law relating to explosives.", "1026": "A bill to authorize the construction of the Perkins County Rural Water System and authorize financial assistance to the Perkins County Rural Water System, Inc., a nonprofit corporation, in the planning and construction of the water supply system, and for other purposes.", "1027": "A bill to improve the quality of teaching in American secondary schools and enhance the competence of American secondary students and thereby strengthen the economic competitiveness of the United States, and for other purposes.", "1028": "To authorize a study to determine the feasibility of developing a small boat channel in the Mill Cove area of Jacksonville, Fla", "1029": "To strengthen public policy and law providing for independent competitive enterprise in the marketing of gasoline and other petroleum products, motor-vehicle parts, equipment, accessories, and supplies.", "1030": "To ensure the Federal voting rights of persons who have been released from incarceration.", "1031": "To assist the provision of housing and community facilities and services required in connection with the national defense", "1032": "To amend section 202 of the Federal Power Act, to prohibit abandonment of facilities and service without the consent of the Federal Power Commission", "1033": "A bill to amend the National Historic Preservation Act and the National Historic Preservation Act Amendments of 1980 to strengthen the preservation of our historic heritage and resources, and for other purposes.", "1034": "A bill to provide for a Veterans' Administration general medical and surgical hospital at Jacksonville, Fla., and to achieve cooperation with the University of Florida College of Medicine in its activities in Jacksonville.", "1035": "A bill to modify the requirements of the Department of Veterans Affairs for reimbursing health care providers under section 101 of the Veterans Access, Choice, and Accountability Act of 2014, and for other purposes.", "1036": "A bill to promote the safety of individuals traveling by aircraft, and for other purposes.", "1037": "To provide an improved charter for Economic Opportunity Act programs, to authorize funds for their continued operation, to expand summer camp opportunities for disadvantaged children, and for other purposes", "1038": "To direct the Secretary of the Army to develop a watershed management plan for the Lake George area of Indiana, and for other purposes.", "1039": "A bill to amend the Emergency Petroleum Allocation Act of 1973 to authorize and require the President of the United States to allocate plastic feedstocks produced from petrochemical feedstocks.", "1040": "To amend the Federal Water Pollution Control Act to authorize an estrogenic substances screening program.", "1041": "To direct the Architect of the Capitol to acquire and place a historical plaque to be permanently displayed in National Statuary Hall recognizing the seven decades of Christian church services being held in the Capitol from 1800 to 1868, which included attendees James Madison and Thomas Jefferson.", "1042": "A bill to provide for an extension of regional referral center classifications, and for other purposes.", "1043": "To authorize the Secretary of the Army to carry out a program for ecosystem restoration in Appalachia and the Northeast Region.", "1044": "Relating to the income tax treatmen of nonrefundable capital contributions to Federal National Mortgage Association", "1045": "A bill to protect the health and safety of American consumers under the Federal Food, Drug, and Cosmetic Act from seafood contaminated by certain substances.", "1046": "To conserve the United States fish and aquatic communities through partnerships that foster fish habitat conservation and improve the quality of life for the people of the United States, and for other purposes.", "1047": "A bill ratifying and confirming an agreement by the Secretary of the Interior providing for the issuance of a lifetime grazing permit to the Gray family now consisting of Jack Gray, Henry Gray, and Robert Louis Gray, relating to the grazing of cattle within the confines of the Organ Pipe Cactus National Monument.", "1048": "A bill to reauthorize and revise chapter 2 of the Education Consolidation and Improvement Act of 1981 in order to establish priorities of educational assistance, to authorize a teacher training and improvement program, and for other purposes.", "1049": "To provide a program in the Department of Agriculture under which the Federal Government, in partnership with the governments of the States, will assist in the provision of adequate housing for migratory agricultural workers", "1050": "To increase the fees of witnesses in the United States courts and before United States commissioners, and for other purposes.", "1051": "To authorize the establishment of the site of the discovery of San Francisco Bay as a national historic site, and for other purposes", "1052": "A bill to authorize the Hoosier Automobile and Truck National Heritage Trail Area.", "1053": "Authorizing the city of Chester, Illinois, to reconstruct, repair, or improve a toll bridge across the Mississippi River at or near Chester, Illinois.", "1054": "A bill to establish a uniform nationwide standard governing classifications based upon gender.", "1055": "To protect the civil rights of individuals by establishing a Commission on Civil Rights in the Executive Branch of the Government, a Civil Rights Division in the Department of Justice, and a Joint Congressional committee on Civil Rights, to strengthen the", "1056": "To authorize appropriations for completing the construction of the Inter-American Highway, and for other purposes", "1057": "A bill to amend title 23 of the District of Columbia Code with respect to the release or other disposition prior to and after trial of persons charged with criminal offenses.", "1058": "To amend title 28, United States Code, relating to annuities of widows of Supreme Court Justices", "1059": "To establish the Southwest Montana Heritage and Recreation Area in the State of Montana.", "1060": "To amend title XVIII to provide for a 5-year extension of the authorization for appropriations for certain Medicare rural grants.", "1061": "To require certain semiautomatic pistols manufactured, imported, or sold by Federal firearms licensees to be capable of microstamping ammunition.", "1062": "To amend the statutes relatingto crop loans, parity prices of agricultural products and conservation of natural resources, to promote conservation of soil fertility, to provide for benefit payments to producers for conservation practices, to provide far l", "1063": "A bill to amend the Commercial Fisheries Research Development Act of 1964 in order to amend the formula for calculating yearly apportionments to the States of funds available under such act.", "1064": "A bill to extend the authorization of appropriations of the National Historical Publications and Records Commission for 6 years.", "1065": "A bill to provide for an accelerated program for the recovery of energy from municipal wastes, and for other purposes.", "1066": "A bill to provide for the improvement of the waterway between Barataria Bay, La., and the Gulf of Mexico", "1067": "To provide $4,000,000,000 in new funding through bonding to empower States to undertake significant residential and commercial structure demolition projects in urban and other targeted areas, and for other purposes.", "1068": "To consent to an amendment of the Pacific marine fisheries compact", "1069": "To prohibit registration of firearms already issued legally and to protect citizens against unconstitutional seizure of private weapons", "1070": "A bill to provide that the fiscal year of the United States shall coincide with the calendar year.", "1071": "Granting the consent of the Congress to the State of Maine to negotiate and enter into an agreement with the Dominion of Canada relating to the construction of a certain road and for other purposes.", "1072": " A bill to strengthen fisheries research through the imposition of fees on the harvesting and processing of fish within the exclusive economic zone and through the licensing of recreational fishing within such zone.", "1073": "Relating to the exchange of certain private and Federal properties within the authorized boundaries of Acadia National Park, in the State of Maine, and for other purposes", "1074": "A bill to repeal the provisions of the Highway Revenue Act of 1956 requiring certain adjustments of apportionments depending upon the amount of funds available in the highway trust fund", "1075": "To provide aid for persons who served in the United States merchant marine during World War 17, and for other purposes", "1076": "A bill to provide for programs to maintain and develop markets for United States agricultural commodities, and for other purposes.", "1077": "To provide for a referendum on the political status of Puerto Rico.", "1078": "To amend the Clean Air Act to impose certain requirements on areas upwind of ozone nonattainment areas, and for other purposes.", "1079": "A bill to require the labeling of electrical appliances with respect to their comparative efficiency in the use of electricity and to provide for the establishment of minimum standards of efficiency for such appliances.", "1080": "To reform the medical liability system, improve access to health care for rural and indigent patients, enhance access to affordable prescription drugs, and for other purposes.", "1081": "A bill to amend part G of title I of the Omnibus Crime Control and Safe Streets Act of 1968 to allow railroad police officers to attend the Federal Bureau of Investigation National Academy for law enforcement training.", "1082": "A bill to provide for a highway bridge across the Little Missouri River at the Garrison Reservoir", "1083": "A bill to authorize a national program to encourage dam safety.", "1084": "A bill to repeal certain provisions of the Federal Lands Recreation Enhancement Act.", "1085": "To modernize the Federal Home Loan Bank System to meet the needs of a changing housing finance industry, and to enhance the safety, soundness, and future of the Federal Home Loan Bank System.", "1086": "A bill to amend section 119(d) of the Housing and Community Development Act of 1974.", "1087": "To amend the Internal Revenue Code of 1954 and the Tax Reform Act of 1969 regarding the treatment of charitable contributions", "1088": "A bill to provide for the transfer to the Department of Agriculture of the fertilizer research facilities of the Tennessee Valley Authority, and for other purposes", "1089": "A bill to improve the electric generating efficiency of joint Federal-civilian pooling practices in Alaska and for other purposes.", "1090": "To provide for the construction of minimum basic recreation facilities inthe Owyhee Reservoir area, Oregon, and for other purposes.", "1091": "To authorize a program of research, development, and demonstration projects, for non-air-polluting motor vehicles", "1092": "To consent to the Interstate Compact on Air Pollution between the States of Ohio and West Virginia", "1093": "To provide for the establishment of the Lake Erie Western Basin International Wildlife Refuge in the States of Ohio and Michigan, and for other purposes.", "1094": "To improve access to emergency medical services, and for other purposes.", "1095": "To amend section 113 (b) (1) (B) of the Internal Revenue Code with respect to the adjustment of the basis of property for depreciation, obsolescence, amortization, and depletion", "1096": "To amend the National Traffic and Motor Vehicle Safety Act of 1966 in order to promote competition among motor vehicle manufacturers in the design and production of safe motor vehicles having greater resistance to damage, and for other purposes", "1097": "To require institutions of higher education to make full refunds of tuitions and fees paid by members of the Armed Forces and National Guard called to active duty or active service during a war or national emergency.", "1098": "To declare a certain portion of Back Cove at Portland, Maine, to be nonnavigable water of the United States.", "1099": "Conferring jurisdiction upon the Court of Claims of the United States to consider and render judgment on the claim of the Cuban American Sugar Co. against the United States", "1100": "To provide penalties for membership in the Communist Party, and to permit the compelling of testimony relating to such membership and the granting of immunity from prosecution in connection therewith.", "1101": "A bill to establish a Department of Social, Economic, and Natural Resources Planning in the executive branch of the Federal Government.", "1102": "A bill to suspend temporarily the duty on Basic Violet 1.", "1103": "To direct the Secretary of the Armey to convey certain real property in the vicinity of the Lewisville Dam in Denton County, Texas, to the persons from whom the United States acquired the property.", "1104": "A bill to provide grants for cardiopulmonary resuscitation (CPR) training in public schools.", "1105": "To amend the act of July 26, 1954, to establish a National Advisory Council on Education", "1106": "A bill to impose a tax on windfall profits by producers of crude oil.", "1107": "To establish a Livestock Identification Board to create and implement a mandatory national livestock identification system.", "1108": "To. amend the Internal Revenue Code of 1954 to authorize an incentive tax credit allowable .with respect to facilities to control water and air pollution, to. encourage the construction of such facilities, and to permit the amortization of the cost of constructing such facilities within a period of from 1 to 5 years", "1109": "To provide mortgage payment assistance for certain employees who are separated from employment.", "1110": "A bill to promote the development and conservation of certain resources in the submerged coastal lands adjacent to the shores of the United States", "1111": "To take certain Federal lands in Tennessee into trust for the benefit of the Eastern Band of Cherokee Indians, and for other purposes.", "1112": "To guarantee that every employee of Federal Government shall have the right to refain from union activity.", "1113": "To amend the National Energy Conservation Policy Act to provide for additional energy conservation measures at all Federal agencies.", "1114": "A bill to designate certain lands in the Shenandoah National Park, Va., as wilderness.", "1115": "To provide for 2 demonstration projects to study the effect of allowing States to extend medicaid coverage to certain low-income families not otherwise qualified to receive medicaid benefits.", "1116": "To amend the Internal Revenue Code to exempt from the manufacturers excise tax certain automobiles furnished without charge to schools for use in driver training programs", "1117": "To amend title 18 to penalize the use of firearms in all crimes and to forbid plea bargaining in connection with such crimes", "1118": "To provide grants for cardiopulmonary resuscitation (CPR) training in public schools.", "1119": "A bill to prevent evasion of the meat import law by including within the yearly quotas established thereunder meat entered into foreign trade zones and insular possessions for processing into different products before importation into the United States.", "1120": "To provide grants to States to develop unified State health care plans and to authorize a single Federal payment to a State to provide services under such a plan instead of under the medicare, medicaid, and other Federal health care programs.", "1121": "A bill to assist volunteer fire companies in coping with the precipitous rise in fuel prices.", "1122": "To provide for representation of independent labor organizations on the Wage Stabilization Board, Economic Stabilization Agency, and for other purposes", "1123": "A bill to establish the Morris K. Udall Scholarship and Excellence in National Environmental Policy Foundation, and for other purposes.", "1124": "A bill to name the lake located behind Lower Monumental Lock and Dam, Washington, Lake Herbert G. West.", "1125": "To establish a grant program to enhance existing secondary education programs for the purpose of teaching high school students about the Constitution of the United States and the constitutions of the individual States.", "1126": "A bill to prescribe the conditions with respect to affirmative action programs required of Federal grantees and contractors in complying with nondiscrimination programs, to prescribe the necessary requirements for a finding of discrimination in certain actions brought on the basis of discrimination in employment and to prescribe reasonable limits on the collection of data relating to race, color, religion, sex, or national origin.", "1127": "To amend section 2312 of title 18, United States Code, to permit a person enforcing that section to stop a motor vehicle to inspect the serial number of its body and motor if he has reason to suspect that the motor vehicle has been stolen", "1128": "Granting the consent of Congress to a compact or agreement between the Commonwealth of Pennsylvania and the State of New Jersey concerning a bridge across the Delaware River to provide a connection between the Pennsylvania Turnpike System and the New Jers", "1129": "To provide for the compulsory inspection of poultry and poultry products so as to prohibit the movement in interstate or foreign commerce of unsound, unhealthful, diseased, unwholesome, or adulterated poultry or poultry products.", "1130": "Transferring the Heart Mountain division of the Shoshone Federal reclamation project to the Missouri River Basin project.", "1131": "To amend title 28, United States Code, to prohibit racially discriminatory capital sentencing.", "1132": "To require that a portion of the amounts made available for housing programs for the homeless be used for housing for homeless veterans.", "1133": "A bill to expand the Timucuan Ecological and Historic Preserve, Florida.", "1134": "A bill to amend the Packers and Stockyards Act. 1921, with respect to the charging of brand inspection fees", "1135": "To provide for payments in lieu of taxes on lands in national forests", "1136": "A bill to permit the prospecting for and the development and utilization of mineral resources of national forest lands, or lands administered for national forest purposes or in connection with national forest programs, which are not subject to the operati", "1137": "A bill to provide for the DuNoir Basin Addition to the Washakie Wilderness.", "1138": "A bill to require studies and guidelines for breast cancer screening for women ages 40-49, and for other purposes.", "1139": "A bill to require the Secretary of Agriculture to provide crop disaster assistance to agricultural producers that suffered qualifying quantity or quality losses for the 2008 crop year due to a natural disaster.", "1140": "To establish pilot programs that provide for emergency crisis response teams to combat elder abuse.", "1141": "A bill to amend the Commercial Motor Vehicle Safety Act of 1986 to provide that the requirements for the operation of commercial motor vehicles will not apply to the operation of firefighting vehicles.", "1142": "To provide that the highway running from Tampa, Fla., and St. Petersburg, Fla., through Bradenton, Fla., Sarasota, Fla., Venice, Fla., Punts Gorda, Fla., Fort Myers, Fla., Naples, Fla., and Miami, Fla., to Fort Lauderdale, Fla., and Homestead, Fla., shall", "1143": "To direct the Equal Employment Opportunity Commission to prepare a report about how the Fair Labor Standards Act of 1938 has been used by public and private sector employers to foster or exacerbate pay inequity.", "1144": "A bill to extend and amend the Elementary and Secondary Education Act of 1965 and related programs, to establish programs to promote the improved achievement of children in basic skills and to assist State and local educational agencies to enhance the qua", "1145": "To authorize the Secretary of the Interior to undertake, where necessary, cooperative programs with respect to the control of fish in the Great Lakes which ascend streams to spawn", "1146": "To provide minimum standards in connection with certain Federal finan,ciial assistance with respect to correctional institutions and facilities", "1147": "A bill to improve transit service to rural areas, including for elderly and disabled.", "1148": "A bill to provide special rules for purposes of the Internal Revenue Code of 1954 for the accrual of, and carryback of losses from, deductions for asbestos product liabilities in order to protect asbestos workers, and for other purposes.", "1149": "To amend the Solid Waste Disposal Act to prohibit the international export and import of certain solid waste.", "1150": "A bill to extend the application deadline for assistance under the Impact Aid Program.", "1151": "To provide a credit against the Federal income tax for additional State and local taxes imposed for school purposes", "1152": "A bill to establish certain requirements relating to the provision of services to minors by family planning projects under title X of the Public Health Service Act.", "1153": "To provide for the disposition of geothermal steam by the Secretary of the Interior, and for other purposes", "1154": "A bill to amend the Federal Reserve Act to increase the number of class C directors of Federal Reserve banks.", "1155": "To amend the Federal-Aid High way Act of 1956 to permit States having toll and free roads, bridges, and tunnels designated as part of the National Sys tem of Interstate and Defense Highways to designate other routes for inclusion in the Interstate System", "1156": "A bill to provide that certain Bureau of Land Management land shall be held in trust for the Pueblo of Santa Clara and the Pueblo of San Ildefonso in the State of New Mexico.", "1157": "To amend the Tariff Schedules of the United States to apply to fresh grapes imported between May 1 and June 30 of each year the same rate of duty as applies to grapes imported between February 15 and March 31", "1158": "A bill to amend the Vocational Act of 1963 to improve the administration of postsecondary vocational education programs.", "1159": "A bill to provide for a fair and equitable disposition to certain coastal states of certain federal outer continental shelf revenues.", "1160": "A bill to amend title I of the Omnibus Crime Control and Safe Streets Act of 1968 to provide a lump sum payment to public safety officers who become totally and permanently disabled as a result of a catastrophic injury sustained in the line of duty.", "1161": "A bill to make certain expenditures by the city of Huntsville, Ala., eligible as local grantsinaid for purposes of title I of the Housing Act of 1949.", "1162": "To provide for the transfer of administrative jurisdiction over certain public lands in the State of Oregon located within or adjacent to the Rogue River National Forest.", "1163": "A bill to amend section 17 of the Mineral Leasing Act of February 25, 1920, as amended", "1164": "A bill to amend chapter 131 of title 46, United States Code, relating to the Federal recreational boating safety program, and for other purposes.", "1165": "To amend title 39, United States Code, to establish incentives to encourage the greater use of recycled paper for mail matter.", "1166": "A bill to designate the Sheep Mountain Wilderness Area in the State of California.", "1167": "A bill to amend the Public Health Service Act, the Employee Retirement Income Security Act of 1974, and the Internal Revenue Code of 1986 to require that group and individual health insurance coverage and group health plans provide coverage for treatment of a minor child's congenital or developmental deformity or disorder due to trauma, infection, tumor, or disease.", "1168": "A bill to amend section 316(c) of the Agricultural Adjustment Act of 1938 to provide that leasing of flue-cured tobacco acreage-poundage marketing quotas after June 15 of any year be permitted only between farms on which at least 80 percent of the farm acreage allotment was planted for such year.", "1169": "A bill to permit a successor employer to include the amount of wages paid to an employee by his predecessor in computing the total amount of wages paid to such employee during a calendar year under the Federal Insurance Contributions Act and Federal Unemp", "1170": "A bill to provide that the individual mandate under the Patient Protection and Affordable Care Act shall not be construed as a tax.", "1171": "To amend the Help America Vote Act of 2002 to reimburse States for the costs incurred in establishing a program to track and confirm the receipt of voted absentee ballots in elections for Federal office and make information on the receipt of such ballots available by means of online access, and for other purposes.", "1172": "A bill to reserve certain lands on the public domain in Pima County, Arizona, for the use and benefit of the Papago Indians.", "1173": "To amend section 1701 of the Internal Revenue Code to provide that the tax on admissions shall not apply in the case of admissions to a planetarium, or a museum, or similar educational institutions", "1174": "To amend the weighted child count used to determine targeted grant amounts and education finance incentive grant amounts for local educational agencies under title I of the Elementary and Secondary Education Act of 1965.", "1175": "To amend the Internal Revenue Code of 1954 to,-extend the application of the investment credit to property used in possessions of the United States", "1176": "To permit the Secretary of the Interior to acquire by exchange lands in the Cuyahoga National Recreation Area that are owned by the State of Ohio.", "1177": "To provide for the establishment of national energy and environmental building retrofit policies for both residential and commercial buildings, and for other purposes.", "1178": "To prohibit discrimination in insurance coverage to victims of domestic violence, dating violence, sexual assault, or stalking.", "1179": "A bill to provide for the issuance of bonds payable in gold coin.", "1180": "A bill to authorize the reformulation of the Cedar Bluff Unit of the Pick-Sloan Missouri Basin Program, Kansas, to provide for the amendment of water service and repayment contracts.", "1181": "A bill to repeal the provision added by the Economic Recovery Tax Act of 1981 which treats investments by individual retirement plans in collectibles as distributions.", "1182": "To provide for the development of a systems architecture that can begin providing the essential data needed to understand and respond to global warming by 1995 in a cost-effective manner, and for other purposes.", "1183": "A bill to authorize the distribution within the United States of the USIA film entitled The March.", "1184": "To provide that certain public lands in Yuma and Maricopa Counties, Ariz., may be appropriated or disposed of under the public land laws subject to the right in the United. States to flood the lands in connection with the Painted Rock Reservoir project", "1185": "A bill to improve the international ocean commerce transportation system of the United States.", "1186": "To provide for further research relating to new and improved uses which offer expanding markets for farm products, and for other purposes.", "1187": "To amend the Radiation Exposure Compensation Act to improve compensation for workers involved in uranium mining, and for other purposes.", "1188": "A bill to promote the international deployment of clean technology, and for other purposes.", "1189": "A bill to amend section 24 of the Federal Power Act so as to provide that the States may apply for reservation for highway purposes of portions of power sites released for, entry, location, or selection", "1190": "To make clerical and technical amendments to section 404 of the Controlled Substances Act.", "1191": "To provide for an additional district judge in the District of Oregon.", "1192": "To amend title 18 sand title 28 of the United States Code with respect to the trial and review of criminal actions involving obscenity, and for other purposes", "1193": "To amend the Clean Air Act to reduce sulfur dioxide, nitrogen oxide, and mercury emissions, and for other purposes.", "1194": "A bill to establish a Meat, Poultry, and Eggs Inspection Agency to administer the Federal Meat Inspection Act, the Poultry Products Inspection Act, and the Egg Products Inspection Act, to expand the application of such Acts, to provide for the establishment of safe cooking standards for meat and poultry products, to improve scientific research and understanding of foodborne illnesses, and for other purposes.", "1195": "To authorize the appropriation of funds to be utilized by the Federal home loan banks for the purpose of adjusting the effective rate of interest charged by such banks on short-term and long-term borrowing on residential mortgages", "1196": "To provide for the extension of expiring term grazing permits for lands within the National Forest System pending the completion by the Forest Service of final agency action in connection with the renewal of such permits.", "1197": "To authorize the Secretary of Agriculture to provide cost share assistance to construct reservoir structures for the storage of water in rural areas, and for other purposes.", "1198": "To direct .the - Secretary of Interior to cooperate with the States of New York and New Jersey on a program to develop, preserve, and restore the resources of the Hudson. River and its shores and .to authorize certain necessary steps to be taken to .protect those resources from adverse Federal actions until the States and Congress shall have had an opportunity to act on that program", "1199": "To provide a correctional system for juvenile delinquents proceeded against in the courts of the United States, and for other purposes", "1200": "A bill to provide for uniform standards for trucks carrying freight in interstate commerce, and for other purposes.", "1201": "A bill to amend the Colorado River Storage Project Act and Public Law 87-483 to authorize the construction and rehabilitation of water infrastructure in Northwestern New Mexico, to authorize the use of the reclamation fund to fund the Reclamation Water Settlements Fund, to authorize the conveyance of certain Reclamation land and infrastructure, to authorize the Commissioner of Reclamation to provide for the delivery of water, and for other purposes.", "1202": "A bill to provide that Revenue Ruling 80-60 shall not require a change in the taxpayer's method of accounting for taxable years beginning before 1980.", "1203": "To amend the Controlled Substances Act to provide a mandatory death penalty for the killing of law enforcement officers in connection with certain drug-related offenses.", "1204": "A bill to provide for scientific frameworks with respect to recalcitrant cancers.", "1205": "To revive and reenact the act entitled An act cresting the 8t. Lawrence Bridge Commission and authorize said Commission and its successors to construct, maintain, and operate a bridge across the St. Lawrence River at or near Ogdensburg, New York, approv", "1206": "A bill to eliminate the buffer zone established in connection with the Pictured Rocks National Lakeshore, and for other purposes.", "1207": "A bill to establish a Federal Corporation with authority to purchase foreign crude oil and petroleum products for importation, and for other purposes.", "1208": "A bill to authorize the Federal Power Commission to allocate scarce supplies of natural gas.", "1209": "To amend the Clean Air Act to prohibit any regulation under such Act concerning the emissions of carbon dioxide from a fossil fuel-fired electric generating unit from taking effect until the Administrator of the Environmental Protection Agency makes certain certifications, and for other purposes.", "1210": "A bill to authorize the appropriation of funds to the Centers for Disease Control and Prevention for conducting or supporting research on firearms safety or gun violence prevention.", "1211": "A bill to repeal sections 302 through 308 of the Tax Equity and Fiscal Responsibility Act of 1982, which impose withholding on interest and dividends.", "1212": "A bill to amend the Second Supplemental Appropriation Act, 1961, relating to the lease of certain lands from the Isleta Indian Tribe for a seismological laboratory.", "1213": "To amend the act requiring evidence of certain financial responsibility and establishing minimum standards for certain passenger vessels in order to exempt certain vessels operating on inland rivers", "1214": "A bill to amend the Economic Recovery Tax Act of 1981 to allow an election of the unlimited marital deduction and the qualified terminable interest rules for estates of decedents dying after August 12, 1981, and before January 1, 1982.", "1215": "A bill to amend the Economic Stabilization Act, to establish objectives and standards governing imposition of controls after April 30, 1974, to create an Economic Stabilization Administration, to establish a mechanism for congressional action when the President fails to act.", "1216": "To assist in the provision of housing for low- and moderate-income families to promote orderly urban development, to improve living environment in urban areas, and to extend and amend laws relating to housing, urban renewal, urban mass transportation, and community facilities", "1217": "A bill to prohibit employment discrimination against parents and those with parental responsibilities, and for other purposes.", "1218": "A bill to require States and Indian tribes to designate specific highway routes for the transportation of hazardous materials and the long-distance transportation of solid waste.", "1219": "To provide for the development of a national urban growth policy, and to encourage and support the rational, orderly, efcient, and economic growth and development of our States, metropolitan areas, cities, counties, and towns, with emphasis upon the development of new communities and upon inner city development", "1220": "To establish an Office of Intercountry Adoptions within the Department of State, and to reform United States laws governing intercountry adoptions.", "1221": "A bill to provide for a biennial General Accounting Office audit of the housing programs of the Department of Housing and Urban Development to promote more efficient administration of such programs.", "1222": "To require the Corps of Engineers to take into account all available hydrologic data in conducting Missouri River basin operations.", "1223": "To amend the Internal Revue Code of 1954 to allow a taxpayer with adjusted gross income of.$7,500 or less a deduction for the expenses of tuition and certain other fees and charges paid by him for his education or theeducation of his spouse or any of his ", "1224": "A bill to authorize the Secretary of Agriculture to accept the donation of certain land in the Mineral Hill-Crevice Mountain Mining District in the State of Montana, and for other purposes.", "1225": "To confirm full title to Winter Island in the city of Salem in the Commonwealth of Massachusetts", "1226": "To establish formally the United States Military Cancer Institute, to require the Institute to promote the health of members of the Armed Forces and their dependents by enhancing cancer research and treatment, to provide for a study of the epidemiological causes of cancer among various ethnic groups for cancer prevention and early detection efforts, and for other purposes.", "1227": "To withdraw the Tusayan Ranger District and Federal land managed by the Bureau of Land Management in the vicinity of Kanab Creek and in House Rock Valley from location, entry, and patent under the mining laws, and for other purposes.", "1228": "A bill to amend the Equal Access to Justice Act to include appeals to a board of contract appeals.", "1229": "A bill to amend the act relating to the importation of adult honey bees.", "1230": "To authorize the disposal of100,000 short tons of lead from the national stockpile and the supplemental stockpile", "1231": "To amend the National Highway System Designation Act of 1995 to increase the number of States that may participate in the State infrastructure bank pilot program authorized by that Act.", "1232": "To authorize the transfer of three units of the Fort Belknap Indian irrigation project to the landowners within the project", "1233": "A bill to amend the Safe, Accountable, Flexible, Efficient Transportation Equity Act: A Legacy for Users to improve a pilot program on addressing shortages of long-term parking for commercial motor vehicles, and for other purposes.", "1234": "A bill to establish regional dairy marketing areas to stabilize the price of milk and support the income of dairy producers.", "1235": "To provide that a minister may exclude from gross income that part of his compensation which is paid to him in lieu of furnishing him a dwelling house", "1236": "A bill to amend sections 2, 4, and 8 of the Migratory Bird Hunting Stamp Act of March 16, 1934 (48 Stat. 451; 16 U. S. C. 718b), as amended, and section 5 of the Migratory Bird Conservation Act of February 18, 1929 (45 Stat. 1222; 16 U. S. C. 715), as ame", "1237": "To modify the project for flood control below Chatfield Dam on the South Platte River, Colo., authorized by the Flood Control Act of 1950", "1238": "To provide for the establishment of the Upper Mississippi River National (Recreation Area, and for other purposes", "1239": "To amend titles I and II of the Elementary and Secondary Education Act of 1965 to strengthen connections to early childhood education programs, and for other purposes.", "1240": "To provide for technical assistance and research relating to the control of health hazards and the prevention of accidental deaths and injuries associated with underwater diving", "1241": "A bill to promote access to health care services in rural areas.", "1242": "A bill to establish felony violations for the failure to pay legal child support obligations, and for other purposes.", "1243": "To amend and supplement the Federal Aid Road Act, approved July 11, 1916 (39 Stat. 355), as amended and supplemented, to authorize appropriations for continuing the construction of highways, and for other purposes", "1244": "A bill to provide for the fair treatment of the Federal judiciary relating to compensation and benefits, and to instill greater public confidence in the Federal courts.", "1245": "A bill to provide for division and for the disposition of the funds appropriated to pay a judgment in favor of the Blackfeet Tribe of the Blackfeet Indian Reservation, Montana, and the Gros Ventre Tribe of the Fort Belknap Reservation, Montana, in Indian ", "1246": "A bill to modify the royalty rates applicable to onshore and offshore oil and gas leases.", "1247": "To require the Secretary of Education to review and revise the guidelines relating to the Principles of Effectiveness criteria developed pursuant to the Safe and Drug-Free Schools and Communities Act to improve State and local prevention programs and activities carried out under such Act, and for other purposes.", "1248": "A bill entitled The College Tuition Tax Relief Act of 1977.", "1249": "A bill to amend the Gramm-Leach-Bliley Act to provide an exception to the annual written privacy notice requirement.", "1250": "To extend the period during which certain property is required to be placed in service to qualify for transition relief under section 203 of the Tax Reform Act of 1986 and to extend the period during which certain bonds may be issued under section 1317 of the Tax Reform Act of 1986.", "1251": "To establish a California Ocean Protection Zone, and for other purposes.", "1252": "To authorize a program of research and development to encourage the use of underground transmission of electrical power and to undertake projects to evaluate and demonstrate the economical and technical feasibility of such transmission", "1253": "To direct the Secretary of Labor to establish a demonstration program to improve access to public employment and job training programs.", "1254": "To amend title 5, United States Code, to prohibit the sale or other distribution to the public by the Secretary of the Treasury of lists of names and addresses under his ,jurisdiction and control, and for other purposes", "1255": "To authorize the Secretary of Agriculture to quitclaim 2 acres of land near Muirkirk, Md., to the Queens Chapel Methodist Church", "1256": "An original bill to amend Title I of the Marine Protection, Research, and Sanctuaries Act, as amended.", "1257": "A bill to promote the development of technologies which will enable fuel cells to use alternative fuel sources.", "1258": "To require the Secretary of Energy to study causes of the recent home heating fuel price spikes in the Northeast and to create a 10,000,000 barrel heating oil reserve in the Northeast.", "1259": "To improve the administration, management, and law enforcement capabilities of the Coast Guard, and for other purposes.", "1260": "Authorizing vessels of Canadian registry to transport iron ore between United States ports on the Great Lakes during 1952, and for other purposes.", "1261": "A bill to create an Office of Emergency Fuel Allocation, to authorize a system for the allocation of crude oil and refined petroleum products, and for other purposes.", "1262": "To amend the Federal Power Act to authorize a State to regulate the sale at wholesale of electric energy generated, transmitted, and distributed solely within that State, and for other purposes.", "1263": "A bill to amend the Controlled Substances Act and Controlled Substances Import and Export Act to provide mandatory minimum sentences for violations involving large quantities of marihuana, cocaine, and opium derivatives, and to establish conditions under which certain individuals may be denied bail.", "1264": "Providing for the collection of internal-revenue taxes and the administration of the internal-revenue laws by an agency independent of the Department of the Treasury", "1265": "A bill to conserve global bear populations by prohibiting the importation, exportation, and interstate trade of bear viscera and items, products, or substances containing, or labeled or advertised as containing, bear viscera, and for other purposes.", "1266": "To amend the Mutual Educational and Cultural Exchange Act of 1961 to provide that works of art and other materials temporarily imported to further the purposes of such act shall be immune from judicial process", "1267": "A bill to support the price of manufacturing milk at not less than 85 per centum of the parity for the marketing year 1971-1972", "1268": "A bill to extend the authorization for the Upper Delaware Citizens Advisory Council for an additional ten years.", "1269": "To amend the Social Security Act to require employers to make an approved basic health care plan available to their employees, to provide a family health insurance plan for low-income families not covered by an employer's basic health care plan, to facilitate provision of health services to beneficiaries of the family health insurance plan by health maintenance organizations, by prohibiting State law interference with such organizations providing such services, and for other purposes", "1270": "To amend section 319 of title 23, United States Code, relating to landscaping and scenic enhancement, to authorize planting trees along the rights-of-way of Federal-aid highways.", "1271": "To amend the Omnibus Crime Control and Safe Streets Act of 1968 to provide incentives to States and units of local government under the Edward Byrne Memorial Justice Assistance Grant Program for providing certain services to victims of sexual assault or rape, and for other purposes.", "1272": "To amend the provisions of the Perishable Agricultural Commodities Act, 1930, relating to practices in the marketing of perishable agricultural commodities", "1273": "To provide for the accelerated development of secondary school education in the natural sciences in the several States and Territories", "1274": "A bill to repeal section 14(b) of the National Labor Relations Act.", "1275": "A bill to create an additional judicial district for the State of Florida, to be known as the middle district of Florida.", "1276": "To provide for the release of water from the marketable yield pool of water stored in the Ruedi Reservoir for the benefit of endangered fish habitat in the Colorado River, and for other purposes.", "1277": "To amend the Military SelectiveService Act of 1967 in order to providefor the deferment of police officers fromtraining and service under such act.1582", "1278": "To-promote International trade in agricultural commodities, to combat hunger- and malnutrition, to further economic development, and for other purposes.", "1279": "A bill to preserve the effectiveness of Secret Service protection by establishing a protective function privilege, and for other purposes.", "1280": "A bill to extend the provisions of the Automobile Dealers Day in Court Act to manufacturers of and dealers in tractors, farm equipment, and farm implements, and for other purposes.", "1281": "To amend the Water Quality Act of 1987 relating to the treatment works being constructed by the International Boundary and Water Commission in San Diego, California.", "1282": "A bill to ensure that child employees of traveling sales crews are protected under the Fair Labor Standards Act of 1938.", "1283": "A bill to amend and clarify certain regulatory authorities of the Federal Government over work and activities in navigable waters.", "1284": "To repeal provisions of the Clean Air Act dealing with acid rain.", "1285": "To provide for the security of public transportation systems in the United States, and for other purposes.", "1286": "A bill to encourage farmers to establish shelterbelts for the purpose of reducing soil erosion, protecting crops and livestock, and establishing wildlife habitat areas.", "1287": "A bill to amend title IV of the Housing Amendments of 1955 with respect to the acquisition by the Secretary of Defense or his designee of certain housing constructed and insured under section 608 of the National Housing Act.", "1288": "A bill to promote energy conservation by providing for daylight saving time on an expanded basis, and for other purposes.", "1289": "To waive temporarily the Medicaid enrollment composition rule for certain health maintenance organizations.", "1290": "To facilitate the development of markets for alternative fuels and Ultra Low Sulfur Diesel fuel through research, development, and demonstration and data collection.", "1291": "A bill to authorize and direct the Secretary of Commerce to study applications of solar energy, to establish a system of grants for solar energy research, and to establish the Solar Energy Data Bank.", "1292": "A bill to amend the Migratory Bird Conservation Act to provide that no land contained in the national wildlife refuge system shall be sold, transferred for any other use, or otherwise disposed of without the approval of the Migratory Bird Commission, and ", "1293": "To amend the Child Abuse Prevention and Treatment Act to enable State child protective services systems to improve the identification and assessment of child victims of sex trafficking, and for other purposes.", "1294": "A bill to strengthen the security and the economic and cultural progress of the Nation through Federal assistance for improved student opportunities in mathematics, science, technology, and foreign languages in the elementary and secondary schools.", "1295": "To amend the act of October 9, 1940 ( 54 Stet. 1030. 1039 ), in order to increase the periods for which agreements for the operation of certain concessions may be granted at the Washington National Airport, and for other purposes", "1296": "To amend the Disaster Assistance Act of 1989 to provide assistance to agricultural producers suffering from earthquakes.", "1297": "A bill to amend section 306(a)(7) of the Consolidated Farm and Rural Development Act to modify the definition of the terms rural and rural area for certain purposes.", "1298": "A bill to provide sufficient funds for the research necessary to enable an effective public health approach to the problems of youth suicide and violence, and to develop ways to intervene early and effectively with children and adolescents who suffer depression or other mental illness, so as to avoid the tragedy of suicide, violence, and longterm illness and disability.", "1299": "To provide for coverage of hormone replacement therapy and alternative treatments for hormone replacement therapy (HRT) under the Medicare and Medicaid programs, group health plans and individual health insurance coverage, and other Federal health insurance programs.", "1300": "To amend section 302 (c) of the Labor-Management- Relations -Act, 1947, to permit the participation of retired employees of employers, employees of certain labor organizations and employees of certain trust funds as well as certain self-employed persons to participate as beneficiaries of welfare and pension trust funds", "1301": "To amend the Federal Crop Insurance Act to make available to producers a supplemental coverage option based on both an individual yield and loss basis and an area yield and loss basis in order to allow producers to cover all or a portion of their deductible under the individual yield and loss policy, to improve the accuracy of actual production history determinations, and for other purposes.", "1302": "To amend the Clean Air Act to provide that greenhouse gases are not subject to the Act, and for other purposes.", "1303": "A bill to ensure that the Federal Reserve conducts its policies to ensure long-term price stability and a low rate of inflation.", "1304": "A bill to require the Administrator of the Environmental Protection Agency to conduct a study of the measures available to reduce the adverse effect discarding or dumping of plastics on land and in the waters have on the environment, including the effects on fish and wildlife; to make recommendations for eliminating or lessening such adverse effects; and to require the Administrator of the Environmental Protection Agency to control the pollution of the environment caused by the discarding of plastics on the land and in water.", "1305": "To provide for the denial of bail to defendants in certain criminal cases involving crimes affecting the national security", "1306": "A bill to provide for repayment of certain sums advanced to providers of services under title XVIII of the Social Security Act.", "1307": "To recognize the importance of the Veterans' Administration Medical School Assistance and Health Manpower Training Act of 1972 in addressing shortfalls in the number of physicians and other health care professionals employed in the health care system of the Department of Veterans Affairs, to reauthorize the program of grants to medical schools affiliated with the Department, and for other purposes.", "1308": "To authorize an employer to pay a youth employment opportunity wage to a person under twenty years of age from May through September under the Fair Labor Standards Act of 1938, and for other purposes.", "1309": "A bill to repeal medicare catastrophic coverage provisions effective in years after 1989 and the supplemental medicare premium, and for other purposes.", "1310": "A bill to prohibit the Secretary of Energy from enforcing regulations pertaining to certain battery chargers.", "1311": "To amend the National Housing Act to eliminate interest rate ceilings on Federal Housing Administration and Veterans Administration insured Mortgages", "1312": "To amend the false claims provisions of title 31, United States Code, with respect to health care programs, and for other purposes.", "1313": "To permit State agreements for coverage under the hospital insurance program for the aged", "1314": "To amend the Clean Air Act relating to greenhouse gases, and for other purposes.", "1315": "To provide loans and grants for fire sprinkler retrofitting in nursing facilities.", "1316": "To authorize the construction of Department of Veterans Affairs medical facilities in Brevard County and Orange County, Florida, and for other purposes.", "1317": "A bill to amend certain provisions of the District of Columbia Code in order to eliminate their sex discriminatory aspects.", "1318": "To amend title 5, United States Code, to clarify laws relating to disclosure of records maintained on individuals.", "1319": "To provide for monitoring of aircraft air quality, to require air carriers to produce certain mechanical and maintenance records, and for other purposes.", "1320": "To provide for the control and prevention of erosion and sediment damage on rivers and streams, and for other purposes", "1321": "A bill to enhance the early warning reporting requirements for motor vehicle manufacturers.", "1322": "To permit the city of Philadelphia to further develop the Hog Island tract as an air, rail, and marine terminal by directing the Secretary of Commerce to release the city of Philadelphia from the fulfillment of certain conditions contained in the existing", "1323": "To provide for the training of nurses for the Armed Forces, governmental and civilian hospitals, health agencies, and defense industries, through grants to institutions providing such training and for other purposes", "1324": "A bill to amend the Outer Continental Shelf Lands Act of 1953 to expedite the delivery of oil and natural gas from OCS Lease Sale Number 40 to United States markets.", "1325": "A bill to amend section 213 of the Internal Revenue Code of 1954 to provide that certain expenses of child adoption shall be treated as medical expenses.", "1326": "To amend the Internal Revenue Code of 1954 .to provide for an amortization deduction and an increased tax credit for certain underground electrical transmission lines, and for other purposes", "1327": "A bill to encourage and assist private enterprise to provide adequate housing in urban poverty areas for low-income and lower middle income persons.", "1328": "A bill to establish a national program for research, development, and demonstration in nonnuclear energy sources and for the coordination and financial supplementation of Federal energy research and development.", "1329": "To ensure the protection of the coastal marine coral environment off the west coast of Puerto Rico by requiring the Director of the United States Geological Service to assess the environmental economic costs and benefits of relocating an existing wastewater treatment plant outfall to a deepwater location, and for other purposes.", "1330": "A bill to establish an office of rural health within the Department of Health, Education, and Welfare, and to assist in the development and demonstration of rural health care delivery models and components.", "1331": "To reduce the maximum speed limit on certain rural roads to 55 miles per hour, and for other purposes.", "1332": "To require certain improvements in the Transportation Security Administration's PreCheck expedited screening program, and for other purposes.", "1333": "A bill to provide an incentive for private industry to establish programs to educate and train individuals in needed skills by allowing a credit against income tax for the expenses of conducting such programs.", "1334": "To codify without substantive change laws related to transportation and to improve the United States Code.", "1335": "A bill to appropriate funds for basic scientific and medical research on acquired immune disorders and related opportunistic infections.", "1336": "A bill to authorize an appropriation for the reconstruction and repair of roads and other public facilities in the States of North Dakota and Minnesota which were destroyed or damaged by recent floods", "1337": "A bill to provide for the establishment of the Bandon Marsh National Wildlife Refuge, Coos County, State of Oregon.", "1338": "To permanently increase the conforming loan limits for the Federal Home Loan Mortgage Corporation and the Federal National Mortgage Association and the FHA maximum mortgage amount limitations.", "1339": "A bill to protect a womens right to determine whether and when to bear a child or end a pregnancy by limiting restrictions on the provision of abortion services.", "1340": "A bill to prevent foreign states that do business, issue securities, or borrow money in the United States, and fail to satisfy United States court judgments totaling $100,000,000 or more based on such activities, from inflicting further economic injuries in the United States, from undermining the integrity of United States courts, and from discouraging responsible lending to poor and developing nations by undermining the secondary and primary markets for sovereign debt.", "1341": "To provide an additional judge for the southern district of Florida", "1342": "To amend section 79 of the Internal Revenue Code of 1954 with respect to the amount includible in gross income by reason of group-term life insurance purchased for employees", "1343": "To amend title 23, United States Code, to allow a State to use as a credit toward the non-Federal share requirement for funds made available to carry out such title the Appalachian development highway system program.", "1344": "To amend the Federal Water Pollution Control Act (the Clean Water Act) to authorize appropriations in each of fiscal years 1994 through 1998 for the construction of wastewater treatment facilities to serve U.S. Colonias, to provide water pollution control in the vicinity of the international boundary between the United States and Mexico.", "1345": "A bill to authorize a feasibility study for additional hydro-electric capacity.", "1346": "A bill to provide assistance to the States for the construction, acquisition, and renovation of correctional institutions and facilities.", "1347": "A bill to promote the national security and stability of the economy of the United States by reducing the dependence of the United States on oil through the use of alternative fuels and new technology, and for other purposes.", "1348": "A bill to establish a Federal Courts Study Commission and a Federal Courts Advisory Council on the Future of the Judiciary.", "1349": "A bill to provide States with assistance to establish clearinghouses to locate missing children.", "1350": "To provide incentives for investment in research and development for new medicines, to enhance access to new medicines, and for other purposes.", "1351": "To establish a National Cancer Authority and to authorize international programs and joint ventures in order to conquer cancer at the earliest possible date", "1352": "To amend title 28, United States Code, to allow judges who are at least 62 years of age to retire if they have served for at least 25 years.", "1353": "To establish an immediate program to aid in reducing the public debt by providing that certain receipts from the sale of capital assets of the Government shall be used for such purpose", "1354": "A bill to provide for loans to individuals for the purpose of enabling them to obtain a college or university education.", "1355": "A bill to provide for a 5-year carryback of certain net operating losses and to suspend the 90 percent alternative minimum tax limit on certain net operating losses.", "1356": "A bill to authorize the promulgation of a model building code to enhance recycling and for other purposes.", "1357": "To .amend title XVIII of the Social .Security Act to permit payment thereunder, in the case of an individual otherwise eligible for home health services of the type which may be provided away from his home, .far the costs of transportation to and from the place where such services are provided", "1358": "A bill to authorize appropriations to carry out the Endangered Species Act of 1973, as amended, through fiscal year 1984.", "1359": "A bill establishing a program for the demonstration and development of technologies for commercial application through the Clean Coal Technology Reserve, and for other purposes.", "1360": "A bill to establish a Commission and Advisory International Rules of Judicial Procedure.", "1361": "A bill to prohibit any increase in fares charged by mass transmit systems for a 1-year period and to provide for grants to any mass transit system which may be adversely affected by such prohibition of fare increase.", "1362": "A bill to allow certain emergency relief amounts to be made available to the Federal Highway Administration to use for disasters occurring in calendar year 2013.", "1363": "A bill to authorize States to exempt certain nonprofit housing organizations from the licensing requirements of the S.A.F.E. Mortgage Licensing Act of 2008.", "1364": "A bill to reimburse certain persons recruited in the State of Wyoming in connection with the athletes in temporary employment as agricultural manpower program for certain travel and other expenses incurred by them while participating in such program", "1365": "To amend title 10, United States Code, to permit a Representative in Congress to nominate as a candidate to a service academy a person domiciled at any place in the State from which such Representative is elected", "1366": "To provide for the identification of certain dangerous railroad locations, and for the safety of passenger operations at such locations.", "1367": "A bill to amend the Social Security Act to encourage philanthropic support for nonprofit hospitals.", "1368": "To strengthen and improve Federal programs of assistance for preschool, elementary, and secondary education by combining and extending authorizations, by providing for effective State administration, and by authorizing a flexible program of grants on a continuing basis", "1369": "A bill to establish a National Infrastructure Fund to provide funds for interest-free loans to State and local governments for construction and improvement of highways, bridges, water supply and distribution systems, mass transportation facilities and equipment, and wastewater treatment facilities, and for other purposes.", "1370": "A bill to amend section 202 of the Clean Air Act with respect to motor vehicle emission standards.", "1371": "A bill to amend the act providing financial assistance to local educational agencies for the education of children of low-income families in order to provide financial assistance for the education of orphans and other children lacking parental support", "1372": "To implement a demonstration project under titles XVIII and XIX of the Social Security Act to examine the costs and benefits of providing payments for comprehensive coordinated health care services provided by purpose-built, continuing care retirement communities to Medicare beneficiaries.", "1373": "To amend the Railroad Retirement Act of 7937, as amended, so as to provide full annuities, at compensation of half salary or wages based oil the five highest years of earnings, for individuals who hate completed 35 years of service or have attained the ag", "1374": "A bill to govern the disclosure of certain financial information by financial institutions to government agencies, to protect the constitutional rights of citizens of the United States, and to prevent unwarranted invasions of privacy by prescribing procedures and standards governing disclosure of such information.", "1375": "A bill to require that certain complex diagnostic laboratory tests performed by an independent laboratory after a hospital outpatient encounter or inpatient stay during which the specimen involved was collected shall be treated as services for which payment may be made directly to the laboratory under part B of title XVIII of the Social Security Act.", "1376": "A bill to expand eligibility for the program of comprehensive assistance for family caregivers of the Department of Veterans Affairs, to expand benefits available to participants under such program, to enhance special compensation for members of the uniformed services who require assistance in everyday life, and for other purposes.", "1377": "A bill to provide for necessary beneficiary protections in order to ensure access to coverage under the Medicare part D prescription drug program.", "1378": "To ensure funding for sportfishing and boating safety programs funded out of the Highway Trust Fund through the end of fiscal year 2005, and for other purposes.", "1379": "A bill to extend the Commission on Civil Rights for five years, to authorize appropriations for the Commission, to effect certain technical changes to comply with other changes in the law, and for other purposes.", "1380": "A bill to amend section 29 of the Internal Revenue Code of 1986 to allow a credit for qualified fuels produced from wells drilled during 1997, and for other purposes.", "1381": "A bill to provide a Federal charter for the Federal Alcohol Corporation", "1382": "To protect American children and their families from the epidemic of gun violence by banning access to certain weapons, strengthening the Nations mental health infrastructure, and improving the understanding of gun violence.", "1383": "A bill to establish a pilot program for the tracking of medical wastes in the States of New York, New Jersey, and Connecticut.", "1384": "A bill to promote the development of affordable, quality rental housing in rural areas for low-income households.", "1385": "A bill to amend chapter 223, title 18, United States Code, to provide for the production of statements and reports of witnesses.", "1386": "To provide that members of the bar of the United States district court shall be eligible to practice before all administrative agencies", "1387": "To provide for improvement of field emergency medical services, and for other purposes.", "1388": "A bill to amend the Ocean Thermal Energy Conversion Act of 1980 to provide for additional authorizations, and for other purposes.", "1389": "To provide for the establishment of a National Rare-Earth Refinery Cooperative, and for other purposes.", "1390": "A bill to amend chapter 89 of title 5, United States Code, to provide improved health benefits for Federal employees", "1391": "To temporarily waive the Medicaid enrollment composition rule for D.C. Health Cooperative.", "1392": "To amend the Exchange Rates and International Economic Policy Coordination Act of 1988 to clarify the definition of manipulation with respect to currency, and for other purposes.", "1393": "A bill to convey to the Fish and Game Commission of the State of Utah certain lards designated as the Bear Lake Fish Cultural Station", "1394": "A bill to establish a national teaching fellowship program to encourage individuals to enter and remain in the field of teaching at public elementary schools and secondary schools.", "1395": "A bill to authorize the Moving to Work Charter program to enable public housing agencies to improve the effectiveness of Federal housing assistance, and for other purposes.", "1396": "A bill to amend section 1306(a) of the Federal Aviation Act of 1958 to authorize the investment of the war risk insurance fund in securities of, or guaranteed by, the United States.", "1397": "To enable America's schools to use their computer hardware to increase student achievement and prepare students for the 21st century workplace, and for other purposes.", "1398": "To facilitate planning, construction, and operation of a secure national clean energy grid.", "1399": "A bill to amend section 701 of the Housing Act of 1954 to provide grants for continuing support of metropolitan planning, and for other purposes.", "1400": "A bill to require the Comptroller General of the United States to submit to Congress a report on the entrepreneurial impact of technology transfer at the National Laboratories.", "1401": "To establish the Senator Paul Simon Study Abroad Foundation under the authorities of the Mutual Educational and Cultural Exchange Act of 1961.", "1402": "To amend Public Law 447, Seventy ninth Congress, second session, an act to authorize the course of instruction at the United States Military Academy to be given to not exceeding 20 persons at a time from the American Republics, other than the United State", "1403": "To establish the Rural Electrification Administration as an independent agency, and for other purposes", "1404": "A bill to provide interim relief to the Farm Credit System, and for other purposes.", "1405": "To authorize the establishment of an older worker community service program", "1406": "A bill to make available funds from the Emergency Economic Stabilization Act of 2008 for funding pension benefits with respect to former employees of Delphi Corporation.", "1407": "To authorize the Secretary of the Interior to facilitate the development of hydroelectric power on the Diamond Fork System of the Central Utah Project.", "1408": "To authorize funding for the development, launch, and operation of a Synthetic Aperture Radar satellite in support of a national energy policy.", "1409": "To strengthen and improve the Natural Gas Pipeline Safety Act of 1968, and for other purposes.", "1410": "To authorize appropriations for fiscal years 1998 and 1999 for the Coast Guard, and for other purposes.", "1411": "A bill to conform the provisions of section 802 of the Merchant Marine Act, 1936, with those of section 510 thereof as amended by Public Law 86-575, approved July 5, 1960, and for other purposes.", "1412": "A bill to provide for quality assurance and utilization control in home health care under the medicare, medicaid and social services programs in accordance with a plan to be developed by a commission specifically established for that purpose.", "1413": "A bill to provide for research and education to improve screening, detection and diagnosis of prostate cancer.", "1414": "A bill to provide for the establishment of a Digital Opportunity Investment Trust.", "1415": "To establish a program within the National Oceanic and Atmospheric Administration and the United States Coast Guard to help identify, determine sources of, assess, reduce, and prevent marine debris and its adverse impacts on the marine environment and navigation safety, in coordination with non-Federal entities, and for other purposes.", "1416": "A bill to facilitate the objective of a national background check on handgun buyers.", "1417": "To establish a commission to study the use of chemicals in peace and war", "1418": "A bill to prohibit the implementation of certain regulations of the Secretary of Health and Human Services and the Secretary of Agriculture respecting irradiated foods, to amend the Federal Food, Drug, and Cosmetic Act to prescribe labels for irradiated food, and for other purposes.", "1419": "A bill to authorize appropriations for the fiscal years 1979 and 1980 for certain maritime programs of the Department of Commerce, and for other purposes.", "1420": "To amend section 902 of the Internal Revenue Code of 1954 with respect to foreign taxes paid by certain predecessor corporations", "1421": "A bill to amend and extend provisions of law concerned with nurse training, and for other purposes.", "1422": "A bill to provide for the establishment of clean technology consortia to enhance the economic, environmental, and energy security of the United States by promoting domestic development, manufacture, and deployment of clean technologies.", "1423": "Making an appropriation to the Office of Education to carry out the Bilingual Education Act for the fiscal year ending June 30, 1970", "1424": "To require certain standards and enforcement provisions to prevent child abuse and neglect in residential programs, and for other purposes.", "1425": "To revive the Alabama studies on juvenile delinquency, and for other purposes", "1426": "To clarify the jurisdiction of the Tax Court in abnormally relief cases arising under the World War II Excess Profits Tax Act.", "1427": "To provide for the debarment or suspension from Federal procurement and nonprocurement activities of persons that violate certain labor and safety laws.", "1428": "To provide that State laws or regulations with respect to certain environmental matters shall not be preempted or nullified by Federal law until such time as regulations in lieu of such State laws or regulations are put into effect by or pursuant to Federal law", "1429": "A bill to prohibit the provision of Federal funds to State and local governments for payment of obligations, to prohibit the Board of Governors of the Federal Reserve System from financially assisting State and local governments, and for other purposes.", "1430": "A bill to establish the Green River National Wildlife Refuge in the State of Kentucky.", "1431": "To promote timely exploration for geothermal resources under existing geothermal leases, and for other purposes.", "1432": "To amend the Public Health Service Act to provide waivers relating to grants for preventive health measures with respect to breast and cervical cancers.", "1433": "A bill to provide an additional 3-year period before States must begin repayment of outstanding advances to their unemployment compensation accounts.", "1434": "To amend the Emergency Unemployment Compensation Act of 1991 to increase the number of weeks of eligibility for emergency unemployment compensation.", "1435": "A bill to improve the administration of the National Oceanic and Atmospheric Administration.", "1436": "A bill to amend. section 1621 of title 18 of the United States Code to provide for degrees of perjury, and for other purposes.", "1437": "To provide for grants to States for maternal and child health and crippled childrens services", "1438": "A bill to establish a task force for the purpose of establishing similar procedures to be used by the Federal Housing Administration and the Farmers Home Administration in appraising and inspecting homes.", "1439": "A bill to provide for the regulation of rates or charges by certain state-owned carriers in the foreign commerce of the United States, and for other purposes.", "1440": "To provide for deficit reduction and achieve a balanced budget by fiscal year 2002.", "1441": "To provide grants to States to assist in the incarceration of violent repeat offenders and to manage the problems associated with overcapacity in correctional facilities and programs and to support comprehensive programs that will reduce the rate of recidivism.", "1442": "A bill to transfer and reorganize all existing law enforcement functions of the Federal Government related to trafficking in narcotics and dangerous drugs in a Division of Narcotics and Dangerous Drugs established in the Federal Bureau of Investigation.", "1443": "To terminate the effectiveness of certain amendments to the foreign repair station rules of the Federal Aviation Administration, and for other purposes.", "1444": "A bill to ensure States receive adoption incentive payments for fiscal year 2008 in accordance with the Fostering Connections to Success and Increasing Adoptions Act of 2008.", "1445": "A bill to enhance the value of the naval petroleum reserves by improving the production and pricing mechanisms applicable to such reserves.", "1446": "To reauthorize and improve the national marine sanctuaries program, and to establish the Coastal and Ocean Sanctuary Foundation.", "1447": "To facilitate the consolidation and rationalization of the steel industry, and for other purposes.", "1448": "To provide the same life tenure and retirement rights for judges hereafter appointed to the U.S. District Court for the District of Puerto Rico as the judges of all other U.S. district courts now have", "1449": "A bill to provide for a parkway connection between Mount Vernon and Woodlawn Plantations, in the State of Virginia, and for other purposes.", "1450": "To amend title 28, United States Code, to provide an Inspector General for the judicial branch, and for other purposes.", "1451": "A bill to authorize the Housing and Home Finance Administrator to make certain modifications in the terms of sale of the Oakdale Residents Cooperative Housing Project of Royal Oak Township, Oakland County, Mich.", "1452": "A bill to prohibit the sale of tobacco products through the Internet or other indirect means to underage individuals, to ensure the collection of all cigarette taxes, and for other purposes.", "1453": "Making supplemental appropriations for investments in transportation infrastructure, and for other purposes.", "1454": "To establish rules for the payment of damage awards for future losses in certain health care liability actions.", "1455": "A bill to amend section 114 of title 18 of the United States Code to make the killing, assaulting, or intimidating of any officer or employee of the Federal Communications Commission performing investigative, inspection, or law enforcement functions a Federal criminal offense.", "1456": "To amend title 18, entitled Crimes and Criminal Procedure, and. title 28, entitled Judiciary and Judicial Procedure, of the United States Code, and for other purposes", "1457": "To amend the Agricultural Act of 1949 to provide for the increased use of rice by the Armed Forces and in certain federally operated hospitals", "1458": "To amend title 38 of the United States Code so as to permit the payment of dependency and indemnity to- certain married children of deceased veterans who are attending educational Institutions", "1459": "To protect, conserve, and restore native fish, wildlife, and their natural habitats on Federal lands and non-Federal lands through cooperative, incentive-based grants to control, mitigate, and eradicate harmful nonnative species, and for other purposes.", "1460": "A bill to establish the Department of the Environment, provide for a Bureau of Environmental Statistics and a Presidential Commission on Improving Environmental Protection, and for other purposes.", "1461": "A bill to facilitate Federal ship mortgage insurance for drydocks and drilling vessels", "1462": "To provide for the establishment of a new fish hatchery on or near the Cumberland River in the eastern part of the State of Kentucky", "1463": "To reform Federal budget procedures to restrain congressional spending, foster greater oversight of the budget, account for accurate Government agency costs, and for other purposes.", "1464": "To designate the bridge on United States Route 231 which crosses the Ohio River between Maceo, Kentucky, and Rockport, Indiana, as the William H. Natcher Bridge.", "1465": "To amend section 4216 of the Internal Revenue Code of 1954 with respect to the exclusion of certain local advertising charges from sales price for the purpose of computing manufacturers excise taxes", "1466": "Governing the hospitalization of the mentally ill of Alaska, and authorizing the Secretary of the Interior to locate, establish, construct, equip, and operate a hospital for the mentally ill of Alaska, and for other purposes", "1467": "To provide that, if emergency unemployment compensation is extended, prospective benefits shall be subject to gradual reduction.", "1468": "To authorize the issuance of United States Defense of Freedom Bonds to aid in funding of the war against terrorism, and for other purposes.", "1469": "A bill to extend the Federal Energy Administration for 11 days.", "1470": "To strengthen the agricultural economy to help to achieve a fuller and more effective use of food abundances to provide for improved levels of nutrition among economically needy households through a cooperative Federal-State program of food assistance to ", "1471": "A bill to establish United States governmental policy with regard to respect for human life.", "1472": "A bill to provide that Federal assistance under the Federal Housing Administration will not be denied for housing solely on the basis that such housing is located in an area identified by a Federal agency as an area subject to the highest noise-level resulting from the air transportation conducted in connection with the operation of a nearby civilian or military airport, and for other purposes.", "1473": "To establish an oil price-gouging victims fund; and for other purposes.", "1474": "A bill to authorize the Council on Environmental Quality to conduct studies and make recommendations respecting the reclamation and recycling of material from solid wastes, to extend the provisions of the Solid Waste Disposal Act, and for other purposes", "1475": "To amend title 10, United States Code, to restore the eligibility of former members of the uniformed services who are entitled to retired or retainer pay or equivalent pay, or a dependent of such members, and who are eligible for hospital insurance benefits under part A of title XVIII of the Social Security Act (42 U.S.C. 1395 et seq.) for prescription pharmaceuticals through the military medical system.", "1476": "To authorize the Rural Electrification Administration to borrow money, and for other purposes.", "1477": "To improve the security of the Nation's ports by providing Federal grants to support Area Maritime Transportation Security Plans and to address vulnerabilities in port areas identified in approved vulnerability assessments or by the Secretary of Homeland Security.", "1478": "To amend the Food, Agriculture, Conservation, and Trade Act of 1990 to prohibit the Secretary of Agriculture from prescribing or collecting fees to cover the cost of providing certain agricultural quarantine and inspection services at a site within the Commonwealth of Puerto Rico and the State of Hawaii, and for other purposes.", "1479": "To amend the Federal Water Pollution Control Act to preserve the authority of each State to make determinations relating to the States water quality standards, and for other purposes.", "1480": "A bill to revise the provisions of the Public Health Service Act relating to health planning.", "1481": "To amend section 2 of the National Housing Act to authorize the insurance of loans made to finance the installation of irrigation systems and facilities", "1482": "To amend title 18, United States Code, to strengthen penalties for child pornography offenses, child sex trafficking offenses, and other sexual offenses committed against children.", "1483": "To enable the States to make more adequate provision for special services required for the education of physically handicapped children of school age, and for other purposes", "1484": "To provide a program of pollution control in the river basins and waterways of the United States through comprehensive planning and financial assistance to local governments and regional water basin management associations for the construction of waste treatment facilities", "1485": "To prohibit the publication by the Government of the United States of any prediction with respect to apple prices", "1486": "A bill to establish a comprehensive program of home care service for aged and disabled individuals, to provide for the creation of community home care centers and State home care agencies as part of a new administrative structure for the organization and ", "1487": "A bill to authorize a national program of ground water research.", "1488": "To require that impact resistant eyeglasses be issued under the medical program for members of the uniformed services on active duty", "1489": "To authorize the extension of conservation reserve contracts, and for other purposes", "1490": "To amend the Rail Passenger Service Act to authorize appropriations for the National Railroad Passenger Corporation, and for other purposes.", "1491": "To establish a Border Enforcement Security Task Force program to enhance border security by fostering coordinated efforts among Federal, State, and local border and law enforcement officials to protect United States border cities and communities from trans-national crime, including violence associated with drug trafficking, arms smuggling, illegal alien trafficking and smuggling, violence, and kidnapping along and across the international borders of the United States, and for other purposes.", "1492": "A bill to establish a fuel stamp program which will provide fuel stamps to certain low-income elderly households to help meet fuel costs incurred by such households.", "1493": "To establish a Tick-Borne Disorders Advisory Committee, and for other purposes.", "1494": "To make section 1952 of title 18, United States Code, applicable to travel in aid of arson", "1495": "To prevent the Patient Protection and Affordable Care Act from establishing health care provider standards of care in medical malpractice or medical product liability cases, and for other purposes.", "1496": "A bill to provide for an advisory referendum with respect to a balanced Federal budget.", "1497": "To amend the Valeh-Henley Act to make it apply in the same fashion to males and females", "1498": "To penalize States that prohibit oil and gas exploration within their borders by denying them the use of any oil or natural gas produced domestically elsewhere.", "1499": "To amend chapter 83 of title 5, United States Code, to eliminate the survivorship reduction during periods of nonmarriage of certain annuitants", "1500": "To amend the National Labor Relations Act to apply the protections of the Act to teaching and research assistants.", "1501": "To amend the Public Health Service Act to extend the program of grants for preventive health services with respect to tuberculosis, and for other purposes.", "1502": "To amend the Energy Policy and Conservation Act to help reduce the oil prices to consumers, to reduce the cost of petroleum acquisition for the Strategic Petroleum Reserve, to better match the composition of the Strategic Petroleum Reserve to refinery requirements in the United States, to fund energy research and development, and for other purposes.", "1503": "To amend the Railroad Unemployment Insurance Act to eliminate the 4-day waiting period applicable to sickness benefits during an individual's second or subsequent registration period within any benefit year, and to waive the 7-day waiting period applicable to sickness benefits during an individual's first such period where the sickness (and any required waiting period) began fn the preceding benefit year", "1504": "To provide financial assistance to certain wives of servicemen for the expenses of childbirth", "1505": "To amend title 5, United States Code, to remove persons from Federal employment who engage in unlawful acts connected with civil disorders, and for other purposes", "1506": "To confer jurisdiction upon United States district courts to adjudicate certain claims of Federal employees for the recovery of fees, salaries, or compensation", "1507": "A bill to clarify that the anti-kickback laws apply to qualified health plans, the federally-facilitated marketplaces, and other plans and programs under title I of the Patient Protection and Affordable Care Act, and for other purposes.", "1508": "To amend the Merchant Marine Act, 1936, to preserve the percentage of certain agricultural commodities exported from Great Lake ports.", "1509": "To amend the Social Security Act to improve the quality of long-term care insurance and to protect consumers through the establishment of national standards, and for other purposes.", "1510": "To amend title 49, United States Code, to increase the amount of civil penalties and criminal fines for violations of requirements prohibiting the transportation of chemical oxygen generators on passenger-carrying aircraft in air commerce.", "1511": "To establish the National Center for Adult Literacy, and for other purposes.", "1512": "A bill to provide for the conversion of temporary judgeships to permanent judgeships, and for other purposes.", "1513": "To amend the Internal Revenue Code of 1954 to restore to individuals who have attained the age of 65 the right to deduct all expenses for their medical care, and for other purposes", "1514": "To provide for a service to assist medicare beneficaries in receiving services under health insurance programs.", "1515": "To prohibit discrimination on the basis of military service, and for other purposes.", "1516": "A bill to provide that claims of the United States to certain documents relating to Franklin Delano Roosevelt shall be treated as waived and relinquished in certain circumstances.", "1517": "To amend chapter 171 of title 28, United States Code, to allow claims against the United States under that chapter for damages arising from certain negligent medical care provided members of the Armed Forces.", "1518": "To provide for the protection and conservation of national soil, water, and forest resources. and to provide an adequate, balanced, and orderly flow of agricultural commodities in interstate and foreign commerce, and for other purposes.", "1519": "A bill amending title I of the Social Security Act so as to require that, in the administration of State program for medical assistance for the aged established pursuant to such title, a statement of a claimant for assistance under any such program with r", "1520": "To amend title 5, United States Code, to limit the number of local wage areas allowable within a General Schedule pay locality.", "1521": "To make permanent the authority to transfer revenues attributable to the taxation of certain railroad retirement benefits to the Railroad Retirement Account.", "1522": "To amend section 4491 of the Internal Revenue Code of 1954 to provide that the weight portion of the excise tax on the use of civil aircraft shall apply to piston-engined aircraft only if they have a maximum certificated takeoff weight of more than 8,500 pounds", "1523": "A bill to notify workers who are at risk of occupational disease in order to establish a system for identifying and preventing illness and death of such workers, and for other purposes.", "1524": "A bill to repeal the Gun Control Act of 1968, to reenact the Federal Firearms Act, to make the use of a firearm to commit certain felonies a Federal crime where that use violates State law.", "1525": "To amend section 114 of the Federal-Aid Highway Act of 1958 ,to state the policy of Congress with respect to reimbursement for certain highways on the Interstate System", "1526": "To provide for the issuance of a Multinational Species Conservation Funds Semipostal Stamp.", "1527": "A bill to require that dairy products which are imported be labeled to disclose such fact.", "1528": "A bill to provide for the control and eradication of noxious weeds, and the regulation of the movement in interstate or foreign commerce of noxious weeds and otential carriers thereof.", "1529": "A bill to provide for the termination of Government operations which are in competition with private enterprise", "1530": "A bill for the more economical operation of the general supply fund of the Bureau of Federal Supply, Department of the Treasury, and for other purposes", "1531": "To authorize the Secretary of Commerce to approve a bridge on Interstate Highway 29 at Sioux City, Iowa, as part of the National System of Interstate and Defense Highways", "1532": "To amend section 863 of the Internal Revenue Code of 1954 with respect to exemption from taxation of earnings of ships under foreign flag", "1533": "To provide additional means of securing and protecting the civil rights of persons within the jurisdiction of the United States", "1534": "A bill to provide for the care and custodyof dangerously insane persons acquitted of offenses against the United States solely by reason of insanity.", "1535": "A bill to amend the Adult Education Act of 1966 in order to revise the allotment formula under the provisions of Such act.", "1536": "A bill to amend the Emergency Jobs and Unemployment Assistance Act of 1974 so as to increase from 26 to 39 the maximum number of weeks for which an individual may receive unemployment assistance under the special unemployment assistance program established by title II of such act.", "1537": "A bill to establish a pilot program to hire individuals with alternative educational experience.", "1538": "A bill to amend the Food Security Act of 1985 to increase the number of acres placed in the conservation reserve program, and for other purposes.", "1539": "A bill to require public hearings on certain regulations promulgated by the Secretary of Labor.", "1540": "A bill to improve the administrative efficiency and effectiveness of the Nation's abuse and neglect courts and the quality and availability of training for judges, attorneys, and volunteers working in such courts, and for other purposes consistent with the Adoption and Safe Families Act of 1997.", "1541": "A bill to allow payment to be made under part B of medicare to freestanding radiation therapy centers for services provided to hospital inpatients.", "1542": "A bill to encourage the development, improvement and operation of domestic refinery capabilities, and for other purposes.", "1543": "A bill to reimburse the States for all unemployment compensation paid to individuals whose unemployment is attributable to the oil crisis.", "1544": "A bill to promote public health and welfare by expanding and improving the family planning services and population sciences research activities of the Federal Government.", "1545": "To confer, jurisdiction upon the Court of Claims of the United States to hear, determine, and render judgment upon the claims of Andrew Johnson, Alexander H. Tongue; James F. Sirlouis, James W. Dixon, J. Frank Tongue, Thomas E. Wroten, Halvor H. Hellen, G", "1546": "A bill to improve mental health services at all facilities of the Department of Veterans Affairs.", "1547": "To remove the $10 million limitation on programs carried out under section 16(e) (7) of the Soil Conservation and Domestic Allotment Act or 1964 and subsequent calendar years", "1548": "A bill to provide a remedy for sex and marital status discrimination by the insurance business with respect to the availability and scope of insurance coverage for women.", "1549": "To provide for the appointment. of a district judge for the northern district of California", "1550": "A bill to repeal the recently enacted provisions of title II of the Social Security Act relating to computation of benefits of individuals receiving pensions from noncovered employment.", "1551": "A bill to require that rail and motor carriers provide timely notice to the chief executive of any State within which hazardous materials are scheduled to be transported or shipped.", "1552": "To amend title II of the Higher Education Act of 1965 to increase teacher familiarity with the educational needs of gifted and talented students, and for other purposes.", "1553": "To amend the Hazardous Liquid Pipeline Safety Act of 1979 to require the Secretary of Transportation to issue regulations to ensure the safety of underwater hazardous liquid pipelines, to identify chronic violators of hazardous liquid pipeline regulations, to enhance inspection, monitoring, and enforcement activities, and for other purposes.", "1554": "A bill to provide for the payment of impact aid to certain school districts.", "1555": "A bill to amend titles 10, 32, and 37, United States Code, to authorize medical and dental care, and related benefits for Reservists and members of the National Guard under certain conditions, and for other purposes.", "1556": "A bill to establish the National Commission on Civil Justice Reform.", "1557": "A bill to amend the Nuclear Waste Policy Act of 1982 to allow commercial nuclear utilities that have contracts with the Secretary of Energy under section 302 of that Act to receive credits to offset the cost of storing spent fuel that the Secretary is unable to accept for disposal.", "1558": "A bill to authorize construction of the project for navigation at Gulfport Harbor, Mississippi.", "1559": "To make available half the revenues from the excise tax on pistols and revolvers to the States for target ranges and firearms safety training programs", "1560": "A bill to require advance notification of plant closings and mass layoffs, and for other purposes.", "1561": "To designate a national network of essential rail lines; to authorize the Secretary of Transportation to acquire, rehabilitate, and maintain rail lines; to require minimum standard of maintenance for rail lines; to provide financial assistance to the States for rehabilitation of rail lines.", "1562": "A bill to prevent the use of automatic adjustment clauses by Federally regulated gas and electric utilities.", "1563": "To direct the Secretary of Transportation to make grants to Orange County, California, for intercounty express bus service, and for other purposes.", "1564": "To facilitate the development of an integrated, nationwide telecommunications system dedicated to instruction by guaranteeing the acquisition of a communications satellite system used solely for communications among State and local instructional institutions and agencies and instructional resource providers.", "1565": "A bill to prohibit the expenditure of Federal funds for abortion, and for other purposes.", "1566": "To amend section 7701 of the Internal Revenue Code of 1954 to clarify the tax status of certain professional associations and corporations formed under State law", "1567": "To make it it a Federal crime to kill or assault a fireman or law enforcement officer engaged in the performance of his duties when the offender travels in interstate commerce or uses any facility of interstate commerce for such purpose", "1568": "A bill to require criminal background checks on all firearms transactions occurring at events that provide a venue for the sale, offer for sale, transfer, or exchange of firearms, and for other purposes.", "1569": "A bill to amend Part L of the Omnibus Crime Control and Safe Streets Act of 1968.", "1570": "To provide grants to local educational agencies to enable the agencies to recruit and retain qualified school administrators.", "1571": "To amend title 38, United States Code, to enhance the authority of the Department of Veterans Affairs to recover from third parties costs of medical care furnished to veterans and other persons by the Department.", "1572": "A bill to improve safety and preparedness surrounding offshore energy production and to respond to the blowout and explosion of the mobile offshore drilling unit Deepwater Horizon that occurred on April 20, 2010, and resulting hydrocarbon releases into the environment, and for other purposes.", "1573": "A bill to amend the Agricultural Act of 1970, to prohibit restrictions on the export of certain agricultural commodities.", "1574": "A bill to amend the Internal Revenue Code to provide renters with a credit against income tax.", "1575": "A bill to establish, within the National Oceanic and Atmospheric Administration, an integrated and comprehensive ocean, coastal, Great Lakes, and atmospheric research and environmental information sharing program to support renewable energy, and for other purposes.", "1576": "To amend the Civil Rights Act of 1964 to provide for freedom of choice in student assignments in public schools.", "1577": "A bill to establish administrative law judges involved in the appeals process provided for under the medicare program under title XVIII of the Social Security Act within the Department of Health and Human Services, to ensure the independence of, and preserve the role of, such administrative law judges, and for other purposes.", "1578": "To amend section 138 of the Legislative Reorganizatiton Act of 1946 so as to provide for the reduction of the public debt by at least 10 percent of the estimated overall Federal receipts for each fiscal year", "1579": "Concerning legal counsel of recipients of loans under programs administered by the Department of Agriculture", "1580": "To improve the United States Code by enacting into law title 28, entitled Internal Revenue.", "1581": "A bill to amend section 13a(1) of the Interstate Commerce Act, as amended, relative to the discontinuance or change of the operation of certain trains or ferries.", "1582": "To provide for an appeal to the Supreme Court of the United States from the decision of the Court of Claims in a suit instituted by the Mount Vernon, Alexandria & Washington Railway Co", "1583": "To limit the effect of legal releases in certain civil actions, and for other purposes.", "1584": "Relative to granting and giving instructions in civil and criminal cases in the district courts of continental United States", "1585": "To amend the General Education Provisions Act to clarify the definition of a student regarding family educational and privacy rights.", "1586": "To amend the act of August 7, 1957 (70 Stat. 1115), as amended, providing for a Great Plains conservation program", "1587": "A bill to provide education opportunity grants to low-income secondary school students.", "1588": "To provide a voluntary national insurance program for elk affected with, or exposed to, tuberculosis.", "1589": "To amend the Natural Gas Act, to confer upon the Federal Power Commission authority to exercise control over the allocation of the available supply of natural gas moving in interstate commerce during periods of shortage or under certain other circumstance", "1590": "A bill to authorize the modification of the existing project for Port Angeles Harbor in the State of Washington in order to provide for a mooring basin", "1591": "To provide for the establishment of a Veterans Administration hospital in Queens, Suffolk, or Nassau County, NY", "1592": "To protect the right to vote in Federal elections free from arbitrary discrimination by literacy tests or other means", "1593": "A bill to provide a supplementary housing allowance to supplemental security income recipients.", "1594": "A bill to permit relatives of Medicaid eligible individuals residing in nursing homes to contribute voluntarily to a State fund for the provision of such care.", "1595": "To provide for a research project in the Salton Sea area of Southern California regarding an enhanced evaporation system for saline water.", "1596": "To authorize appropriations for fiscal years 1992 and 1993 for certain maritime programs of the Department of Transportation, and for other purposes.", "1597": "To continue for a temporary period the existing interest equalization tax", "1598": "To amend the Internal Revenue Code of 1986 for one year the credit for energy-efficient new homes.", "1599": "Making an additional appropriation to carry out the provisions of the Rural Electrification Act of 1936, as amended, for the fiscal year ending June 30, 1948", "1600": "To amend the Public Health Service Act with regard to research on asthma, and for other purposes.", "1601": "To provide for the compensation of persons injured by certain criminal acts", "1602": "A bill to establish a health information technology grant program for hospitals and for skilled nursing facilities and home health agencies, and to require the Secretary of Health and Human Services to establish and implement a methodology under the medicare program for providing hospitals with reimbursement for costs incurred by such hospitals with respect to information technology systems.", "1603": "To transfer certain programs within the Department of Agriculture to a newly established Rural Development Administration, and for other purposes.", "1604": "A bill to amend the black lung benefits provisions of the Federal Coal Mine Health and Safety Act of 1969 to extend those benefits to miners who incur silicosis in iron mines.", "1605": "To repeal the proviso against the filling of the vacancy in the office of district judge for the eastern and western districts of Missouri", "1606": "To amend section 700 of title 18 of the United States Code to provide penalties for violations of the flag code", "1607": "A bill to decrease the deficit by realigning, consolidating, disposing, and improving the efficiency of Federal buildings and other civilian real property, and for other purposes.", "1608": "A bill to clarify the status of certain waters in the State of New Hampshire for the purposes of the Federal Boat Safety Act of 1971.", "1609": "A bill to authorize appropriations for activities under the Federal Fire Prevention and Control Act of 1974.", "1610": "To amend the Solid Waste Disposal Act to authorize the Environmental Protection Agency to award grants to groups for technical assistance to oppose the issuance of permits under that Act.", "1611": "To provide incentives for the development of qualified infectious disease products.", "1612": "To promote the sharing of personnel between Federal law enforcement agencies and other public law enforcement agencies, and for other purposes.", "1613": "A bill to provide for enhanced safety, public awareness, and environmental protection in pipeline transportation, and for other purposes.", "1614": "To authorize payments to the public school district or districts serving the Fort Peck project, Montana, for the education of dependents of persons engaged on that project", "1615": "To protect game and wildlife resources by prohibiting the use of lead shot for hunting on public lands", "1616": "A bill to establish a program of Federal assistance to provide relief from energy emergencies and energy disasters.", "1617": "A bill to provide the American consumer the assurance that foreign dairy products marketed in the United States meet minimum standards of quality by requiring the inspection of these products at the U. S. ports of entry, at the foreign milk processing plants which provide dairy products for export to the United States, and at the foreign dairy farms which supply milk in foreign milk processing plants for the production of dairy products to be exported to the United States.", "1618": "A bill to prohibit the exportation of fertilizer from the United States until the Secretary of Agriculture determines that an adequate domestic supply of fertilizer exists.", "1619": "To assist distressed cities with large, abandoned factories and hazardous waste sites.", "1620": "To establish a meaningful opportunity for parole or similar release for child offenders sentenced to life in prison, and for other purposes.", "1621": "A bill to extend through fiscal year 1974 certain expiring appropriations authorizations in the Public Health Service Act, the Community Mental Health Centers Act, and the Development Disabilities Services and Facilities Construction Act, and for other purposes.", "1622": "To amend the Public Health Service Act to ensure that victims of public health emergencies have meaningful and immediate access to medically necessary health care services.", "1623": "A bill to restate, with greater emphasis, the intent of Congress to provide equal employment opportunities without regard to an individual's race, color, religion, sex, or national origin.", "1624": "To amend title 23, United States Code, to establish a minimum blood alcohol concentration level for individuals who are less than 21 years of age.", "1625": "A bill to require certain disclosures of financial information to expose espionage activities by foreign agents in the United States.", "1626": "A bill to provide for advance consultation with the Fish and Wildlife Service and with State wildlife agencies before the beginning of any Federal program involving the use of pesticides or other chemicals designed for mass biological controls.", "1627": "A bill to allow an earlier start for State health care coverage innovation waivers under the Patient Protection and Affordable Care Act.", "1628": "A bill to accelerate the formation of the investment capital required to expand both job opportunities and productivity in the private sector of the economy.", "1629": "A bill to amend the Voting Rights Act of 1970 to prohibit the States from denying the right to vote in Federal elections to former criminal offenders who have not been convicted of any offense related to voting or elections and who are not confined in a correctional institution.", "1630": "To provide for the construction of a Veterans Administration hospital in Queens County, N. Y", "1631": "To establish an industrial personnel security program, to coordinate the administration of personnel loyalty and security programs and to prescribe administrative procedures for the hearing and review of cases arising under such programs", "1632": "A bill to provide that oil and gas from Federal lands, including the Outer Continental Shelf, shall be produced by private persons under contract with the United States and marketed by the United States.", "1633": "To authorize the Secretary of Agriculture to. utilize the .columns removed from the east central portico of the Capitol in an architecturally appropriate manner in the National Arboretum", "1634": "A bill to amend the Emergency Unemployment Compensation Act of 1974 to provide that compensation payable to an individual thereunder shall be reduced (but not below zero) by the amount of periodic benefits payable to such individual under a pension system", "1635": "To ensure that the courts of the United States may provide an impartial forum for claims brought by United States citizens and others against any railroad organized as a separate legal entity, arising from the deportation of United States citizens and others to Nazi concentration camps on trains owned or operated by such railroad, and by the heirs and survivors of such persons, and for other purposes.", "1636": "To amend the Internal Revenue Code of 1954 to defer recognition of gain in certain liquidations", "1637": "A bill to establish and maintain a wildlife global animal information network for surveillance internationally to combat the growing threat of emerging diseases that involve wild animals, such as bird flu, and for other purposes.", "1638": "To authorize States to exempt certain nonprofit housing organizations from the licensing requirements of the S.A.F.E. Mortgage Licensing Act of 2008.", "1639": "To make changes in Federal juvenile justice proceedings, and to foster youth development and prevent juvenile crime and delinquency.", "1640": "To establish a comprehensive interagency response to reduce lung cancer mortality in a timely manner.", "1641": "A bill to amend the Radiation Exposure Compensation Act to improve compensation for workers involved in uranium mining, and for other purposes.", "1642": "A bill to assist local governments and States in assessing and remediating brownfield sites, increase fairness and reduce litigation, and for other purposes.", "1643": "To ensure continued availability of access to the Federal student loan program for students and families.", "1644": "To terminate the Transportation Enhancement Program and transfer the funding dedicated to such program to carry out the most critical emergency transportation projects identified by the Secretary of Transportation, after consultation with State and local transportation officials.", "1645": "A bill to provide for the registration sad regulation of oil and gas programs, and for other purposes", "1646": "To amend title 37, United States Code, to provide flexible spending arrangements for members of the uniformed services, and for other purposes.", "1647": "A bill to provide that income derived by tax-exempt organizations from advertising in periodicals published by them shall not be subject to the tax on unrelated business income", "1648": "A bill to increase the standard mileage rate for use of an automobile for business, medical, and moving deduction purposes for 2008 and permanently increase such rate for charitable deduction purposes under the Internal Revenue Code of 1986 and to temporarily increase the reimbursement rate for use of an automobile by Federal employees.", "1649": "To make unlawful the transmission in interstate commerce of certain communications with intent to interfere with the execution of Federal or State statutes or court decrees", "1650": "A bill to provide decent and suitable living accommodations for low-income families", "1651": "To amend title V of the act entitled An act to expedite the provision of housing in connection with national defense, and for other purposes, approved October 14, 1940, as amended, so as to provide that the transferee of any property transferred thereun", "1652": "To ensure that employers cannot interfere in their employees birth control and other health care decisions.", "1653": "To provide for a program of Federal matching grants to the States to enable the States to provide health insurance for individuals aged 65 or over at subscription charges such individuals can pay", "1654": "A bill to ban the importation of large capacity ammunition feeding devices.", "1655": "A bill to provide Federal tax treatment for payments under, and facilities idled by, the Milk Production Termination Program.", "1656": "To amend the Clean Air Act to reduce emissions from electric powerplants, and for other purposes.", "1657": "A bill to amend the Social Security Act to improve the survey and certification process, rate-setting and fiscal audit methods, and general regulation of nursing homes and intermediate care facilities under the medicaid program, and to provide for medical, psychological, and social assessment of long-term care patients under both the medicare and medicaid programs.", "1658": "To amend section 1007, title 18, United States Code, with respect to exemption of nonfraudulent transactions under certain circumstances, and for other purposes", "1659": "To amend sections 1331 and 1332 of title 28, United States Code, relating to the amount in controversy, and for other purposes", "1660": "To amend the Merchant Marine Act, 1936, to establish a new system of operating-differential subsidy contracts for vessels in liner service, and for other purposes.", "1661": "A bill to amend or repeal certain laws relating to Government records, and for other purposes", "1662": "A bill to amend provisions of title 28, United States Code, to provide for the payment of attorney fees to a prevailing defendant in civil actions, and for other purposes.", "1663": "To prohibit the distribution or receipt of restricted explosives without a Federal permit, and to require applications for such permits to include a photograph and the finger prints of the applicant.", "1664": "A bill to amend the Enabling Act of the State of New Mexico with respect to miners' hospitals for disabled miners", "1665": "A bill to provide a civil remedy in the United States district courts for sex discrimination in insurance policies.", "1666": "To amend section 520E of the Public Health Service Act to require States and their designees receiving grants for development or implementation of statewide suicide early intervention and prevention strategies to consult with each Federally recognized Indian tribe, tribal organization, and urban Indian organization in the State.", "1667": "A bill to provide for the promotion of health education and preventive health services, and for other purposes.", "1668": "A bill to simplify Federal oil and gas revenue distributions, and for other purposes.", "1669": "To prohibit discrimination against locally recruited personnel in the granting of overseas differentials and allowances, equalize ,the compensation of overseas teachers, and for other purposes", "1670": "A bill expressing the sense of Congress with respect to certain withholding taxes.", "1671": "A bill to establish an Office of Housing for the Elderly within the Department of Housing and Urban Development.", "1672": "To limit the power of the States to impose income taxes on income derived exclusively from the conduct of interstate commerce and to bring about greater uniformity in State taxation of business income derived from Interstate commerce", "1673": "A bill to develop a methodology for, and complete, a national assessment of geological storage capacity for carbon dioxide, and for other purposes.", "1674": "To improve the national program to register and monitor individuals who commit crimes against children or sex offenses.", "1675": "To amend the National Housing Act, as amended (48 Stat. 1246 12 U.S.C. 1701) , to require the use of domestically grade-marked lumber and wood products in the construction of housing federally financed and/or federally insured, and for other purposes", "1676": "A bill to authorize the President to establish and maintain the Foreign Language and Cultural Institute program.", "1677": "To prevent States from limiting employers from using auto-enrollment for employee health insurance coverage.", "1678": "To reduce the national debt and eliminate waste in Government spending, and for other purposes.", "1679": "A bill to authorize adjustments in the amount of outstanding silver certificates, and for other purposes.", "1680": "A bill to adjust the salary and other benefits received by the United States Park Police and to amend Title 5, United States Code to incorporate, in its entirety, Section 501 of the District of Columbia Police and Firemens Salary Act of 1958.", "1681": "To amend the Higher Education Act of 1965 to extend the cohort default rate exemption for historically Black Colleges, tribally controlled community colleges, and Navajo community colleges.", "1682": "A bill to guarantee the confidentiality of sources of information of the news media and to protect certain rights of privacy of individuals.", "1683": "To amend the act providing financial assistance to.local educational agencies for the education of children of low-income families in order to provide financial assistance for the education of orphans and other children lacking parental support", "1684": "A bill to amend section 212(B) of the Merchant Marine Act, 1936, as amended, to provide for the continuation of authority to develop American-flag carriers and promote the foreign commerce of the United States through the use of mobile trade fairs.", "1685": "To improve the Federal Pell Grant program, and for other purposes.", "1686": "To prevent governmental discrimination against providers of health services who decline involvement in abortion, and for other purposes.", "1687": "To amend section 120 of the Internal Revenue Code (relating to the unlimited deduction for charitable and other contributions)", "1688": "A bill to permit Charles E. Day, Senior, and Mary Day, husband and wife, to file an action against the United States District Court, for the District of Rhode Island, and for other purposes.", "1689": "A bill to prohibit Government employees from secretly taping conversations with others.", "1690": "To provide compensation to survivors and dependents of local law enforcement offcers killed or disabled while apprehending persons for commuting Federal crimes", "1691": "To exempt from income taxation the interest on certain United States savings bonds", "1692": "A bill to amend section 103(e)(4) of title 23, United States Code, to extend the deadline for withdrawal of approval of the Westway project in New York and for approval of highway and transit projects substituted for such project until December 30, 1985.", "1693": "A bill to provide for congressional review of all regulations relating to costs and expenditures for health care, reimbursements to individuals or providers of health care, and for other purposes.", "1694": "To establish State revolving loan funds to repair or replace natural gas distribution pipelines.", "1695": "A bill to provide for the protection of employees providing air safety information.", "1696": "A bill to eliminate prevented planting payments to cotton farmers able to plant cotton or other nonconserving crops on their cotton allotments.", "1697": "To extend the time for filing certain claims under the September 11th Victim Compensation Fund of 2001, and for other purposes.", "1698": "A bill to enforce the guarantees of the 14th amendment with respect to the desegregation of public elementary and secondary schools", "1699": "A bill to increase the fees and reduce the financial hardships for those individuals who serve on grand juries in district courts, and for other purposes.", "1700": "A bill to extend to persons entitled to receive medical care by or through the Veterans Administration, the right to elect to receive chiropractic treatment", "1701": "A bill to establish a forbearance program for thrift institutions including Minority Associations.", "1702": "A bill to withhold voluntary proportional assistance for programs and projects of the International Atomic Energy Agency relating to the development and completion of the Bushehr nuclear power plant in Iran, and for other purposes.", "1703": "To amend the Internal Revenue Code of 1986 to update the optional methods for computing net earnings from self-employment.", "1704": "A bill to enhance the energy security of the United States, improve the environment, and expand markets for agricultural commodities by providing for the increased use of motor fuel blended with ethanol.", "1705": "To amend and supplement the Federal-Aid Road Act approved July 11, 1916 (39 Stat. 355), as amended and sup to authorize appropriations for continuing the construction of highways, and for other purposes.", "1706": "To enhance the personal security and safety of American citizens and their families by combating violent crime and strengthening anti-drug efforts.", "1707": "A bill to enable honey producers to finance a nationally coordinated research and promotion program to improve their competitive position and expand their markets for honey.", "1708": "A bill to eliminate restrictions on the taxing power of the State to impose, collect, and administer State and local sales and use taxes on sales in interstate commerce.", "1709": "To exempt from admissions tax admissions to activities of elementary and secondary schools", "1710": "A bill to assure that the policies of the executive branch of the Government of the United States protect employment opportunities for U.S. citizens.", "1711": "A bill to authorize the Administrator of the National Oceanic and Atmospheric Administration to provide certain funds to eligible entities for activities undertaken to address the marine debris impacts of the March 2011 Tohoku earthquake and subsequent tsunami, and for other purposes.", "1712": "A bill to require the General Accounting Office to conduct an annual audit of certain records to assist the Secretary of Agriculture in determining the amount of grain stored by any person under any program carried out by the Commodity Credit Corporation.", "1713": "A bill to require the consent of an individual prior to the sale and marketing of such individual's personally identifiable information, and for other purposes.", "1714": "A bill to amend the Railroad Unemployment Insurance Act so as to protect benefits of bona fide railroad employees, remove certain inequities, and for other purposes.", "1715": "To authorize the purchase of agricultural commodities under section 32 without charge to a quota", "1716": "A bill to direct the Secretary of Transportation to conduct a study and issue a report on predatory and discriminatory practices of airlines which restrict consumer access to unbiased air transportation passenger service and fare information.", "1717": "A bill to amend the National Housing Act to establish procedures for approval of rental increases in certain multifamily housing insured under such Act.", "1718": "To authorize grants to local educational agencies to develop and implement coordinated services programs.", "1719": "A bill to establish an interagency committee to develop an ocean acidification research and monitoring plan and to establish an ocean acidification program within NOAA.", "1720": "A bill to amend the Clean Air to repeal the grandfather status for electric utility units.", "1721": "A bill to provide technical and financial assistance for the development of management plans and facilities for the recovery of energy and other resources from discarded materials and for the safe disposal of discarded materials, to regulate the managemen", "1722": "To extend for 4 additional years the temporary provisions of Public Laws 815 and 874, 81st Congress", "1723": "To ensure that the national instant criminal background check system provides the Federal Bureau of Investigation with information on approved firearms transfers to persons named in the Violent Gang and Terrorist Organization File.", "1724": "To amend the Public Health Service Act to prevent and treat diabetes, to promote and improve the care of individuals with diabetes, and to reduce health disparities, relating to diabetes, within racial and ethnic minority groups, including the African-American, Hispanic American, Asian American, Native Hawaiian and Other Pacific Islander, and American Indian and Alaskan Native communities.", "1725": "To amend the Federal Meat Inspection Act to require that imported meat and meat food products made fn whole or in part of imported meat be labeled imported at all stages of distribution until delivery to the ultimate consumer", "1726": "To safely increase domestic oil and gas production, and for other purposes.", "1727": "To designate the bridge to be constructed over the Potomac River near 14th Street in the District of Columbia, under the act of July 16, 1946, as the George Mason Memorial Bridge, and for other purposes.", "1728": "To authorize the Secretary of Commerce to transfer surplus liberty ships to States for use in marine life conservation programs", "1729": "To enable the Secretary of Health and Human Services to carry out activities to reduce waste and fraud under the medicare program.", "1730": "A bill to amend the act authorizing participation of States in revenue from certain wildlife refuges in order to increase the amount of such participation.", "1731": "To amend title 28, United Staten code, to transfer Charlotte and Lee Counties from the middle to the southern district of Florida and Highlands County from the southern to the middle district of Florida", "1732": "A bill to direct the Secretary of Defense to review the discharge characterization of former members of the Armed Forces who were discharged by reason of the sexual orientation of the member, and for other purposes.", "1733": "A bill making an appropriation to the Office of Education to carry out the Bilingual Education Act for the fiscal year ending June 30, 1969.", "1734": "To amend and extend certain laws relating to housing and community development, and for other purposes.", "1735": "A bill to institute a moratorium on the imposition of the death penalty at the Federal and State level until a National Commission on the Death Penalty studies its use and policies ensuring justice, fairness, and due process are implemented.", "1736": "To amend title 46, United States Code, to reinstate provisions requiring that a percentage of aid provided by the Secretary of Agriculture or the Commodity Credit Corporation in the form of certain agricultural commodities or their products must be transported on commercial vessels of the United States, and for other purposes.", "1737": "To increase to $1,000 the amount a dependent may earn without loss of exemption to the taxpayer", "1738": "To amend section 601(a) of the Federal Aviation Act of 1958 so as to require air carriers to maintain route maps in conjunction with certain weather information for the benefit of their passengers", "1739": "A bill to provide for a program of benefits for persons afflicted with lung cancer as a result of employment as a uranium miner.", "1740": "To provide Federal funds to assist the States in the acquisition and construction of plant facilities for public schools", "1741": "To amend section 1 (b) of the Natural Gas Act, with respect to jurisdiction over sales of natural gas by independent producers", "1742": "To establish a program of voluntary comprehensive health insurance for all persons aged 65 or over and an expanded program of medical assistance, to increase benefits under the old-age, survivors and disability insurance system, to improve the Federal-State public assistance programs, and for other purposes", "1743": "To amend the Federal Farm Loan Act and the Farm Credit Act of 1933, as amended, to improve the capitalization of Federal intermediate credit banks and production credit associations, and for other purposes", "1744": "A bill requiring railroads to take certain action at unprotected grade crossings adjacent to schools.", "1745": "A bill to provide for an appropriation of a sum not to exceed $250,000 with which to make a survey of a proposed Golden Circle National Scenic Parkway complex connecting the national parks, monument and recreation. areas in the southern. part of Utah with", "1746": "To authorize the Administrator of the Federal Aviation Agency to release restrictions on the use of certain real property conveyed to the city of Clarinda, Iowa, for airport purposes", "1747": "A bill to require the Secretary of Transportation to prescribe regulations requiring certain modes of public transportation in interstate commerce to reserve some seating capacity for passengers who do not smoke", "1748": "A bill to protect citizens' privacy rights with regard to bank records, credit records, telephone records, mail covers, service monitoring, and nonverbal communications.", "1749": "To amend chapter 44 of title 18, United Satets Code, to exempt ammunition from Federal regulation under the Gun Control Act of 1968", "1750": "A bill entitled the Money Laundering Crimes and Disclosure Act of 1985.", "1751": "To amend the Veterans Benefits Act of 1957 to provide a 3-year presumption of service connection for active tuberculous disease in peacetime cases", "1752": "To require proprietary institutions of higher education to derive not less than 10 percent of such institutions' revenues from sources other than veterans' education benefits or funds provided under title IV of the Higher Education Act of 1965.", "1753": "A bill to coordinate and promote Great Lakes activities, and for other purposes.", "1754": "To authorize an emergency 2-year program of Federal financial assistance in school construction to States and local communities", "1755": "A bill to increase the amount of guaranty by the Veterans Administration on certain home loans made pursuant to the Servicemens Readjustment Act of 1944, as amended.", "1756": "To authorise appropriations for the fiscal years 1962 and 1963 for the construction of certain highways in accordance with title 23 of the United States Code, and for other purposes", "1757": "A bill to include Puerto Rico within the definition of State for purposes of the requirement imposed on the Secretary of the Treasury to withhold State income taxes from the income of Federal employees.", "1758": "To assist in combating crime by creating the U.S. Corrections Service, and for other purposes", "1759": "To amend the Internal Revenue Code by providing a synthetic liquid fuel plant amortization deduction and a percentage depletion for certain materials used in the production of synthetic fuels", "1760": "A bill to permit citizens who are denied the right to vote in Federal elections on account of their race, religion, color, or national origin to be registered to vote in such elections by a Federal registrar.", "1761": "To repeal certain amendments to the Energy Policy and Conservation Act with respect to lighting energy efficiency, and for other purposes.", "1762": "A bill to extend and amend laws relating to the provision and improvement of housing and the renewal of urban communities, and for other purposes.", "1763": "A bill to require the Secretary of Energy to establish an EnergyGrant Competitive Education Program to competitively award grants to consortia of institutions of higher education in regions to conduct research, extension, and education programs relating to the energy needs of the region.", "1764": "To provide a reduced rate of tax on certain types of income", "1765": "To establish a program to control fraud and abuse in the medicare program, to increase the amount of civil monetary penalties which may be assessed against individuals and entities committing fraud against the medicare program, and for other purposes.", "1766": "A bill to amend Title 12, Title 18, and Title 31 of the United States Code relating to money laundering and for other purposes.", "1767": "A bill to increase access to adult education to provide for economic growth.", "1768": "A bill to improve coastal zone management in the United States, and for other purposes.", "1769": "A bill to amend the Federal National Mortgage Association Charter Act to encourage private transactions in Federal Housing Administration insured and Veterans Administration guaranteed mortgages at stabilized prices which approach or equal par value of su", "1770": "To terminate the Home Affordable Modification Program of the Department of the Treasury.", "1771": "Relating to the appointment of the Director of the Federal Bureau of Investigation", "1772": "To provide for the construction of a new Veterans Administration hospital in southern New Jersey", "1773": "A bill to reduce costs in the Medicare and Medicaid programs, and for other purposes.", "1774": "Granting the consent of Congress to interstate compacts for the development or operation of library facilities and services", "1775": "A bill to establish for the 1988 through 1990 crops of upland cotton an optional acreage diversion program.", "1776": "To amend title 38, United States Code, to reauthorize the Veterans' Advisory Committee on Education.", "1777": "A bill to establish a National Commission on Threats to the Homeland and United States National Security.", "1778": "To amend the Soil Bank Act, as amended, to provide a uniform procedure for the alleviation of damage, hardship, or suffering caused by severe drought, flood, or other natural disaster, and for other purposes", "1779": "To amend the Vocational Education Act of 1946 to authorize the appropriation of additional funds to cover reductions, Occurring as a result of the 1950 United States census, in Federal funds apportioned for expenditure in the States and Territories.", "1780": "A bill to protect the privacy of individuals from governmental and nongovernmental intrusion.", "1781": "A bill to authorize the Attorney General to admit persons committed by State courts to Federal penal and correctional institutions when facilities are available", "1782": "To provide individuals with access to health information of which they are a subject, ensure personal privacy with respect to health-care-related information, impose criminal and civil penalties for unauthorized use of protected health information, to provide for the strong enforcement of these rights, and to protect States' rights.", "1783": "A bill to provide for a National Service Corps to strengthen community service programs in the United States.", "1784": "A bill to establish scientific standards and protocols across forensic disciplines, and for other purposes.", "1785": "A bill to fully explore, fully develop, and produce the naval petroleum reserves with the revenue derived therefrom to be placed in a special fund for such exploration, development, and production, for production to be applied to the petroleum needs of the Department of Defense and for the establishment of a study group to investigate the feasibility of creating a National Strategic Petroleum Reserve (military) and for other purposes.", "1786": "A bill to provide increased funding for the Land and Water Conservation Fund and Urban Parks and Recreation Recovery Programs, to resume the funding of the State grants program of the Land and Water Conservation Fund, and to provide for the acquisition and development of conservation and recreation facilities and programs in urban areas, and for other purposes.", "1787": "A bill to amend the Public Health Service Act reauthorize the adolescent family life program, provide for abstinence education, and for other purposes.", "1788": "To establish a National commission on Reform of Federal Criminal Laws", "1789": "A bill to require local educational agencies to conduct testing for radon contamination in schools, and for other purposes.", "1790": "To increase the number of nursing home beds operated by the Veterans' Administration", "1791": "To establish an interim Inspector General for the Federal Housing Finance Agency.", "1792": "A bill to recognize the role of certain State and local agencies in assuming the responsibility for carrying out low-and moderate-income housing programs, to affirm the continuing responsibility of the Federal Government in carrying out such programs, to facilitate the interim operation of such programs by those State and local agencies, to provide for the resumption of the operation of such programs by the Federal Government in an expeditious manner.", "1793": "To make it a crime to induce, through fraud or misrepresentation, any .person to travel in interstate commerce for educational purposes", "1794": "To require the Inspector General of the Federal Housing Finance Agency to submit quarterly reports to the Congress during the conservatorship of the Federal National Mortgage Association and the Federal Home Loan Mortgage Corporation.", "1795": "A bill to provide that quotas on certain meat and meat products provided for by section 2 of the act of August 22, 1964, shall come into effect when the estimate of imports by the Secretary of Agriculture equals or exceeds the level prescribed by such sec", "1796": "To direct the Secretary of State to designate as foreign terrorist organizations certain Mexican drug cartels, and for other purposes.", "1797": "To amend section 104 of the Agricultural Trade Development and Assistance Act of 1954 to eliminate the ceilings on the use of foreign currencies for informational and educational activities carried on with funds provided under authority of that act", "1798": "To protect persons who retain their investment in series E United States savings bonds for 10 years after original maturity, or purchase such bonds after December 31, 1950, and hold them until maturity, against decline in purchasing power of the dollars s", "1799": "To confer jurisdiction upon the United States District Court of Maryland to hear, determine, and render judgment upon the claims of James D. Sigler and Frederick P. Vogelsang III", "1800": "To extinguish Federal Court jurisdiction to require attendance at a particular school of any student because of race, color, creed, or sex.", "1801": "Making supplemental appropriations for the fiscal year ending June 30, 1970, and for other purposes", "1802": "To amend title 10, United States Code, to extend the time limit for the use of education benefits by members of the Selected Reserve and certain members of the reserve component, and for other purposes.", "1803": "A bill to provide for a creditors' committee of employee and retiree representatives of a debtor in order to protect pensions of those employees and retirees.", "1804": "A bill to provide for funding the Emergency Employment Act of 1971 for 2 additional years, and for other purposes.", "1805": "To amend title 18, United States Code, to prohibit taking a child hostage in order to evade arrest.", "1806": "To provide for an ad valorem duty on the importation of shrimp", "1807": "A bill to name the post-baccalaureate achievement program under subpart 4 of part A of title IV of the Higher Education Act of 1965 as the Ronald E. McNair Post-Baccalaureate Achievement Program.", "1808": "A bill to reauthorize the Underground Railroad Educational and Cultural Program.", "1809": "A bill to reauthorize and amend the Comprehensive Environmental Recovery, Compensation, and Liability Act of 1980, and for other purposes.", "1810": "To declare adequate pain care research, education, and treatment as national public health priorities, and for other purposes.", "1811": "To accelerate, extend, and strengthen the Federal air pollution control program", "1812": "To authorize the Federal Government to guard strategic defense facilities against individuals believed to be disposed to commit acts of sabotage, espionage, or other subversion", "1813": "To revive and reenact the act of December 21, 1944 authorizing the City of Clinton Bridge Commission to construct, maintain, and operate a bridge and approaches thereto across the Mississippi River, at or near the cities of Clinton, Iowa, and Fulton, Ill.", "1814": "To extend and amend laws relating to the provision and improvement of housing and the conservation and development of urban communities and for other purposes", "1815": "To amend title 39, United States Code, to make cigarettes and certain other tobacco products nonmailable, and for other purposes.", "1816": "To direct each Federal agency to establish an Environmental Justice Office, and for other purposes.", "1817": "A bill to improve monitoring of the domestic uses made of certain foreign grain after importation, and for other purposes.", "1818": "To amend .the National Pounda-_ tian on the Arts and the Humanities Act of 1965, as amended", "1819": "To amend the Clean Air Act with respect to exceptional event demonstrations, and for other purposes.", "1820": "A bill to exempt certain blood fractions from the Federal Food Drug and Cosmetic Act for five years.", "1821": "To authorize the Federal Works Administration, as an adjunct to the Federal public-works program, to make loans and grants for the construction, remodeling, improvement, and extension of school facilities", "1822": "A bill making appropriations for the Education Division and related agencies, for the fiscal year ending June 30, 1976, and the period ending September 30, 1976.", "1823": "A bill to help ensure general aviation aircraft access to Federal land and to the airspace over that land.", "1824": "To amend the Internal Revenue Code of 1986 to lower the maximum capital gains rate to 15 percent with respect to assets held for more than 3 years, to replace the estate and gift tax rate schedules, and for other purposes.", "1825": "A bill to reauthorize and make reforms to programs authorized by the Public Works and Economic Development Act of 1965.", "1826": "A bill to amend section 2151 of title 18, United States Code, relating to sabotage", "1827": "To rescind certain budget authority proposed to be rescinded (R92-49) in a special message transmitted to the Congress by the President on March 20, 1992, in accordance with section 1012 of the Impoundment Control Act of 1974.", "1828": "To amend the Administrative Procedure Act with respect to the compensation of hearing examiners, and for other purposes", "1829": "To amend the Clean Air Act to modify certain provisions regarding methyl bromide, and for other purposes.", "1830": "To amend the Meat Inspection Act to extend its coverage in certain areas", "1831": "A bill to transfer to the Secretary of Transportation the functions of the Interstate Commerce Commission.", "1832": "A bill to provide for grants to States for the payment of compensation to persons injured by certain criminal acts and omissions, and for other purposes.", "1833": "To amend title 18, United States Code, to combat terrorism against railroad carriers and mass transportation systems on land, on water, or through the air, and for other purposes.", "1834": "A bill to create a fund in the Treasury of the United States to be known as the Fund for Endangered Wildlife, to be administered by the Department of the Interior.", "1835": "A bill to amend the Medicare Prescription Drug, Improvement, and Modernization Act of 2003 to eliminate the coverage gap, to eliminate HMO subsidies, to repeal health savings accounts, and for other purposes.", "1836": "To authorize the Secretary of the Army to investigate, plan, and construct projects for the control of streambank erosion", "1837": "To require the Secretary of Education to investigate the feasibility of establishing a National Environmental Science and Policy Academy.", "1838": "A bill to reduce the sentencing disparity between powder and crack cocaine violations, and to provide increased emphasis on aggravating factors relating to the seriousness of the offense and the culpability of the offender.", "1839": "To increase the personal iiicoine tax exemption of a taxpayer and the additional exemption for his spouse from $600 to $1,000, and to increase the exemption for a dependent from $600 to $750", "1840": "A bill to increase the competence of American secondary students in science and mathematics by narrowing the gap between the current supply of qualified teachers of science and mathematics at the secondary school level and the current need for such teachers, and for other purposes.", "1841": "To encourage physicians and dentists who have received student loans under programs established pursuant to title VII of the Public Health Service Act to practice their professions in areas having a shortage of physicians or dentists", "1842": "To amend the second proviso in section 27 of the Merchant Marine Act, 1920, as amended (U. S. C., 1940 ed., title 46, sec. 883)", "1843": "A bill to apportion certain funds for construction of the National System of Interstate and Defense Highways for fiscal years 1985 and 1986, and for other purposes.", "1844": "A bill to amend section 168 of the Internal Revenue Code of 1954 to require economic substance in lease transactions under the accelerated cost recovery system.", "1845": "To amend title 11, District of Columbia Code, to increase the maximum amount in controversy permitted for cases under the jurisdiction of the Small Claims and Conciliation Branch of the Superior Court of the District of Columbia, and to authorize the Corporation Counsel for the District of Columbia to conduct criminal prosecutions of certain juvenile defendants.", "1846": "A bill to strengthen the technological literacy of the Nation through demonstration programs of technology education.", "1847": "A bill to raise needed revenues by gearing the income tax more closely to an individual's ability to pay, and by broadening the income tax base of individuals and corporations.", "1848": "To provide on-budget status to the Federal National Mortgage Association and the Federal Home Loan Mortgage Corporation.", "1849": "A bill to authorize a national policy and program with respect to wild predatory mammals, to prohibit the poisoning of mammals and birds on the public lands of the United States, to regulate the manufacture, sale, and possession of certain chemical toxica", "1850": "To provide reasonable limits, control, and oversight over the Environmental Protection Agency's use of aerial surveillance of America's farmers.", "1851": "To amend sections 6301 and 7701 of the Internal Revenue Code of 1954 to authorize the Secretary of the Treasury to enter into agreements with the several States under which the States will act as agents of the United States for the collection of taxes upo", "1852": "To amend the definition of earned income for income tax purposes in the case of contributions by self-employed individuals to pension and profit-sharing plans", "1853": "A bill to amend title X of the Public Health Service Act to permit family planning projects to offer adoption services, and for other purposes.", "1854": "A bill to amend the Walsh Healey Act and the Contrast Work Hours Standards Act to permit certain employees to work a 10 hour day in the case of a 4 day work-week, and for other purposes", "1855": "A bill to amend section 312 of the Housing Act of 1964 for the purpose of authorizing $245,000,000 to be appropriated under such section for rehabilitation loans for fiscal year 1982.", "1856": "To provide support for pre-kindergarten education through an Early Education Trust Fund, and for other purposes.", "1857": "A bill to encourage participation by children whose language is English in bilingual education programs under the Bilingual Education Act.", "1858": "To confer jurisdiction upon the Court of Claims to hear, determine, and render judgment upon certain claims for basic and overtime compensation", "1859": "To amend the Fair Labor Standards Act of 1938, as amended, to increase the minimum hourly wage from 75 to 90 cents", "1860": "A bill entitled: The Maritime Drug Law Enforcement and Enhancement Act of 1988.", "1861": "A bill to control emissions of air pollutants from municipal waste incineration units, to provide for the safe disposal of ash produced by such units and for other purposes.", "1862": "To amend the Public Health Service Act to .provide for the establishment of a National Institute of Gerontology", "1863": "To provide for educational partnerships between science museums and National Laboratories.", "1864": "A bill to amend the Agriculture Act of 1949 to modify the dairy price support program.", "1865": "A bill to extend the Federal riot reinsurance and crime insurance programs.", "1866": "A bill to permit the retroactive medicaid payment of medicare cost-sharing for indigent beneficiaries.", "1867": "Providing for the use of money received by the United States from oil shale", "1868": "A bill to extend title XVII of the Public Health Service Act.", "1869": "To clarify and strengthen the Cargo-preference laws of the United States, and for other purposes", "1870": "A bill to amend the Department of Housing and Urban Development Act to provide for the establishment of a Business Advisory Committee.", "1871": "A bill to establish an alternative, outcomes-based process for authorizing innovative, high-quality higher education providers to participate in programs under title IV of the Higher Education Act of 1965.", "1872": "A bill to provide for the establishment of a Clean Energy Technology Manufacturing and Export Assistance Fund to assist United States businesses with exporting clean energy technology products and services.", "1873": "A bill to repeal the Residential Conservation Service Program and the Commercial and Apartment Conservation Service Program.", "1874": "To amend section 4(d) of the Natural Gas Act, with respect to the making of changes in rates and charges, and for other purposes", "1875": "A bill to provide additional funding for mental health care for veterans, and for other purposes.", "1876": "A bill to provide penalties for persons who obtain or attempt to obtain narcotics or other controlled substances from any pharmacist by terror, force, or violence, and for other purposes.", "1877": "To provide new penalties for the use, possession, sale, or transfer of a narcotic drug, marihuana, or a depressant or stimulant substance for members of the armed services", "1878": "A bill to preserve the domestic gold mining industry and to increase the domestic production of gold.", "1879": "A bill to protect the public health and safety by amending the narcotic, depressant, stimulant, and hallucinogenic drug laws in the District of Columbia, and for other purposes", "1880": "A bill to authorize the Federal Power Commission to exempt small hydroelectric projects from certain of the licensing provisions of the Federal Power Act.", "1881": "A bill to amend the net prohibiting certain fishing in U.S. waters in order to revise the penalty for violating the provisions of such act", "1882": "A bill to amend the Solid Waste Disposal Act to encourage the recycling of used oil, and for other purposes.", "1883": "To stabilize support levels for tobacco against disruptive fluctuations and to provide for adjustment in such levels in relation to farm cost", "1884": "A bill to encourage, enhance, and integrate Silver Alert plans throughout the United States, to authorize grants for the assistance of organizations to find missing adults, and for other purposes.", "1885": "To provide bonus funds to local educational agencies that adopt a policy to end social promotion.", "1886": "To require that until a comprehensive study is completed, the volume of cellulosic biofuel mandated under the renewable fuel program be limited to what is commercially available, and for other purposes.", "1887": "To amend title 18, United States Code, to make certain drug offenses under State law predicate offenses under the armed career criminal statute.", "1888": "A bill to provide for uniform state licensing of marine recreational fishermen, and other purposes.", "1889": "To amend the Interstate Commerce Act, as amended, in order to make unlawful, as unreasonable and unjust discrimination against and an undue burden upon interstate commerce, certain property tax assessments of common carrier property, and for other purposes", "1890": "To amend section 22 (relating to the endowment and support of colleges of agriculture and the mechanic arts) of the act of June 29, 1935, to increase the authorized appropriation for resident teaching grants to land grant institutions", "1891": "To prohibit the conducting of invasive research on great apes, and for other purposes.", "1892": "A bill to amend the Highway Revenue Act of 1956 so as to transfer to the Highway Trust Fund a portion of the receipts from the excise tax on passenger automobiles collected during the 1969 fiscal year; to rescind 1 percent of certain appropriations made f", "1893": "To amend title 28, United States Code, to provide Federal debt collection civil procedures.", "1894": "To make use of a firearm to commit a felony a Federal crime where such use violates State law, and for other purposes", "1895": "A bill to amend title XVIII and XIX of the Social Security Act to assure uninterrupted access to necessary medicines under the Medicare prescription drug program.", "1896": "To provide the President with the authority to maintain the essential domestic services of the Government while a sequestration order is in effect.", "1897": "To amend the act entitled An act authorizing the State of Delaware by and through its State highway department to construct, maintain, anti operate a toll bridge across the Delaware River near Wilmington, Del., approved July 13, 1916.", "1898": "To provide an additional 1 percent Federal excise tax on the sale of automobiles using internal combustion engines, and to provide that the revenue from such tax will be used for a research program to develop alternatives to the internal combustion engine", "1899": "A bill to supplement retirement benefits for State and local law enforcement officers.", "1900": "A bill to provide price incentives for production of crude oil from tertiary recovery projects.", "1901": "To amend section 22 (b) of the Internal Revenue Code so as to provide that $150 per month of retirement income shall be nontaxable", "1902": "To amend the Internal Revenue Code of 1954 to providee for public inspection of information required from certain organizations and trusts exempted from taxation.", "1903": "A bill to establish two additional offices of Assistant Secretaries of Agriculture and office of an Administrative Assistant Secretary of Agriculture, and for other purposes", "1904": "To repeal the act entitled An act to amend the railroad retirement acts, the Railroad Unemployment Insurance Act, and subchapter B of chapter 9 of the Internal Revenue Code; and for other purposes, approved July 31, 1946; and for other purposes", "1905": "A bill to require the Economic Regulatory Administration of the Department of Energy to complete the investigation of all oil overcharge cases pending within the Administration.", "1906": "To limit discrimination in health insurance coverage based on health status or past claims experience and to reform the provision of health coverage to small employer groups.", "1907": "A bill to authorize the appointment of citizens of Guam to the U.S. Military Academy, the U.S. Naval. Academy, and the U.S. Air Force Academy.", "1908": "To amend the Fair Packaging and Labeling Act to provide for a uniform system of quality grades for food products, to provide for a system of labeling of food products to disclose the ingredients thereof, to provide for a system of national standards for nutritional labeling of food produccts, and to provide for a system of labeling of perishable and semiperishabie foods", "1909": "A bill to promote a more adequate and responsive national program of water research and development, and for other purposes.", "1910": "A bill to extend for 1 year the authority of the Secretary o: Agriculture to make indemnity payments to dairy farmers who are directed to remove their milk from commercial markets because it contains residues of chemicals registered and approved for use b", "1911": "To inaugurate a comprehensive program of environmental research, development, and demonstration relating to contamination and depletion of ground water and ground water resources; and to establish an Interagency Ground Water Research Committee to improve coordination among Federal agencies and provide assistance for implementation of State management programs.", "1912": "To provide for the establishment of an Offsets Integrity Advisory Board, and for other purposes.", "1913": "A bill to authorize the Secretary of Education to make grants to support fire safety education programs on college campuses.", "1914": "A bill to encourage and facilitate the expansion and development of export markets for poultry and eggs produced in the United States.", "1915": "To provide for judicial review of the constitutionality of grants or loans under certain acts", "1916": "A bill to authorize appropriation for the operations of the Office of Environmental Quality and the Council on Environmental Quality during fiscal years 1982, 1983, and 1984.", "1917": "To amend title 18, United States Code, to reduce violent gang crime and protect law-abiding citizens and communities from violent criminals, and for other purposes.", "1918": "A bill to make it unlawful to manufacture, distribute, or possess with intent to distribute, a drug which is an imitation of a controlled substance or a drug which purports to act like a controlled substance.", "1919": "To amend chapter 11 of title 38, United States Code, to provide that certain medical questions involved in veterans claims shall be referred to medical panels appointed by the Director of the National Institutes of Health", "1920": "To prescribe the oath of office of justices and judges of the United States", "1921": "To modernize the Public Utility Holding Company Act of 1935, the Federal Power Act, the Fair Packaging and Labeling Act, and the Public Utility Regulatory Policies Act of 1978 to promote competition in the electric power industry, and for other purposes.", "1922": "A bill relative to the payment of salaries to recess appointees:", "1923": "To provide for Federal grants and contracts to carry out projects with respect to techniques and practices for the prevention, diminution, and control of juvenile delinquency", "1924": "A bill to amend the Gun Control Act of 1963 to provide for separate offense and consecutive sentencing in felonies involving the use of a firearm.", "1925": "A bill to prohibit United States assistance to develop or promote any rail connections or railway-related connections that traverse or connect Baku, Azerbaijan, Tbilisi, Georgia, and Kars, Turkey, and that specifically exclude cities in Armenia.", "1926": "A bill dividing the State of Florida into three judicial districts, defining the territory embraced 1n each, and fixing the time of holding terms of court therein", "1927": "To revise the procedure in the district courts relating to the disposition of the wages and effects of deceased and deserting seamen, and for other purposes.", "1928": "To ensure that proper information gathering and planning are undertaken to secure the preservation and recovery of the salmon and steelhead of the Columbia River Basin in a manner that protects and enhances local communities, ensures effective expenditure of Federal resources, and maintains reasonably priced, reliable power, to direct the Secretary of Commerce to seek scientific analysis of Federal efforts to restore salmon and steelhead listed under the Endangered Species Act of 1973, and for other purposes.", "1929": "A bill to repeal the prohibition against the filling of a vacancy in the office of district judge for the district of Delaware", "1930": "A bill to repeal part C of the Balanced Budget and Emergency Deficit Control Act of 1985 (relating to emergency powers to eliminate deficits in excess of maximum deficit amount), and to make conforming amendments in other provisions of that Act and in related provisions of the Congressional Budget Act.", "1931": "To amend section 221(f) of the National Housing Act to extend from July 1, 1963, to July 1, 1965, the termination date for the insurance of mortgages under subsections (d) (2) and (d) (4) of such section", "1932": "A bill to amend titles 5 and 37, United States Code, to provide for the continuance of pay and the authority to make certain expenditures and obligations during lapses in appropriations.", "1933": "To amend title 38, United States Code, to provide entitlement to educational assistance under the Montgomery GI Bill for members of the Selected Reserve who aggregate more than 2 years of active duty service in any five year period, and for other purposes.", "1934": "A bill to assist in reducing crime by requiring speedy trials in cases of persons charged with violations of Federal criminal laws, and for other purposes.", "1935": "A bill to make permanent the pension and individual retirement arrangement provisions of the Economic Growth and Tax Relief Reconciliation Act of 2001.", "1936": "A bill to reduce individual income tax rates, to increase savings of individuals, to broaden the income tax base, and for other purposes.", "1937": "To extend the Intermodal Surface Transportation Efficiency Act of 1991 through March 31, 1998.", "1938": "To establish a National Grammar Commission to reform the spelling of English words, to publish the U.S. Official Dictionary, and for other purposes", "1939": "To amend the Public Health Service Act to foster more effective implementation and coordination of clinical care for people with a complex metabolic or autoimmune disease, a disease resulting from insulin deficiency or insulin resistance, or complications caused by such a disease, and for other purposes.", "1940": "To provide an immediate program for the modernization and improvement of such merchant-type vessels in the reserve fleet as are necessary for national defense", "1941": "A bill to set forth a national program for development of synthetic fuels, and for other purposes.", "1942": "To amend title 28, United States Code, to set certain limitations on habeas corpus cases involving the dealth penalty.", "1943": "To establish and to consolidate certain hospital, medical, and public health functions of the Government in a Department of Health", "1944": "A bill to provide protections for workers with respect to their right to select or refrain from selecting representation by a labor organization.", "1945": "A bill to establish the Office of Law Enforcement in the United States Fish and Wildlife Service.", "1946": "A bill to amend the Federal Reserve Act to eliminate the prohibition on the payment of interest on demand deposits and to allow federally chartered savings and loan associations and credit unions to offer demand deposits and for other purposes.", "1947": "To provide off-budget treatment for the Highway Trust Fund, the Airport and Airway Trust Fund, the Inland Waterways Trust Fund, and the Harbor Maintenance Trust Fund.", "1948": "To require the Secretary of the Treasury to retain indefinitely records (including images) of redeemed savings bonds.", "1949": "To require regulation of wastes associated with the exploration, development, or production of crude oil, natural gas, or geothermal energy under the Solid Waste Disposal Act, and for other purposes.", "1950": "To amend the Agricultural Act of 1949 to provide a limitation on the downward adjustment of price supports for milk and butterfat and the products of milk and butterfat", "1951": "To amend section 6 of the Longshoremens and Harbor Workers Compensation Act so as to provide increased benefits in cases of disabling injuries, and for other purposes", "1952": "To establish, wherever feasible, guidelines, recommendations, and regulations that promote the regulatory acceptance of new and revised toxicological tests that protect human and animal health and the environment while reducing, refining, or replacing animal tests and ensuring human safety and product effectiveness.", "1953": "To grant the consent of the Congress to the Texas Low-Level Radioactive Waste Disposal Compact.", "1954": "A bill to amend the National Bureau of Standards Act of 1901 in order to broaden activities in the field of fire research and training, and for other purposes.", "1955": "To provide an equitable process for strengthening the passenger rail service network of Amtrak through the timely closure and realignment of routes with low economic performance.", "1956": "Conferring jurisdiction upon the District Court of the United States for the Western District of Oklahoma to hear, determine, and render judgment upon the claim of Troy Hensley, against the United States", "1957": "To create an electronic employment eligibility verification system to ensure that all workers in the United States are legally able to work, and for other purposes.", "1958": "To amend title 39, United States Code, to regulate the mailing of master keys for motor vehicle ignition switches, and for other purposes", "1959": "A bill to amend the National Narcotics Leadership Act of 1988 to establish a program to support and encourage local communities that first demonstrate a comprehensive, long-term commitment to reduce substance abuse among youth, and for other purposes.", "1960": "To restore the standards used for determining whether technical workers are not employees as in effect before the Tax Reform Act of 1986.", "1961": "To authorize the Secretary of Agriculture to continue to make certain emergency loans and to insure loans to farmers and stockmen in certain areas to refinance existing debts", "1962": "A bill to provide for the orderly marketing of turkeys and to assure consumers an adequate supply of turkeys and turkey products of wholesome quality.", "1963": "A bill to amend section 100 of title 28 of the United States Code in order to provide that the United States District Court for the District of Maryland shall no longer be required to hold court at Cumberland and Denton, Md.", "1964": "A bill to amend the Social Security Act to provide for inclusion of the services of licensed (registered) nurses under medicare and medicaid.", "1965": "To provide for compensating local peace officers who seize vehicles which are forfeited to the United States", "1966": "A bill relating to the useful life of property for purposes of computing the depreciation deduction under the Internal Revenue Code of 1964", "1967": "To provide for a flat fee for services performed in connection with the arrival in, or departure from, the United states of a private aircraft or private vessel, and for other purposes", "1968": "A bill to provide that the Secretary of Agriculture shall offer encouragement, advice, expertise, and other assistance for the purpose of establishing and maintaining farmers' markets designed to lower the cost of food for consumers and increase the income of small farmers.", "1969": "To amend the act of March 3. 1915, as amended, to increase the scope of the activities of the National Advisory Committee for Aeronautics (renamed in this act the National Advisory Committee for Aeronautics and Astronautic), to establish in the Congress a", "1970": "To authorize in certain cases the appointment of special counsel and investigators to assist grand juries in the exercise of their powers", "1971": "To ensure that American workers are able to follow, without financial harm, the recommendations of their employer and public health authorities to stay home when they have symptoms of a contagious disease that may put co-workers, customers, or the public at risk.", "1972": "A bill to amend titles XI and XVIII of the Social Security Act to improve efforts to combat medicare fraud, waste, and abuse.", "1973": "For the safety of life and property by making all commercial fishing vessels subject to the rules and regulations of the United States Coast Guard Marine Inspection", "1974": "A bill to provide for the modification and extension of the Federal Supplemental Compensation program, and for other purposes.", "1975": "To establish the Commission on Economic Indicators to conduct a study and submit a report containing recommendations concerning the appropriateness and accuracy of the methodology, calculations, and reporting used by the Government relating to certain economic indicators.", "1976": "To amend the Agricultural Marketing Agreements Act of 1937 to require hearings on the adequacy of milk marketing order prices under drought conditions", "1977": "To provide for the control of the alewife and other fish and aquatic animals in the waters of the Great Lakes which affects adversely the ecological balance of the Great Lakes", "1978": "To amend section 356 of title 38, United States Code, to provide a permanent rating of 50-percent disability for veterans who have suffered from active tuberculosis for 10 or more years", "1979": "To require the Secretary of the Department of Energy to issue a report on fusion innovation.", "1980": "To assure to persons within the jurisdiction of every State due process of law and equal protection of the laws, and to prevent the crime of lynching", "1981": "A bill reauthorizing programs for the Federal Aviation Administration, and for other purposes.", "1982": "To reclassify fees paid into the Nuclear Waste Fund as offsetting collections, and for other purposes.", "1983": "A bill to improve budgetary information by requiring that the unified budget presented by the President contain an operating budget and a capital budget, distinguish between general funds, trust funds, and enterprise funds, and for other purposes.", "1984": "To provide counseling and technical assistance to local educational agencies in rural areas in obtaining benefits under laws administered by the Commissioner of Education", "1985": "A bill making a supplemental appropriation for fiscal year 1982 for operating expenses of the Coast Guard.", "1986": "A bill to establish centers of excellence for green infrastructure, and for other purposes.", "1987": "To amend the Fish and Wildlife Improvement Act of 1978 to enable the Secretary of the Interior to more effectively utilize the proceeds of sales of certain items.", "1988": "To increase the personal incometax exemptions of a taxpayer (including the exemption for a spouse, the exemption for a dependent, and the additional exemption for old age or blindness) from $600 to $1,000", "1989": "An act to temporarily extend the public debt limit, and for other purposes.", "1990": "To protect the interests of bona fide tenants in the case of any foreclosure on any dwelling or residential real property, and for other purposes.", "1991": "To amend the National Wildlife Refuge System Administration Act of 1966 to improve management of the National Wildlife Refuge System, and for other purposes.", "1992": "A bill to require pipes, solder, and flux in drinking water supply systems to be lead free, and for other purposes.", "1993": "A bill to provide for the organization of interstate water and power users associations for the purpose of entering into contracts for the repayment of the costs of water and power projects on interstate streams and for the ownership, operation, and maint", "1994": "To provide supplementary unemployment compensation benefits in certain cases to workers unemployed during the national emergency, and for other purposes", "1995": "To extend the period during which the Administrator of the Environmental Protection Agency and States are prohibited from requiring a permit under section 402 of the Federal Water Pollution Control Act for certain discharges that are incidental to normal operation of vessels.", "1996": "A bill to provide for the reservation of certain federally generated power for use in the State of Montana.", "1997": "To provide for incentives to encourage health insurance coverage, and for other purposes.", "1998": "To amend Public Law 361, 77th Congress, to provide for admission of certain combat veterans to hospitalizationn Veterans Administration facilities ending adjudication of service connection of the disabilities for which they need treatment.", "1999": "A bill to reauthorize the Magnuson-Stevens Fishery Conservation and Management Act, and for other purposes.", "2000": "To amend the act of August 6, 1958 (72 Stat. 497), relating to service as chief judge of a U.S. district court", "2001": "To direct the Secretary of Education to award grants to States to pay the Federal share of carrying out full-day prekindergarten programs.", "2002": "To amend part II of the Interstate Commerce Act, as amended, to clarify and make certain the authority of the Interstate Commerce Commission to issue temporary, or term, certificates of public convenience and necessity.", "2003": "To mandate price stability as the primary goal of the monetary policy of the Board of Governors of the Federal Reserve System and the Federal Open Market Committee.", "2004": "A bill to prohibit royalty incentives for deepwater drilling, and for other purposes.", "2005": "To provide that Interstate Route No. 80 shall be known as the 80th Division Memorial Highway", "2006": "To amend title 46, United States Code, to accelerate to 2007 the application of the requirement that a tanker that carries oil in bulk as cargo must be equipped with a double hull, and for other purposes.", "2007": "To amend title XI of the Merchant Marine Act, 1936, as amended, with respect to Insurance of ship mortgages, and for other purposes", "2008": "A bill to amend section 520 of the Cranston-Gonzalez National Affordable Housing Act to authorize the Secretary of Housing and Urban Development to make grants to establish midnight basketball league training and partnership programs incorporating employment counseling, job-training, and other educational activities for residents of public housing and federally assisted housing and other low-income families.", "2009": "A bill to provide for the orderly transition from mandatory economic controls, continued monitoring of the economy.", "2010": "To make 5 percent across-the-board rescissions in non-defense, non-homeland-security discretionary spending for fiscal year 2007.", "2011": "To amend title la of the United States Code to make it unlawful to injure intimidate, or interfere with any fireman performing his duties during the course of any riot.", "2012": "To establish audit authority in the U.S. General Accounting Office over the Niagara Falls Bridge Commission.", "2013": "To improve and extend the duration of Public Law 874 of the Eightyfirst Congress, to extend the period during which appropriations may be made to pay entitlements under title II of Public Law 815 of the Eighty-first Congress, to provide temporary suppleme", "2014": "A bill to restore and promote competition in the petroleum industry.", "2015": "To amend the Federal Credit Reform Act of 1990 to include administrative costs in the estimated long-term costs to the Government of direct loans and loan guarantees and to systematically reduce the Federal credit subsidy rate, and for other purposes.", "2016": "A bill to extend the provisions of the Veterans Readjustment Assistance Act of 1952 until such time as existing laws authorizing compulsory military service cease to be effective; and to provide for payment of tuition and fees of veterans receiving . educ", "2017": "A bill to make it a Federal crime to kill or assault a fireman or law enforcement officer engaged in the performance of his duties when the offender travels in interstate commerce or uses any facility of interstate commerce for such purpose.", "2018": "A bill to regulate the interstate trafficking and sale of hypodermic needles and syringes.", "2019": "To exempt graduates of the United States Merchant Marine Academywho hold commissions in the Naval Reserve from induction or service under the Selective Service Act of 1948", "2020": "A bill to authorize the Secretary of Agriculture to furnish feed for livestock to farmers, ranchers, and stockmen in areas determined by him to be emergency areas.", "2021": "To protect workers from the corrupt and coercive Card Check system of organizing labor unions.", "2022": "A bill to authorize the Secretary of Transportation to contract with an independent engineer to review the construction methods of certain Federal highway projects, to require States to submit a project management plan for each highway project financed with Federal funds, and for other purposes.", "2023": "A bill to amend the Commodity Credit Corporation Charter Act for the purpose of requiring specified security measures of any warehouse used by the Commodity Credit Corporation to store agricultural commodities and for the purpose of requiring such Corporation to announce its withdrawal of grain from any warehouse because of the removal of such warehouse from such Corporation's approved list of warehouses.", "2024": "To amend the Interstate Commerce Act to modify the Interstate Commerce Commission's regulatory responsibilities over the trucking industry, and for other purposes.", "2025": "A bill to establish a national policy for the environment; to authorize studies, surveys, and research relating to ecological systems, natural resources, and the quality of the human environment; and to establish a Board of Environmental Quality Advisers", "2026": "To provide compensation to U.S. commercial fishing vessel owners for damages incurred by them as a result of an action of a vessel operated by a foreign government or a citizen of a foreign government", "2027": "To amend the Federal Power Act to clarify the jurisdiction of the Federal Power Commission over certain persons engaged in the transmission or sale at wholesale of electric energy", "2028": "To provide for the inspection of eggs and egg products by the U.S. Department of Agriculture, and for other purposes", "2029": "To provide for the strengthening of American educational resources for international studies and research", "2030": "To provide additional funding for cleanup activities under the Comprehensive Environmental Response, Compensation, and Liability Act for facilities on the National Priority List, and for other purposes.", "2031": "To amend section 143 of title 2, United States Code, relating to economic growth center development highways", "2032": "A bill to create the Marjorie Kinnan Rawlings National Wildlife Refuge in the State of Florida.", "2033": "A bill to amend the Uniformed and Overseas Citizens Absentee Voting Act to increase the ability of absent uniformed services voters and overseas voters to participate in elections for Federal office, and for other purposes.", "2034": "To facilitate nationwide availability of 2-1-1 telephone service for information and referral on health and human services, including volunteer services, and for other purposes.", "2035": "A bill to amend title VIII of the Public Health Service Act to revise and extend the programs of assistance under that title for nurse training.", "2036": "To impose limitations on the authority of the Secretary of the Interior to claim title or other rights to water absent specific direction of law or to abrogate, injure, or otherwise impair any right to the use of any quantity of water.", "2037": "A bill to regulate concentrated animal feeding operations for the protection of the environment and public health, and for other purposes.", "2038": "An original bill to amend the Solid Waste Disposal Act to authorize funds for fiscal year 1984.", "2039": "A bill to terminate certain functions of the Public Housing Administration, and for other purposes", "2040": "To amend the Internal Revenue Code of 1954 providing for gains from the disposition of depreciable realty", "2041": "To amend Public Law 89-108 to increase authorization levels for State and Indian tribal, municipal, rural, and industrial water supplies, to meet current and future water quantity and quality needs of the Red River Valley, to deauthorize certain project features and irrigation service areas, to enhance natural resources and fish and wildlife habitat, and for other purposes.", "2042": "To amend title 38 of the. United States. Code so. as to provide for direct and guaranteed home and farm loans for certain .veterans.", "2043": "To amend section 1314 of the act of August 7, 1953, Public Law 207, 83d Congress (67 Stat. 418), with respect to the authority of Federal officers and agencies to withhold information and limit the availability of records.", "2044": "To direct the Secretary of the Interior to reissue final rules relating to listing of the gray wolf in the Western Great Lakes and Wyoming under the Endangered Species Act of 1973, and for other purposes.", "2045": "A bill to establish doctoral fellowships designed to increase the pool of scientists and engineers trained specifically to address the global energy and environmental challenges of the 21st century.", "2046": "To amend the Higher Education Act of 1965 to address the issues of college affordability and transparency.", "2047": "A bill to help provide adequate dwelling accommodations for more families who have low or moderate incomes, who are elderly, or who are subjected to the special problems of displacement from their homes by Government action; to promote orderly community d", "2048": "A bill to authorize appropriations for conservation grants of the Environmental Protection Agency, to direct the Secretary of the Army and the Secretary of the Interior to conduct expedited feasibility studies of certain water projects in the State of California, and for other purposes.", "2049": "To amend title 49, United States Code, to provide assistance and slots with respect to air carrier service between high density airports and airports not receiving sufficient air service, to improve jet aircraft service to underserved markets, and for other purposes.", "2050": "To protect the Social Security and Medicare trust funds from the public debt limit, and for other purposes.", "2051": "Relating to the payment of alcohol and tobacco taxes by return.", "2052": "A bill to provide for the development of a low-emission engine for motor vehicles and for assistance to American industry in putting such engine into production as a replacement for the internal combustion engine", "2053": "To provide for the resolution of certain labor issues relating to the merger of the Metro-North Railroad and the Long Island Rail Road.", "2054": "A bill to amend paragraph (k) of section 403 of the Federal Food, Drug, and Cosmetic Act, as amended, to define the term chemical preservative as used in such paragraph.", "2055": "To prohibit the serving of alcoholic beverages to passengers on aircraft in flight", "2056": "To bring the tax reductions for individuals provided by the Tax Reform Act of 1969 into immediate effect", "2057": "A bill to authorize the Central Everglades Planning Project, Florida, and for other purposes.", "2058": "An original bill to authorize appropriations for the Department of Energy for national defense programs for fiscal year 1981, and for other purposes.", "2059": "To amend section 1677 of title 38, United States Code, relating to flight training, and amend section 1682 of such title to increase the rates of educational assistance allowance paid to veterans under such sections", "2060": "A bill relating to the administration of polygraph examinations and prepublication review requirements by Federal agencies.", "2061": "A bill to establish an effective program to alleviate conditions of substantial and persistent unemployment and underemployment in certain economically depressed areas.", "2062": "To amend section 22 (b) and section 25 (b) (1) of title 28 of the Internal Revenue Code by granting additional exemptions", "2063": "To amend chapter 29 of title 18, United States Code, with respect to publication or distribution of printed political material", "2064": "To provide for the disposition of the fund known as United States Treasury Special Deposit Account No. 3", "2065": "A bill to release the State of Ohio and the Ohio Turnpike Commission from restrictions with respect to the imposition and collection of tolls on the Ohio Turnpike.", "2066": "A bill to amend the Federal Power Act in order to provide for the regulation of the amount of project reservoir storage capacity that may be allotted for water quality control", "2067": "A bill relating to payments to producers for participation in the 1973 feed grain program.", "2068": "A bill to establish a final criterion for promulgation of a rule with respect to sediments to be used as remediation material at the Historic Area Remediation Site off the coast of the State of New Jersey.", "2069": "A bill to allow a credit against Federal income taxes or payments from the U.S. Treasury for State and local real property taxes or an equivalent portion of rent paid on their residences by individuals who have attained age 65.", "2070": "A bill to authorize a cost of living adjustment for the Federal judiciary.", "2071": "To amend certain requirements and penalties implemented under the Medicare and Medicaid programs by the HITECH Act of 2009, which would otherwise impede eligible professionals from adopting electronic health records to improve patient care.", "2072": "To authorize grants through the Centers for Disease Control and Prevention for mosquito control programs to prevent mosquito-borne diseases, and for other purposes.", "2073": "A bill to improve the administration and enhance the utility of the National Assessment of Educational Progress.", "2074": "A bill to amend title 18 and title 19 of the Social Security Act to require nursing facilities to provide medically related social services.", "2075": "To prohibit the use of Federal funds for the purchase of buses other than low-polluting buses.", "2076": "To require annual appropriations to pay the interest on the public debt", "2077": "A bill to amend the Federal-State Unemployment Compensation Act of 1978 to maintain current provisions (scheduled to be repealed) relating to the State trigger and to restore a former provision relating to the insured unemployment rate.", "2078": "To make certain individuals who participate in civil disorders civilly liable for damages to persons who suffer loss", "2079": "A bill to amend the Housing Act of 1950 in order to provide for loans to colleges and universities for science equipment and facilities.", "2080": "A bill to enhance the State inspection of meat and poultry in the United States, and for other purposes.", "2081": "A bill to amend title XI of the Housing and Community Development Act of 1974 for the purpose of providing that units of general local government receiving grants under the hold-harmless provisions of such title shall be entitled, after fiscal year 1977, to continue to receive at least the amount to which they are presently entitled under such provisions.", "2082": "To establish in the Veterans Administration a Department for the Cure of Alcoholism", "2083": "A bill to direct the Secretary of Transportation to work with the State of New York to ensure that a segment of Interstate Route 86 in the vicinity of Corning, New York, is designated as the Amo Houghton Bypass.", "2084": "A bill to extend the authorization for the ferry boat discretionary program, and for other purposes.", "2085": "A bill to amend titles XIX and XXI of the Social Security Act to provide States with the option of providing services to children with medically complex conditions under the Medicaid program and Children's Health Insurance Program through a care coordination program focused on improving health outcomes for children with medically complex conditions and lowering costs, and for other purposes.", "2086": "A bill to require persons who manufacture cigarettes or little cigars for sale or distribution in commerce to meet performance standards prescribed by the Consumer Product Safety Commission, and for other purposes.", "2087": "A bill granting the consent of Congress to States to enter into the Interstate Compact on Industrialized/Modular Buildings.", "2088": "To prohibit for 1 year the sale of participations under the Sales Participation Act of 1966 other than for housing mortgages held by the Federal National Mortgage Association and the Veterans Administration", "2089": "An original bill to authorize appropriations for the construction of certain highways in accordance with title 23 of the United States Code.", "2090": "To encourage national development by providing incentives for the establishment of new of expanded Jobproducing and job=training industrial and commercial facilities in rural areas having high proportions of persons with low incomes or which have experienced or face a substantial loss of population because of migration, and for other purposes", "2091": "A bill to provide that a student enrolled in a graduate program in psychology shall be eligible for student loans under the health professions student loan program.", "2092": "To authorize a Department of Veterans Affairs major medical facility lease in Atlanta, Georgia.", "2093": "To amend section 312 (c) of the Federal Aviation Act of 1958, relating to research and development, to require the Federal Aviation Administrator to provide for the development of a proximity warning device for use on all civil aircraft of the United States in the interest of safety in air commerce, and for other purposes", "2094": "To amend the Employment Act of 1946 to establish policies with respect to productive capital investments of the Government", "2095": "To amend the Workforce Investment Act of 1998 to prepare individuals with multiple barriers to employment to enter the workforce by providing such individuals with support services, job training, and education, and for other purposes.", "2096": "To amend the Agricultural Market Transition Act to extend the milk price support program through 2002 at an increased price support rate.", "2097": "To provide for the termination of Government operations which are in competition with private enterprise", "2098": "A bill to amend title 49, United States Code, with respect to length and weight limitations for buses, trucks, and other large vehicles on Federal highways, and for other purposes.", "2099": "A bill to establish an independent agency to be known as the United States Office of Transportation Consumers Counsel to represent the consumers of the Nation before Federal regulatory agencies and courts with respect to transportation matters; to improve", "2100": "To improve the understanding and coordination of critical care health services.", "2101": "To authorize the Secretary of Commerce to provide financial assistance to the States of Alaska, Washington, Oregon, California, and Idaho for salmon habitat restoration projects in coastal waters and upland drainages, and for other purposes.", "2102": "A bill to minimize duplication and to maximize efficiency in health planning and resource development.", "2103": "To amend the act of August 11, 1939, to provide that a percentage of the funds available under that act shall be apportioned among the States and paid to certain State agencies for projects pertaining to commercial fisheries", "2104": "To aid in promoting employment opportunities for members of minority groups", "2105": "A bill to amend the Employment Act of 1946 to provide for an informed public opinion upon price and income behavior which threatens national economic stability", "2106": "A bill to assure the first amendment rights of all citizens and to provide criminal penalties for violations thereof.", "2107": "To provide for financial aid in Industrialization of underdevloped areas, and for other purposes.", "2108": "A bill to amend subchapter G of chapter 1 of the Internal Revenue Code of 1954 (relating to the accumulated earnings tax).", "2109": "A bill to exempt newly discovered oil from the windfall profit tax.", "2110": "To provide for standards to beprescribed by the Secretary of Agriculture governing imported agricultural food products", "2111": "A bill to amend the Federal-Aid Highway Act of 1973 in order to increase the Federal share of the cost of certain railroad highway crossing demonstration projects.", "2112": "To provide that existing Federal tax subsidies will terminate on January 1, 1974, and to provide for a maximum duration of 2 years for Federal tax subsidies hereafter enacted", "2113": "To amend chapter 67 (relating to reared pay for nonregular service) of title 10, United States Code, to authorize payment of retired pay at reduced percentages to persons, otherwise eligible, at age 50, and for other purposes", "2114": "A bill to increase the national minimum wage to $1 an hour.", "2115": "Comprehensive Employment and Training Amendments [Restructures and generally revises the Comprehensive Employment and Training Act of 1973. Consolidates most administrative provisions of such Act into a sep XXXX]", "2116": "A bill to amend the Contract Work Hours Standards Act and the Walsh-Healey Act to permit employees to whom such Acts apply to work ten hours a day, four days a week, and for other purposes.", "2117": "To expedite the construction of needed public works and other facilities in areas of substantial unemployment", "2118": "To amend the provisions of the Elementary and Secondary Education Act of 1965 regarding school library media specialists, and for other purposes.", "2119": "A bill to amend chapter 37 of title 38 of the United States Code to broaden the class of veterans eligible for certain home loan benefits.", "2120": "To assure the development of petroleum resources necessary to the national security by providing a limitation on the quantity of crude petroleum and petroleum products that may be imported into the United States", "2121": "To increase the participation by counties in revenues from the National Wildlife Refuge system by amending the act of June 15, 1935, relating to such participation, and for other purposes", "2122": "A bill to promote freedom, fairness, and economic opportunity by repealing the income tax and other taxes, abolishing the Internal Revenue Service, and enacting a national sales tax to be administered primarily by the States.", "2123": "A bill to provide funds for wages of employees of certain insolvent railroads under the Comprehensive Employment and Training Act of 1973.", "2124": "A bill to provide a comprehensive system of liability and compensation for oil spill damage and removal costs.", "2125": "A bill to provide that the area of Canyon, in the State of Texas, shall be considered to be a rural area for purposes of title V of the Housing Act of 1949.", "2126": "To provide certain payments to assist in providing improved educational opportunities for children of migrant agricultural employees", "2127": "To amend part D of title XVIII of the Social Security Act to require the Secretary of Health and Human Services to negotiate and disclose lowest possible prices for prescription drug prices for Medicare beneficiaries.", "2128": "A bill to increase the maximum amount of aggregate payment which may be made in calendar years after 1976 to carry out conservation agreements under the Water Bank Act.", "2129": "A bill to strengthen and improve the private retirement system by establishing minimum standards for participation in and for vesting of benefits under pension and profit-sharing retirement plans, by allowing deductions to individuals for their contributions to retirement plans, by increasing contribution limitations for self-employed individuals and shareholder-employees of electing small business corporations, by imposing an excise tax on prohibited transactions.", "2130": "A bill to amend the Equal Credit Opportunity Act to prohibit discrimination against any applicant for credit on the basis of the geographical location of the applicant's residence.", "2131": "To provide for the discharge of minors who enlist in the naval service or the Coast Guard without consent of parents or guardian", "2132": "To promote marine and hydrokinetic renewable energy research and development, and for other purposes.", "2133": "To amend the Internal Revenue Code of 1986 to curb tax abuses by disallowing tax benefits claimed to arise from transactions without substantial economic substance, and for other purposes.", "2134": "To amend the Federal Election Campaign Act of 1971 to protect the equal participation of eligible voters in campaigns for election for Federal office.", "2135": "To remove the 18 or 36 month limitation on the period of COBRA continuation coverage.", "2136": "A bill to amend section 503 of the act en titled An act to expedite the provision of housing in connection with national defense, and for other purposes, ap proved October 14, 1940, as amended.", "2137": "To prohibit the National Endowment for the Humanities to provide funds to carry out the Popular Romance Project or any similar project relating to love or romance.", "2138": "To amend title 11 of the United States Code to provide protection for medical debt homeowners, to restore bankruptcy protections for individuals experiencing economic distress as caregivers to ill or disabled family members, and to exempt from means testing debtors whose financial problems were caused by serious medical problems.", "2139": "A bill to authorize Federal payments to the States to assist in constructing schools.", "2140": "A bill to provide Federal assistance to cities with high concentrations of foreign-born persons.", "2141": "To establish an effective Federal-State program to aid in alleviating conditions of substantial and persistent unemployment in certain economically depressed areas", "2142": "To amend section 8(b) (4) of the National Labor Relations Act, as amended", "2143": "A bill to require the appointment of one member of the Armed Forces as a member of the Atomic Energy Commission and to authorize the appointment of one additional member of the Armed Forces as a member of the Commission", "2144": "A bill to amend the Mental Retardation Facilities Construction Act to extend and improve the provisions thereof, and for other purposes", "2145": "To amend section 4216 (relating to definition of price) of the Internal Revenue Code of 1954", "2146": "to amend the Subversive Activities Control Act of 1950 so as to provide that no individual who willfully fails or refuses to answer, or falsely answers, certain questions relating to subversive activities, when summoned to appear before certain Federal ag", "2147": "A bill to extend the minimum wage provisions of the Fair Labor Standards Act of 1338 to employees performing work in or related to agriculture", "2148": "A bill to impose a windfall profit tax on domestic crude oil.", "2149": "A bill to authorize the National Science Foundation to designate certain institutions of higher education as national energy research centers.", "2150": "A bill to provide for quality assurance and utilization contract in home health care under the medicare, medicaid, and social services programs in accordance with a plan to be developed by a commission specifically established for that purpose.", "2151": "To amend the section 484(r) of the Higher Education Act of 1965 to exclude certain marijuana-related offenses from the drug-related offenses that result in students being barred from receiving Federal educational loans, grants, and work assistance, and for other purposes.", "2152": "A bill to exempt nonhazardous businesses from the Occupational Safety and Health Act of 1970 and for other purposes.", "2153": "A bill to incorporate the National Association of Colored Womens Clubs.", "2154": "A bill to insure the most effective and equitable distribution of infantile paralysis vaccine.", "2155": "To authorize an additional 41.000 miles for the National System of Interstate and Defense Highways", "2156": "A bill to provide tax relief for persons affected by the discharge of oil in connection with the explosion on, and sinking of, the mobile offshore drilling unit Deepwater Horizon.", "2157": "To promote the national security and stability of the United States economy by reducing the dependence of the United States on foreign oil through the use of alternative fuels and new vehicle technologies, and for other purposes.", "2158": "To require the Secretary of Education to award grants to local governments that have experienced at least a 15 percent decrease in property tax revenues to fund certain elementary and secondary school education programs.", "2159": "A bill to provide assistance to certain employers and States in 2011 and 2012, to improve the long-term solvency of the Unemployment Compensation program, and for other purposes.", "2160": "To amend the Intenal Revenue Code of 1954 to increase the credit against tax for retirement income", "2161": "A bill to strengthen and expand the Headstart program, with priority to the economically disadvantaged, to amend the Economic Opportunity Act of 1964.", "2162": "A bill to amend section 18 of the Railroad Retirement Act of 1937 to restore free transportation on any railroad carrier subject to that act for individuals receiving annuities or pensions under that act, and for their dependents, and for other purposes.", "2163": "A bill to improve the operation of the sugar price support program, and for other purposes.", "2164": "A bill to amend the Social Security Act to expand the availability of health care coverage for working individuals with disabilities, to establish a Ticket to Work and Self-Sufficiency Program in the Social Security Administration to provide such individuals with meaningful opportunities to work, and for other purposes.", "2165": "To amend title 14, United States Code, in order to correct certain inequities in the computation of service in the Coast Guard Womens Reserve", "2166": "To amend the prevailing wage provisions of the Davis Bacon Act to include subsistence allowances", "2167": "To provide financial and other support to the United Nations Population Fund to carry out activities to save women's lives, limit the incidence of abortion and maternal mortality associated with unsafe abortion, promote universal access to safe and reliable family planning, and assist women, children, and men in developing countries to live better lives.", "2168": "A bill to exempt certain automotive parts and accessories from the excise tax imposed by section 4061 of the Internal Revenue Code of 1954.", "2169": "A bill to establish a system of general support grants to State and local governments; to allow partial Federal income tax credit for State and local income tax payments; to authorize Federal collection of State income taxes: to enlarge the Federal estate", "2170": "To amend the Internal Revenue Code of 1986 with respect to the treatment of foreign oil and gas income.", "2171": "An original bill to amend the Public Works and Economic Development Act of 1965, to increase the antirecessionary effectiveness of the program.", "2172": "To amend section 22 (a) (general definition) of the Internal Revenue Code", "2173": "To authorize the Secretary of Transportation to establish safety standards,Rules, and regulations for railroad equipment, trackage, facilities, and operations, and for other purposes", "2174": "To amend the Bilingual Education Act with respect to the qualification of schools in which programs under such act may be carried out", "2175": "A bill to authorize appropriations to the Winston Churchill Memorial and Library in the United States for the construction of educational facilities at such memorial and library, and for other purposes.", "2176": "To provide for the payment of reasonable costs, expenses, and attorneys' fees to defendants in actions by the United States for the condemnation of real property after determination of the amount of just compensation, or after abandonment of such actions by the United States, and for other purposes", "2177": "To amend the Public Health Service Act to reauthorize and update the National Child Traumatic Stress Initiative for grants to address the problems of individuals who experience trauma and violence related stress.", "2178": "A bill to amend title 11 of the Railway Labor Act so as to provide that all employees of an air carrier shall be included in determining bargaining units for flight crews and aircraft dispatchers, and for other purposes", "2179": "To repeal a scheduled increase in the fee charged by the Government National Mortgage Association for guarantee of mortgage-backed securities.", "2180": "To amend XVIII of the Social Security Act to establish a Medicare demonstration project under which incentive payments are provided in certain areas in order to stabilize, maintain, or increase access to primary care services for individuals enrolled under part B of such title.", "2181": "To amend the Internal Revenue Code of 1986, the Employee Retirement Income Security Act of 1974, and the Public Health Service Act to permit extension of COBRA continuation coverage for individuals age 55 or older.", "2182": "To assist first-time homebuyers to purchase homes through first home ownership accounts, elimination of the capital gains tax on the sale of a principal residence, extension of mortgage bonds, modified FHA authority, and downpayment and shared equity plans.", "2183": "To amend .title II of the Social Security Act to eliminate the reduction in disability insurance benefits which is presently required in the case of an individual receiving workmens compensation benefits", "2184": "To assist in the conservation of rare felids and rare canids by supporting and providing financial resources for the conservation programs of nations within the range of rare felid and rare canid populations and projects of persons with demonstrated expertise in the conservation of rare felid and rare canid populations.", "2185": "To require institutions of higher education to notify students whether student housing facilities are equipped with automatic fire sprinkler systems.", "2186": "A bill to provide for wheat export marketing stamps to regulate the price of wheat in order to stabilize food prices and to establish the National Wheat Council.", "2187": "A bill to provide certain enhancements to the Montgomery GI Bill Program for certain individuals who serve as members of the Armed Forces after the September 11, 2001, terrorist attacks, and for other purposes.", "2188": "A bill to provide an effective method for the construction of lowrent homes for lowincome families with a minimum of Federal control and expenditure", "2189": "A bill to establish environmental laboratories within the States, regions, and Nation pursuant to policies and goals established in the National Environmental Policy Act of 1969", "2190": "To provide for increased participation in the acreage reserve program by producers of basic commodities in major disaster areas.", "2191": "To amend the Rural Electrification Act of 1936 to eliminate the requirement that central station service be unavailable in the case of rural electrification loans.", "2192": "A bill to provide for the regulation of the disposal of plastic materials and other garbage at sea; to provide for negotiation, regulation, and research regarding fishing with plastic driftnets; and for other purposes.", "2193": "A bill to encourage and stimulate the production and conservation of coal in the United States through research and development by creating a Coal Research and Development Commission, and for other purposes.", "2194": "A bill to amend section 216 of title 38, United States Code, relating to prosthetic research in the Veterans Administration.", "2195": "To permit all wheat farmers (including those who plant less than 15 acres of wheat) to vote in any wheat marketing quota referendum", "2196": "A bill to establish permanent Federal and State drug treatment programs for criminal offenders, and for other purposes.", "2197": "To increase transparency regarding debt instruments of the United States held by foreign governments, to assess the risks to the United States of such holdings, and for other purposes.", "2198": "To establish a national leadership initiative to promote and coordinate knowledge utilization in education, thereby increasing student achievement consistent with the objectives of the No Child Left Behind Act of 2001, and for other purposes.", "2199": "A bill to amend the Civil Rights Act to protect the rights of the unborn.", "2200": "To provide for the construction of a fish and wildlife marine laboratory and experiment station in the central gulf coast area of Florida.", "2201": "A bill to authorize extension of time limitations for a FERC-issued license.", "2202": "To provide for various programs and activities to respond to the problem of asthma in urban areas.", "2203": "To reauthorize the Secure Rural Schools and Community Self-Determination Act of 2000.", "2204": "To streamline and ensure onshore energy permitting, provide for onshore leasing certainty, and give certainty to oil shale development for American energy security, economic development, and job creation, and for other purposes.", "2205": "To improve sharing of immigration information among Federal, State, and local law enforcement officials, to improve State and local enforcement of immigration laws, and for other purposes.", "2206": "To amend the Carl D. Perkins Vocational and Technical Education Act of 1998 to strengthen and improve programs under that Act.", "2207": "To amend title 38, United States Code, to improve benefits under the Montgomery GI Bill by establishing an enhanced educational assistance program, by increasing the amount of basic educational assistance, by repealing the requirement for reduction in pay for participation in the program, by authorizing the Secretary of Veterans Affairs to make accelerated payments of basic educational assistance, and by reopening the period for certain VEAP participants to elect to participate in the program of basic educational assistance, and for other purposes.", "2208": "To provide equitable treatment for producers participating in the soilbank program on the basis of incorrect information furnished by the Government", "2209": "To amend the provisions of the Packers and Stockyards Act, 1921, as amended (7 U. S. C. 181) relating to practices in the marketing of livestock.", "2210": "A bill to foster and continue the family farm in the United States by providing young farmers with the necessary assistance to purchase family farm units.", "2211": "A bill authorizing the transfer of certain Presidential authority with respect to certain functions required by the Atomic Energy Act of 1954.", "2212": "A bill to amend the Clean Air Act to define the term Motor vehicle emission control inspection and maintenance program.", "2213": "A bill to strengthen and improve the protections and interests of participants and beneficiaries of employee pension and welfare benefit plans.", "2214": "A bill to establish the National Prostate Cancer Council for improved screening, early detection, assessment, and monitoring of prostate cancer, and to direct the development and implementation of a national strategic plan to expedite advancement of diagnostic tools and the transfer of such tools to patients.", "2215": "To give all persons serving in our Armed Forces the right to vote, regardless of age", "2216": "To authorize grants to enable local school agencies overburdened with war incurred or defense incurred school enrollments to increase school facilities", "2217": "A bill to prohibit permanently the issuance of regulations on the taxation of fringe benefits.", "2218": "A bill to improve the job and income security and retirement security of the American worker, and for other purposes.", "2219": "To provide for the use of public works and other economic programs in a coordinated efort to aid economically disadvantaged areas of the Nation", "2220": "A bill to establish a system for identifying, notifying, and preventing illness and death among workers who are at increased or high risk of occupational disease, and for other purposes.", "2221": "To amend the Higher Education Act of 1965 to preclude the consideration of nonliquid assets in the determination of Federal student financial assistance.", "2222": "A bill to provide disaster assistance to producers who suffered certain losses in the quantity of the 1989 crop of a commodity harvested as the result of damaging weather or related condition in 1988 or 1989, and for other purposes.", "2223": "To amend section 1120A(c) of the Elementary and Secondary Education Act of 1965 to assure comparability of opportunity for educationally disadvantaged students.", "2224": "A bill to authorize the continuation of Federal financial assistance for vaccination programs against polio, measles, and certain other diseases.", "2225": "A bill to amend the Food and Agriculture Act of 1977 relating to increases in the target prices of the 1979 crops of wheat, corn and other crops, under certain circumstances, and for other purposes.", "2226": "A bill to increase the level of price support for the 1953 and 1954 crops of any basic agricultural commodity", "2227": "To authorize health insurance issuers to continue to offer for sale current group health insurance coverage in satisfaction of the minimum essential health insurance coverage requirement, and for other purposes.", "2228": "To extend benefits under section8191 to title 5, United States Code, to lawenforcement officers and firemen notemployed by the United States who arekilled or totally disabled in the line ofduty", "2229": "A bill to require an acreage reduction program for each of the 1984 and 1985 crops of wheat and feed grains if the carryover from the preceding crop is excessive.", "2230": "To promote the welfare of the people by authorizing the appropriation of funds to assist the States and territories in the further development of their programs of general university extension education", "2231": "A bill to amend section 1445(b) of the Food and Agriculture Act of 1977 to modify the formula for distribution of funds authorized thereunder for agricultural research.", "2232": "To deem hospitals in Hillsdale County, Michigan, as being located in the Kalamazoo-Battle Creek, Michigan, Metropolitan Statistical Area for purposes of reimbursement under the Medicare Program."}, "label": {"0": "Health", "1": "Public Lands and Water Management", "2": "Health", "3": "Transportation", "4": "Public Lands and Water Management", "5": "Labor and Employment", "6": "Energy", "7": "Transportation", "8": "Transportation", "9": "Public Lands and Water Management", "10": "Energy", "11": "Energy", "12": "Agriculture", "13": "Civil Rights, Minority Issues, and Civil Liberties", "14": "Macroeconomics", "15": "Health", "16": "Labor and Employment", "17": "Environment", "18": "Transportation", "19": "Education", "20": "Public Lands and Water Management", "21": "Macroeconomics", "22": "Public Lands and Water Management", "23": "Public Lands and Water Management", "24": "Health", "25": "Transportation", "26": "Law, Crime, and Family Issues", "27": "Public Lands and Water Management", "28": "Law, Crime, and Family Issues", "29": "Energy", "30": "Energy", "31": "Transportation", "32": "Education", "33": "Public Lands and Water Management", "34": "Public Lands and Water Management", "35": "Education", "36": "Civil Rights, Minority Issues, and Civil Liberties", "37": "Law, Crime, and Family Issues", "38": "Health", "39": "Law, Crime, and Family Issues", "40": "Agriculture", "41": "Public Lands and Water Management", "42": "Public Lands and Water Management", "43": "Health", "44": "Macroeconomics", "45": "Macroeconomics", "46": "Macroeconomics", "47": "Labor and Employment", "48": "Energy", "49": "Law, Crime, and Family Issues", "50": "Energy", "51": "Public Lands and Water Management", "52": "Public Lands and Water Management", "53": "Public Lands and Water Management", "54": "Law, Crime, and Family Issues", "55": "Energy", "56": "Health", "57": "Law, Crime, and Family Issues", "58": "Public Lands and Water Management", "59": "Energy", "60": "Law, Crime, and Family Issues", "61": "Law, Crime, and Family Issues", "62": "Transportation", "63": "Law, Crime, and Family Issues", "64": "Law, Crime, and Family Issues", "65": "Public Lands and Water Management", "66": "Energy", "67": "Public Lands and Water Management", "68": "Labor and Employment", "69": "Health", "70": "Health", "71": "Public Lands and Water Management", "72": "Transportation", "73": "Transportation", "74": "Macroeconomics", "75": "Health", "76": "Community Development and Housing Issues", "77": "Energy", "78": "Agriculture", "79": "Macroeconomics", "80": "Agriculture", "81": "Agriculture", "82": "Law, Crime, and Family Issues", "83": "Macroeconomics", "84": "Macroeconomics", "85": "Law, Crime, and Family Issues", "86": "Public Lands and Water Management", "87": "Energy", "88": "Public Lands and Water Management", "89": "Transportation", "90": "Public Lands and Water Management", "91": "Law, Crime, and Family Issues", "92": "Public Lands and Water Management", "93": "Public Lands and Water Management", "94": "Public Lands and Water Management", "95": "Law, Crime, and Family Issues", "96": "Law, Crime, and Family Issues", "97": "Macroeconomics", "98": "Agriculture", "99": "Civil Rights, Minority Issues, and Civil Liberties", "100": "Energy", "101": "Civil Rights, Minority Issues, and Civil Liberties", "102": "Community Development and Housing Issues", "103": "Law, Crime, and Family Issues", "104": "Transportation", "105": "Transportation", "106": "Public Lands and Water Management", "107": "Agriculture", "108": "Public Lands and Water Management", "109": "Public Lands and Water Management", "110": "Law, Crime, and Family Issues", "111": "Agriculture", "112": "Law, Crime, and Family Issues", "113": "Law, Crime, and Family Issues", "114": "Community Development and Housing Issues", "115": "Labor and Employment", "116": "Public Lands and Water Management", "117": "Macroeconomics", "118": "Transportation", "119": "Energy", "120": "Public Lands and Water Management", "121": "Education", "122": "Labor and Employment", "123": "Community Development and Housing Issues", "124": "Law, Crime, and Family Issues", "125": "Public Lands and Water Management", "126": "Public Lands and Water Management", "127": "Public Lands and Water Management", "128": "Law, Crime, and Family Issues", "129": "Public Lands and Water Management", "130": "Environment", "131": "Agriculture", "132": "Transportation", "133": "Law, Crime, and Family Issues", "134": "Education", "135": "Agriculture", "136": "Law, Crime, and Family Issues", "137": "Public Lands and Water Management", "138": "Public Lands and Water Management", "139": "Public Lands and Water Management", "140": "Law, Crime, and Family Issues", "141": "Education", "142": "Agriculture", "143": "Agriculture", "144": "Education", "145": "Public Lands and Water Management", "146": "Public Lands and Water Management", "147": "Public Lands and Water Management", "148": "Labor and Employment", "149": "Law, Crime, and Family Issues", "150": "Health", "151": "Health", "152": "Macroeconomics", "153": "Community Development and Housing Issues", "154": "Environment", "155": "Labor and Employment", "156": "Energy", "157": "Energy", "158": "Environment", "159": "Transportation", "160": "Law, Crime, and Family Issues", "161": "Agriculture", "162": "Public Lands and Water Management", "163": "Transportation", "164": "Law, Crime, and Family Issues", "165": "Health", "166": "Health", "167": "Public Lands and Water Management", "168": "Law, Crime, and Family Issues", "169": "Macroeconomics", "170": "Transportation", "171": "Agriculture", "172": "Law, Crime, and Family Issues", "173": "Law, Crime, and Family Issues", "174": "Health", "175": "Environment", "176": "Energy", "177": "Energy", "178": "Energy", "179": "Public Lands and Water Management", "180": "Health", "181": "Education", "182": "Transportation", "183": "Environment", "184": "Public Lands and Water Management", "185": "Public Lands and Water Management", "186": "Agriculture", "187": "Law, Crime, and Family Issues", "188": "Agriculture", "189": "Energy", "190": "Community Development and Housing Issues", "191": "Public Lands and Water Management", "192": "Environment", "193": "Education", "194": "Agriculture", "195": "Education", "196": "Transportation", "197": "Civil Rights, Minority Issues, and Civil Liberties", "198": "Public Lands and Water Management", "199": "Public Lands and Water Management", "200": "Public Lands and Water Management", "201": "Public Lands and Water Management", "202": "Labor and Employment", "203": "Health", "204": "Transportation", "205": "Law, Crime, and Family Issues", "206": "Public Lands and Water Management", "207": "Transportation", "208": "Transportation", "209": "Transportation", "210": "Public Lands and Water Management", "211": "Community Development and Housing Issues", "212": "Macroeconomics", "213": "Public Lands and Water Management", "214": "Health", "215": "Agriculture", "216": "Public Lands and Water Management", "217": "Transportation", "218": "Macroeconomics", "219": "Health", "220": "Environment", "221": "Agriculture", "222": "Transportation", "223": "Community Development and Housing Issues", "224": "Environment", "225": "Agriculture", "226": "Public Lands and Water Management", "227": "Community Development and Housing Issues", "228": "Health", "229": "Law, Crime, and Family Issues", "230": "Transportation", "231": "Macroeconomics", "232": "Education", "233": "Transportation", "234": "Law, Crime, and Family Issues", "235": "Health", "236": "Transportation", "237": "Energy", "238": "Public Lands and Water Management", "239": "Law, Crime, and Family Issues", "240": "Energy", "241": "Civil Rights, Minority Issues, and Civil Liberties", "242": "Energy", "243": "Education", "244": "Law, Crime, and Family Issues", "245": "Transportation", "246": "Public Lands and Water Management", "247": "Transportation", "248": "Macroeconomics", "249": "Civil Rights, Minority Issues, and Civil Liberties", "250": "Health", "251": "Civil Rights, Minority Issues, and Civil Liberties", "252": "Civil Rights, Minority Issues, and Civil Liberties", "253": "Public Lands and Water Management", "254": "Law, Crime, and Family Issues", "255": "Public Lands and Water Management", "256": "Energy", "257": "Public Lands and Water Management", "258": "Education", "259": "Labor and Employment", "260": "Public Lands and Water Management", "261": "Health", "262": "Agriculture", "263": "Macroeconomics", "264": "Community Development and Housing Issues", "265": "Transportation", "266": "Public Lands and Water Management", "267": "Public Lands and Water Management", "268": "Public Lands and Water Management", "269": "Transportation", "270": "Transportation", "271": "Public Lands and Water Management", "272": "Energy", "273": "Transportation", "274": "Public Lands and Water Management", "275": "Law, Crime, and Family Issues", "276": "Public Lands and Water Management", "277": "Environment", "278": "Energy", "279": "Public Lands and Water Management", "280": "Health", "281": "Health", "282": "Agriculture", "283": "Transportation", "284": "Public Lands and Water Management", "285": "Agriculture", "286": "Law, Crime, and Family Issues", "287": "Public Lands and Water Management", "288": "Transportation", "289": "Law, Crime, and Family Issues", "290": "Health", "291": "Transportation", "292": "Public Lands and Water Management", "293": "Health", "294": "Transportation", "295": "Law, Crime, and Family Issues", "296": "Public Lands and Water Management", "297": "Energy", "298": "Agriculture", "299": "Macroeconomics", "300": "Public Lands and Water Management", "301": "Public Lands and Water Management", "302": "Labor and Employment", "303": "Public Lands and Water Management", "304": "Civil Rights, Minority Issues, and Civil Liberties", "305": "Energy", "306": "Public Lands and Water Management", "307": "Public Lands and Water Management", "308": "Public Lands and Water Management", "309": "Transportation", "310": "Transportation", "311": "Energy", "312": "Labor and Employment", "313": "Public Lands and Water Management", "314": "Transportation", "315": "Public Lands and Water Management", "316": "Transportation", "317": "Public Lands and Water Management", "318": "Transportation", "319": "Health", "320": "Transportation", "321": "Public Lands and Water Management", "322": "Macroeconomics", "323": "Transportation", "324": "Law, Crime, and Family Issues", "325": "Education", "326": "Public Lands and Water Management", "327": "Education", "328": "Public Lands and Water Management", "329": "Transportation", "330": "Public Lands and Water Management", "331": "Community Development and Housing Issues", "332": "Public Lands and Water Management", "333": "Health", "334": "Public Lands and Water Management", "335": "Transportation", "336": "Public Lands and Water Management", "337": "Law, Crime, and Family Issues", "338": "Law, Crime, and Family Issues", "339": "Law, Crime, and Family Issues", "340": "Public Lands and Water Management", "341": "Education", "342": "Education", "343": "Transportation", "344": "Public Lands and Water Management", "345": "Law, Crime, and Family Issues", "346": "Health", "347": "Public Lands and Water Management", "348": "Transportation", "349": "Agriculture", "350": "Community Development and Housing Issues", "351": "Public Lands and Water Management", "352": "Labor and Employment", "353": "Community Development and Housing Issues", "354": "Public Lands and Water Management", "355": "Public Lands and Water Management", "356": "Environment", "357": "Public Lands and Water Management", "358": "Environment", "359": "Public Lands and Water Management", "360": "Energy", "361": "Macroeconomics", "362": "Community Development and Housing Issues", "363": "Macroeconomics", "364": "Transportation", "365": "Transportation", "366": "Civil Rights, Minority Issues, and Civil Liberties", "367": "Health", "368": "Agriculture", "369": "Environment", "370": "Macroeconomics", "371": "Macroeconomics", "372": "Education", "373": "Civil Rights, Minority Issues, and Civil Liberties", "374": "Health", "375": "Transportation", "376": "Macroeconomics", "377": "Law, Crime, and Family Issues", "378": "Education", "379": "Public Lands and Water Management", "380": "Education", "381": "Labor and Employment", "382": "Public Lands and Water Management", "383": "Public Lands and Water Management", "384": "Law, Crime, and Family Issues", "385": "Energy", "386": "Health", "387": "Public Lands and Water Management", "388": "Law, Crime, and Family Issues", "389": "Labor and Employment", "390": "Civil Rights, Minority Issues, and Civil Liberties", "391": "Environment", "392": "Public Lands and Water Management", "393": "Transportation", "394": "Transportation", "395": "Health", "396": "Public Lands and Water Management", "397": "Environment", "398": "Civil Rights, Minority Issues, and Civil Liberties", "399": "Law, Crime, and Family Issues", "400": "Public Lands and Water Management", "401": "Agriculture", "402": "Transportation", "403": "Energy", "404": "Transportation", "405": "Public Lands and Water Management", "406": "Energy", "407": "Public Lands and Water Management", "408": "Environment", "409": "Agriculture", "410": "Health", "411": "Community Development and Housing Issues", "412": "Environment", "413": "Agriculture", "414": "Law, Crime, and Family Issues", "415": "Agriculture", "416": "Energy", "417": "Agriculture", "418": "Public Lands and Water Management", "419": "Public Lands and Water Management", "420": "Transportation", "421": "Agriculture", "422": "Public Lands and Water Management", "423": "Macroeconomics", "424": "Public Lands and Water Management", "425": "Health", "426": "Energy", "427": "Public Lands and Water Management", "428": "Education", "429": "Agriculture", "430": "Health", "431": "Education", "432": "Community Development and Housing Issues", "433": "Community Development and Housing Issues", "434": "Law, Crime, and Family Issues", "435": "Labor and Employment", "436": "Transportation", "437": "Environment", "438": "Public Lands and Water Management", "439": "Public Lands and Water Management", "440": "Macroeconomics", "441": "Law, Crime, and Family Issues", "442": "Public Lands and Water Management", "443": "Law, Crime, and Family Issues", "444": "Transportation", "445": "Education", "446": "Public Lands and Water Management", "447": "Public Lands and Water Management", "448": "Law, Crime, and Family Issues", "449": "Public Lands and Water Management", "450": "Energy", "451": "Civil Rights, Minority Issues, and Civil Liberties", "452": "Health", "453": "Public Lands and Water Management", "454": "Law, Crime, and Family Issues", "455": "Public Lands and Water Management", "456": "Transportation", "457": "Public Lands and Water Management", "458": "Agriculture", "459": "Health", "460": "Transportation", "461": "Transportation", "462": "Agriculture", "463": "Public Lands and Water Management", "464": "Public Lands and Water Management", "465": "Civil Rights, Minority Issues, and Civil Liberties", "466": "Transportation", "467": "Education", "468": "Public Lands and Water Management", "469": "Labor and Employment", "470": "Agriculture", "471": "Transportation", "472": "Health", "473": "Agriculture", "474": "Education", "475": "Public Lands and Water Management", "476": "Energy", "477": "Labor and Employment", "478": "Transportation", "479": "Environment", "480": "Public Lands and Water Management", "481": "Education", "482": "Public Lands and Water Management", "483": "Public Lands and Water Management", "484": "Public Lands and Water Management", "485": "Transportation", "486": "Community Development and Housing Issues", "487": "Environment", "488": "Public Lands and Water Management", "489": "Law, Crime, and Family Issues", "490": "Public Lands and Water Management", "491": "Energy", "492": "Environment", "493": "Transportation", "494": "Law, Crime, and Family Issues", "495": "Civil Rights, Minority Issues, and Civil Liberties", "496": "Energy", "497": "Health", "498": "Civil Rights, Minority Issues, and Civil Liberties", "499": "Transportation", "500": "Macroeconomics", "501": "Transportation", "502": "Environment", "503": "Community Development and Housing Issues", "504": "Environment", "505": "Law, Crime, and Family Issues", "506": "Public Lands and Water Management", "507": "Energy", "508": "Health", "509": "Education", "510": "Health", "511": "Civil Rights, Minority Issues, and Civil Liberties", "512": "Education", "513": "Health", "514": "Law, Crime, and Family Issues", "515": "Education", "516": "Civil Rights, Minority Issues, and Civil Liberties", "517": "Transportation", "518": "Transportation", "519": "Agriculture", "520": "Health", "521": "Public Lands and Water Management", "522": "Public Lands and Water Management", "523": "Macroeconomics", "524": "Public Lands and Water Management", "525": "Transportation", "526": "Labor and Employment", "527": "Macroeconomics", "528": "Transportation", "529": "Labor and Employment", "530": "Environment", "531": "Transportation", "532": "Education", "533": "Environment", "534": "Public Lands and Water Management", "535": "Health", "536": "Energy", "537": "Public Lands and Water Management", "538": "Public Lands and Water Management", "539": "Environment", "540": "Civil Rights, Minority Issues, and Civil Liberties", "541": "Agriculture", "542": "Transportation", "543": "Transportation", "544": "Public Lands and Water Management", "545": "Public Lands and Water Management", "546": "Environment", "547": "Environment", "548": "Energy", "549": "Macroeconomics", "550": "Education", "551": "Environment", "552": "Health", "553": "Health", "554": "Public Lands and Water Management", "555": "Environment", "556": "Transportation", "557": "Law, Crime, and Family Issues", "558": "Public Lands and Water Management", "559": "Law, Crime, and Family Issues", "560": "Education", "561": "Transportation", "562": "Transportation", "563": "Labor and Employment", "564": "Public Lands and Water Management", "565": "Macroeconomics", "566": "Agriculture", "567": "Labor and Employment", "568": "Macroeconomics", "569": "Health", "570": "Public Lands and Water Management", "571": "Public Lands and Water Management", "572": "Public Lands and Water Management", "573": "Public Lands and Water Management", "574": "Public Lands and Water Management", "575": "Macroeconomics", "576": "Transportation", "577": "Health", "578": "Public Lands and Water Management", "579": "Health", "580": "Public Lands and Water Management", "581": "Community Development and Housing Issues", "582": "Health", "583": "Environment", "584": "Energy", "585": "Labor and Employment", "586": "Environment", "587": "Public Lands and Water Management", "588": "Civil Rights, Minority Issues, and Civil Liberties", "589": "Environment", "590": "Transportation", "591": "Education", "592": "Law, Crime, and Family Issues", "593": "Public Lands and Water Management", "594": "Public Lands and Water Management", "595": "Transportation", "596": "Public Lands and Water Management", "597": "Law, Crime, and Family Issues", "598": "Education", "599": "Public Lands and Water Management", "600": "Environment", "601": "Environment", "602": "Law, Crime, and Family Issues", "603": "Energy", "604": "Labor and Employment", "605": "Transportation", "606": "Labor and Employment", "607": "Public Lands and Water Management", "608": "Transportation", "609": "Environment", "610": "Labor and Employment", "611": "Labor and Employment", "612": "Energy", "613": "Community Development and Housing Issues", "614": "Energy", "615": "Agriculture", "616": "Public Lands and Water Management", "617": "Public Lands and Water Management", "618": "Public Lands and Water Management", "619": "Energy", "620": "Civil Rights, Minority Issues, and Civil Liberties", "621": "Agriculture", "622": "Public Lands and Water Management", "623": "Energy", "624": "Education", "625": "Environment", "626": "Public Lands and Water Management", "627": "Macroeconomics", "628": "Community Development and Housing Issues", "629": "Environment", "630": "Public Lands and Water Management", "631": "Transportation", "632": "Labor and Employment", "633": "Public Lands and Water Management", "634": "Education", "635": "Environment", "636": "Education", "637": "Law, Crime, and Family Issues", "638": "Public Lands and Water Management", "639": "Law, Crime, and Family Issues", "640": "Public Lands and Water Management", "641": "Environment", "642": "Community Development and Housing Issues", "643": "Energy", "644": "Environment", "645": "Civil Rights, Minority Issues, and Civil Liberties", "646": "Public Lands and Water Management", "647": "Public Lands and Water Management", "648": "Civil Rights, Minority Issues, and Civil Liberties", "649": "Community Development and Housing Issues", "650": "Public Lands and Water Management", "651": "Education", "652": "Public Lands and Water Management", "653": "Energy", "654": "Macroeconomics", "655": "Law, Crime, and Family Issues", "656": "Community Development and Housing Issues", "657": "Public Lands and Water Management", "658": "Transportation", "659": "Health", "660": "Transportation", "661": "Education", "662": "Civil Rights, Minority Issues, and Civil Liberties", "663": "Public Lands and Water Management", "664": "Law, Crime, and Family Issues", "665": "Agriculture", "666": "Public Lands and Water Management", "667": "Law, Crime, and Family Issues", "668": "Health", "669": "Agriculture", "670": "Environment", "671": "Labor and Employment", "672": "Law, Crime, and Family Issues", "673": "Energy", "674": "Law, Crime, and Family Issues", "675": "Law, Crime, and Family Issues", "676": "Transportation", "677": "Energy", "678": "Macroeconomics", "679": "Agriculture", "680": "Law, Crime, and Family Issues", "681": "Macroeconomics", "682": "Public Lands and Water Management", "683": "Agriculture", "684": "Education", "685": "Energy", "686": "Labor and Employment", "687": "Education", "688": "Law, Crime, and Family Issues", "689": "Environment", "690": "Law, Crime, and Family Issues", "691": "Law, Crime, and Family Issues", "692": "Education", "693": "Energy", "694": "Education", "695": "Education", "696": "Macroeconomics", "697": "Public Lands and Water Management", "698": "Law, Crime, and Family Issues", "699": "Transportation", "700": "Public Lands and Water Management", "701": "Civil Rights, Minority Issues, and Civil Liberties", "702": "Agriculture", "703": "Public Lands and Water Management", "704": "Agriculture", "705": "Public Lands and Water Management", "706": "Public Lands and Water Management", "707": "Law, Crime, and Family Issues", "708": "Public Lands and Water Management", "709": "Health", "710": "Public Lands and Water Management", "711": "Agriculture", "712": "Law, Crime, and Family Issues", "713": "Public Lands and Water Management", "714": "Transportation", "715": "Community Development and Housing Issues", "716": "Civil Rights, Minority Issues, and Civil Liberties", "717": "Public Lands and Water Management", "718": "Community Development and Housing Issues", "719": "Agriculture", "720": "Education", "721": "Transportation", "722": "Community Development and Housing Issues", "723": "Education", "724": "Law, Crime, and Family Issues", "725": "Health", "726": "Law, Crime, and Family Issues", "727": "Health", "728": "Agriculture", "729": "Macroeconomics", "730": "Macroeconomics", "731": "Macroeconomics", "732": "Macroeconomics", "733": "Energy", "734": "Health", "735": "Labor and Employment", "736": "Environment", "737": "Macroeconomics", "738": "Health", "739": "Labor and Employment", "740": "Public Lands and Water Management", "741": "Environment", "742": "Transportation", "743": "Transportation", "744": "Agriculture", "745": "Public Lands and Water Management", "746": "Public Lands and Water Management", "747": "Agriculture", "748": "Public Lands and Water Management", "749": "Education", "750": "Law, Crime, and Family Issues", "751": "Agriculture", "752": "Law, Crime, and Family Issues", "753": "Agriculture", "754": "Energy", "755": "Agriculture", "756": "Macroeconomics", "757": "Environment", "758": "Law, Crime, and Family Issues", "759": "Public Lands and Water Management", "760": "Public Lands and Water Management", "761": "Public Lands and Water Management", "762": "Agriculture", "763": "Agriculture", "764": "Community Development and Housing Issues", "765": "Environment", "766": "Law, Crime, and Family Issues", "767": "Law, Crime, and Family Issues", "768": "Law, Crime, and Family Issues", "769": "Transportation", "770": "Health", "771": "Environment", "772": "Environment", "773": "Health", "774": "Transportation", "775": "Civil Rights, Minority Issues, and Civil Liberties", "776": "Public Lands and Water Management", "777": "Agriculture", "778": "Labor and Employment", "779": "Agriculture", "780": "Agriculture", "781": "Transportation", "782": "Law, Crime, and Family Issues", "783": "Health", "784": "Public Lands and Water Management", "785": "Civil Rights, Minority Issues, and Civil Liberties", "786": "Public Lands and Water Management", "787": "Public Lands and Water Management", "788": "Education", "789": "Health", "790": "Community Development and Housing Issues", "791": "Environment", "792": "Education", "793": "Health", "794": "Law, Crime, and Family Issues", "795": "Health", "796": "Agriculture", "797": "Public Lands and Water Management", "798": "Transportation", "799": "Health", "800": "Health", "801": "Civil Rights, Minority Issues, and Civil Liberties", "802": "Agriculture", "803": "Energy", "804": "Health", "805": "Energy", "806": "Agriculture", "807": "Community Development and Housing Issues", "808": "Transportation", "809": "Health", "810": "Public Lands and Water Management", "811": "Transportation", "812": "Macroeconomics", "813": "Civil Rights, Minority Issues, and Civil Liberties", "814": "Environment", "815": "Macroeconomics", "816": "Community Development and Housing Issues", "817": "Macroeconomics", "818": "Law, Crime, and Family Issues", "819": "Transportation", "820": "Community Development and Housing Issues", "821": "Agriculture", "822": "Civil Rights, Minority Issues, and Civil Liberties", "823": "Energy", "824": "Agriculture", "825": "Macroeconomics", "826": "Community Development and Housing Issues", "827": "Public Lands and Water Management", "828": "Health", "829": "Agriculture", "830": "Health", "831": "Transportation", "832": "Health", "833": "Health", "834": "Public Lands and Water Management", "835": "Environment", "836": "Law, Crime, and Family Issues", "837": "Public Lands and Water Management", "838": "Public Lands and Water Management", "839": "Community Development and Housing Issues", "840": "Energy", "841": "Labor and Employment", "842": "Community Development and Housing Issues", "843": "Health", "844": "Community Development and Housing Issues", "845": "Labor and Employment", "846": "Health", "847": "Transportation", "848": "Law, Crime, and Family Issues", "849": "Environment", "850": "Public Lands and Water Management", "851": "Energy", "852": "Energy", "853": "Agriculture", "854": "Education", "855": "Health", "856": "Public Lands and Water Management", "857": "Transportation", "858": "Agriculture", "859": "Transportation", "860": "Health", "861": "Public Lands and Water Management", "862": "Environment", "863": "Health", "864": "Community Development and Housing Issues", "865": "Transportation", "866": "Law, Crime, and Family Issues", "867": "Macroeconomics", "868": "Education", "869": "Labor and Employment", "870": "Agriculture", "871": "Energy", "872": "Labor and Employment", "873": "Public Lands and Water Management", "874": "Public Lands and Water Management", "875": "Public Lands and Water Management", "876": "Energy", "877": "Transportation", "878": "Agriculture", "879": "Energy", "880": "Law, Crime, and Family Issues", "881": "Public Lands and Water Management", "882": "Law, Crime, and Family Issues", "883": "Law, Crime, and Family Issues", "884": "Public Lands and Water Management", "885": "Labor and Employment", "886": "Health", "887": "Community Development and Housing Issues", "888": "Law, Crime, and Family Issues", "889": "Public Lands and Water Management", "890": "Health", "891": "Public Lands and Water Management", "892": "Energy", "893": "Public Lands and Water Management", "894": "Civil Rights, Minority Issues, and Civil Liberties", "895": "Public Lands and Water Management", "896": "Public Lands and Water Management", "897": "Energy", "898": "Public Lands and Water Management", "899": "Public Lands and Water Management", "900": "Civil Rights, Minority Issues, and Civil Liberties", "901": "Education", "902": "Public Lands and Water Management", "903": "Energy", "904": "Transportation", "905": "Law, Crime, and Family Issues", "906": "Energy", "907": "Public Lands and Water Management", "908": "Public Lands and Water Management", "909": "Law, Crime, and Family Issues", "910": "Community Development and Housing Issues", "911": "Public Lands and Water Management", "912": "Law, Crime, and Family Issues", "913": "Agriculture", "914": "Macroeconomics", "915": "Public Lands and Water Management", "916": "Environment", "917": "Environment", "918": "Agriculture", "919": "Environment", "920": "Agriculture", "921": "Community Development and Housing Issues", "922": "Education", "923": "Public Lands and Water Management", "924": "Health", "925": "Transportation", "926": "Public Lands and Water Management", "927": "Environment", "928": "Energy", "929": "Energy", "930": "Environment", "931": "Health", "932": "Law, Crime, and Family Issues", "933": "Environment", "934": "Transportation", "935": "Agriculture", "936": "Public Lands and Water Management", "937": "Law, Crime, and Family Issues", "938": "Education", "939": "Energy", "940": "Law, Crime, and Family Issues", "941": "Agriculture", "942": "Public Lands and Water Management", "943": "Environment", "944": "Public Lands and Water Management", "945": "Environment", "946": "Law, Crime, and Family Issues", "947": "Public Lands and Water Management", "948": "Public Lands and Water Management", "949": "Public Lands and Water Management", "950": "Law, Crime, and Family Issues", "951": "Transportation", "952": "Agriculture", "953": "Macroeconomics", "954": "Transportation", "955": "Community Development and Housing Issues", "956": "Public Lands and Water Management", "957": "Energy", "958": "Energy", "959": "Law, Crime, and Family Issues", "960": "Energy", "961": "Macroeconomics", "962": "Transportation", "963": "Public Lands and Water Management", "964": "Law, Crime, and Family Issues", "965": "Civil Rights, Minority Issues, and Civil Liberties", "966": "Agriculture", "967": "Environment", "968": "Law, Crime, and Family Issues", "969": "Energy", "970": "Public Lands and Water Management", "971": "Health", "972": "Agriculture", "973": "Public Lands and Water Management", "974": "Public Lands and Water Management", "975": "Transportation", "976": "Public Lands and Water Management", "977": "Public Lands and Water Management", "978": "Health", "979": "Macroeconomics", "980": "Agriculture", "981": "Labor and Employment", "982": "Transportation", "983": "Energy", "984": "Transportation", "985": "Agriculture", "986": "Public Lands and Water Management", "987": "Public Lands and Water Management", "988": "Civil Rights, Minority Issues, and Civil Liberties", "989": "Public Lands and Water Management", "990": "Transportation", "991": "Public Lands and Water Management", "992": "Public Lands and Water Management", "993": "Community Development and Housing Issues", "994": "Health", "995": "Education", "996": "Public Lands and Water Management", "997": "Agriculture", "998": "Transportation", "999": "Public Lands and Water Management", "1000": "Transportation", "1001": "Education", "1002": "Law, Crime, and Family Issues", "1003": "Environment", "1004": "Public Lands and Water Management", "1005": "Law, Crime, and Family Issues", "1006": "Energy", "1007": "Transportation", "1008": "Civil Rights, Minority Issues, and Civil Liberties", "1009": "Law, Crime, and Family Issues", "1010": "Community Development and Housing Issues", "1011": "Law, Crime, and Family Issues", "1012": "Public Lands and Water Management", "1013": "Transportation", "1014": "Public Lands and Water Management", "1015": "Agriculture", "1016": "Transportation", "1017": "Labor and Employment", "1018": "Law, Crime, and Family Issues", "1019": "Transportation", "1020": "Agriculture", "1021": "Transportation", "1022": "Transportation", "1023": "Law, Crime, and Family Issues", "1024": "Community Development and Housing Issues", "1025": "Law, Crime, and Family Issues", "1026": "Public Lands and Water Management", "1027": "Education", "1028": "Public Lands and Water Management", "1029": "Energy", "1030": "Civil Rights, Minority Issues, and Civil Liberties", "1031": "Community Development and Housing Issues", "1032": "Energy", "1033": "Public Lands and Water Management", "1034": "Health", "1035": "Health", "1036": "Transportation", "1037": "Labor and Employment", "1038": "Public Lands and Water Management", "1039": "Energy", "1040": "Environment", "1041": "Civil Rights, Minority Issues, and Civil Liberties", "1042": "Health", "1043": "Environment", "1044": "Community Development and Housing Issues", "1045": "Agriculture", "1046": "Environment", "1047": "Public Lands and Water Management", "1048": "Education", "1049": "Labor and Employment", "1050": "Law, Crime, and Family Issues", "1051": "Public Lands and Water Management", "1052": "Public Lands and Water Management", "1053": "Transportation", "1054": "Civil Rights, Minority Issues, and Civil Liberties", "1055": "Civil Rights, Minority Issues, and Civil Liberties", "1056": "Transportation", "1057": "Law, Crime, and Family Issues", "1058": "Law, Crime, and Family Issues", "1059": "Public Lands and Water Management", "1060": "Health", "1061": "Law, Crime, and Family Issues", "1062": "Agriculture", "1063": "Agriculture", "1064": "Public Lands and Water Management", "1065": "Energy", "1066": "Public Lands and Water Management", "1067": "Community Development and Housing Issues", "1068": "Transportation", "1069": "Law, Crime, and Family Issues", "1070": "Macroeconomics", "1071": "Transportation", "1072": "Agriculture", "1073": "Public Lands and Water Management", "1074": "Transportation", "1075": "Transportation", "1076": "Agriculture", "1077": "Public Lands and Water Management", "1078": "Environment", "1079": "Energy", "1080": "Health", "1081": "Law, Crime, and Family Issues", "1082": "Transportation", "1083": "Public Lands and Water Management", "1084": "Public Lands and Water Management", "1085": "Community Development and Housing Issues", "1086": "Community Development and Housing Issues", "1087": "Macroeconomics", "1088": "Energy", "1089": "Energy", "1090": "Public Lands and Water Management", "1091": "Environment", "1092": "Environment", "1093": "Environment", "1094": "Health", "1095": "Macroeconomics", "1096": "Transportation", "1097": "Education", "1098": "Transportation", "1099": "Law, Crime, and Family Issues", "1100": "Civil Rights, Minority Issues, and Civil Liberties", "1101": "Public Lands and Water Management", "1102": "Environment", "1103": "Public Lands and Water Management", "1104": "Education", "1105": "Education", "1106": "Energy", "1107": "Agriculture", "1108": "Environment", "1109": "Labor and Employment", "1110": "Environment", "1111": "Public Lands and Water Management", "1112": "Labor and Employment", "1113": "Energy", "1114": "Public Lands and Water Management", "1115": "Health", "1116": "Transportation", "1117": "Law, Crime, and Family Issues", "1118": "Health", "1119": "Agriculture", "1120": "Health", "1121": "Law, Crime, and Family Issues", "1122": "Labor and Employment", "1123": "Environment", "1124": "Public Lands and Water Management", "1125": "Education", "1126": "Civil Rights, Minority Issues, and Civil Liberties", "1127": "Transportation", "1128": "Transportation", "1129": "Agriculture", "1130": "Public Lands and Water Management", "1131": "Civil Rights, Minority Issues, and Civil Liberties", "1132": "Community Development and Housing Issues", "1133": "Public Lands and Water Management", "1134": "Agriculture", "1135": "Public Lands and Water Management", "1136": "Public Lands and Water Management", "1137": "Public Lands and Water Management", "1138": "Health", "1139": "Agriculture", "1140": "Law, Crime, and Family Issues", "1141": "Transportation", "1142": "Transportation", "1143": "Civil Rights, Minority Issues, and Civil Liberties", "1144": "Education", "1145": "Environment", "1146": "Law, Crime, and Family Issues", "1147": "Transportation", "1148": "Environment", "1149": "Environment", "1150": "Education", "1151": "Education", "1152": "Law, Crime, and Family Issues", "1153": "Energy", "1154": "Macroeconomics", "1155": "Transportation", "1156": "Public Lands and Water Management", "1157": "Agriculture", "1158": "Education", "1159": "Public Lands and Water Management", "1160": "Law, Crime, and Family Issues", "1161": "Community Development and Housing Issues", "1162": "Public Lands and Water Management", "1163": "Public Lands and Water Management", "1164": "Transportation", "1165": "Environment", "1166": "Public Lands and Water Management", "1167": "Health", "1168": "Agriculture", "1169": "Labor and Employment", "1170": "Health", "1171": "Civil Rights, Minority Issues, and Civil Liberties", "1172": "Public Lands and Water Management", "1173": "Macroeconomics", "1174": "Education", "1175": "Macroeconomics", "1176": "Public Lands and Water Management", "1177": "Energy", "1178": "Health", "1179": "Macroeconomics", "1180": "Public Lands and Water Management", "1181": "Labor and Employment", "1182": "Environment", "1183": "Education", "1184": "Public Lands and Water Management", "1185": "Transportation", "1186": "Agriculture", "1187": "Labor and Employment", "1188": "Environment", "1189": "Energy", "1190": "Law, Crime, and Family Issues", "1191": "Law, Crime, and Family Issues", "1192": "Civil Rights, Minority Issues, and Civil Liberties", "1193": "Environment", "1194": "Agriculture", "1195": "Community Development and Housing Issues", "1196": "Public Lands and Water Management", "1197": "Community Development and Housing Issues", "1198": "Public Lands and Water Management", "1199": "Law, Crime, and Family Issues", "1200": "Transportation", "1201": "Public Lands and Water Management", "1202": "Macroeconomics", "1203": "Law, Crime, and Family Issues", "1204": "Health", "1205": "Transportation", "1206": "Public Lands and Water Management", "1207": "Energy", "1208": "Energy", "1209": "Environment", "1210": "Law, Crime, and Family Issues", "1211": "Macroeconomics", "1212": "Public Lands and Water Management", "1213": "Transportation", "1214": "Macroeconomics", "1215": "Macroeconomics", "1216": "Community Development and Housing Issues", "1217": "Civil Rights, Minority Issues, and Civil Liberties", "1218": "Environment", "1219": "Macroeconomics", "1220": "Law, Crime, and Family Issues", "1221": "Community Development and Housing Issues", "1222": "Public Lands and Water Management", "1223": "Education", "1224": "Public Lands and Water Management", "1225": "Public Lands and Water Management", "1226": "Health", "1227": "Public Lands and Water Management", "1228": "Law, Crime, and Family Issues", "1229": "Agriculture", "1230": "Public Lands and Water Management", "1231": "Transportation", "1232": "Public Lands and Water Management", "1233": "Transportation", "1234": "Agriculture", "1235": "Macroeconomics", "1236": "Environment", "1237": "Public Lands and Water Management", "1238": "Public Lands and Water Management", "1239": "Education", "1240": "Health", "1241": "Health", "1242": "Law, Crime, and Family Issues", "1243": "Transportation", "1244": "Law, Crime, and Family Issues", "1245": "Public Lands and Water Management", "1246": "Energy", "1247": "Education", "1248": "Education", "1249": "Civil Rights, Minority Issues, and Civil Liberties", "1250": "Macroeconomics", "1251": "Environment", "1252": "Energy", "1253": "Labor and Employment", "1254": "Civil Rights, Minority Issues, and Civil Liberties", "1255": "Agriculture", "1256": "Environment", "1257": "Energy", "1258": "Energy", "1259": "Transportation", "1260": "Transportation", "1261": "Energy", "1262": "Energy", "1263": "Law, Crime, and Family Issues", "1264": "Macroeconomics", "1265": "Environment", "1266": "Education", "1267": "Agriculture", "1268": "Environment", "1269": "Health", "1270": "Transportation", "1271": "Law, Crime, and Family Issues", "1272": "Agriculture", "1273": "Education", "1274": "Labor and Employment", "1275": "Law, Crime, and Family Issues", "1276": "Environment", "1277": "Law, Crime, and Family Issues", "1278": "Agriculture", "1279": "Law, Crime, and Family Issues", "1280": "Transportation", "1281": "Environment", "1282": "Labor and Employment", "1283": "Transportation", "1284": "Environment", "1285": "Transportation", "1286": "Environment", "1287": "Community Development and Housing Issues", "1288": "Energy", "1289": "Health", "1290": "Energy", "1291": "Energy", "1292": "Environment", "1293": "Law, Crime, and Family Issues", "1294": "Education", "1295": "Transportation", "1296": "Agriculture", "1297": "Community Development and Housing Issues", "1298": "Health", "1299": "Health", "1300": "Labor and Employment", "1301": "Agriculture", "1302": "Environment", "1303": "Macroeconomics", "1304": "Environment", "1305": "Law, Crime, and Family Issues", "1306": "Health", "1307": "Health", "1308": "Labor and Employment", "1309": "Health", "1310": "Energy", "1311": "Community Development and Housing Issues", "1312": "Health", "1313": "Health", "1314": "Environment", "1315": "Health", "1316": "Health", "1317": "Civil Rights, Minority Issues, and Civil Liberties", "1318": "Civil Rights, Minority Issues, and Civil Liberties", "1319": "Transportation", "1320": "Environment", "1321": "Transportation", "1322": "Transportation", "1323": "Health", "1324": "Energy", "1325": "Law, Crime, and Family Issues", "1326": "Energy", "1327": "Community Development and Housing Issues", "1328": "Energy", "1329": "Environment", "1330": "Health", "1331": "Transportation", "1332": "Transportation", "1333": "Macroeconomics", "1334": "Transportation", "1335": "Health", "1336": "Transportation", "1337": "Environment", "1338": "Community Development and Housing Issues", "1339": "Civil Rights, Minority Issues, and Civil Liberties", "1340": "Law, Crime, and Family Issues", "1341": "Law, Crime, and Family Issues", "1342": "Labor and Employment", "1343": "Transportation", "1344": "Environment", "1345": "Energy", "1346": "Law, Crime, and Family Issues", "1347": "Energy", "1348": "Law, Crime, and Family Issues", "1349": "Law, Crime, and Family Issues", "1350": "Health", "1351": "Health", "1352": "Law, Crime, and Family Issues", "1353": "Macroeconomics", "1354": "Education", "1355": "Macroeconomics", "1356": "Environment", "1357": "Health", "1358": "Environment", "1359": "Energy", "1360": "Law, Crime, and Family Issues", "1361": "Transportation", "1362": "Transportation", "1363": "Community Development and Housing Issues", "1364": "Labor and Employment", "1365": "Education", "1366": "Transportation", "1367": "Health", "1368": "Education", "1369": "Transportation", "1370": "Environment", "1371": "Education", "1372": "Health", "1373": "Labor and Employment", "1374": "Civil Rights, Minority Issues, and Civil Liberties", "1375": "Health", "1376": "Health", "1377": "Health", "1378": "Transportation", "1379": "Civil Rights, Minority Issues, and Civil Liberties", "1380": "Energy", "1381": "Health", "1382": "Law, Crime, and Family Issues", "1383": "Health", "1384": "Community Development and Housing Issues", "1385": "Law, Crime, and Family Issues", "1386": "Law, Crime, and Family Issues", "1387": "Health", "1388": "Energy", "1389": "Energy", "1390": "Health", "1391": "Health", "1392": "Macroeconomics", "1393": "Environment", "1394": "Education", "1395": "Community Development and Housing Issues", "1396": "Transportation", "1397": "Education", "1398": "Energy", "1399": "Community Development and Housing Issues", "1400": "Macroeconomics", "1401": "Education", "1402": "Education", "1403": "Energy", "1404": "Agriculture", "1405": "Labor and Employment", "1406": "Labor and Employment", "1407": "Energy", "1408": "Energy", "1409": "Energy", "1410": "Transportation", "1411": "Transportation", "1412": "Health", "1413": "Health", "1414": "Education", "1415": "Environment", "1416": "Law, Crime, and Family Issues", "1417": "Health", "1418": "Agriculture", "1419": "Transportation", "1420": "Macroeconomics", "1421": "Health", "1422": "Energy", "1423": "Education", "1424": "Law, Crime, and Family Issues", "1425": "Law, Crime, and Family Issues", "1426": "Macroeconomics", "1427": "Labor and Employment", "1428": "Environment", "1429": "Macroeconomics", "1430": "Environment", "1431": "Energy", "1432": "Health", "1433": "Labor and Employment", "1434": "Labor and Employment", "1435": "Environment", "1436": "Law, Crime, and Family Issues", "1437": "Health", "1438": "Community Development and Housing Issues", "1439": "Transportation", "1440": "Macroeconomics", "1441": "Law, Crime, and Family Issues", "1442": "Law, Crime, and Family Issues", "1443": "Transportation", "1444": "Law, Crime, and Family Issues", "1445": "Energy", "1446": "Environment", "1447": "Labor and Employment", "1448": "Law, Crime, and Family Issues", "1449": "Transportation", "1450": "Law, Crime, and Family Issues", "1451": "Community Development and Housing Issues", "1452": "Health", "1453": "Transportation", "1454": "Health", "1455": "Law, Crime, and Family Issues", "1456": "Law, Crime, and Family Issues", "1457": "Agriculture", "1458": "Education", "1459": "Environment", "1460": "Environment", "1461": "Transportation", "1462": "Agriculture", "1463": "Macroeconomics", "1464": "Transportation", "1465": "Macroeconomics", "1466": "Health", "1467": "Labor and Employment", "1468": "Macroeconomics", "1469": "Energy", "1470": "Agriculture", "1471": "Civil Rights, Minority Issues, and Civil Liberties", "1472": "Transportation", "1473": "Energy", "1474": "Environment", "1475": "Health", "1476": "Energy", "1477": "Transportation", "1478": "Agriculture", "1479": "Environment", "1480": "Health", "1481": "Community Development and Housing Issues", "1482": "Law, Crime, and Family Issues", "1483": "Education", "1484": "Environment", "1485": "Agriculture", "1486": "Health", "1487": "Environment", "1488": "Health", "1489": "Environment", "1490": "Transportation", "1491": "Health", "1492": "Energy", "1493": "Health", "1494": "Law, Crime, and Family Issues", "1495": "Law, Crime, and Family Issues", "1496": "Macroeconomics", "1497": "Civil Rights, Minority Issues, and Civil Liberties", "1498": "Energy", "1499": "Labor and Employment", "1500": "Education", "1501": "Health", "1502": "Energy", "1503": "Labor and Employment", "1504": "Law, Crime, and Family Issues", "1505": "Civil Rights, Minority Issues, and Civil Liberties", "1506": "Law, Crime, and Family Issues", "1507": "Health", "1508": "Transportation", "1509": "Health", "1510": "Transportation", "1511": "Education", "1512": "Law, Crime, and Family Issues", "1513": "Health", "1514": "Health", "1515": "Civil Rights, Minority Issues, and Civil Liberties", "1516": "Law, Crime, and Family Issues", "1517": "Health", "1518": "Environment", "1519": "Health", "1520": "Law, Crime, and Family Issues", "1521": "Labor and Employment", "1522": "Transportation", "1523": "Labor and Employment", "1524": "Law, Crime, and Family Issues", "1525": "Transportation", "1526": "Environment", "1527": "Agriculture", "1528": "Agriculture", "1529": "Macroeconomics", "1530": "Macroeconomics", "1531": "Transportation", "1532": "Transportation", "1533": "Civil Rights, Minority Issues, and Civil Liberties", "1534": "Law, Crime, and Family Issues", "1535": "Education", "1536": "Labor and Employment", "1537": "Labor and Employment", "1538": "Environment", "1539": "Labor and Employment", "1540": "Law, Crime, and Family Issues", "1541": "Health", "1542": "Energy", "1543": "Energy", "1544": "Law, Crime, and Family Issues", "1545": "Law, Crime, and Family Issues", "1546": "Health", "1547": "Environment", "1548": "Civil Rights, Minority Issues, and Civil Liberties", "1549": "Law, Crime, and Family Issues", "1550": "Labor and Employment", "1551": "Environment", "1552": "Education", "1553": "Energy", "1554": "Education", "1555": "Health", "1556": "Law, Crime, and Family Issues", "1557": "Energy", "1558": "Transportation", "1559": "Law, Crime, and Family Issues", "1560": "Labor and Employment", "1561": "Transportation", "1562": "Energy", "1563": "Transportation", "1564": "Education", "1565": "Civil Rights, Minority Issues, and Civil Liberties", "1566": "Macroeconomics", "1567": "Law, Crime, and Family Issues", "1568": "Law, Crime, and Family Issues", "1569": "Law, Crime, and Family Issues", "1570": "Education", "1571": "Health", "1572": "Energy", "1573": "Agriculture", "1574": "Community Development and Housing Issues", "1575": "Energy", "1576": "Civil Rights, Minority Issues, and Civil Liberties", "1577": "Health", "1578": "Macroeconomics", "1579": "Agriculture", "1580": "Macroeconomics", "1581": "Transportation", "1582": "Law, Crime, and Family Issues", "1583": "Law, Crime, and Family Issues", "1584": "Law, Crime, and Family Issues", "1585": "Education", "1586": "Environment", "1587": "Education", "1588": "Agriculture", "1589": "Energy", "1590": "Transportation", "1591": "Health", "1592": "Civil Rights, Minority Issues, and Civil Liberties", "1593": "Community Development and Housing Issues", "1594": "Health", "1595": "Environment", "1596": "Transportation", "1597": "Macroeconomics", "1598": "Energy", "1599": "Energy", "1600": "Health", "1601": "Law, Crime, and Family Issues", "1602": "Health", "1603": "Community Development and Housing Issues", "1604": "Labor and Employment", "1605": "Law, Crime, and Family Issues", "1606": "Civil Rights, Minority Issues, and Civil Liberties", "1607": "Macroeconomics", "1608": "Transportation", "1609": "Law, Crime, and Family Issues", "1610": "Environment", "1611": "Health", "1612": "Law, Crime, and Family Issues", "1613": "Energy", "1614": "Education", "1615": "Environment", "1616": "Energy", "1617": "Agriculture", "1618": "Agriculture", "1619": "Environment", "1620": "Law, Crime, and Family Issues", "1621": "Health", "1622": "Health", "1623": "Civil Rights, Minority Issues, and Civil Liberties", "1624": "Transportation", "1625": "Civil Rights, Minority Issues, and Civil Liberties", "1626": "Environment", "1627": "Health", "1628": "Labor and Employment", "1629": "Civil Rights, Minority Issues, and Civil Liberties", "1630": "Health", "1631": "Civil Rights, Minority Issues, and Civil Liberties", "1632": "Energy", "1633": "Agriculture", "1634": "Labor and Employment", "1635": "Transportation", "1636": "Macroeconomics", "1637": "Health", "1638": "Community Development and Housing Issues", "1639": "Law, Crime, and Family Issues", "1640": "Health", "1641": "Labor and Employment", "1642": "Environment", "1643": "Education", "1644": "Transportation", "1645": "Energy", "1646": "Community Development and Housing Issues", "1647": "Macroeconomics", "1648": "Macroeconomics", "1649": "Civil Rights, Minority Issues, and Civil Liberties", "1650": "Community Development and Housing Issues", "1651": "Community Development and Housing Issues", "1652": "Civil Rights, Minority Issues, and Civil Liberties", "1653": "Health", "1654": "Law, Crime, and Family Issues", "1655": "Agriculture", "1656": "Environment", "1657": "Health", "1658": "Law, Crime, and Family Issues", "1659": "Law, Crime, and Family Issues", "1660": "Transportation", "1661": "Civil Rights, Minority Issues, and Civil Liberties", "1662": "Law, Crime, and Family Issues", "1663": "Law, Crime, and Family Issues", "1664": "Labor and Employment", "1665": "Civil Rights, Minority Issues, and Civil Liberties", "1666": "Health", "1667": "Health", "1668": "Energy", "1669": "Education", "1670": "Macroeconomics", "1671": "Community Development and Housing Issues", "1672": "Transportation", "1673": "Energy", "1674": "Law, Crime, and Family Issues", "1675": "Community Development and Housing Issues", "1676": "Education", "1677": "Labor and Employment", "1678": "Macroeconomics", "1679": "Macroeconomics", "1680": "Law, Crime, and Family Issues", "1681": "Education", "1682": "Civil Rights, Minority Issues, and Civil Liberties", "1683": "Education", "1684": "Transportation", "1685": "Education", "1686": "Civil Rights, Minority Issues, and Civil Liberties", "1687": "Macroeconomics", "1688": "Law, Crime, and Family Issues", "1689": "Civil Rights, Minority Issues, and Civil Liberties", "1690": "Law, Crime, and Family Issues", "1691": "Macroeconomics", "1692": "Transportation", "1693": "Health", "1694": "Energy", "1695": "Transportation", "1696": "Agriculture", "1697": "Law, Crime, and Family Issues", "1698": "Civil Rights, Minority Issues, and Civil Liberties", "1699": "Law, Crime, and Family Issues", "1700": "Health", "1701": "Civil Rights, Minority Issues, and Civil Liberties", "1702": "Energy", "1703": "Macroeconomics", "1704": "Energy", "1705": "Transportation", "1706": "Law, Crime, and Family Issues", "1707": "Agriculture", "1708": "Macroeconomics", "1709": "Education", "1710": "Labor and Employment", "1711": "Environment", "1712": "Agriculture", "1713": "Civil Rights, Minority Issues, and Civil Liberties", "1714": "Labor and Employment", "1715": "Agriculture", "1716": "Transportation", "1717": "Community Development and Housing Issues", "1718": "Education", "1719": "Health", "1720": "Environment", "1721": "Environment", "1722": "Education", "1723": "Law, Crime, and Family Issues", "1724": "Health", "1725": "Agriculture", "1726": "Energy", "1727": "Transportation", "1728": "Environment", "1729": "Health", "1730": "Environment", "1731": "Law, Crime, and Family Issues", "1732": "Civil Rights, Minority Issues, and Civil Liberties", "1733": "Education", "1734": "Community Development and Housing Issues", "1735": "Law, Crime, and Family Issues", "1736": "Transportation", "1737": "Macroeconomics", "1738": "Transportation", "1739": "Labor and Employment", "1740": "Education", "1741": "Energy", "1742": "Health", "1743": "Community Development and Housing Issues", "1744": "Transportation", "1745": "Transportation", "1746": "Transportation", "1747": "Transportation", "1748": "Civil Rights, Minority Issues, and Civil Liberties", "1749": "Law, Crime, and Family Issues", "1750": "Law, Crime, and Family Issues", "1751": "Health", "1752": "Education", "1753": "Environment", "1754": "Education", "1755": "Community Development and Housing Issues", "1756": "Transportation", "1757": "Macroeconomics", "1758": "Law, Crime, and Family Issues", "1759": "Energy", "1760": "Civil Rights, Minority Issues, and Civil Liberties", "1761": "Energy", "1762": "Community Development and Housing Issues", "1763": "Education", "1764": "Macroeconomics", "1765": "Health", "1766": "Law, Crime, and Family Issues", "1767": "Education", "1768": "Environment", "1769": "Community Development and Housing Issues", "1770": "Community Development and Housing Issues", "1771": "Law, Crime, and Family Issues", "1772": "Health", "1773": "Health", "1774": "Education", "1775": "Agriculture", "1776": "Education", "1777": "Law, Crime, and Family Issues", "1778": "Environment", "1779": "Education", "1780": "Civil Rights, Minority Issues, and Civil Liberties", "1781": "Law, Crime, and Family Issues", "1782": "Civil Rights, Minority Issues, and Civil Liberties", "1783": "Transportation", "1784": "Law, Crime, and Family Issues", "1785": "Energy", "1786": "Environment", "1787": "Law, Crime, and Family Issues", "1788": "Law, Crime, and Family Issues", "1789": "Environment", "1790": "Health", "1791": "Community Development and Housing Issues", "1792": "Community Development and Housing Issues", "1793": "Law, Crime, and Family Issues", "1794": "Community Development and Housing Issues", "1795": "Agriculture", "1796": "Law, Crime, and Family Issues", "1797": "Agriculture", "1798": "Macroeconomics", "1799": "Law, Crime, and Family Issues", "1800": "Civil Rights, Minority Issues, and Civil Liberties", "1801": "Macroeconomics", "1802": "Education", "1803": "Labor and Employment", "1804": "Labor and Employment", "1805": "Law, Crime, and Family Issues", "1806": "Agriculture", "1807": "Education", "1808": "Education", "1809": "Environment", "1810": "Health", "1811": "Environment", "1812": "Civil Rights, Minority Issues, and Civil Liberties", "1813": "Transportation", "1814": "Community Development and Housing Issues", "1815": "Health", "1816": "Environment", "1817": "Agriculture", "1818": "Education", "1819": "Environment", "1820": "Health", "1821": "Education", "1822": "Education", "1823": "Transportation", "1824": "Macroeconomics", "1825": "Transportation", "1826": "Civil Rights, Minority Issues, and Civil Liberties", "1827": "Macroeconomics", "1828": "Law, Crime, and Family Issues", "1829": "Environment", "1830": "Agriculture", "1831": "Transportation", "1832": "Law, Crime, and Family Issues", "1833": "Transportation", "1834": "Environment", "1835": "Health", "1836": "Environment", "1837": "Environment", "1838": "Law, Crime, and Family Issues", "1839": "Macroeconomics", "1840": "Education", "1841": "Health", "1842": "Transportation", "1843": "Transportation", "1844": "Macroeconomics", "1845": "Law, Crime, and Family Issues", "1846": "Education", "1847": "Macroeconomics", "1848": "Community Development and Housing Issues", "1849": "Environment", "1850": "Civil Rights, Minority Issues, and Civil Liberties", "1851": "Energy", "1852": "Macroeconomics", "1853": "Civil Rights, Minority Issues, and Civil Liberties", "1854": "Labor and Employment", "1855": "Community Development and Housing Issues", "1856": "Education", "1857": "Education", "1858": "Law, Crime, and Family Issues", "1859": "Labor and Employment", "1860": "Law, Crime, and Family Issues", "1861": "Environment", "1862": "Health", "1863": "Education", "1864": "Agriculture", "1865": "Law, Crime, and Family Issues", "1866": "Health", "1867": "Energy", "1868": "Health", "1869": "Transportation", "1870": "Community Development and Housing Issues", "1871": "Education", "1872": "Energy", "1873": "Energy", "1874": "Energy", "1875": "Health", "1876": "Law, Crime, and Family Issues", "1877": "Law, Crime, and Family Issues", "1878": "Macroeconomics", "1879": "Health", "1880": "Energy", "1881": "Transportation", "1882": "Environment", "1883": "Agriculture", "1884": "Law, Crime, and Family Issues", "1885": "Education", "1886": "Energy", "1887": "Law, Crime, and Family Issues", "1888": "Agriculture", "1889": "Transportation", "1890": "Agriculture", "1891": "Environment", "1892": "Transportation", "1893": "Law, Crime, and Family Issues", "1894": "Law, Crime, and Family Issues", "1895": "Health", "1896": "Macroeconomics", "1897": "Transportation", "1898": "Transportation", "1899": "Labor and Employment", "1900": "Energy", "1901": "Macroeconomics", "1902": "Macroeconomics", "1903": "Agriculture", "1904": "Labor and Employment", "1905": "Energy", "1906": "Health", "1907": "Education", "1908": "Agriculture", "1909": "Environment", "1910": "Agriculture", "1911": "Environment", "1912": "Environment", "1913": "Education", "1914": "Agriculture", "1915": "Law, Crime, and Family Issues", "1916": "Environment", "1917": "Law, Crime, and Family Issues", "1918": "Law, Crime, and Family Issues", "1919": "Health", "1920": "Law, Crime, and Family Issues", "1921": "Energy", "1922": "Law, Crime, and Family Issues", "1923": "Law, Crime, and Family Issues", "1924": "Law, Crime, and Family Issues", "1925": "Transportation", "1926": "Law, Crime, and Family Issues", "1927": "Transportation", "1928": "Environment", "1929": "Law, Crime, and Family Issues", "1930": "Macroeconomics", "1931": "Community Development and Housing Issues", "1932": "Macroeconomics", "1933": "Education", "1934": "Law, Crime, and Family Issues", "1935": "Labor and Employment", "1936": "Macroeconomics", "1937": "Transportation", "1938": "Education", "1939": "Health", "1940": "Transportation", "1941": "Energy", "1942": "Law, Crime, and Family Issues", "1943": "Health", "1944": "Labor and Employment", "1945": "Environment", "1946": "Macroeconomics", "1947": "Macroeconomics", "1948": "Macroeconomics", "1949": "Energy", "1950": "Agriculture", "1951": "Labor and Employment", "1952": "Health", "1953": "Environment", "1954": "Law, Crime, and Family Issues", "1955": "Transportation", "1956": "Law, Crime, and Family Issues", "1957": "Labor and Employment", "1958": "Transportation", "1959": "Law, Crime, and Family Issues", "1960": "Labor and Employment", "1961": "Agriculture", "1962": "Agriculture", "1963": "Law, Crime, and Family Issues", "1964": "Health", "1965": "Transportation", "1966": "Macroeconomics", "1967": "Transportation", "1968": "Agriculture", "1969": "Transportation", "1970": "Law, Crime, and Family Issues", "1971": "Health", "1972": "Health", "1973": "Transportation", "1974": "Labor and Employment", "1975": "Macroeconomics", "1976": "Agriculture", "1977": "Environment", "1978": "Health", "1979": "Energy", "1980": "Civil Rights, Minority Issues, and Civil Liberties", "1981": "Transportation", "1982": "Environment", "1983": "Macroeconomics", "1984": "Education", "1985": "Transportation", "1986": "Transportation", "1987": "Environment", "1988": "Macroeconomics", "1989": "Macroeconomics", "1990": "Community Development and Housing Issues", "1991": "Environment", "1992": "Agriculture", "1993": "Energy", "1994": "Labor and Employment", "1995": "Environment", "1996": "Energy", "1997": "Health", "1998": "Health", "1999": "Agriculture", "2000": "Law, Crime, and Family Issues", "2001": "Education", "2002": "Transportation", "2003": "Macroeconomics", "2004": "Energy", "2005": "Transportation", "2006": "Transportation", "2007": "Transportation", "2008": "Community Development and Housing Issues", "2009": "Macroeconomics", "2010": "Macroeconomics", "2011": "Law, Crime, and Family Issues", "2012": "Transportation", "2013": "Education", "2014": "Energy", "2015": "Macroeconomics", "2016": "Education", "2017": "Law, Crime, and Family Issues", "2018": "Health", "2019": "Transportation", "2020": "Agriculture", "2021": "Labor and Employment", "2022": "Transportation", "2023": "Agriculture", "2024": "Transportation", "2025": "Environment", "2026": "Transportation", "2027": "Energy", "2028": "Agriculture", "2029": "Education", "2030": "Environment", "2031": "Transportation", "2032": "Environment", "2033": "Civil Rights, Minority Issues, and Civil Liberties", "2034": "Health", "2035": "Health", "2036": "Environment", "2037": "Agriculture", "2038": "Environment", "2039": "Community Development and Housing Issues", "2040": "Macroeconomics", "2041": "Environment", "2042": "Community Development and Housing Issues", "2043": "Civil Rights, Minority Issues, and Civil Liberties", "2044": "Environment", "2045": "Education", "2046": "Education", "2047": "Community Development and Housing Issues", "2048": "Environment", "2049": "Transportation", "2050": "Macroeconomics", "2051": "Macroeconomics", "2052": "Transportation", "2053": "Transportation", "2054": "Agriculture", "2055": "Transportation", "2056": "Macroeconomics", "2057": "Environment", "2058": "Energy", "2059": "Community Development and Housing Issues", "2060": "Civil Rights, Minority Issues, and Civil Liberties", "2061": "Labor and Employment", "2062": "Macroeconomics", "2063": "Civil Rights, Minority Issues, and Civil Liberties", "2064": "Macroeconomics", "2065": "Transportation", "2066": "Energy", "2067": "Agriculture", "2068": "Environment", "2069": "Community Development and Housing Issues", "2070": "Agriculture", "2071": "Health", "2072": "Health", "2073": "Education", "2074": "Health", "2075": "Transportation", "2076": "Macroeconomics", "2077": "Labor and Employment", "2078": "Civil Rights, Minority Issues, and Civil Liberties", "2079": "Education", "2080": "Agriculture", "2081": "Community Development and Housing Issues", "2082": "Health", "2083": "Transportation", "2084": "Transportation", "2085": "Health", "2086": "Health", "2087": "Community Development and Housing Issues", "2088": "Community Development and Housing Issues", "2089": "Transportation", "2090": "Community Development and Housing Issues", "2091": "Education", "2092": "Health", "2093": "Transportation", "2094": "Macroeconomics", "2095": "Labor and Employment", "2096": "Agriculture", "2097": "Macroeconomics", "2098": "Transportation", "2099": "Transportation", "2100": "Health", "2101": "Environment", "2102": "Health", "2103": "Transportation", "2104": "Civil Rights, Minority Issues, and Civil Liberties", "2105": "Macroeconomics", "2106": "Civil Rights, Minority Issues, and Civil Liberties", "2107": "Community Development and Housing Issues", "2108": "Macroeconomics", "2109": "Energy", "2110": "Agriculture", "2111": "Transportation", "2112": "Macroeconomics", "2113": "Labor and Employment", "2114": "Labor and Employment", "2115": "Labor and Employment", "2116": "Labor and Employment", "2117": "Transportation", "2118": "Education", "2119": "Community Development and Housing Issues", "2120": "Energy", "2121": "Environment", "2122": "Macroeconomics", "2123": "Transportation", "2124": "Environment", "2125": "Community Development and Housing Issues", "2126": "Education", "2127": "Health", "2128": "Environment", "2129": "Labor and Employment", "2130": "Civil Rights, Minority Issues, and Civil Liberties", "2131": "Transportation", "2132": "Energy", "2133": "Macroeconomics", "2134": "Civil Rights, Minority Issues, and Civil Liberties", "2135": "Health", "2136": "Community Development and Housing Issues", "2137": "Education", "2138": "Health", "2139": "Education", "2140": "Community Development and Housing Issues", "2141": "Labor and Employment", "2142": "Labor and Employment", "2143": "Energy", "2144": "Health", "2145": "Macroeconomics", "2146": "Civil Rights, Minority Issues, and Civil Liberties", "2147": "Labor and Employment", "2148": "Energy", "2149": "Energy", "2150": "Health", "2151": "Education", "2152": "Labor and Employment", "2153": "Civil Rights, Minority Issues, and Civil Liberties", "2154": "Health", "2155": "Transportation", "2156": "Energy", "2157": "Energy", "2158": "Education", "2159": "Labor and Employment", "2160": "Macroeconomics", "2161": "Education", "2162": "Labor and Employment", "2163": "Agriculture", "2164": "Health", "2165": "Transportation", "2166": "Labor and Employment", "2167": "Civil Rights, Minority Issues, and Civil Liberties", "2168": "Transportation", "2169": "Macroeconomics", "2170": "Energy", "2171": "Transportation", "2172": "Macroeconomics", "2173": "Transportation", "2174": "Education", "2175": "Education", "2176": "Community Development and Housing Issues", "2177": "Health", "2178": "Labor and Employment", "2179": "Community Development and Housing Issues", "2180": "Health", "2181": "Health", "2182": "Community Development and Housing Issues", "2183": "Labor and Employment", "2184": "Environment", "2185": "Education", "2186": "Agriculture", "2187": "Education", "2188": "Community Development and Housing Issues", "2189": "Environment", "2190": "Agriculture", "2191": "Energy", "2192": "Environment", "2193": "Energy", "2194": "Health", "2195": "Agriculture", "2196": "Health", "2197": "Macroeconomics", "2198": "Education", "2199": "Civil Rights, Minority Issues, and Civil Liberties", "2200": "Environment", "2201": "Energy", "2202": "Health", "2203": "Education", "2204": "Energy", "2205": "Labor and Employment", "2206": "Education", "2207": "Education", "2208": "Agriculture", "2209": "Agriculture", "2210": "Agriculture", "2211": "Energy", "2212": "Environment", "2213": "Labor and Employment", "2214": "Health", "2215": "Civil Rights, Minority Issues, and Civil Liberties", "2216": "Education", "2217": "Macroeconomics", "2218": "Macroeconomics", "2219": "Community Development and Housing Issues", "2220": "Labor and Employment", "2221": "Education", "2222": "Agriculture", "2223": "Education", "2224": "Health", "2225": "Agriculture", "2226": "Agriculture", "2227": "Health", "2228": "Labor and Employment", "2229": "Agriculture", "2230": "Education", "2231": "Agriculture", "2232": "Health"}, "sub_labels": {"0": "Facilities construction, regulation, and payments", "1": "Water Resources Development", "2": "Comprehensive health care reform", "3": "Air Transportation and Safety", "4": "Water Resources Development", "5": "Fair Labor Standards", "6": "Energy Conservation", "7": "Roads and Highways", "8": "Maritime Issues, Including Safety and Security", "9": "Natural Resources, Public Lands, and Forest Management", "10": "Electricity and Hydroelectricity", "11": "Natural Gas and Oil", "12": "Fisheries and Fishing", "13": "Ethnic Minority and Racial Group Discrimination", "14": "Taxation, Tax policy, and Broad Tax Reform", "15": "Health Workforce, Licensing & Training", "16": "Employee Relations and Labor Unions", "17": "Hazardous Waste and Toxic Chemical Regulation, Treatment, and Disposal", "18": "Roads and Highways", "19": "Higher Education", "20": "Native American Affairs", "21": "Taxation, Tax policy, and Broad Tax Reform", "22": "Water Resources Development", "23": "National Parks, Memorials and Recreation", "24": "Health Insurance", "25": "District of Columbia Affairs", "26": "Family Issues and Domestic Violence", "27": "Natural Resources, Public Lands, and Forest Management", "28": "Child Abuse and Child Pornography", "29": "Coal", "30": "Electricity and Hydroelectricity", "31": "Roads and Highways", "32": "Education of Underprivileged Students", "33": "Natural Resources, Public Lands, and Forest Management", "34": "Natural Resources, Public Lands, and Forest Management", "35": "General education", "36": "Right to Privacy and Access to Government Information", "37": "Police, Fire, and Weapons Control", "38": "Mental Health and Cognitive Capacities", "39": "Prisons", "40": "Food Inspection and Safety", "41": "Natural Resources, Public Lands, and Forest Management", "42": "Native American Affairs", "43": "Comprehensive health care reform", "44": "Taxation, Tax policy, and Broad Tax Reform", "45": "Taxation, Tax policy, and Broad Tax Reform", "46": "Taxation, Tax policy, and Broad Tax Reform", "47": "Employment Training and Workforce Development", "48": "Energy Conservation", "49": "Police, Fire, and Weapons Control", "50": "Natural Gas and Oil", "51": "General Public Lands and Water Management", "52": "Natural Resources, Public Lands, and Forest Management", "53": "Natural Resources, Public Lands, and Forest Management", "54": "Juvenile Crime and the Juvenile Justice System", "55": "Alternative and Renewable Energy", "56": "Comprehensive health care reform", "57": "Family Issues and Domestic Violence", "58": "Natural Resources, Public Lands, and Forest Management", "59": "General engergy", "60": "Illegal Drug Production, Trafficking, and Control", "61": "Criminal and Civil Code", "62": "Air Transportation and Safety", "63": "General Law", "64": "Court Administration", "65": "Natural Resources, Public Lands, and Forest Management", "66": "General engergy", "67": "Natural Resources, Public Lands, and Forest Management", "68": "Migrant and Seasonal workers, Farm Labor Issues", "69": "General health", "70": "Mental Health and Cognitive Capacities", "71": "Natural Resources, Public Lands, and Forest Management", "72": "Truck and Automobile Transportation and Safety", "73": "Maritime Issues, Including Safety and Security", "74": "Taxation, Tax policy, and Broad Tax Reform", "75": "Tobacco Abuse, Treatment, and Education", "76": "Secondary Mortgage Market and Government Sponsored Housing Entities", "77": "General engergy", "78": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "79": "Taxation, Tax policy, and Broad Tax Reform", "80": "General agriculture", "81": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "82": "Court Administration", "83": "Taxation, Tax policy, and Broad Tax Reform", "84": "Monetary Supply, Federal Reserve Board, and the Treasury", "85": "Court Administration", "86": "National Parks, Memorials and Recreation", "87": "Natural Gas and Oil", "88": "National Parks, Memorials and Recreation", "89": "Roads and Highways", "90": "Natural Resources, Public Lands, and Forest Management", "91": "White Collar Crime and Organized Crime", "92": "Water Resources Development", "93": "National Parks, Memorials and Recreation", "94": "Natural Resources, Public Lands, and Forest Management", "95": "Riots, Crime Prevention, and Crime Control", "96": "Police, Fire, and Weapons Control", "97": "National Budget and Debt", "98": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "99": "Right to Privacy and Access to Government Information", "100": "General engergy", "101": "Voting Rights, Participation, and Related Issues", "102": "Veterans Housing Assistance and Military Housing Programs", "103": "Police, Fire, and Weapons Control", "104": "Air Transportation and Safety", "105": "Railroad Transportation and Safety", "106": "National Parks, Memorials and Recreation", "107": "Food Inspection and Safety", "108": "U.S. Dependencies and Territorial Issues", "109": "National Parks, Memorials and Recreation", "110": "Court Administration", "111": "Animal and Crop Disease, Pest Control, and Domesticated Animal Welfare", "112": "Criminal and Civil Code", "113": "Court Administration", "114": "Housing and Community Development", "115": "Employee Benefits", "116": "National Parks, Memorials and Recreation", "117": "Taxation, Tax policy, and Broad Tax Reform", "118": "Maritime Issues, Including Safety and Security", "119": "Natural Gas and Oil", "120": "Natural Resources, Public Lands, and Forest Management", "121": "Higher Education", "122": "Employee Benefits", "123": "Secondary Mortgage Market and Government Sponsored Housing Entities", "124": "Court Administration", "125": "General Public Lands and Water Management", "126": "Water Resources Development", "127": "National Parks, Memorials and Recreation", "128": "Criminal and Civil Code", "129": "Native American Affairs", "130": "Land and Water Conservation", "131": "Other agriculture, federal agricultural census", "132": "Public Works (Infrastructure Development)", "133": "Family Issues and Domestic Violence", "134": "General education", "135": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "136": "Court Administration", "137": "National Parks, Memorials and Recreation", "138": "Native American Affairs", "139": "National Parks, Memorials and Recreation", "140": "Police, Fire, and Weapons Control", "141": "Educational Excellence", "142": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "143": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "144": "Higher Education", "145": "Natural Resources, Public Lands, and Forest Management", "146": "Water Resources Development", "147": "Natural Resources, Public Lands, and Forest Management", "148": "Worker Safety and Protection, Occupational and Safety Health Administration", "149": "Court Administration", "150": "Research and development", "151": "Health Insurance", "152": "Taxation, Tax policy, and Broad Tax Reform", "153": "Urban Economic Development and General Urban Issues", "154": "Species and Habitat Protection", "155": "Employment Training and Workforce Development", "156": "Electricity and Hydroelectricity", "157": "Energy Research and Development", "158": "Land and Water Conservation", "159": "Maritime Issues, Including Safety and Security", "160": "Police, Fire, and Weapons Control", "161": "Agricultural Trade", "162": "National Parks, Memorials and Recreation", "163": "Truck and Automobile Transportation and Safety", "164": "Court Administration", "165": "Prescription drug coverage and costs", "166": "Prescription drug coverage and costs", "167": "Natural Resources, Public Lands, and Forest Management", "168": "Illegal Drug Production, Trafficking, and Control", "169": "Inflation and Interest Rates", "170": "Railroad Transportation and Safety", "171": "Agricultural Trade", "172": "Juvenile Crime and the Juvenile Justice System", "173": "Family Issues and Domestic Violence", "174": "Public health and disease prevention", "175": "Species and Habitat Protection", "176": "Natural Gas and Oil", "177": "Coal", "178": "Natural Gas and Oil", "179": "Native American Affairs", "180": "Facilities construction, regulation, and payments", "181": "Arts and Humanities", "182": "Maritime Issues, Including Safety and Security", "183": "Species and Habitat Protection", "184": "Native American Affairs", "185": "Water Resources Development", "186": "Fisheries and Fishing", "187": "Juvenile Crime and the Juvenile Justice System", "188": "Agricultural Research and Development", "189": "Natural Gas and Oil", "190": "Low and Middle-Income Housing Programs and Needs", "191": "Water Resources Development", "192": "Air pollution, Climate Change, and Noise Pollution", "193": "Higher Education", "194": "Agricultural Marketing, Research, and Promotion", "195": "Education of Underprivileged Students", "196": "Truck and Automobile Transportation and Safety", "197": "general civil rights", "198": "Natural Resources, Public Lands, and Forest Management", "199": "Natural Resources, Public Lands, and Forest Management", "200": "Native American Affairs", "201": "National Parks, Memorials and Recreation", "202": "Employee Benefits", "203": "Research and development", "204": "Roads and Highways", "205": "Executive Branch Agencies Dealing with Law and Crime", "206": "National Parks, Memorials and Recreation", "207": "Railroad Transportation and Safety", "208": "Maritime Issues, Including Safety and Security", "209": "Maritime Issues, Including Safety and Security", "210": "National Parks, Memorials and Recreation", "211": "General Community Development and Housing Issues", "212": "Taxation, Tax policy, and Broad Tax Reform", "213": "National Parks, Memorials and Recreation", "214": "Research and development", "215": "Food Inspection and Safety", "216": "National Parks, Memorials and Recreation", "217": "General Transportation", "218": "Taxation, Tax policy, and Broad Tax Reform", "219": "Health Insurance", "220": "General environment", "221": "Agricultural Trade", "222": "Air Transportation and Safety", "223": "Secondary Mortgage Market and Government Sponsored Housing Entities", "224": "Hazardous Waste and Toxic Chemical Regulation, Treatment, and Disposal", "225": "General agriculture", "226": "National Parks, Memorials and Recreation", "227": "Architectural competition, cellulose home insulation", "228": "Health Workforce, Licensing & Training", "229": "Executive Branch Agencies Dealing with Law and Crime", "230": "Maritime Issues, Including Safety and Security", "231": "Taxation, Tax policy, and Broad Tax Reform", "232": "General education", "233": "General Transportation", "234": "Illegal Drug Production, Trafficking, and Control", "235": "Substance, Alcohol and Drug Abuse, Treatment and Education", "236": "Truck and Automobile Transportation and Safety", "237": "Natural Gas and Oil", "238": "Natural Resources, Public Lands, and Forest Management", "239": "Court Administration", "240": "Electricity and Hydroelectricity", "241": "Anti-Government Activities", "242": "General engergy", "243": "Education of Underprivileged Students", "244": "Police, Fire, and Weapons Control", "245": "Railroad Transportation and Safety", "246": "National Parks, Memorials and Recreation", "247": "Air Transportation and Safety", "248": "Taxation, Tax policy, and Broad Tax Reform", "249": "Ethnic Minority and Racial Group Discrimination", "250": "Research and development", "251": "Right to Privacy and Access to Government Information", "252": "Ethnic Minority and Racial Group Discrimination", "253": "National Parks, Memorials and Recreation", "254": "Executive Branch Agencies Dealing with Law and Crime", "255": "National Parks, Memorials and Recreation", "256": "Alternative and Renewable Energy", "257": "U.S. Dependencies and Territorial Issues", "258": "Elementary and Secondary Education", "259": "Employment Training and Workforce Development", "260": "Water Resources Development", "261": "Substance, Alcohol and Drug Abuse, Treatment and Education", "262": "Food Inspection and Safety", "263": "Taxation, Tax policy, and Broad Tax Reform", "264": "Rural Housing", "265": "Air Transportation and Safety", "266": "Natural Resources, Public Lands, and Forest Management", "267": "National Parks, Memorials and Recreation", "268": "National Parks, Memorials and Recreation", "269": "Maritime Issues, Including Safety and Security", "270": "Railroad Transportation and Safety", "271": "Natural Resources, Public Lands, and Forest Management", "272": "Energy Conservation", "273": "General Transportation", "274": "Water Resources Development", "275": "Child Abuse and Child Pornography", "276": "National Parks, Memorials and Recreation", "277": "Hazardous Waste and Toxic Chemical Regulation, Treatment, and Disposal", "278": "General engergy", "279": "Water Resources Development", "280": "Prescription drug coverage and costs", "281": "Health Insurance", "282": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "283": "Maritime Issues, Including Safety and Security", "284": "Water Resources Development", "285": "Animal and Crop Disease, Pest Control, and Domesticated Animal Welfare", "286": "Family Issues and Domestic Violence", "287": "Native American Affairs", "288": "Maritime Issues, Including Safety and Security", "289": "Court Administration", "290": "Comprehensive health care reform", "291": "Maritime Issues, Including Safety and Security", "292": "National Parks, Memorials and Recreation", "293": "Health Workforce, Licensing & Training", "294": "General Transportation", "295": "Criminal and Civil Code", "296": "Water Resources Development", "297": "Energy Research and Development", "298": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "299": "Inflation and Interest Rates", "300": "General Public Lands and Water Management", "301": "Natural Resources, Public Lands, and Forest Management", "302": "Fair Labor Standards", "303": "Water Resources Development", "304": "Ethnic Minority and Racial Group Discrimination", "305": "Natural Gas and Oil", "306": "Natural Resources, Public Lands, and Forest Management", "307": "General Public Lands and Water Management", "308": "National Parks, Memorials and Recreation", "309": "Truck and Automobile Transportation and Safety", "310": "Railroad Transportation and Safety", "311": "Energy Conservation", "312": "Employee Benefits", "313": "Water Resources Development", "314": "Mass Transportation and Safety", "315": "Natural Resources, Public Lands, and Forest Management", "316": "Public Works (Infrastructure Development)", "317": "National Parks, Memorials and Recreation", "318": "Truck and Automobile Transportation and Safety", "319": "Health Insurance", "320": "Maritime Issues, Including Safety and Security", "321": "Natural Resources, Public Lands, and Forest Management", "322": "Taxation, Tax policy, and Broad Tax Reform", "323": "Railroad Transportation and Safety", "324": "Family Issues and Domestic Violence", "325": "Higher Education", "326": "Water Resources Development", "327": "Educational Excellence", "328": "National Parks, Memorials and Recreation", "329": "Truck and Automobile Transportation and Safety", "330": "Native American Affairs", "331": "Secondary Mortgage Market and Government Sponsored Housing Entities", "332": "Natural Resources, Public Lands, and Forest Management", "333": "Health Insurance", "334": "Natural Resources, Public Lands, and Forest Management", "335": "Public Works (Infrastructure Development)", "336": "National Parks, Memorials and Recreation", "337": "Police, Fire, and Weapons Control", "338": "Family Issues and Domestic Violence", "339": "Executive Branch Agencies Dealing with Law and Crime", "340": "Water Resources Development", "341": "Elementary and Secondary Education", "342": "Elementary and Secondary Education", "343": "Public Works (Infrastructure Development)", "344": "Native American Affairs", "345": "Executive Branch Agencies Dealing with Law and Crime", "346": "Long-term care, home health, hospice, and rehabilitation services", "347": "Native American Affairs", "348": "Roads and Highways", "349": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "350": "Veterans Housing Assistance and Military Housing Programs", "351": "U.S. Dependencies and Territorial Issues", "352": "Employee Benefits", "353": "Urban Economic Development and General Urban Issues", "354": "National Parks, Memorials and Recreation", "355": "National Parks, Memorials and Recreation", "356": "Pollution and Conservation in Coastal & Other Navigable Waterways", "357": "Natural Resources, Public Lands, and Forest Management", "358": "Environment Research and Development", "359": "National Parks, Memorials and Recreation", "360": "Energy Conservation", "361": "Monetary Supply, Federal Reserve Board, and the Treasury", "362": "Low and Middle-Income Housing Programs and Needs", "363": "National Budget and Debt", "364": "Roads and Highways", "365": "Air Transportation and Safety", "366": "general civil rights", "367": "Regulation of drug industry, medical devices, and clinical labs", "368": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "369": "Species and Habitat Protection", "370": "Taxation, Tax policy, and Broad Tax Reform", "371": "Taxation, Tax policy, and Broad Tax Reform", "372": "Higher Education", "373": "Gender, Identity and Sexual Orientation Discrimination", "374": "Comprehensive health care reform", "375": "Other transportation", "376": "Monetary Supply, Federal Reserve Board, and the Treasury", "377": "Child Abuse and Child Pornography", "378": "Higher Education", "379": "National Parks, Memorials and Recreation", "380": "Elementary and Secondary Education", "381": "General Labor", "382": "National Parks, Memorials and Recreation", "383": "Water Resources Development", "384": "Court Administration", "385": "Nuclear Energy and Nuclear Regulatory Commission Issues", "386": "Provider and insurer payment and regulation", "387": "Water Resources Development", "388": "Child Abuse and Child Pornography", "389": "Fair Labor Standards", "390": "Right to Privacy and Access to Government Information", "391": "Land and Water Conservation", "392": "National Parks, Memorials and Recreation", "393": "Maritime Issues, Including Safety and Security", "394": "Maritime Issues, Including Safety and Security", "395": "Research and development", "396": "Natural Resources, Public Lands, and Forest Management", "397": "Species and Habitat Protection", "398": "Disability or Disease Discrimination", "399": "Court Administration", "400": "Natural Resources, Public Lands, and Forest Management", "401": "Agricultural Trade", "402": "Truck and Automobile Transportation and Safety", "403": "Electricity and Hydroelectricity", "404": "Maritime Issues, Including Safety and Security", "405": "Native American Affairs", "406": "Energy Conservation", "407": "Natural Resources, Public Lands, and Forest Management", "408": "Hazardous Waste and Toxic Chemical Regulation, Treatment, and Disposal", "409": "Agricultural Trade", "410": "Long-term care, home health, hospice, and rehabilitation services", "411": "Veterans Housing Assistance and Military Housing Programs", "412": "Species and Habitat Protection", "413": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "414": "Police, Fire, and Weapons Control", "415": "Animal and Crop Disease, Pest Control, and Domesticated Animal Welfare", "416": "Electricity and Hydroelectricity", "417": "Agricultural Trade", "418": "National Parks, Memorials and Recreation", "419": "Natural Resources, Public Lands, and Forest Management", "420": "Roads and Highways", "421": "Agricultural Trade", "422": "Water Resources Development", "423": "Taxation, Tax policy, and Broad Tax Reform", "424": "Natural Resources, Public Lands, and Forest Management", "425": "Health Insurance", "426": "Natural Gas and Oil", "427": "General Public Lands and Water Management", "428": "Higher Education", "429": "Agricultural Research and Development", "430": "Health Workforce, Licensing & Training", "431": "Higher Education", "432": "Housing and Community Development", "433": "Housing and Community Development", "434": "Police, Fire, and Weapons Control", "435": "Worker Safety and Protection, Occupational and Safety Health Administration", "436": "Maritime Issues, Including Safety and Security", "437": "Waste Disposal", "438": "Water Resources Development", "439": "U.S. Dependencies and Territorial Issues", "440": "National Budget and Debt", "441": "Illegal Drug Production, Trafficking, and Control", "442": "Natural Resources, Public Lands, and Forest Management", "443": "Court Administration", "444": "Transportation Research and Development", "445": "Elementary and Secondary Education", "446": "Natural Resources, Public Lands, and Forest Management", "447": "Water Resources Development", "448": "Executive Branch Agencies Dealing with Law and Crime", "449": "Water Resources Development", "450": "Nuclear Energy and Nuclear Regulatory Commission Issues", "451": "First Amendment Issues", "452": "Regulation of drug industry, medical devices, and clinical labs", "453": "Natural Resources, Public Lands, and Forest Management", "454": "Illegal Drug Production, Trafficking, and Control", "455": "General Public Lands and Water Management", "456": "Roads and Highways", "457": "Native American Affairs", "458": "Fisheries and Fishing", "459": "Long-term care, home health, hospice, and rehabilitation services", "460": "Maritime Issues, Including Safety and Security", "461": "Maritime Issues, Including Safety and Security", "462": "Food Inspection and Safety", "463": "National Parks, Memorials and Recreation", "464": "Natural Resources, Public Lands, and Forest Management", "465": "general civil rights", "466": "Air Transportation and Safety", "467": "Higher Education", "468": "National Parks, Memorials and Recreation", "469": "General Labor", "470": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "471": "Air Transportation and Safety", "472": "General health", "473": "Agricultural Trade", "474": "General education", "475": "National Parks, Memorials and Recreation", "476": "Electricity and Hydroelectricity", "477": "Employee Benefits", "478": "Truck and Automobile Transportation and Safety", "479": "Drinking Water Safety", "480": "Natural Resources, Public Lands, and Forest Management", "481": "General education", "482": "Water Resources Development", "483": "Water Resources Development", "484": "Water Resources Development", "485": "Maritime Issues, Including Safety and Security", "486": "General Community Development and Housing Issues", "487": "Pollution and Conservation in Coastal & Other Navigable Waterways", "488": "Natural Resources, Public Lands, and Forest Management", "489": "Juvenile Crime and the Juvenile Justice System", "490": "Water Resources Development", "491": "Natural Gas and Oil", "492": "General environment", "493": "Transportation Research and Development", "494": "Court Administration", "495": "Right to Privacy and Access to Government Information", "496": "Energy Research and Development", "497": "Health Insurance", "498": "general civil rights", "499": "Maritime Issues, Including Safety and Security", "500": "Taxation, Tax policy, and Broad Tax Reform", "501": "Truck and Automobile Transportation and Safety", "502": "Air pollution, Climate Change, and Noise Pollution", "503": "General Community Development and Housing Issues", "504": "Air pollution, Climate Change, and Noise Pollution", "505": "Police, Fire, and Weapons Control", "506": "Natural Resources, Public Lands, and Forest Management", "507": "Energy Conservation", "508": "Prescription drug coverage and costs", "509": "Educational Excellence", "510": "Substance, Alcohol and Drug Abuse, Treatment and Education", "511": "Disability or Disease Discrimination", "512": "Educational Excellence", "513": "Facilities construction, regulation, and payments", "514": "Court Administration", "515": "Higher Education", "516": "Right to Privacy and Access to Government Information", "517": "Roads and Highways", "518": "Maritime Issues, Including Safety and Security", "519": "Animal and Crop Disease, Pest Control, and Domesticated Animal Welfare", "520": "Health Insurance", "521": "Water Resources Development", "522": "National Parks, Memorials and Recreation", "523": "Taxation, Tax policy, and Broad Tax Reform", "524": "National Parks, Memorials and Recreation", "525": "Truck and Automobile Transportation and Safety", "526": "Employee Benefits", "527": "Taxation, Tax policy, and Broad Tax Reform", "528": "Air Transportation and Safety", "529": "Fair Labor Standards", "530": "Air pollution, Climate Change, and Noise Pollution", "531": "Maritime Issues, Including Safety and Security", "532": "Higher Education", "533": "Drinking Water Safety", "534": "National Parks, Memorials and Recreation", "535": "Research and development", "536": "Natural Gas and Oil", "537": "Native American Affairs", "538": "U.S. Dependencies and Territorial Issues", "539": "Pollution and Conservation in Coastal & Other Navigable Waterways", "540": "Disability or Disease Discrimination", "541": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "542": "Air Transportation and Safety", "543": "Air Transportation and Safety", "544": "National Parks, Memorials and Recreation", "545": "National Parks, Memorials and Recreation", "546": "General environment", "547": "Land and Water Conservation", "548": "Natural Gas and Oil", "549": "Taxation, Tax policy, and Broad Tax Reform", "550": "General education", "551": "Drinking Water Safety", "552": "General health", "553": "General health", "554": "National Parks, Memorials and Recreation", "555": "Air pollution, Climate Change, and Noise Pollution", "556": "Air Transportation and Safety", "557": "Executive Branch Agencies Dealing with Law and Crime", "558": "National Parks, Memorials and Recreation", "559": "Riots, Crime Prevention, and Crime Control", "560": "Higher Education", "561": "Air Transportation and Safety", "562": "Maritime Issues, Including Safety and Security", "563": "Employee Relations and Labor Unions", "564": "Natural Resources, Public Lands, and Forest Management", "565": "Taxation, Tax policy, and Broad Tax Reform", "566": "Agricultural Marketing, Research, and Promotion", "567": "Employment Training and Workforce Development", "568": "Taxation, Tax policy, and Broad Tax Reform", "569": "Mental Health and Cognitive Capacities", "570": "Natural Resources, Public Lands, and Forest Management", "571": "Natural Resources, Public Lands, and Forest Management", "572": "Water Resources Development", "573": "General Public Lands and Water Management", "574": "Water Resources Development", "575": "Taxation, Tax policy, and Broad Tax Reform", "576": "Roads and Highways", "577": "Comprehensive health care reform", "578": "Natural Resources, Public Lands, and Forest Management", "579": "Health Insurance", "580": "Natural Resources, Public Lands, and Forest Management", "581": "Low and Middle-Income Housing Programs and Needs", "582": "Children and Prenatal Care", "583": "Species and Habitat Protection", "584": "Nuclear Energy and Nuclear Regulatory Commission Issues", "585": "Employee Benefits", "586": "Environment Research and Development", "587": "Water Resources Development", "588": "Voting Rights, Participation, and Related Issues", "589": "Air pollution, Climate Change, and Noise Pollution", "590": "Maritime Issues, Including Safety and Security", "591": "Arts and Humanities", "592": "Court Administration", "593": "National Parks, Memorials and Recreation", "594": "Natural Resources, Public Lands, and Forest Management", "595": "Maritime Issues, Including Safety and Security", "596": "Natural Resources, Public Lands, and Forest Management", "597": "Court Administration", "598": "Arts and Humanities", "599": "U.S. Dependencies and Territorial Issues", "600": "Drinking Water Safety", "601": "Pollution and Conservation in Coastal & Other Navigable Waterways", "602": "Court Administration", "603": "Energy Conservation", "604": "Employment Training and Workforce Development", "605": "Air Transportation and Safety", "606": "Employment Training and Workforce Development", "607": "Natural Resources, Public Lands, and Forest Management", "608": "Maritime Issues, Including Safety and Security", "609": "Land and Water Conservation", "610": "Employee Benefits", "611": "Employment Training and Workforce Development", "612": "Natural Gas and Oil", "613": "Secondary Mortgage Market and Government Sponsored Housing Entities", "614": "Alternative and Renewable Energy", "615": "Agricultural Trade", "616": "National Parks, Memorials and Recreation", "617": "Water Resources Development", "618": "Water Resources Development", "619": "General engergy", "620": "Voting Rights, Participation, and Related Issues", "621": "Food Inspection and Safety", "622": "U.S. Dependencies and Territorial Issues", "623": "Energy Conservation", "624": "Higher Education", "625": "Air pollution, Climate Change, and Noise Pollution", "626": "Water Resources Development", "627": "National Budget and Debt", "628": "Low and Middle-Income Housing Programs and Needs", "629": "Indoor Environmental Hazards", "630": "Native American Affairs", "631": "Truck and Automobile Transportation and Safety", "632": "Employment Training and Workforce Development", "633": "Water Resources Development", "634": "Higher Education", "635": "Species and Habitat Protection", "636": "Vocational Education", "637": "Police, Fire, and Weapons Control", "638": "Water Resources Development", "639": "Riots, Crime Prevention, and Crime Control", "640": "Native American Affairs", "641": "Species and Habitat Protection", "642": "Housing and Community Development", "643": "Alternative and Renewable Energy", "644": "Drinking Water Safety", "645": "Gender, Identity and Sexual Orientation Discrimination", "646": "National Parks, Memorials and Recreation", "647": "Natural Resources, Public Lands, and Forest Management", "648": "First Amendment Issues", "649": "General Community Development and Housing Issues", "650": "Water Resources Development", "651": "General education", "652": "Natural Resources, Public Lands, and Forest Management", "653": "Natural Gas and Oil", "654": "National Budget and Debt", "655": "Family Issues and Domestic Violence", "656": "General Community Development and Housing Issues", "657": "National Parks, Memorials and Recreation", "658": "Mass Transportation and Safety", "659": "Regulation of drug industry, medical devices, and clinical labs", "660": "Maritime Issues, Including Safety and Security", "661": "Retirement and lifelong learning", "662": "Right to Privacy and Access to Government Information", "663": "Water Resources Development", "664": "Executive Branch Agencies Dealing with Law and Crime", "665": "Agricultural Trade", "666": "Water Resources Development", "667": "Executive Branch Agencies Dealing with Law and Crime", "668": "Long-term care, home health, hospice, and rehabilitation services", "669": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "670": "Hazardous Waste and Toxic Chemical Regulation, Treatment, and Disposal", "671": "Employee Benefits", "672": "Family Issues and Domestic Violence", "673": "Natural Gas and Oil", "674": "Illegal Drug Production, Trafficking, and Control", "675": "Police, Fire, and Weapons Control", "676": "Maritime Issues, Including Safety and Security", "677": "Electricity and Hydroelectricity", "678": "Taxation, Tax policy, and Broad Tax Reform", "679": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "680": "Court Administration", "681": "Taxation, Tax policy, and Broad Tax Reform", "682": "National Parks, Memorials and Recreation", "683": "Agricultural Research and Development", "684": "General education", "685": "Natural Gas and Oil", "686": "Employee Benefits", "687": "Higher Education", "688": "Family Issues and Domestic Violence", "689": "Hazardous Waste and Toxic Chemical Regulation, Treatment, and Disposal", "690": "Court Administration", "691": "Criminal and Civil Code", "692": "Education of Underprivileged Students", "693": "Electricity and Hydroelectricity", "694": "Higher Education", "695": "Higher Education", "696": "Taxation, Tax policy, and Broad Tax Reform", "697": "Natural Resources, Public Lands, and Forest Management", "698": "Executive Branch Agencies Dealing with Law and Crime", "699": "Air Transportation and Safety", "700": "Water Resources Development", "701": "Anti-Government Activities", "702": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "703": "Natural Resources, Public Lands, and Forest Management", "704": "Food Inspection and Safety", "705": "Natural Resources, Public Lands, and Forest Management", "706": "Water Resources Development", "707": "Family Issues and Domestic Violence", "708": "National Parks, Memorials and Recreation", "709": "Health Workforce, Licensing & Training", "710": "Native American Affairs", "711": "Agricultural Trade", "712": "Court Administration", "713": "National Parks, Memorials and Recreation", "714": "Roads and Highways", "715": "Housing and Community Development", "716": "general civil rights", "717": "Native American Affairs", "718": "Veterans Housing Assistance and Military Housing Programs", "719": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "720": "General education", "721": "Maritime Issues, Including Safety and Security", "722": "Secondary Mortgage Market and Government Sponsored Housing Entities", "723": "Higher Education", "724": "Court Administration", "725": "Comprehensive health care reform", "726": "Court Administration", "727": "Children and Prenatal Care", "728": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "729": "Taxation, Tax policy, and Broad Tax Reform", "730": "Inflation and Interest Rates", "731": "General Domestic Macroeconomic Issues", "732": "National Budget and Debt", "733": "Natural Gas and Oil", "734": "Research and development", "735": "Employment Training and Workforce Development", "736": "General environment", "737": "Taxation, Tax policy, and Broad Tax Reform", "738": "Children and Prenatal Care", "739": "Employment Training and Workforce Development", "740": "National Parks, Memorials and Recreation", "741": "Hazardous Waste and Toxic Chemical Regulation, Treatment, and Disposal", "742": "Maritime Issues, Including Safety and Security", "743": "Air Transportation and Safety", "744": "Food Inspection and Safety", "745": "Natural Resources, Public Lands, and Forest Management", "746": "National Parks, Memorials and Recreation", "747": "Agricultural Trade", "748": "Natural Resources, Public Lands, and Forest Management", "749": "Higher Education", "750": "Police, Fire, and Weapons Control", "751": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "752": "Juvenile Crime and the Juvenile Justice System", "753": "Agricultural Trade", "754": "Coal", "755": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "756": "Price Control and Stabilization", "757": "Waste Disposal", "758": "Juvenile Crime and the Juvenile Justice System", "759": "Native American Affairs", "760": "Native American Affairs", "761": "Water Resources Development", "762": "General agriculture", "763": "General agriculture", "764": "Housing and Community Development", "765": "Waste Disposal", "766": "Court Administration", "767": "Court Administration", "768": "Otjer Laws", "769": "Railroad Transportation and Safety", "770": "Health Insurance", "771": "Land and Water Conservation", "772": "Species and Habitat Protection", "773": "Health consequences of a nuclear attack, regulation of health care apps", "774": "Air Transportation and Safety", "775": "First Amendment Issues", "776": "National Parks, Memorials and Recreation", "777": "Food Inspection and Safety", "778": "Employee Relations and Labor Unions", "779": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "780": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "781": "Railroad Transportation and Safety", "782": "Family Issues and Domestic Violence", "783": "Health Insurance", "784": "Natural Resources, Public Lands, and Forest Management", "785": "Right to Privacy and Access to Government Information", "786": "Natural Resources, Public Lands, and Forest Management", "787": "National Parks, Memorials and Recreation", "788": "General education", "789": "Public health and disease prevention", "790": "Elderly and Disabled Housing", "791": "Hazardous Waste and Toxic Chemical Regulation, Treatment, and Disposal", "792": "General education", "793": "Prescription drug coverage and costs", "794": "Court Administration", "795": "Provider and insurer payment and regulation", "796": "Agricultural Trade", "797": "National Parks, Memorials and Recreation", "798": "Truck and Automobile Transportation and Safety", "799": "Regulation of drug industry, medical devices, and clinical labs", "800": "Health Insurance", "801": "First Amendment Issues", "802": "General agriculture", "803": "Energy Conservation", "804": "Tobacco Abuse, Treatment, and Education", "805": "Electricity and Hydroelectricity", "806": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "807": "Secondary Mortgage Market and Government Sponsored Housing Entities", "808": "Maritime Issues, Including Safety and Security", "809": "Regulation of drug industry, medical devices, and clinical labs", "810": "Water Resources Development", "811": "Air Transportation and Safety", "812": "Monetary Supply, Federal Reserve Board, and the Treasury", "813": "Ethnic Minority and Racial Group Discrimination", "814": "Land and Water Conservation", "815": "National Budget and Debt", "816": "Rural Economic Development", "817": "National Budget and Debt", "818": "Police, Fire, and Weapons Control", "819": "Mass Transportation and Safety", "820": "Secondary Mortgage Market and Government Sponsored Housing Entities", "821": "General agriculture", "822": "Voting Rights, Participation, and Related Issues", "823": "Electricity and Hydroelectricity", "824": "Other agriculture, federal agricultural census", "825": "Inflation and Interest Rates", "826": "Low and Middle-Income Housing Programs and Needs", "827": "General Public Lands and Water Management", "828": "Health Insurance", "829": "Food Inspection and Safety", "830": "Facilities construction, regulation, and payments", "831": "Roads and Highways", "832": "Provider and insurer payment and regulation", "833": "General health", "834": "Native American Affairs", "835": "General environment", "836": "Police, Fire, and Weapons Control", "837": "Native American Affairs", "838": "Native American Affairs", "839": "Veterans Housing Assistance and Military Housing Programs", "840": "Nuclear Energy and Nuclear Regulatory Commission Issues", "841": "Employee Benefits", "842": "Low and Middle-Income Housing Programs and Needs", "843": "Health Insurance", "844": "Veterans Housing Assistance and Military Housing Programs", "845": "Employee Benefits", "846": "Research and development", "847": "Maritime Issues, Including Safety and Security", "848": "Illegal Drug Production, Trafficking, and Control", "849": "General environment", "850": "Native American Affairs", "851": "Natural Gas and Oil", "852": "General engergy", "853": "General agriculture", "854": "Higher Education", "855": "Facilities construction, regulation, and payments", "856": "Native American Affairs", "857": "Maritime Issues, Including Safety and Security", "858": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "859": "Air Transportation and Safety", "860": "Comprehensive health care reform", "861": "National Parks, Memorials and Recreation", "862": "Hazardous Waste and Toxic Chemical Regulation, Treatment, and Disposal", "863": "Facilities construction, regulation, and payments", "864": "Low and Middle-Income Housing Programs and Needs", "865": "General Transportation", "866": "Juvenile Crime and the Juvenile Justice System", "867": "Taxation, Tax policy, and Broad Tax Reform", "868": "Higher Education", "869": "Youth Employment, Youth Job Corps Programs, and Child Labor", "870": "Food Inspection and Safety", "871": "Natural Gas and Oil", "872": "Employee Relations and Labor Unions", "873": "Native American Affairs", "874": "Water Resources Development", "875": "Native American Affairs", "876": "Alternative and Renewable Energy", "877": "Maritime Issues, Including Safety and Security", "878": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "879": "Electricity and Hydroelectricity", "880": "Court Administration", "881": "Water Resources Development", "882": "Court Administration", "883": "Executive Branch Agencies Dealing with Law and Crime", "884": "U.S. Dependencies and Territorial Issues", "885": "Employee Benefits", "886": "Facilities construction, regulation, and payments", "887": "Housing and Community Development", "888": "Criminal and Civil Code", "889": "National Parks, Memorials and Recreation", "890": "Substance, Alcohol and Drug Abuse, Treatment and Education", "891": "Natural Resources, Public Lands, and Forest Management", "892": "Alternative and Renewable Energy", "893": "Water Resources Development", "894": "Disability or Disease Discrimination", "895": "Native American Affairs", "896": "Natural Resources, Public Lands, and Forest Management", "897": "Natural Gas and Oil", "898": "National Parks, Memorials and Recreation", "899": "Water Resources Development", "900": "Anti-Government Activities", "901": "Elementary and Secondary Education", "902": "Natural Resources, Public Lands, and Forest Management", "903": "Natural Gas and Oil", "904": "Air Transportation and Safety", "905": "Police, Fire, and Weapons Control", "906": "Natural Gas and Oil", "907": "Natural Resources, Public Lands, and Forest Management", "908": "Natural Resources, Public Lands, and Forest Management", "909": "Court Administration", "910": "Elderly and Disabled Housing", "911": "National Parks, Memorials and Recreation", "912": "Court Administration", "913": "General agriculture", "914": "Taxation, Tax policy, and Broad Tax Reform", "915": "National Parks, Memorials and Recreation", "916": "General environment", "917": "Drinking Water Safety", "918": "Food Inspection and Safety", "919": "General environment", "920": "Food Inspection and Safety", "921": "Housing and Community Development", "922": "Higher Education", "923": "Natural Resources, Public Lands, and Forest Management", "924": "Public health and disease prevention", "925": "Truck and Automobile Transportation and Safety", "926": "Water Resources Development", "927": "Air pollution, Climate Change, and Noise Pollution", "928": "Alternative and Renewable Energy", "929": "Energy Conservation", "930": "Land and Water Conservation", "931": "Mental Health and Cognitive Capacities", "932": "Family Issues and Domestic Violence", "933": "Air pollution, Climate Change, and Noise Pollution", "934": "General Transportation", "935": "Animal and Crop Disease, Pest Control, and Domesticated Animal Welfare", "936": "National Parks, Memorials and Recreation", "937": "Police, Fire, and Weapons Control", "938": "General education", "939": "General engergy", "940": "Prisons", "941": "Food Inspection and Safety", "942": "Natural Resources, Public Lands, and Forest Management", "943": "Drinking Water Safety", "944": "National Parks, Memorials and Recreation", "945": "Land and Water Conservation", "946": "Police, Fire, and Weapons Control", "947": "Natural Resources, Public Lands, and Forest Management", "948": "General Public Lands and Water Management", "949": "Natural Resources, Public Lands, and Forest Management", "950": "Court Administration", "951": "Public Works (Infrastructure Development)", "952": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "953": "Taxation, Tax policy, and Broad Tax Reform", "954": "Truck and Automobile Transportation and Safety", "955": "Rural Economic Development", "956": "Water Resources Development", "957": "Energy Conservation", "958": "Natural Gas and Oil", "959": "Police, Fire, and Weapons Control", "960": "Nuclear Energy and Nuclear Regulatory Commission Issues", "961": "Taxation, Tax policy, and Broad Tax Reform", "962": "Air Transportation and Safety", "963": "Native American Affairs", "964": "Court Administration", "965": "Voting Rights, Participation, and Related Issues", "966": "Food Inspection and Safety", "967": "Air pollution, Climate Change, and Noise Pollution", "968": "Police, Fire, and Weapons Control", "969": "Nuclear Energy and Nuclear Regulatory Commission Issues", "970": "Natural Resources, Public Lands, and Forest Management", "971": "Health Insurance", "972": "Food Inspection and Safety", "973": "Water Resources Development", "974": "National Parks, Memorials and Recreation", "975": "Maritime Issues, Including Safety and Security", "976": "National Parks, Memorials and Recreation", "977": "National Parks, Memorials and Recreation", "978": "Mental Health and Cognitive Capacities", "979": "Monetary Supply, Federal Reserve Board, and the Treasury", "980": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "981": "other labor", "982": "Air Transportation and Safety", "983": "Natural Gas and Oil", "984": "Air Transportation and Safety", "985": "Food Inspection and Safety", "986": "Natural Resources, Public Lands, and Forest Management", "987": "Natural Resources, Public Lands, and Forest Management", "988": "Age Discrimination", "989": "Water Resources Development", "990": "Railroad Transportation and Safety", "991": "Native American Affairs", "992": "Natural Resources, Public Lands, and Forest Management", "993": "Urban Economic Development and General Urban Issues", "994": "Long-term care, home health, hospice, and rehabilitation services", "995": "General education", "996": "Water Resources Development", "997": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "998": "General Transportation", "999": "National Parks, Memorials and Recreation", "1000": "Maritime Issues, Including Safety and Security", "1001": "Elementary and Secondary Education", "1002": "Police, Fire, and Weapons Control", "1003": "Environmental education", "1004": "Water Resources Development", "1005": "Executive Branch Agencies Dealing with Law and Crime", "1006": "Natural Gas and Oil", "1007": "Truck and Automobile Transportation and Safety", "1008": "Voting Rights, Participation, and Related Issues", "1009": "Court Administration", "1010": "General Community Development and Housing Issues", "1011": "General Law", "1012": "Native American Affairs", "1013": "General Transportation", "1014": "National Parks, Memorials and Recreation", "1015": "Food Inspection and Safety", "1016": "Railroad Transportation and Safety", "1017": "Employee Benefits", "1018": "Criminal and Civil Code", "1019": "Roads and Highways", "1020": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1021": "Maritime Issues, Including Safety and Security", "1022": "Roads and Highways", "1023": "Family Issues and Domestic Violence", "1024": "General Community Development and Housing Issues", "1025": "Police, Fire, and Weapons Control", "1026": "Water Resources Development", "1027": "Elementary and Secondary Education", "1028": "Water Resources Development", "1029": "Natural Gas and Oil", "1030": "Voting Rights, Participation, and Related Issues", "1031": "Veterans Housing Assistance and Military Housing Programs", "1032": "General engergy", "1033": "National Parks, Memorials and Recreation", "1034": "Facilities construction, regulation, and payments", "1035": "Health Insurance", "1036": "Air Transportation and Safety", "1037": "Youth Employment, Youth Job Corps Programs, and Child Labor", "1038": "Water Resources Development", "1039": "Natural Gas and Oil", "1040": "Pollution and Conservation in Coastal & Other Navigable Waterways", "1041": "First Amendment Issues", "1042": "Facilities construction, regulation, and payments", "1043": "Species and Habitat Protection", "1044": "Secondary Mortgage Market and Government Sponsored Housing Entities", "1045": "Agricultural Trade", "1046": "Species and Habitat Protection", "1047": "Natural Resources, Public Lands, and Forest Management", "1048": "Educational Excellence", "1049": "Migrant and Seasonal workers, Farm Labor Issues", "1050": "Court Administration", "1051": "National Parks, Memorials and Recreation", "1052": "National Parks, Memorials and Recreation", "1053": "Roads and Highways", "1054": "Gender, Identity and Sexual Orientation Discrimination", "1055": "general civil rights", "1056": "Roads and Highways", "1057": "Court Administration", "1058": "Court Administration", "1059": "National Parks, Memorials and Recreation", "1060": "Facilities construction, regulation, and payments", "1061": "Police, Fire, and Weapons Control", "1062": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1063": "Fisheries and Fishing", "1064": "National Parks, Memorials and Recreation", "1065": "Alternative and Renewable Energy", "1066": "Water Resources Development", "1067": "Urban Economic Development and General Urban Issues", "1068": "Maritime Issues, Including Safety and Security", "1069": "Police, Fire, and Weapons Control", "1070": "National Budget and Debt", "1071": "Roads and Highways", "1072": "Fisheries and Fishing", "1073": "National Parks, Memorials and Recreation", "1074": "Roads and Highways", "1075": "Maritime Issues, Including Safety and Security", "1076": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1077": "U.S. Dependencies and Territorial Issues", "1078": "Air pollution, Climate Change, and Noise Pollution", "1079": "Energy Conservation", "1080": "Prescription drug coverage and costs", "1081": "Executive Branch Agencies Dealing with Law and Crime", "1082": "Roads and Highways", "1083": "Water Resources Development", "1084": "National Parks, Memorials and Recreation", "1085": "Secondary Mortgage Market and Government Sponsored Housing Entities", "1086": "Housing and Community Development", "1087": "Taxation, Tax policy, and Broad Tax Reform", "1088": "Electricity and Hydroelectricity", "1089": "Electricity and Hydroelectricity", "1090": "National Parks, Memorials and Recreation", "1091": "Environment Research and Development", "1092": "Air pollution, Climate Change, and Noise Pollution", "1093": "Species and Habitat Protection", "1094": "Health Insurance", "1095": "Taxation, Tax policy, and Broad Tax Reform", "1096": "Truck and Automobile Transportation and Safety", "1097": "Higher Education", "1098": "Maritime Issues, Including Safety and Security", "1099": "Court Administration", "1100": "Anti-Government Activities", "1101": "Natural Resources, Public Lands, and Forest Management", "1102": "Hazardous Waste and Toxic Chemical Regulation, Treatment, and Disposal", "1103": "General Public Lands and Water Management", "1104": "Retirement and lifelong learning", "1105": "General education", "1106": "Natural Gas and Oil", "1107": "Other agriculture, federal agricultural census", "1108": "General environment", "1109": "Employee Benefits", "1110": "Land and Water Conservation", "1111": "Native American Affairs", "1112": "Employee Relations and Labor Unions", "1113": "Energy Conservation", "1114": "Natural Resources, Public Lands, and Forest Management", "1115": "Health Insurance", "1116": "Truck and Automobile Transportation and Safety", "1117": "Police, Fire, and Weapons Control", "1118": "Public health and disease prevention", "1119": "Agricultural Trade", "1120": "Comprehensive health care reform", "1121": "Police, Fire, and Weapons Control", "1122": "Employee Relations and Labor Unions", "1123": "Environmental education", "1124": "General Public Lands and Water Management", "1125": "Educational Excellence", "1126": "general civil rights", "1127": "Truck and Automobile Transportation and Safety", "1128": "Roads and Highways", "1129": "Food Inspection and Safety", "1130": "Water Resources Development", "1131": "Ethnic Minority and Racial Group Discrimination", "1132": "Homeless Issues", "1133": "National Parks, Memorials and Recreation", "1134": "Food Inspection and Safety", "1135": "Natural Resources, Public Lands, and Forest Management", "1136": "Natural Resources, Public Lands, and Forest Management", "1137": "National Parks, Memorials and Recreation", "1138": "Public health and disease prevention", "1139": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1140": "Family Issues and Domestic Violence", "1141": "Truck and Automobile Transportation and Safety", "1142": "Roads and Highways", "1143": "general civil rights", "1144": "Elementary and Secondary Education", "1145": "Species and Habitat Protection", "1146": "Prisons", "1147": "General Transportation", "1148": "Indoor Environmental Hazards", "1149": "Waste Disposal", "1150": "Elementary and Secondary Education", "1151": "Elementary and Secondary Education", "1152": "Family Issues and Domestic Violence", "1153": "Alternative and Renewable Energy", "1154": "Monetary Supply, Federal Reserve Board, and the Treasury", "1155": "Roads and Highways", "1156": "Native American Affairs", "1157": "Agricultural Trade", "1158": "Vocational Education", "1159": "Natural Resources, Public Lands, and Forest Management", "1160": "Police, Fire, and Weapons Control", "1161": "Housing and Community Development", "1162": "Natural Resources, Public Lands, and Forest Management", "1163": "Natural Resources, Public Lands, and Forest Management", "1164": "Maritime Issues, Including Safety and Security", "1165": "Recycling", "1166": "Natural Resources, Public Lands, and Forest Management", "1167": "Children and Prenatal Care", "1168": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1169": "Employee Benefits", "1170": "Comprehensive health care reform", "1171": "Voting Rights, Participation, and Related Issues", "1172": "Native American Affairs", "1173": "Taxation, Tax policy, and Broad Tax Reform", "1174": "Higher Education", "1175": "Taxation, Tax policy, and Broad Tax Reform", "1176": "National Parks, Memorials and Recreation", "1177": "Energy Conservation", "1178": "Health Insurance", "1179": "Monetary Supply, Federal Reserve Board, and the Treasury", "1180": "Water Resources Development", "1181": "Employee Benefits", "1182": "Air pollution, Climate Change, and Noise Pollution", "1183": "Arts and Humanities", "1184": "Natural Resources, Public Lands, and Forest Management", "1185": "Maritime Issues, Including Safety and Security", "1186": "Agricultural Marketing, Research, and Promotion", "1187": "Worker Safety and Protection, Occupational and Safety Health Administration", "1188": "Air pollution, Climate Change, and Noise Pollution", "1189": "General engergy", "1190": "Illegal Drug Production, Trafficking, and Control", "1191": "Court Administration", "1192": "First Amendment Issues", "1193": "Air pollution, Climate Change, and Noise Pollution", "1194": "Food Inspection and Safety", "1195": "Secondary Mortgage Market and Government Sponsored Housing Entities", "1196": "Natural Resources, Public Lands, and Forest Management", "1197": "Rural Economic Development", "1198": "Water Resources Development", "1199": "Juvenile Crime and the Juvenile Justice System", "1200": "Truck and Automobile Transportation and Safety", "1201": "Water Resources Development", "1202": "Taxation, Tax policy, and Broad Tax Reform", "1203": "Illegal Drug Production, Trafficking, and Control", "1204": "Research and development", "1205": "Roads and Highways", "1206": "National Parks, Memorials and Recreation", "1207": "Natural Gas and Oil", "1208": "Natural Gas and Oil", "1209": "Air pollution, Climate Change, and Noise Pollution", "1210": "Police, Fire, and Weapons Control", "1211": "Taxation, Tax policy, and Broad Tax Reform", "1212": "Native American Affairs", "1213": "Maritime Issues, Including Safety and Security", "1214": "Taxation, Tax policy, and Broad Tax Reform", "1215": "Price Control and Stabilization", "1216": "Low and Middle-Income Housing Programs and Needs", "1217": "general civil rights", "1218": "Hazardous Waste and Toxic Chemical Regulation, Treatment, and Disposal", "1219": "General Domestic Macroeconomic Issues", "1220": "Family Issues and Domestic Violence", "1221": "General Community Development and Housing Issues", "1222": "Water Resources Development", "1223": "General education", "1224": "Natural Resources, Public Lands, and Forest Management", "1225": "Natural Resources, Public Lands, and Forest Management", "1226": "Research and development", "1227": "Natural Resources, Public Lands, and Forest Management", "1228": "Court Administration", "1229": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1230": "Natural Resources, Public Lands, and Forest Management", "1231": "Public Works (Infrastructure Development)", "1232": "Water Resources Development", "1233": "Truck and Automobile Transportation and Safety", "1234": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1235": "Taxation, Tax policy, and Broad Tax Reform", "1236": "Species and Habitat Protection", "1237": "Water Resources Development", "1238": "National Parks, Memorials and Recreation", "1239": "Elementary and Secondary Education", "1240": "Research and development", "1241": "Comprehensive health care reform", "1242": "Family Issues and Domestic Violence", "1243": "Roads and Highways", "1244": "Court Administration", "1245": "Native American Affairs", "1246": "Natural Gas and Oil", "1247": "Elementary and Secondary Education", "1248": "Higher Education", "1249": "Right to Privacy and Access to Government Information", "1250": "Taxation, Tax policy, and Broad Tax Reform", "1251": "Pollution and Conservation in Coastal & Other Navigable Waterways", "1252": "Energy Research and Development", "1253": "Employment Training and Workforce Development", "1254": "Right to Privacy and Access to Government Information", "1255": "General agriculture", "1256": "Species and Habitat Protection", "1257": "Alternative and Renewable Energy", "1258": "Natural Gas and Oil", "1259": "Maritime Issues, Including Safety and Security", "1260": "Maritime Issues, Including Safety and Security", "1261": "Natural Gas and Oil", "1262": "Electricity and Hydroelectricity", "1263": "Illegal Drug Production, Trafficking, and Control", "1264": "Taxation, Tax policy, and Broad Tax Reform", "1265": "Species and Habitat Protection", "1266": "Arts and Humanities", "1267": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1268": "Pollution and Conservation in Coastal & Other Navigable Waterways", "1269": "Comprehensive health care reform", "1270": "Roads and Highways", "1271": "Criminal and Civil Code", "1272": "Agricultural Marketing, Research, and Promotion", "1273": "Elementary and Secondary Education", "1274": "Employee Relations and Labor Unions", "1275": "Court Administration", "1276": "Species and Habitat Protection", "1277": "Police, Fire, and Weapons Control", "1278": "Agricultural Trade", "1279": "Executive Branch Agencies Dealing with Law and Crime", "1280": "Truck and Automobile Transportation and Safety", "1281": "Drinking Water Safety", "1282": "Youth Employment, Youth Job Corps Programs, and Child Labor", "1283": "Maritime Issues, Including Safety and Security", "1284": "Air pollution, Climate Change, and Noise Pollution", "1285": "Mass Transportation and Safety", "1286": "General environment", "1287": "Veterans Housing Assistance and Military Housing Programs", "1288": "Energy Conservation", "1289": "Health Insurance", "1290": "Alternative and Renewable Energy", "1291": "Alternative and Renewable Energy", "1292": "Species and Habitat Protection", "1293": "Child Abuse and Child Pornography", "1294": "Educational Excellence", "1295": "Air Transportation and Safety", "1296": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1297": "Rural Economic Development", "1298": "Research and development", "1299": "Public health and disease prevention", "1300": "Employee Relations and Labor Unions", "1301": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1302": "Air pollution, Climate Change, and Noise Pollution", "1303": "Monetary Supply, Federal Reserve Board, and the Treasury", "1304": "Environment Research and Development", "1305": "Court Administration", "1306": "Provider and insurer payment and regulation", "1307": "Health Workforce, Licensing & Training", "1308": "Youth Employment, Youth Job Corps Programs, and Child Labor", "1309": "Long-term care, home health, hospice, and rehabilitation services", "1310": "Energy Conservation", "1311": "Veterans Housing Assistance and Military Housing Programs", "1312": "Medical liability, fraud and abuse", "1313": "Facilities construction, regulation, and payments", "1314": "Air pollution, Climate Change, and Noise Pollution", "1315": "Facilities construction, regulation, and payments", "1316": "Facilities construction, regulation, and payments", "1317": "Gender, Identity and Sexual Orientation Discrimination", "1318": "Right to Privacy and Access to Government Information", "1319": "Air Transportation and Safety", "1320": "Land and Water Conservation", "1321": "Truck and Automobile Transportation and Safety", "1322": "General Transportation", "1323": "Health Workforce, Licensing & Training", "1324": "Natural Gas and Oil", "1325": "Family Issues and Domestic Violence", "1326": "Electricity and Hydroelectricity", "1327": "Low and Middle-Income Housing Programs and Needs", "1328": "Energy Research and Development", "1329": "Pollution and Conservation in Coastal & Other Navigable Waterways", "1330": "Comprehensive health care reform", "1331": "Roads and Highways", "1332": "Air Transportation and Safety", "1333": "Taxation, Tax policy, and Broad Tax Reform", "1334": "Truck and Automobile Transportation and Safety", "1335": "Research and development", "1336": "Roads and Highways", "1337": "Species and Habitat Protection", "1338": "Secondary Mortgage Market and Government Sponsored Housing Entities", "1339": "First Amendment Issues", "1340": "Court Administration", "1341": "Court Administration", "1342": "Employee Relations and Labor Unions", "1343": "Roads and Highways", "1344": "Drinking Water Safety", "1345": "Electricity and Hydroelectricity", "1346": "Prisons", "1347": "Alternative and Renewable Energy", "1348": "Court Administration", "1349": "Child Abuse and Child Pornography", "1350": "Research and development", "1351": "Research and development", "1352": "Court Administration", "1353": "National Budget and Debt", "1354": "Higher Education", "1355": "Taxation, Tax policy, and Broad Tax Reform", "1356": "Recycling", "1357": "Long-term care, home health, hospice, and rehabilitation services", "1358": "Species and Habitat Protection", "1359": "Coal", "1360": "Court Administration", "1361": "Mass Transportation and Safety", "1362": "Roads and Highways", "1363": "General Community Development and Housing Issues", "1364": "Migrant and Seasonal workers, Farm Labor Issues", "1365": "Higher Education", "1366": "Railroad Transportation and Safety", "1367": "Facilities construction, regulation, and payments", "1368": "Elementary and Secondary Education", "1369": "Public Works (Infrastructure Development)", "1370": "Air pollution, Climate Change, and Noise Pollution", "1371": "Education of Underprivileged Students", "1372": "Public health and disease prevention", "1373": "Employee Benefits", "1374": "Right to Privacy and Access to Government Information", "1375": "Public health and disease prevention", "1376": "Mental Health and Cognitive Capacities", "1377": "Prescription drug coverage and costs", "1378": "Maritime Issues, Including Safety and Security", "1379": "general civil rights", "1380": "Natural Gas and Oil", "1381": "Substance, Alcohol and Drug Abuse, Treatment and Education", "1382": "Police, Fire, and Weapons Control", "1383": "Public health and disease prevention", "1384": "Low and Middle-Income Housing Programs and Needs", "1385": "Court Administration", "1386": "Court Administration", "1387": "Health Workforce, Licensing & Training", "1388": "Alternative and Renewable Energy", "1389": "General engergy", "1390": "Health Insurance", "1391": "Health Insurance", "1392": "Taxation, Tax policy, and Broad Tax Reform", "1393": "Species and Habitat Protection", "1394": "Elementary and Secondary Education", "1395": "General Community Development and Housing Issues", "1396": "Air Transportation and Safety", "1397": "Educational Excellence", "1398": "Natural Gas and Oil", "1399": "Urban Economic Development and General Urban Issues", "1400": "Industrial Policy", "1401": "Higher Education", "1402": "Higher Education", "1403": "Electricity and Hydroelectricity", "1404": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1405": "Employment Training and Workforce Development", "1406": "Employee Benefits", "1407": "Electricity and Hydroelectricity", "1408": "General engergy", "1409": "Natural Gas and Oil", "1410": "Maritime Issues, Including Safety and Security", "1411": "Maritime Issues, Including Safety and Security", "1412": "Long-term care, home health, hospice, and rehabilitation services", "1413": "Public health and disease prevention", "1414": "Educational Excellence", "1415": "Pollution and Conservation in Coastal & Other Navigable Waterways", "1416": "Police, Fire, and Weapons Control", "1417": "General health", "1418": "Food Inspection and Safety", "1419": "Maritime Issues, Including Safety and Security", "1420": "Taxation, Tax policy, and Broad Tax Reform", "1421": "Health Workforce, Licensing & Training", "1422": "Alternative and Renewable Energy", "1423": "Education of Underprivileged Students", "1424": "Child Abuse and Child Pornography", "1425": "Juvenile Crime and the Juvenile Justice System", "1426": "Taxation, Tax policy, and Broad Tax Reform", "1427": "Worker Safety and Protection, Occupational and Safety Health Administration", "1428": "General environment", "1429": "Monetary Supply, Federal Reserve Board, and the Treasury", "1430": "Species and Habitat Protection", "1431": "Alternative and Renewable Energy", "1432": "Children and Prenatal Care", "1433": "Employee Benefits", "1434": "Employee Benefits", "1435": "General environment", "1436": "Criminal and Civil Code", "1437": "Children and Prenatal Care", "1438": "Secondary Mortgage Market and Government Sponsored Housing Entities", "1439": "Maritime Issues, Including Safety and Security", "1440": "National Budget and Debt", "1441": "Criminal and Civil Code", "1442": "Illegal Drug Production, Trafficking, and Control", "1443": "Air Transportation and Safety", "1444": "Family Issues and Domestic Violence", "1445": "Natural Gas and Oil", "1446": "Pollution and Conservation in Coastal & Other Navigable Waterways", "1447": "Employee Benefits", "1448": "Court Administration", "1449": "Roads and Highways", "1450": "Court Administration", "1451": "Housing and Community Development", "1452": "Tobacco Abuse, Treatment, and Education", "1453": "Public Works (Infrastructure Development)", "1454": "Medical liability, fraud and abuse", "1455": "Criminal and Civil Code", "1456": "Criminal and Civil Code", "1457": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1458": "Higher Education", "1459": "Species and Habitat Protection", "1460": "General environment", "1461": "Maritime Issues, Including Safety and Security", "1462": "Fisheries and Fishing", "1463": "National Budget and Debt", "1464": "Other transportation", "1465": "Taxation, Tax policy, and Broad Tax Reform", "1466": "Facilities construction, regulation, and payments", "1467": "Employee Benefits", "1468": "Monetary Supply, Federal Reserve Board, and the Treasury", "1469": "General engergy", "1470": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1471": "Right to Privacy and Access to Government Information", "1472": "Air Transportation and Safety", "1473": "Natural Gas and Oil", "1474": "Waste Disposal", "1475": "Health Insurance", "1476": "Electricity and Hydroelectricity", "1477": "Maritime Issues, Including Safety and Security", "1478": "Food Inspection and Safety", "1479": "Pollution and Conservation in Coastal & Other Navigable Waterways", "1480": "General health", "1481": "Rural Housing", "1482": "Child Abuse and Child Pornography", "1483": "Special Education", "1484": "Waste Disposal", "1485": "Agricultural Marketing, Research, and Promotion", "1486": "Long-term care, home health, hospice, and rehabilitation services", "1487": "Drinking Water Safety", "1488": "Regulation of drug industry, medical devices, and clinical labs", "1489": "Land and Water Conservation", "1490": "Railroad Transportation and Safety", "1491": "Public health and disease prevention", "1492": "Natural Gas and Oil", "1493": "Children and Prenatal Care", "1494": "Criminal and Civil Code", "1495": "Criminal and Civil Code", "1496": "National Budget and Debt", "1497": "Gender, Identity and Sexual Orientation Discrimination", "1498": "Natural Gas and Oil", "1499": "Employee Benefits", "1500": "Higher Education", "1501": "Children and Prenatal Care", "1502": "Natural Gas and Oil", "1503": "Employee Benefits", "1504": "Family Issues and Domestic Violence", "1505": "Anti-Government Activities", "1506": "Court Administration", "1507": "Medical liability, fraud and abuse", "1508": "Maritime Issues, Including Safety and Security", "1509": "Long-term care, home health, hospice, and rehabilitation services", "1510": "Air Transportation and Safety", "1511": "Education of Underprivileged Students", "1512": "Court Administration", "1513": "Health Insurance", "1514": "Public health and disease prevention", "1515": "general civil rights", "1516": "Criminal and Civil Code", "1517": "Medical liability, fraud and abuse", "1518": "Land and Water Conservation", "1519": "Health Insurance", "1520": "Police, Fire, and Weapons Control", "1521": "Employee Benefits", "1522": "Air Transportation and Safety", "1523": "Worker Safety and Protection, Occupational and Safety Health Administration", "1524": "Police, Fire, and Weapons Control", "1525": "Roads and Highways", "1526": "Species and Habitat Protection", "1527": "Food Inspection and Safety", "1528": "Animal and Crop Disease, Pest Control, and Domesticated Animal Welfare", "1529": "Industrial Policy", "1530": "Monetary Supply, Federal Reserve Board, and the Treasury", "1531": "Roads and Highways", "1532": "Maritime Issues, Including Safety and Security", "1533": "general civil rights", "1534": "Prisons", "1535": "Higher Education", "1536": "Employee Benefits", "1537": "Employment Training and Workforce Development", "1538": "Land and Water Conservation", "1539": "General Labor", "1540": "Family Issues and Domestic Violence", "1541": "Facilities construction, regulation, and payments", "1542": "Natural Gas and Oil", "1543": "Natural Gas and Oil", "1544": "Family Issues and Domestic Violence", "1545": "Court Administration", "1546": "Mental Health and Cognitive Capacities", "1547": "Land and Water Conservation", "1548": "Gender, Identity and Sexual Orientation Discrimination", "1549": "Court Administration", "1550": "Employee Benefits", "1551": "Hazardous Waste and Toxic Chemical Regulation, Treatment, and Disposal", "1552": "Special Education", "1553": "Natural Gas and Oil", "1554": "Elementary and Secondary Education", "1555": "Public health and disease prevention", "1556": "Court Administration", "1557": "Nuclear Energy and Nuclear Regulatory Commission Issues", "1558": "Maritime Issues, Including Safety and Security", "1559": "Police, Fire, and Weapons Control", "1560": "Employee Relations and Labor Unions", "1561": "Railroad Transportation and Safety", "1562": "General engergy", "1563": "General Transportation", "1564": "Educational Excellence", "1565": "Gender, Identity and Sexual Orientation Discrimination", "1566": "Taxation, Tax policy, and Broad Tax Reform", "1567": "Police, Fire, and Weapons Control", "1568": "Police, Fire, and Weapons Control", "1569": "Police, Fire, and Weapons Control", "1570": "General education", "1571": "Comprehensive health care reform", "1572": "Natural Gas and Oil", "1573": "Agricultural Trade", "1574": "Architectural competition, cellulose home insulation", "1575": "Alternative and Renewable Energy", "1576": "Ethnic Minority and Racial Group Discrimination", "1577": "Provider and insurer payment and regulation", "1578": "National Budget and Debt", "1579": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1580": "Taxation, Tax policy, and Broad Tax Reform", "1581": "General Transportation", "1582": "Court Administration", "1583": "Court Administration", "1584": "Court Administration", "1585": "Elementary and Secondary Education", "1586": "Land and Water Conservation", "1587": "Elementary and Secondary Education", "1588": "Animal and Crop Disease, Pest Control, and Domesticated Animal Welfare", "1589": "Natural Gas and Oil", "1590": "Maritime Issues, Including Safety and Security", "1591": "Facilities construction, regulation, and payments", "1592": "Voting Rights, Participation, and Related Issues", "1593": "Low and Middle-Income Housing Programs and Needs", "1594": "Facilities construction, regulation, and payments", "1595": "Environment Research and Development", "1596": "Maritime Issues, Including Safety and Security", "1597": "Taxation, Tax policy, and Broad Tax Reform", "1598": "Energy Conservation", "1599": "Electricity and Hydroelectricity", "1600": "Research and development", "1601": "Riots, Crime Prevention, and Crime Control", "1602": "Facilities construction, regulation, and payments", "1603": "Rural Economic Development", "1604": "Worker Safety and Protection, Occupational and Safety Health Administration", "1605": "Court Administration", "1606": "Anti-Government Activities", "1607": "National Budget and Debt", "1608": "Maritime Issues, Including Safety and Security", "1609": "Police, Fire, and Weapons Control", "1610": "Waste Disposal", "1611": "Research and development", "1612": "Police, Fire, and Weapons Control", "1613": "Natural Gas and Oil", "1614": "General education", "1615": "Species and Habitat Protection", "1616": "General engergy", "1617": "Food Inspection and Safety", "1618": "Agricultural Trade", "1619": "Hazardous Waste and Toxic Chemical Regulation, Treatment, and Disposal", "1620": "Prisons", "1621": "Facilities construction, regulation, and payments", "1622": "Health Insurance", "1623": "general civil rights", "1624": "Truck and Automobile Transportation and Safety", "1625": "Right to Privacy and Access to Government Information", "1626": "Species and Habitat Protection", "1627": "Comprehensive health care reform", "1628": "Employment Training and Workforce Development", "1629": "Voting Rights, Participation, and Related Issues", "1630": "Facilities construction, regulation, and payments", "1631": "Anti-Government Activities", "1632": "Natural Gas and Oil", "1633": "General agriculture", "1634": "Employee Benefits", "1635": "Railroad Transportation and Safety", "1636": "Taxation, Tax policy, and Broad Tax Reform", "1637": "Public health and disease prevention", "1638": "General Community Development and Housing Issues", "1639": "Juvenile Crime and the Juvenile Justice System", "1640": "Public health and disease prevention", "1641": "Worker Safety and Protection, Occupational and Safety Health Administration", "1642": "Hazardous Waste and Toxic Chemical Regulation, Treatment, and Disposal", "1643": "Higher Education", "1644": "Public Works (Infrastructure Development)", "1645": "Natural Gas and Oil", "1646": "Urban Economic Development and General Urban Issues", "1647": "Taxation, Tax policy, and Broad Tax Reform", "1648": "Taxation, Tax policy, and Broad Tax Reform", "1649": "Anti-Government Activities", "1650": "Low and Middle-Income Housing Programs and Needs", "1651": "Housing and Community Development", "1652": "Right to Privacy and Access to Government Information", "1653": "Health Insurance", "1654": "Police, Fire, and Weapons Control", "1655": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1656": "Air pollution, Climate Change, and Noise Pollution", "1657": "Long-term care, home health, hospice, and rehabilitation services", "1658": "Criminal and Civil Code", "1659": "Court Administration", "1660": "Maritime Issues, Including Safety and Security", "1661": "Right to Privacy and Access to Government Information", "1662": "Criminal and Civil Code", "1663": "Police, Fire, and Weapons Control", "1664": "Worker Safety and Protection, Occupational and Safety Health Administration", "1665": "Gender, Identity and Sexual Orientation Discrimination", "1666": "Public health and disease prevention", "1667": "Public health and disease prevention", "1668": "Natural Gas and Oil", "1669": "General education", "1670": "Taxation, Tax policy, and Broad Tax Reform", "1671": "Elderly and Disabled Housing", "1672": "General Transportation", "1673": "Energy Research and Development", "1674": "Child Abuse and Child Pornography", "1675": "Housing and Community Development", "1676": "Educational Excellence", "1677": "Employee Benefits", "1678": "National Budget and Debt", "1679": "Monetary Supply, Federal Reserve Board, and the Treasury", "1680": "Police, Fire, and Weapons Control", "1681": "Higher Education", "1682": "Right to Privacy and Access to Government Information", "1683": "General education", "1684": "Maritime Issues, Including Safety and Security", "1685": "Higher Education", "1686": "Gender, Identity and Sexual Orientation Discrimination", "1687": "Taxation, Tax policy, and Broad Tax Reform", "1688": "Criminal and Civil Code", "1689": "Right to Privacy and Access to Government Information", "1690": "Police, Fire, and Weapons Control", "1691": "Monetary Supply, Federal Reserve Board, and the Treasury", "1692": "General Transportation", "1693": "Health Insurance", "1694": "Natural Gas and Oil", "1695": "Air Transportation and Safety", "1696": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1697": "Riots, Crime Prevention, and Crime Control", "1698": "Ethnic Minority and Racial Group Discrimination", "1699": "Court Administration", "1700": "Provider and insurer payment and regulation", "1701": "Ethnic Minority and Racial Group Discrimination", "1702": "Nuclear Energy and Nuclear Regulatory Commission Issues", "1703": "Taxation, Tax policy, and Broad Tax Reform", "1704": "Natural Gas and Oil", "1705": "Roads and Highways", "1706": "General Law", "1707": "Agricultural Marketing, Research, and Promotion", "1708": "Taxation, Tax policy, and Broad Tax Reform", "1709": "Elementary and Secondary Education", "1710": "Employment Training and Workforce Development", "1711": "Pollution and Conservation in Coastal & Other Navigable Waterways", "1712": "General agriculture", "1713": "Right to Privacy and Access to Government Information", "1714": "Employee Benefits", "1715": "Agricultural Trade", "1716": "Air Transportation and Safety", "1717": "Low and Middle-Income Housing Programs and Needs", "1718": "Elementary and Secondary Education", "1719": "Research and development", "1720": "Air pollution, Climate Change, and Noise Pollution", "1721": "Waste Disposal", "1722": "General education", "1723": "Executive Branch Agencies Dealing with Law and Crime", "1724": "Comprehensive health care reform", "1725": "Agricultural Trade", "1726": "Natural Gas and Oil", "1727": "Roads and Highways", "1728": "Species and Habitat Protection", "1729": "Medical liability, fraud and abuse", "1730": "Species and Habitat Protection", "1731": "Court Administration", "1732": "Gender, Identity and Sexual Orientation Discrimination", "1733": "Education of Underprivileged Students", "1734": "Housing and Community Development", "1735": "Otjer Laws", "1736": "Maritime Issues, Including Safety and Security", "1737": "Taxation, Tax policy, and Broad Tax Reform", "1738": "Air Transportation and Safety", "1739": "Worker Safety and Protection, Occupational and Safety Health Administration", "1740": "Elementary and Secondary Education", "1741": "Natural Gas and Oil", "1742": "Health Insurance", "1743": "Rural Housing", "1744": "Railroad Transportation and Safety", "1745": "Roads and Highways", "1746": "Air Transportation and Safety", "1747": "Mass Transportation and Safety", "1748": "Right to Privacy and Access to Government Information", "1749": "Police, Fire, and Weapons Control", "1750": "Executive Branch Agencies Dealing with Law and Crime", "1751": "Health Insurance", "1752": "Higher Education", "1753": "Environment Research and Development", "1754": "Elementary and Secondary Education", "1755": "Veterans Housing Assistance and Military Housing Programs", "1756": "Roads and Highways", "1757": "Taxation, Tax policy, and Broad Tax Reform", "1758": "Criminal and Civil Code", "1759": "Alternative and Renewable Energy", "1760": "Voting Rights, Participation, and Related Issues", "1761": "Energy Conservation", "1762": "Urban Economic Development and General Urban Issues", "1763": "Higher Education", "1764": "Taxation, Tax policy, and Broad Tax Reform", "1765": "Medical liability, fraud and abuse", "1766": "White Collar Crime and Organized Crime", "1767": "Educational Excellence", "1768": "Pollution and Conservation in Coastal & Other Navigable Waterways", "1769": "Veterans Housing Assistance and Military Housing Programs", "1770": "Low and Middle-Income Housing Programs and Needs", "1771": "Executive Branch Agencies Dealing with Law and Crime", "1772": "Facilities construction, regulation, and payments", "1773": "Health Insurance", "1774": "Educational Excellence", "1775": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1776": "Higher Education", "1777": "Executive Branch Agencies Dealing with Law and Crime", "1778": "Land and Water Conservation", "1779": "Vocational Education", "1780": "Right to Privacy and Access to Government Information", "1781": "Prisons", "1782": "Right to Privacy and Access to Government Information", "1783": "Public Works (Infrastructure Development)", "1784": "Executive Branch Agencies Dealing with Law and Crime", "1785": "Natural Gas and Oil", "1786": "Land and Water Conservation", "1787": "Family Issues and Domestic Violence", "1788": "Criminal and Civil Code", "1789": "Indoor Environmental Hazards", "1790": "Long-term care, home health, hospice, and rehabilitation services", "1791": "Housing and Community Development", "1792": "Homeless Issues", "1793": "Criminal and Civil Code", "1794": "Secondary Mortgage Market and Government Sponsored Housing Entities", "1795": "Agricultural Trade", "1796": "Illegal Drug Production, Trafficking, and Control", "1797": "Agricultural Trade", "1798": "Monetary Supply, Federal Reserve Board, and the Treasury", "1799": "Court Administration", "1800": "Ethnic Minority and Racial Group Discrimination", "1801": "National Budget and Debt", "1802": "Higher Education", "1803": "Employee Benefits", "1804": "Employment Training and Workforce Development", "1805": "Child Abuse and Child Pornography", "1806": "Agricultural Trade", "1807": "Higher Education", "1808": "Arts and Humanities", "1809": "Hazardous Waste and Toxic Chemical Regulation, Treatment, and Disposal", "1810": "Research and development", "1811": "Air pollution, Climate Change, and Noise Pollution", "1812": "Anti-Government Activities", "1813": "Roads and Highways", "1814": "Urban Economic Development and General Urban Issues", "1815": "Tobacco Abuse, Treatment, and Education", "1816": "General environment", "1817": "Agricultural Trade", "1818": "Arts and Humanities", "1819": "Air pollution, Climate Change, and Noise Pollution", "1820": "Regulation of drug industry, medical devices, and clinical labs", "1821": "Higher Education", "1822": "General education", "1823": "Air Transportation and Safety", "1824": "Taxation, Tax policy, and Broad Tax Reform", "1825": "Public Works (Infrastructure Development)", "1826": "Anti-Government Activities", "1827": "National Budget and Debt", "1828": "Court Administration", "1829": "Air pollution, Climate Change, and Noise Pollution", "1830": "Food Inspection and Safety", "1831": "General Transportation", "1832": "Riots, Crime Prevention, and Crime Control", "1833": "Railroad Transportation and Safety", "1834": "Species and Habitat Protection", "1835": "Prescription drug coverage and costs", "1836": "Pollution and Conservation in Coastal & Other Navigable Waterways", "1837": "Environment Research and Development", "1838": "Criminal and Civil Code", "1839": "Taxation, Tax policy, and Broad Tax Reform", "1840": "Elementary and Secondary Education", "1841": "Health Workforce, Licensing & Training", "1842": "Maritime Issues, Including Safety and Security", "1843": "Roads and Highways", "1844": "Taxation, Tax policy, and Broad Tax Reform", "1845": "Court Administration", "1846": "Educational Excellence", "1847": "Taxation, Tax policy, and Broad Tax Reform", "1848": "Secondary Mortgage Market and Government Sponsored Housing Entities", "1849": "Species and Habitat Protection", "1850": "Right to Privacy and Access to Government Information", "1851": "Natural Gas and Oil", "1852": "Taxation, Tax policy, and Broad Tax Reform", "1853": "First Amendment Issues", "1854": "Fair Labor Standards", "1855": "General Community Development and Housing Issues", "1856": "Education of Underprivileged Students", "1857": "Education of Underprivileged Students", "1858": "Court Administration", "1859": "Fair Labor Standards", "1860": "Illegal Drug Production, Trafficking, and Control", "1861": "Air pollution, Climate Change, and Noise Pollution", "1862": "Long-term care, home health, hospice, and rehabilitation services", "1863": "Educational Excellence", "1864": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1865": "Riots, Crime Prevention, and Crime Control", "1866": "Comprehensive health care reform", "1867": "Natural Gas and Oil", "1868": "Comprehensive health care reform", "1869": "Maritime Issues, Including Safety and Security", "1870": "Housing and Community Development", "1871": "Higher Education", "1872": "Alternative and Renewable Energy", "1873": "Energy Conservation", "1874": "Natural Gas and Oil", "1875": "Medical liability, fraud and abuse", "1876": "Illegal Drug Production, Trafficking, and Control", "1877": "Criminal and Civil Code", "1878": "Monetary Supply, Federal Reserve Board, and the Treasury", "1879": "Substance, Alcohol and Drug Abuse, Treatment and Education", "1880": "Electricity and Hydroelectricity", "1881": "Maritime Issues, Including Safety and Security", "1882": "Recycling", "1883": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1884": "Otjer Laws", "1885": "Elementary and Secondary Education", "1886": "Alternative and Renewable Energy", "1887": "Illegal Drug Production, Trafficking, and Control", "1888": "Fisheries and Fishing", "1889": "General Transportation", "1890": "General agriculture", "1891": "Species and Habitat Protection", "1892": "Roads and Highways", "1893": "Executive Branch Agencies Dealing with Law and Crime", "1894": "Police, Fire, and Weapons Control", "1895": "Prescription drug coverage and costs", "1896": "National Budget and Debt", "1897": "Roads and Highways", "1898": "Truck and Automobile Transportation and Safety", "1899": "Employee Benefits", "1900": "Natural Gas and Oil", "1901": "Taxation, Tax policy, and Broad Tax Reform", "1902": "Taxation, Tax policy, and Broad Tax Reform", "1903": "General agriculture", "1904": "Employee Benefits", "1905": "Natural Gas and Oil", "1906": "Health Insurance", "1907": "Higher Education", "1908": "Food Inspection and Safety", "1909": "Environment Research and Development", "1910": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1911": "Drinking Water Safety", "1912": "Air pollution, Climate Change, and Noise Pollution", "1913": "Higher Education", "1914": "Agricultural Marketing, Research, and Promotion", "1915": "Court Administration", "1916": "General environment", "1917": "White Collar Crime and Organized Crime", "1918": "Illegal Drug Production, Trafficking, and Control", "1919": "Health consequences of a nuclear attack, regulation of health care apps", "1920": "Court Administration", "1921": "Electricity and Hydroelectricity", "1922": "Court Administration", "1923": "Juvenile Crime and the Juvenile Justice System", "1924": "Criminal and Civil Code", "1925": "Railroad Transportation and Safety", "1926": "Court Administration", "1927": "Maritime Issues, Including Safety and Security", "1928": "Species and Habitat Protection", "1929": "Court Administration", "1930": "National Budget and Debt", "1931": "Secondary Mortgage Market and Government Sponsored Housing Entities", "1932": "National Budget and Debt", "1933": "Elementary and Secondary Education", "1934": "Court Administration", "1935": "Employee Benefits", "1936": "Taxation, Tax policy, and Broad Tax Reform", "1937": "General Transportation", "1938": "Retirement and lifelong learning", "1939": "Public health and disease prevention", "1940": "Maritime Issues, Including Safety and Security", "1941": "Alternative and Renewable Energy", "1942": "Criminal and Civil Code", "1943": "General health", "1944": "Employee Relations and Labor Unions", "1945": "Species and Habitat Protection", "1946": "Monetary Supply, Federal Reserve Board, and the Treasury", "1947": "National Budget and Debt", "1948": "Monetary Supply, Federal Reserve Board, and the Treasury", "1949": "Natural Gas and Oil", "1950": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1951": "Worker Safety and Protection, Occupational and Safety Health Administration", "1952": "Comprehensive health care reform", "1953": "Hazardous Waste and Toxic Chemical Regulation, Treatment, and Disposal", "1954": "Police, Fire, and Weapons Control", "1955": "Railroad Transportation and Safety", "1956": "Court Administration", "1957": "Employment Training and Workforce Development", "1958": "Truck and Automobile Transportation and Safety", "1959": "Illegal Drug Production, Trafficking, and Control", "1960": "Employee Benefits", "1961": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1962": "Agricultural Marketing, Research, and Promotion", "1963": "Court Administration", "1964": "Provider and insurer payment and regulation", "1965": "General Transportation", "1966": "Taxation, Tax policy, and Broad Tax Reform", "1967": "Air Transportation and Safety", "1968": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "1969": "Air Transportation and Safety", "1970": "Court Administration", "1971": "Public health and disease prevention", "1972": "Medical liability, fraud and abuse", "1973": "Maritime Issues, Including Safety and Security", "1974": "Employee Benefits", "1975": "General Domestic Macroeconomic Issues", "1976": "Agricultural Marketing, Research, and Promotion", "1977": "Species and Habitat Protection", "1978": "Public health and disease prevention", "1979": "Nuclear Energy and Nuclear Regulatory Commission Issues", "1980": "general civil rights", "1981": "Air Transportation and Safety", "1982": "Hazardous Waste and Toxic Chemical Regulation, Treatment, and Disposal", "1983": "National Budget and Debt", "1984": "General education", "1985": "Maritime Issues, Including Safety and Security", "1986": "Transportation Research and Development", "1987": "Species and Habitat Protection", "1988": "Taxation, Tax policy, and Broad Tax Reform", "1989": "National Budget and Debt", "1990": "Secondary Mortgage Market and Government Sponsored Housing Entities", "1991": "Species and Habitat Protection", "1992": "Food Inspection and Safety", "1993": "Electricity and Hydroelectricity", "1994": "Employee Benefits", "1995": "Species and Habitat Protection", "1996": "General engergy", "1997": "Health Insurance", "1998": "Long-term care, home health, hospice, and rehabilitation services", "1999": "Fisheries and Fishing", "2000": "Court Administration", "2001": "Education of Underprivileged Students", "2002": "General Transportation", "2003": "Monetary Supply, Federal Reserve Board, and the Treasury", "2004": "Natural Gas and Oil", "2005": "Roads and Highways", "2006": "Maritime Issues, Including Safety and Security", "2007": "Maritime Issues, Including Safety and Security", "2008": "Low and Middle-Income Housing Programs and Needs", "2009": "Price Control and Stabilization", "2010": "National Budget and Debt", "2011": "Riots, Crime Prevention, and Crime Control", "2012": "Roads and Highways", "2013": "Elementary and Secondary Education", "2014": "Natural Gas and Oil", "2015": "National Budget and Debt", "2016": "Higher Education", "2017": "Police, Fire, and Weapons Control", "2018": "Regulation of drug industry, medical devices, and clinical labs", "2019": "Maritime Issues, Including Safety and Security", "2020": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "2021": "Employee Relations and Labor Unions", "2022": "Roads and Highways", "2023": "Agricultural Trade", "2024": "Truck and Automobile Transportation and Safety", "2025": "General environment", "2026": "Maritime Issues, Including Safety and Security", "2027": "Electricity and Hydroelectricity", "2028": "Food Inspection and Safety", "2029": "General education", "2030": "General environment", "2031": "Roads and Highways", "2032": "Species and Habitat Protection", "2033": "Voting Rights, Participation, and Related Issues", "2034": "Public health and disease prevention", "2035": "Health Workforce, Licensing & Training", "2036": "Drinking Water Safety", "2037": "Animal and Crop Disease, Pest Control, and Domesticated Animal Welfare", "2038": "Waste Disposal", "2039": "General Community Development and Housing Issues", "2040": "Taxation, Tax policy, and Broad Tax Reform", "2041": "Land and Water Conservation", "2042": "Veterans Housing Assistance and Military Housing Programs", "2043": "Right to Privacy and Access to Government Information", "2044": "Species and Habitat Protection", "2045": "Higher Education", "2046": "Higher Education", "2047": "Low and Middle-Income Housing Programs and Needs", "2048": "Environment Research and Development", "2049": "Air Transportation and Safety", "2050": "National Budget and Debt", "2051": "Taxation, Tax policy, and Broad Tax Reform", "2052": "Truck and Automobile Transportation and Safety", "2053": "Railroad Transportation and Safety", "2054": "Food Inspection and Safety", "2055": "Air Transportation and Safety", "2056": "Taxation, Tax policy, and Broad Tax Reform", "2057": "Land and Water Conservation", "2058": "General engergy", "2059": "Veterans Housing Assistance and Military Housing Programs", "2060": "Right to Privacy and Access to Government Information", "2061": "Employment Training and Workforce Development", "2062": "Taxation, Tax policy, and Broad Tax Reform", "2063": "First Amendment Issues", "2064": "Monetary Supply, Federal Reserve Board, and the Treasury", "2065": "Roads and Highways", "2066": "Electricity and Hydroelectricity", "2067": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "2068": "Pollution and Conservation in Coastal & Other Navigable Waterways", "2069": "Elderly and Disabled Housing", "2070": "Food Inspection and Safety", "2071": "Facilities construction, regulation, and payments", "2072": "Public health and disease prevention", "2073": "Educational Excellence", "2074": "Facilities construction, regulation, and payments", "2075": "Mass Transportation and Safety", "2076": "National Budget and Debt", "2077": "Employee Benefits", "2078": "Anti-Government Activities", "2079": "Higher Education", "2080": "Food Inspection and Safety", "2081": "Rural Housing", "2082": "Substance, Alcohol and Drug Abuse, Treatment and Education", "2083": "Roads and Highways", "2084": "Maritime Issues, Including Safety and Security", "2085": "Children and Prenatal Care", "2086": "Tobacco Abuse, Treatment, and Education", "2087": "General Community Development and Housing Issues", "2088": "Secondary Mortgage Market and Government Sponsored Housing Entities", "2089": "Roads and Highways", "2090": "Rural Economic Development", "2091": "Higher Education", "2092": "Facilities construction, regulation, and payments", "2093": "Air Transportation and Safety", "2094": "Monetary Supply, Federal Reserve Board, and the Treasury", "2095": "Employment Training and Workforce Development", "2096": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "2097": "Industrial Policy", "2098": "Roads and Highways", "2099": "General Transportation", "2100": "Health Insurance", "2101": "Species and Habitat Protection", "2102": "Comprehensive health care reform", "2103": "Maritime Issues, Including Safety and Security", "2104": "Ethnic Minority and Racial Group Discrimination", "2105": "Inflation and Interest Rates", "2106": "general civil rights", "2107": "Urban Economic Development and General Urban Issues", "2108": "Taxation, Tax policy, and Broad Tax Reform", "2109": "Natural Gas and Oil", "2110": "Agricultural Trade", "2111": "Roads and Highways", "2112": "Taxation, Tax policy, and Broad Tax Reform", "2113": "Employee Benefits", "2114": "Fair Labor Standards", "2115": "Employment Training and Workforce Development", "2116": "Fair Labor Standards", "2117": "Public Works (Infrastructure Development)", "2118": "Elementary and Secondary Education", "2119": "Veterans Housing Assistance and Military Housing Programs", "2120": "Natural Gas and Oil", "2121": "Species and Habitat Protection", "2122": "Taxation, Tax policy, and Broad Tax Reform", "2123": "Railroad Transportation and Safety", "2124": "Pollution and Conservation in Coastal & Other Navigable Waterways", "2125": "Rural Housing", "2126": "General education", "2127": "Prescription drug coverage and costs", "2128": "Land and Water Conservation", "2129": "Employee Benefits", "2130": "general civil rights", "2131": "Maritime Issues, Including Safety and Security", "2132": "Energy Research and Development", "2133": "Taxation, Tax policy, and Broad Tax Reform", "2134": "Voting Rights, Participation, and Related Issues", "2135": "Health Insurance", "2136": "Veterans Housing Assistance and Military Housing Programs", "2137": "Arts and Humanities", "2138": "Health Insurance", "2139": "Elementary and Secondary Education", "2140": "General Community Development and Housing Issues", "2141": "Employment Training and Workforce Development", "2142": "Employee Relations and Labor Unions", "2143": "Nuclear Energy and Nuclear Regulatory Commission Issues", "2144": "Facilities construction, regulation, and payments", "2145": "Taxation, Tax policy, and Broad Tax Reform", "2146": "Anti-Government Activities", "2147": "Migrant and Seasonal workers, Farm Labor Issues", "2148": "Natural Gas and Oil", "2149": "Other Energy", "2150": "Long-term care, home health, hospice, and rehabilitation services", "2151": "Elementary and Secondary Education", "2152": "Worker Safety and Protection, Occupational and Safety Health Administration", "2153": "Ethnic Minority and Racial Group Discrimination", "2154": "Public health and disease prevention", "2155": "Roads and Highways", "2156": "Natural Gas and Oil", "2157": "Alternative and Renewable Energy", "2158": "General education", "2159": "Employee Benefits", "2160": "Taxation, Tax policy, and Broad Tax Reform", "2161": "Education of Underprivileged Students", "2162": "Employee Benefits", "2163": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "2164": "Health Insurance", "2165": "Maritime Issues, Including Safety and Security", "2166": "Fair Labor Standards", "2167": "Gender, Identity and Sexual Orientation Discrimination", "2168": "Truck and Automobile Transportation and Safety", "2169": "Taxation, Tax policy, and Broad Tax Reform", "2170": "Natural Gas and Oil", "2171": "Public Works (Infrastructure Development)", "2172": "Taxation, Tax policy, and Broad Tax Reform", "2173": "Railroad Transportation and Safety", "2174": "Education of Underprivileged Students", "2175": "General education", "2176": "General Community Development and Housing Issues", "2177": "Children and Prenatal Care", "2178": "Employee Benefits", "2179": "Secondary Mortgage Market and Government Sponsored Housing Entities", "2180": "Facilities construction, regulation, and payments", "2181": "Health Insurance", "2182": "Secondary Mortgage Market and Government Sponsored Housing Entities", "2183": "Employee Benefits", "2184": "Species and Habitat Protection", "2185": "Higher Education", "2186": "Agricultural Trade", "2187": "Higher Education", "2188": "Low and Middle-Income Housing Programs and Needs", "2189": "General environment", "2190": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "2191": "Electricity and Hydroelectricity", "2192": "Pollution and Conservation in Coastal & Other Navigable Waterways", "2193": "Coal", "2194": "Long-term care, home health, hospice, and rehabilitation services", "2195": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "2196": "Substance, Alcohol and Drug Abuse, Treatment and Education", "2197": "Taxation, Tax policy, and Broad Tax Reform", "2198": "Elementary and Secondary Education", "2199": "First Amendment Issues", "2200": "Species and Habitat Protection", "2201": "Electricity and Hydroelectricity", "2202": "Public health and disease prevention", "2203": "Elementary and Secondary Education", "2204": "Natural Gas and Oil", "2205": "Employee Benefits", "2206": "Vocational Education", "2207": "Higher Education", "2208": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "2209": "Agricultural Marketing, Research, and Promotion", "2210": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "2211": "Nuclear Energy and Nuclear Regulatory Commission Issues", "2212": "Air pollution, Climate Change, and Noise Pollution", "2213": "Employee Benefits", "2214": "Public health and disease prevention", "2215": "Voting Rights, Participation, and Related Issues", "2216": "General education", "2217": "Taxation, Tax policy, and Broad Tax Reform", "2218": "Industrial Policy", "2219": "Housing and Community Development", "2220": "Worker Safety and Protection, Occupational and Safety Health Administration", "2221": "Higher Education", "2222": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "2223": "Education of Underprivileged Students", "2224": "Public health and disease prevention", "2225": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "2226": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "2227": "Health Insurance", "2228": "Employee Benefits", "2229": "Government Subsidies to Farmers and Ranchers, Agricultural Disaster Insurance", "2230": "Higher Education", "2231": "Agricultural Research and Development", "2232": "Facilities construction, regulation, and payments"}} \ No newline at end of file diff --git a/Topic_Models/Data/congressional_bill_train_processed.pkl b/Topic_Models/Data/congressional_bill_train_processed.pkl deleted file mode 100644 index ade45ccd..00000000 Binary files a/Topic_Models/Data/congressional_bill_train_processed.pkl and /dev/null differ diff --git a/Topic_Models/Data/newsgroups/newsgroup_test_original.json b/Topic_Models/Data/newsgroups/newsgroup_test_original.json deleted file mode 100644 index 94f4bb0b..00000000 --- a/Topic_Models/Data/newsgroups/newsgroup_test_original.json +++ /dev/null @@ -1 +0,0 @@ -{"text": {"0": "Last week's MacWEEK article by Ric Ford indicated that David Ramsey's\nMac IIx has been running nicely with a Mac IIci ROM in it, offering\nclean 32-bit ROM code (liberating his IIx from the virtual memory\nnightmare caused by Apple's 32-bit System Enabler).\n\nDoes anyone know of a source for these ROMs? Is it okay for a\nremanufacturer to resell only ROM chips from used machines? I know that\ncopies cannot be made, but it seems to me that it would be okay to\nresell the original used ROM. (After all, reselling a used computer\ninvolves the sale of the ROM anyway, so what's the difference?).\n\nNeedless to say, I'm interested in purchasing such a ROM. What would\nbe a reasonably price to offer?", "1": "\nNow, while I wouldn't recommend doing this while moving,\n\n(Maybe Mike Beaverton can complain to you awhile! :/ )\n\nyou might not want to countersteer if you're just sitting\nin the driveway...\n\n\n\n", "2": "try cd'ing to\n\n\tpublications/May_93_online\n\non siggraph.org\n\nIt's there!", "3": "How do you solve the problem when the message \"Cannot perform malloc\"\nshows for XtCreateManagedWidget call?\n\nI have the application written in X11R5 running on DECstation using\nAthena widgets. As soon as I added codes to do Remote Procedure Call,\nthe program refused to work. I also have my program working using\njust Xlib calls with RPC. My executable code is about 1.4M and I don't\nhave any idea how much memory is the DECstation 3100/5100.\n\nAny help will be appreciated. Thanks.\n\n-- ", "4": "I've spent the past week tearing my hair out, trying to get the output of\na piped \"tail -f\" to end up in a widget. I've managed to make it work in\nsome ugly ways, but either a) X blocks on the tail and won't allow user\ninput, b) the \"tail -f\" functions like just \"tail\" and doesn't follow the\nexpansion of the file, c) the \"tail -f\" doesn't die after I've closed\nthe pipe and destoryed the widget, or d) pclose() blocks forever waiting\nfor tail to die.\n\tI _know_ this code has to exist. Anybody have it? A general\npopen() case would be perfered but at this point I'll take anything...\nThanks.", "5": "\nYou've asked a toughie of a question. There are many different drugs which\nare used for chemotherapy.\n\nThe overall purpose of chemotherapy (don't worry about the spelling. Some of\nthese crazy medical words are impossible to spell! :-) is to either destroy\ncancer cells or to keep them from growing. Different drugs have different\neffects on cancer cells, and therefore, it is not uncommon to use more than\none drug at a time.\n\nSome chemotherapeutic drugs are effective anytime during the growth cycle\nof a cell. Others work only at specific times during the cell cycle.\n\nThe first phase of the cell cycle is G1; it is when the protein synthesis\nand RNA systhesis occurs. In the second phase, S, synthesis of DNA occurs.\nThe third phase is G2; The DNA splits and RNA and protein are synthesized \naagain. In the fourth phase, M (or Mitosis), the cell may divide.\n\nThere are drugs which are effective in each phase. Some stop DNA synthesis.\nOthers stop the cell from dividing. Others wreck protein synthesis.\nAt any rate, the end result that is being sought is for the cancer cells\nto stop growing.\n\nIf what you are seeking is \"practical\" advice, I apologize for rambling\non the techno stuff. Some side effects are pretty common. Chemo. drugs\nare rather nasty. It can cause a person to lose their appetite and to \nexperience nausea and vomiting. Things to help this include eating small\nfrequent meals. It is also suggested that if nausea/vomiting (hereafter\nknown as n/v) occurs that the person notify the doctor; there are medicines\ntthat help nausea. Diarrhea can be an effect. Antidiarrheal medications \ncan be given, and good skincare and fluid intake are important.\n\nProbably the one of biggest concsern is hair loss. This does not always\nhappen. It depends on what drugs are being given, and on the person \nthemself. Different people taking the same drug can and do have different\nside effects. I have seen some literature which states that wearing a snug\nheadband and/or wearing an ice cap can help reduce hair loss, presumably\nby reducing blood flow to the scalp. If anyone has seen research on this\ntoo, I would love to see it, and possibly some bib data.\n\nI highly recommend making contact with the American Cancer Society.\nThey have a vast selection of literature and information. In addition,\nif your friend has had a mastectomy, I highly recommend \"Reach for Recovery\".\nIt is a support group comprised entirely of women who have lost a breast \nbecause of cancer. They can offer some excellent support and suggestions.\n\nIf you have further questions, please send me E-mail. I hav some good\naccess to information, and I enjoy trying to help other people.", "6": "\n > Can't someone describe someone's trinity in simple declarative\n > sentences that have common meaning?\n\nI offer him four attempts.\n\nFirst is an essay by me (largely indebted to Attempts Two and\nThree), obtainable by sending the message GET TRINITY ANALOGY to\nLISTSERV@ASUACAD.BITNET or to LISTSERV@ASUVM.INRE.ASU.EDU\n\nSecond is a couple of books by Dorothy L Sayers: a play called THE\nZEAL OF THY HOUSE, and a non-fiction book called THE MIND OF THE\nMAKER. The play can be found in the book FOUR SACRED PLAYS, and\nalso in various other collections, including one called RELIGIOUS\nDRAMA (Meridian Books) and one called BEST PLAYS OF 1937.\n\nThird is the book MERE CHRISTIANITY by C S Lewis, particularly the\nlast section, called \"Beyond Personality\".\n\nFourth is a book called THEOLOGY FOR BEGINNERS, by the Roman\nCatholic writer Frank Sheed. I will say that I do not find Sheed's\napproach altogether satisfying, but I know some persons whose minds\nI respect who do.", "7": "Turkish Historical Revision in auto-scribal residue <9305091835@zuma.UUCP>, \nsera@zuma.UUCP (Serdar Argic), posted the following:\n\n[(*] Source: \"Adventures in the Near East\" by A. Rawlinson, Jonathan Cape, \n[(*] 30 Bedford Square, London, 1934 (First published 1923) (287 pages).\n[(*] (Memoirs of a British officer who witnessed the Armenian genocide of 2.5 \n[(*] million Muslim people)\n\nBull!\n\n[(*] p. 184 (second paragraph)\n[(*]\n[(*] \"I had received further very definite information of horrors that\n[(*] had been committed by the Armenian soldiery in Kars Plain, and as \n[(*] I had been able to judge of their want of discipline by their \n[(*] treatment of my own detached parties, I had wired to Tiflis from \n[(*] Zivin that 'in the interests of humanity the Armenians should not \n[(*] be left in independent command of the Moslem population, as, their \n[(*] troops being without discipline and not under effective control, \n[(*] atrocities were constantly being committed, for which we should \n[(*] with justice eventually be held to be morally responsible'.\"\n\nOn page 184 in my copy of the Rawlinson book, we find following facsimile.\nNote the word Armenian doesn't even appear!\n\n184 ADVENTURES IN THE NEAR EAST\n\ndisposal for our journey, I foresaw it would have to become\nour headquarters for a considerable time, and therefore went\nto some trouble to make it habitable. We had a most peculiar\nlittle locomotive, originally built in America for the Russian\nGovernment, adapted to burn either wood or oil; one covered\ntruck as men's quarters; one similar, which I fitted up for my-\nself and a railway officer; and also a truck to carry wood, three\ncars being the utmost our small engine could pull. With this\nsmall outfit we started, rumours of all kinds reaching us before\nour departure indicating that the whole situation was rapidly\ncoming to a head, it being evident that the Turks were becoming~\nmore and more restive in the face of the inexplicable delay of\nthe Allies in reaching any definite decision with regard to the\nfuture.\n\nTravelling on this little \"war-time\" railway was indeed an\nexperience, and it was necessary to carry a \"gauge,\" and to\ntest the rails with it frequently, for in many places, owing to\nthe sinking of the embankments and the washing away of the\nballast, the rails required rectification before we were able to\nget our train over, even at a foot pace; each bridge also re-\nquired elaborate examination before adventuring the train upon\nit, and eventually we were obliged to carry large baulks of tim-\nber to temporarily shore up many of the bridges and culverts\nwhilst we passed over them.\n\nUnder these circumstances it may be imagined that our prog-\nress was by no means rapid, and as we had frequently to halt\nalso to replenish our supply of wood fuel, we considered we\nhad achieved wonders when, on the evening of the second day,\n60 hours and 70 miles out from Erzeroum, we finally entered the\ngorge of the mountains where we understood our worst troubles\nto lie. This is the same gorge into which the road from\nErzeroum to Kars descends from the foot-hills to cross the\nfrontier; the railway, however, follows the main Aras River val-\nley till the frontier gorge enters it, whilst the road cuts off the\ncorner and joins the rail again at the frontier post of Zivin,\nsome 15 miles from the main valley.\n\nSoon after entering the gorge, we were confronted by the\nfirst serious fall of rock--about 2,000 tons having fallen from\nthe cliff face and entirely obliterated the railway track. Here,\ntherefore, we halted, and, sending our engine back, prepared to\n\n", "8": "I'm looking for some specs for a Toshiba TA6267-BP. It appears\nto be a power amp housed in a 7-pin inline package and is used\nin my Mitsubishi VCR, circa 1985, as a DC motor controller for\nthe tape drive.\n\nChecking in the oldest IC Master I have (1990), I don't see it\nlisted, and it appears to have been discontinued. If anyone\nhas anything on this part, I'd be *greatly* indebted!\n\nthanks in advance,", "9": "\n\n\nYou can do a whole hell of a lot better than 2 or 3 degrees with\nthe differential timing measurements from the interplanetary network.\nIgnore the directional information from BATSE; just look at the time\nof arrival. With three detectors properly arranged, one can often\nget positions down to ~arc minutes.\n\nBTW, about Oort cloud sources: shouldn't this be testable in the\nfairly near future? Some of the GRBs have very short rise times (< 1\nms). We could detect the curvature of the burst wavefront out to a\ndistance of on the order of b^2/(t c) where b is the detector spacing\nand t the time resolution. For t = 1 ms and b = 2 AU, this is on the\norder of 16 light years. I understand statistics will reduce this\nnumber considerably, as would geometry if the burst is coming from the\nwrong direction.", "10": "Does anybody have a data-sheet handly for the above-mentioned card? I\nbought one, sans manual at a local surplus shop, and want to try it out\nwith the Crywyr packet driver suite. \n\nThe IRQ and interface-select jumpers are pretty straightforward, but I\ndon't grok the settings of W10-W18 (also labelled A15 through A18).\nCould somebody tell me which settings of these four jumpers correspond\nto what I/O addresses?\n\nIs there anything else about this card I should know, before I\nplug&play?\n", "11": "...\n\nYou can find cross reference to almost any IC or discrete semiconductor in \nPhilips ECG: Semiconductors Master Replacement Guide, ~$10. (Especially \nindustrial, commercial and entertainment, but not specialised or military.)", "12": "\n\tNone of you guys noticed my \"Gross Mistake\" 'cause you\ndon't have a clue. I noticed the misspeaking myself and\ncorrected it. I doubt you would have ever noticed.\n\n\tActually I've read books and taken courses on the\nsubject. Ah yes and like you lived in the greater Deutschland. \n \n\nYou guys are funny. It's funny to see people lose control and\nstart the name calling when they realize they have no point.\n\n\nCould have fooled me.\n\n\tI understand how individual liberties (freedom of\nspeach, religion etc.) could be a thing you \"never heard\nabout\". Actually, Civil Libertarians believe in the fundamental\nfreedoms that belong to human beings. They would support the\nJews against the Nazis or anyone else who tries to oppress them\nand they would support the Arabs against the Israelis and any\nother such oppressive regimes (Iraq etc.) \n\n\n\nWell actually now that you mentioned here are a few things I\nappreciate:\n\n1. Politeness\n2. Stimulating conversation\n3. A red rose\n4. New York in june and a good Gerschwinn tune\n5. A chocalate Sundae\n6. Really angry out of controll funny people", "13": "Hi.\n\nOur problem is the following:\n\nWe have to design an RF link for a distance of 250 m. We're using\nstandard RS232 waves (square pulses) as the modulating waves and the \ncarrier wave is sinusoidal. The link has to be bidirectional.\n \nWe would appreciate any advice on the type of modulating techniques\nor antennas that we should use.\n\nPlease internet email us at: 007gjf3@witsvma.wits.ac.za (Nando)\n or 007bww3@witsvma.wits.ac.za (Warren)\n or blumenow@underdog.ee.wits.ac.za (Warren)\n\nThank you very much in advance.", "14": "\n\tAs I don't know this book, I will use your heresay.\n\n\n\tIt depends on how he defines God. The way I understand the meaning\nof that term preclues it being used in a useful way in science. Ideas drawn\nfrom an understanding that God is supernatural precludes us from forming\nscientific assertions that can be falsified, that is, where we can decide\nthat they are true or false within the terms of we use and useful observations\ndrawn from them.\n\n\tSome religionists have an interest in bluring the definitions within\nscience to make them more reconcilable, and especially subserviant in a basic\nway, to religious dogma. This pursuit always fails.\n\n\n\tReconciliation of science with religion involves circumventing the\ntendancy to claim that either pursuit can gain absolute or certian knowledge,\nor that the domain of truth in each is fundementally limited in some way. It\ngererally confurs the element of uncertainty and limitations to human knowledge\nwhile allowing for the different concerns of these separate pursuits. Science\nand religion ask different questions which have imperfect and provisional\nanswers, at best. Science is distinctly limited in where it can ask meaningful\nquestions. More questions can be posed than it can answer. At the basis of\nsacred language is the place where words fail us and mere assertions disolve\nin contradiction.", "15": "\n\nHeh, someone mentioned Tommy Soderstrom (Flyers) for the besk mask poll\ntoo (in the mentioned below part). All he has is a plain white helmet\nwith a big cage.\nI found this pretty amusing.\n\n\t\t\t\t\t-John Santore\n\nPhiladelphia Flyers in '93-'94!\n\n=============================================================================\n ____________________ \n/ \\ \"We break the surface tension \n\\_________ ____ \\ with our wild kinetic dreams\"\n/ / \\ \\ -Rush, Grand Designs\n\\_______ / (*) ) )\n/ / /\\___/ / Go Philadelphia Flyers!\n\\_____ / / /\n/ / \\_______/ John Santore (jsbh@andrew.cmu.edu)\n\\________/ ", "16": "a\nfollow-on\n\nGlenn,\n\nThanks for posting that. I was surprised to notice, however, that one\nquestion I might have expected to be asked was not: \"Are all forms of\nstrong encryption other than the Clipper to be made illegal?\" Speaking\nof which, is anyone aware of whether that question *has* been asked of\nany knowledgeable or official spokesperson for the government? I have\nnot yet seen it mentioned in any of a dozen places it might have been\nreported, but I could have easily missed it.", "17": "I am looking for a VESA local bus Card.\nto control my IDE drives, Floppies, game port, parallel port, and most\nof all my serial ports. the serial ports must have sockets for the\nUARTs and non of this intergraded chipset that generic boards have on\nthem.\n ", "18": " I believe that the large number of digits on his paycheck (and\nit would not be binary) would help Don to be a fan of Ulf!, Jaro, and\nMario.", "19": "If you want to try a non-toxic solvent, there's one made of citrus that \nworks very well and doesn't take your skin off in the process. One brand \nname I've used is Citra-Solve, but there are others too.\n", "20": "I need to get some info. on cellular antennas.. who\nare the biggest companies in this market now? how much\ndo their antenna cost? what are the specs on the antennas\n(gain, directivity)...? who is the contact person?\n\n\nthank-you ", "21": " (Eric Roush) writes...\n\n\n\n\nFunny. I didn't realize Mr. Tanner brought up Bob Knepper v. Pam Postema\nin the first place. Thought it was someone named Jacobs.\n\n\nWhy? If a statement is truly idiotic, and is universally thought so,\nthe challenge is a waste of panting. Further, challenges that have\nnothing (yes, nothing) to do with *baseball* are wasting others' time.\n\nYou got a problem with what Bob Knepper thinks? Let's hear it, in\nsome sort of categorical manner. (Actually, I question whether either\nKnepper or Postema aren't \"old news\" at this point, although what I\nhave read of Postema's book is interesting.)\n\n\nI agree this far.\n\n\nSez you.\n\n\nThat does not come out in what you say down the road, here.\n\n\nYo. Even elementary school children have had access to our postings,\nalbeit in an edited form. You want them to hear you talk like this?\nDon't you want people who come to this group to talk baseball to think\nyou like to do the same? Or do you want them to think you're some \npolitically correct demagogue who's oh-so sensitive? (Ho-hum.)\n\nPlus, you're here limiting free speech to \"some obscure newsgroup that\nI don't read.\" What BS. You got a problem with what Jacobs says, what\nKnepper thinks, all you have to do is defeat it with better ideas, more\nand better speech. Yours is the easy way out.\n\nAs for Knepper: ever notice how sometimes these guys will say just about\nany darn thing that pops in their heads when a mike is shoved in front of\nthem? You know that often the best copy for the news is the one that isn't\npre-prepared. They know Knepper has controversial ideas about women, they\npop some question about Postema. (An interesting related question would \nbe whether the two ever appeared in the same game. Off the top of my head,\nI guess \"no.\" If my guess is right, Knepper popped off about something that\nhad nothing to do with him -- and Postema gets a book for it, and he doesn't.)\n\n\nNow, why didn't *I* think of that? :-) :-) :-)\n\nRG", "22": "Apparently, the public workers' strike in St John's, Newfoundland is over.\nThe strike has, since mid-January, forced the St John's Maple Leafs hockey\nteam to play their home games in other cities such as Toronto, Cornwall\nand Charlottetown. They have been playing their playoff home games\nin Halifax, Nova Scotia. Leafs' management said that they COULD\nreturn to St John's for the second round.", "23": "Hello,\n\ni'm looking for a Driver for an IBM 3852-2 Color Ink Jet Printer.\nAny pointers are welcome.\n\nthanks in advance\n\n\nRalf\n", "24": "Greetings!\n\n Sorry for the typos.\n clipper hooks.\n Al\n", "25": "I need to know where I can get a FAQ on Xwindows for MS-DOS machines.\nThe usual FAQ just gave me a name of a file called XServers-NonUNIX.txt.Z.\nwhich I cannot find anywhere.", "26": "\nHi, any body has experience with the Ultrastor UltraSCSI driver package?\nI also need the phone number for Ultrastor (it's not in the book) and\ni cannot find them in the company listing in Computer Shopper.\nThanks in advance\n tony kwong (908) 699-4130 \n", "27": "I read in MacWeek that some developers are getting NuBUS cards from apple\nwith pre-release PowerPC chips on them. Does this mean that when the\nchip is released, those of us with old apples will be able to take\nadvantage of the PowerPC RISC technology just by inserting a card?\n\nI don't know anything about hardware, so can someone tell me how much of\na cludge this would be?", "28": "[On secrecy in LDS ceremonies. --clh]", "29": " \nSorry Charles...According to the National Safety Council, ACCIDENT FACTS,1991\n\"In 1990, gun accidents were the fifth-leading cause of accidental death\nfor children ages 14 and under.\"\n \n That thinking is so screwed up, I don't even know how to respond to it.\nA rational person would concentrate on motor vehicle deaths, and not attempt\nto affect childhood falls, drownings, gunshot injuries, etc.????????????????\nSo this so called rational person, (using your definition), if he or she\nwere attempting to affect the leading causes of deaths for adults aged 25\nthrough 64 would only worry about cancer, and would not try to decrease\nLESSER CAUSES such as heart disease, injuries, stroke, suicide, liver disease,\nchronic lung disease, homicide, HIV infection, or diabetes. Oh, okay Charles,\nthat makes a lot of sense. I tell you what Charles, I'll call the Heart\nFoundation and suicide hotlines and tell them that they are not acting rational\nand that they can all go home because they are addressing the LESSER CAUSES\nof death. And you call your local police homicide department, liver foundation\nand diabetes foundation and tell them to stop addressing these lesser causes.\nPlease, quit wasting my time with this silly shit Charles.\n \nI've got an idea Charles, why don't you start a talk.politics.caraccidents\ngroup or talk.politics.fall group? This is talk.politics.guns. Don't\nconfuse the issue. Just because a social problem may not claim as many\nvictims as another, we should not try to address it? I don't agree.\nI'm not posting to t.p.g to debate the supposed severity of causes of\nchildhood deaths. I am really getting frigging sick of having to respond\nto the irrational statements of people who assume that someone who\nwants to discuss youth gun violence or unintentional youth gun deaths\nis trying to make a political issue out of it.\n \n \n Again Charles, you tend to confuse the issue and take things out of context\nfor your own purposes. The statement that you responded to above is actually\nin reference to a previous post by another person who, like you, expressed\nconcern over making youth gun violence a priority. I guess, maybe Humane\nperson and Rational person could be interchangeable huh? Both would be defined\nas \"a person who only addresses the social problem that causes the greatest\nnumber of childhood deaths.\" If that is the case, I'm extremely glad that I\nam inhumane and irrational.\n \nSorry Charles, the FBI Uniform Crime Report is WELL known for misrepresenting\nthe facts. But if you insist, according to the 1990 UCR, \"Firearm murders\nof youngsters 19 and under increased 125 percent between 1984 and 1990\"\n \nIs the National Center for Health Statistics good enough for you? They state\nthat \"Every day, 12 American children ages 19 and under are killed in gun\naccidents, suicides, and homicides. Many more are wounded\".\n \nOr how about the National Pediatric Trauma Registry? They say \"Gunshot\nwounds to children ages 16 and under nearly doubled in major urban areas\nbetween 1987 and 1990.\"\n \nDo you also doubt the American Academy of Pediatrics Charles??? They state\nthat \"Gunshot wounds among children in urban areas increased 300% from\n1986 to 1988.\"\n \nCharles, I hope you don't need to be convinced that youth are increasingly\nvictims of gun injuries and that they have easy access to guns. If you don't\nrealize this fact, (I don't care if you go by CDC or FBI data, or if you go\ninto the homes, schools, and streets where these kids are and take a poll\nby yourself), I'm not going to bother to try to convince you. Its obvious\nthat you have ruled out any idea of discussing this issue in a sane fashion\nand that you are so focused on trying to make this a gun control and political\ndiscussion. I really don't want to do that.\n \n Charles, it's obvious that you know nothing about the CDC.\nThey don't just study cancer and heart disease. I've got news for you,\ninterpersonal gun violence IS an epidemic. In 1984, Surgeon General\nC. Everett Koop declared that gun violence is as much a public health\nproblem as cancer, heart disease, or auto accidents.\n \n \nWHO THE F**K SAID ANYTHING ABOUT TEACHING CHILDREN TO SAFELY HANDLE\nFIREARM CHARLES??? In the future, if you are going to post to t.p.g and jump\ninto a previous discussion, please read the entire posting, not just 1\nsentence that you decide to respond to. What the hell are you saying here???\nYou're wasting time and space trying to make a political and gun control\nissue out of a discussion that isn't.\nCharles buddy, I'm getting really tired of this. Do you live on the planet\nMars??? As a physicist, I realize that you probably don't come into contact\nwith many youth, but I REALLY think you need to make a trip to your local\nurban high school and discover the joy of guns in schools. In addition\nspend a few minutes talking to these kids. Ask them if they have ever heard\ngunshots in their neighborhoods, whether they know anyone who has been shot,\nwhether they know anyone who has a gun, whether they have ever held a gun, and\nwhether they themselves have ever been shot.\n \nBelieve me Charles, THAT will be your *INDEPENDENT* VERIFICATION.", "30": "\nOr perhaps David Koresh didn't listen too well?? Just because mistakes\nwere made does not mean the President *lied*.\n", "31": "On a few computers which we have here at Sheridan College there are\nfiles which we would like to make read only. I have used the Dos attrib command\nbut some people, who carry around the attrib program in their pockets,\nhave still been able to erase some of the more important files. Are\nthere any software packages which would make an entire drive read-only?\nAn example, partition the drive into two partitions and have the first\ndrive contain the important files which can be only read and the second\ndrive you could both read and write. \n Any and all enquiries or help would be appreciated.", "32": "THIS IS WHAT I CAME UP WITH USING THE FINAL REGULAR SEASON STATS FOR THE\n92/93, WHICH YOU CAN FIND IN THE APRIL 22, 1993 EDITION OF THE USA TODAY!\nTRY IT OUT AND SEE WHAT YOU COME UP WITH.....\n\n 1. ADAM OATES C BRUINS 145 PTS\n 2. TEEMU SELANNE RW JETS 136 PTS\n 3. ALEXANDER MOGILNY RW SABRES 131 PTS\n 4. PAVEL BURE RW CANUCKS 116 PTS\n 5. VINCENT DAMPHOUSSE LW CANADIANS 106 PTS\n 6. DAVE ANDREYCHUK LW MAPLELEAFS 104 PTS\n 7. PHIL HOUSLEY RD JETS 103 PTS\n 8. PAUL COFFEY RD REDWINGS 94 PTS\n 9. SERGEI FEDOROV C REDWINGS 94 PTS\n10. ANDY MOOG G BRUINS 86 PTS\n11. AL INFRATE RD CAPITIALS 82 PTS\n12. PATRICK ROY G CANADIANS 76 PTS\n13. AL MACINNIS LD FLAMES 60 PTS\n14. DENNIS SAVARD C CANADIANS 59 PTS\n15. CALLE JOHANSSON LD CAPITALS 50 PTS\n16. YURI KHMYLEV LW SABRES 41 PTS\n17. RICHARD SMEHLIK LD SABRES 36 PTS\n------------------------------------------------\n TOTAL POINTS 1519 PTS", "33": "A friend of mine who owns a pc said that he recently got a program that can\nformat a disk that can exceed the normal capacity of a HD disk. Apparently it\nrewrites the driver or takes or the driver or _something_ that allows it get\nmore space out of a normal HD floppy disk. It supposedly gets upto 1.6 Megs\n(so something like 1640K?). I don't have the program - since I can't use it\nand its supposed to be called something like \"FORM16\" or something like that.\n\nMy question is whether its possible to do this on the Mac and if its not\npossible is it due to hardware limitations. A developer friend of mine said\nthat it might be possible but he doesn't deal with this aspect of the field\nmuch.\n\nThanks for any information contributed.\n", "34": "Hello All!\n\n It is my understanding that all True-Type fonts in Windows are loaded in\nprior to starting Windows - this makes getting into Windows quite slow if you\nhave hundreds of them as I do. First off, am I correct in this thinking -\nsecondly, if that is the case - can you get Windows to ignore them on boot and\nmaybe make something like a PIF file to load them only when you enter the\napplications that need fonts? Any ideas?\n\n\nChris", "35": "In Article: 106628 of rec.sport.baseball,\n (Roger Healey) wrote >>\n\n\nYes, the stance is new. Don Baylor was his batting coach at St. Louis last\nyear, and now, as his manager, is continuing to work with him. Maybe Andres\nhas a \"weak\" left eye and the open stance gives him a better look at the\nball. Or maybe it is simply improving his mechanics - I dunno. But the\nchange seems to have enabled him to hit the ball as well as 5 years ago. His\nselectivity has not changed.", "36": "\n\nThat may change next month; at least I hope it will. A couple of hundred\njournalists have requested press passes for the test flights. Sustaining\nthat publicity however, will be a problem. \n\n Allen\n", "37": "Here's another question by a hesitant Powerbook purchaser.\nI want to be able to run Mathematica and would like to hear some comments \nfrom the gallery about this. How much slower does the program run on a \nmachine without an FPU (namely a PB160) versus a machine with an FPU \n(namely a PB170). What types of calculations get bogged down the most. I \nprimarily due moderately simple algebra, integrals which can be dealt with \nanalytically and plotting including 3-d plots. I don't do a lot of \nnumerical work. Would a PB160 with a lot of memory ( and the very nice \nvideo port ) be sufficient or should I really try to get an FPU for this \ntype of work? Is a PB170 with 8Mb faster than a PB160 with 12 or 16Mb.\nAll comments appreciated. ", "38": "From the June newsletter of the Latin Liturgy Association:\n\nThere is a new e-mail discussion group: LATIN-L, a forum for people\ninterested in classical Latin, medieval Latin, Neo-Latin; the languages of\nchoice are Latin (of course) and whatever vulgar languages you feel\ncomfortable using. Please be prepared to translate on request. The field\nis open -- name your topic! In order to subscribe, BITNET users should\nsend an interactive message of the form \"TELL LISTSERV@PSUVM SUB LATIN-L\n[your name]\". INTERNET users should send a message (without a subject\nline) to the address LISTSERV@PSUVM.PSU.EDU. The message should read \"SUB\nLATIN-L [your name]\". Once subscribed, one may participate by sending\nmessages to LATIN-L@PSUVM or LATIN-L@PSUVM.PSU.EDU.\n", "39": "\nBuy Adobe Streamline. Problem solved.\n", "40": "\n\tMaybe you should contact your schools officials and make \nthem consider installing the necessary softwares or hardwares that\nallows the Unix works stations to shuts off its monitor when \nleft untouched. It does save a lot of energy. \n\n- Chung Yang", "41": "Hello everybody out there !\n\nI'm trying to compile X11R5pl23 and Motif 1.2.1 on a HP running\nHP-UX 8.05. But it' seems to be not very succesful, because \nI have only hp.cf config-files for HP-UX 7.0. \n\nI tried standard cc and X was compiled with a lot of warnings.\nThe motif applications are compiled quite well, but they won't run.\nI receive the XKeysymDB error which is reported in FAQ, but\nI cannot fix it. The XKeysymDB-file is at the right location and it\nworks fine under SunOS.\nProbably I have started the compilation Prozess only with a wrong\nconfig-file.\n\nPlease help me !\n \nThanx in advance \n Markus\n\n-----------------------------------------------------------------\n Markus Koch Universitaet-GH Paderborn \n Email : raistlin@uni-paderborn.de Rechnerbetreuung\n Phone : +49 5251 60 3322 Warburger Str. 100\n +49 5251 60 3318 W4790 Paderborn, Germany\n----------------------------------------------------------------- \n--\n\n-----------------------------------------------------------------\n Markus Koch Universitaet-GH Paderborn \n Email : raistlin@uni-paderborn.de Warburger Str. 100\n Phone : +49 5251 60 3322 W4790 Paderborn, Germany", "42": "After hearing endless debate (READ: name-calling) over which os is better, dos\nand windows or OS/2 and finally having enought resourses to play with a couple\nof different operating systems, I have decided to put the two products to a\nhead to head test, as so many fellow newsposters have suggested. I have, \nhowever, no desire whatsoever to use a version of os/2 which wont REALLY\ndo what it says (i.e. run windows apps) OS/2 2.0-2.1 will not run windows\napps in 386 enhansed mode, something that most larger windows apps require, but\nOS/2 2.2, which is supposed to be in beta test, is supposed to. I have heard\nthat os/2 2.2 beta is available via ftp, and I was wondering if anyone knew\nwhere to obtain a copy. I would appreciate any information, as I would like, \nonce and for all, to establish for myself which is the best os for my needs.", "43": "Dear Netters:\n Could you mail the source code of the book:\n \"Advanced X window application programming\"\nby Johnson and Reichard \n TO ME?\n\n If you need any source code, just ask me.\n\n Thank you very much!\n\n\n Sincerely,\n\n Zeng, Qiyong.", "44": "\nAgree 100%, personally I cannot flip from page to page on a screen and\nretain information as easily as in the written page.\n\n\nDitto's ... in fact .. at work, where things are dead if the backup\nis no good, I insist on having at least a 2 level backup system. \nIt seems that whenever you have 2 good backups, you never need them, \nbut if you don't have them, Murphy guarantees that you'll suffer for it.\n\n\n and mine of course.", "45": "\nAlright, that's enough. I've suffered with all kinds of insults (as\ntypical for the net), but give me a break. Galarraga is currently\nbatting over .400 and you guys are complaining that he isn't drawing\nenough walks. What would he have to do to please you guys, bat 1.000?\nYou can hardly claim that he is \"hurting his team\".\n\nIf it happens that the pitchers start throwing him fewer good pitches\nand he starts making lots of outs (as someone speculated might happen),\n*THEN* I would agree with you that he isn't taking enough pitches. My comment\nthat \"he isn't paid to walk\" doesn't mean that he should have a license\nto swing at bad pitches and make outs; it's more along the lines of: he's\nbatting .400 and leading the league in RBI's so what bloody difference\ndoes it make if he isn't drawing a lot of walks? Sheesh.", "46": "In trying to use the Equation editor in Word for Windows 2.0 I get\na couple of error messages along the lines of:\n\n\nSimilar for the font Fences.\n\nI know I have these fonts on my system but are unable to use them.\nI have tried both of these solutions to no avail.\n\nIf anyone has had similar problems and has found a way to fix this, could \nthey let me know. It is urgently required !!\n\nThanks ,\n\n **** Jason Cleeve (j.cleeve@ieee.org) Q **** \n *** ` Comp. Sci. (Hons) & Elect. Eng. /T\\ ' ***\n **** La Trobe University. Australia / \\ ****\n********* Email: cleeve@lucifer.latrobe.edu.au ------\\ **********", "47": "released\n\nhere we go again...\nnow these are just rumors.. so dont quote me.\n\nNew Integra supposedly wedge shaped again. 175 hp and all-wheel drive\nin top models. Then a variant called the zx-r comes later. (roadster?).\n\ni think it gets unveiled at end of summer.", "48": "Hi out there!\n\nEvery command-line-shell-favourating user: Close your ears, ehm, eyes...\n\nI'm looking for a X file-manager which can be driven under TWM.\nSomebody told me last night, there is one under OpenWindows\n(and there certainly is one under MS-Windows :-#).\n\nBut I'd like an X-one, you know, with icon's, click-and-drag, directory-structures\nshown in a graphic-layout, a paper-basket etc. ...\n\nAnybody got an idea?\n\nPlease reply.\n\n _/ _/ _/_/_/ thSo - Thorsten Sommer, better known as:\n _/ _/ _/ Chiquita (Denn nur Chiquita ist Banane!)\n _/_/_/ _/_/_/ _/_/ _/_/ \n _/ _/ _/ _/ _/ _/ e-mail: sommer@ips.cs.tu-bs.de\n _/ _/ _/ _/ _/ _/ \n _/_/ _/ _/ _/_/_/ _/_/ \n------------------------------------------------------------------------------\n Transform ... and roll out! (BigTruck - Transformers)", "49": "s:\n I have a 1991 Toyota Camry Deluxe for sale...\n 70K miles, power everything, grey, 3 years newer than above for $10K.\n All highway miles. Excellent condition...\n Rob Fusi\n rwf2@lehigh.edu\n New Jersey\n 609-397-2147\n ask for Bob Fusi", "50": "\tThis seems appropriate, somehow...>:-)>\n[....]\n\tHah! I have it on the very *best* authority (mine) that Koresh is\nwhooping it up in a time-share condo in Dallas with Elvis, JFK, and (of course)\nJ.R. \"Bob\" Dobbs, who also owns the place and everything else in Texas.\n\tLook for \"koresh\" sightings in the Weekly World News and National\nEnquirer in the coming months.\n\t************************************************************\n\t* \tThe_Doge of South St. Louis\t\t\t *\n\t*\t\tDobbs-Approved Media Conspirator(tm)\t *\n\t*\t\"One Step Beyond\" -- Sundays, 3 to 5 pm\t *\n\t*\t\t88.1 FM\t\tSt. Louis Community Radio *\n\t* \"You'll pay to know what you *really* think!\" *\n\t*\t\t\t-- J.R. \"Bob\" Dobbs\"\t\t *\n\t************************************************************\n", "51": ": A woman once told me her doctor told her that I\n: could catch, asymptomatically, her yeast infection\n: from her, then give it back to her, causing\n: a relapse.\n\n: Probably bogus, but if not, it's another reason to use\n: latex...\n\n: Steve\n\nIt isn't bogus. I had chronic vaginal yeast infections that would go away\nwith cream but reappear in about 2 weeks. I had been on 3 rounds of\nantibiotics for a resistant sinus infection and my husband had been on\namoxicillin also for a sinus infection. After six months of this, I went\nto a gynecologist who had me culture my husband seminal fluid. After 7\ndays incubation he had quite a bit of yeast growth (it was confirmed by\nthe lab). A round of Nizerol for him cleared both of us.", "52": "\nI had the same inconvenience when I bought my EX-500; only I could at least\ngo 50 mph during the initial break-in.\n\nDespite the high quality of motor oils and motorcycle engines these days,\nI would follow the instructions, and just keep to city street riding for\nthe first 500 miles. Heck, those miles go by fast, and it's worth it to\nknow you haven't possibly screwed up your engine.\n\nAt the same time, this has all the makings of a 6-week-long thread debating\nthe whole break-in topic.", "53": "\nPlease let us know if you get a solid answer to the question of legality\nof other strong cryptosystems. So far any references I have seen\nhave been weasel-words (\"more plans in the future, etc\"), but nothing\nthat could be taken as a \"NO (strong crypto will NOT be outlawed)\". I\nhave heard (not verified) that the Crime Bill before Congress has\nlanguage that either requires escrow of keys, or that will regard\nall systems 'unapproved' for public use, like strong cryptosystems\nnot trivially broken by the Govt, or without escrowed keys\nwhich one cannot readily change (read: use being only permitted by\nfolks with 'special' connections, or government agencies) as either\n'terrorist tools' or 'drug dealers tools'. Not outlawed SPECIFICALLY\nbut by added Civil Forfeiture powers, and clever wording, EFFECTIVELY\noutlawed for all intents and purposes.\n\nNow, for some idle speculation ... for those who don't care, hit 'n' now.\n\nCrypto being EFFECTIVELY outlawed could be done without SPECIFICALLY\noutlawing ANY class of crypto systems. For example, a crowbar, hammers,\nscrewdrivers, and such can be regarded as 'burglar tools' pretty much\nat the whim of the authorities, based primarily on the individual\npossessing them in the car, etc. not being in a trade that makes routine\nuse of these tools. In a like manner, one who has no 'legitimate need'\n(gov't definition) for strong crypto software or systems, and is caught\nusing them, might find themselves in possession of 'terrorist tools'.\nIn other words, if one is not working for a corporation with extremely\nsensitive commercial data that warrants (in the Fed's opinion) strong\nsecurity, or a government agency, and securing only work-related data,\nnot personal data, one will most likely be nailed on this if discoverd.\nA personal desire for 'privacy' most certainly will not be regarded as\na 'legitimate NEED': \n\"Why do you want such strong security, especially from 'legitimate law\nenforcement'? An individual with 'legitimate' endeavors would not be so\nconcerned - government is not in the business of revealing your personal\nsecrets to the public... so you must be trying to conceal or planning\nto conceal some unlawful or criminal activity... DO YOU HAVE SOMETHING\nTO HIDE, HMMMM?\"\nI expect that initially there will be some people selected either at\nrandom, or who happen to have been 'troublemakers' for the purposes of\n'making an example' for those who think the Feds are not SERIOUS about\nthis... (mega ':-('s)\n\nOne asking about a 'right' to privacy will probably get a response that\nthere is no constitutional right for privacy spelled out AS SUCH (an\nargument used in the abortion debate): \"You do NOT have a right to have\nsecurity that 'Legitimate Law Enforcement cannot break'\" (as suggested\nin the Clipper Press Release).\n\nThis, in a nutshell, is what I find so extremely frightening. Not only\nfor crypto systems, as in this case, but for the precident it will set,\nlaying the groundwork for future erosions of privacy (escrow of both\nsafe-deposit box keys - 'master' keys or combinations for privately\nowned safes, and so on. WHY NOT?)...\n\nI cannot think of a better way to make an 'end-run' around those\n'inconvenient' parts of the US Constitution. A law cannot be easily\ndeclared unconstitutional, if it there IS NO SPECIFIC LAW. It would\nsimply be a minor extension of the RICO statutes or WoD policies. A\nsimple policy decision, just like so many of the gun regulations are\nmainly BATF policy decisions... The Conversation of the Fed agents\nwould go something like:\n\n\"We are gonna seize your home, your computers, your car, your bank\naccount, (you don't have to undress and give us yer clothes, unless you\nhave a floppy in yer pocket) because they are all connected with your\nacquisition, transport, and use of 'terrorist tools' and/or 'drug dealers\ntools' - part of the WoD or against terrorism, ya unnerstand... no\ndecent American Subject would be against these noble causes...\".\n\n\"Note we are not accusing YOU of any wrong-doing ... we are only saying\nyour HOME, COMPUTERS, CAR, BANK ASSETS are connected with wrong-doing\nSOMEHOW - they housed, transported, and funded these 'terrorist tools'.\nOnly a civil matter ... ... We had this 'tip'...\".\n\n\"Therefore, the Constitutional Protection on Individual rights do NOT\napply - we are 'arresting' the tainted PROPERTY... not YOU...\".\n\n\"If you wish to deposit a BOND, hire some attorneys, and go to court to\nPROVE the innocence of this property (that they are not 'terrorist tools'\nand again to prove they are not also 'drug dealers tools'), go ahead,\nwe have no problem with that! 'Course, with your bank assets seized,\nno car, computer, or home, (probably no job, too) and your\nless-than-limitless resources, you might run into some minor practical\ndifficulties ...\".\n\nTHAT is what has me going so damned ballistic... It is EXACTLY how\nthe logic goes when someone gives a 'tip' that your home has been\nused to store DRUGS... Note no trace of drugs need to be found on\nthe property... only some bozo who will say 'yup. I stored stuff in\nthat dude's house...' (probably to get out of a 10 year sentence for\ndealing). Much more cost effective to let him walk, to bust another\nday, and hit the jackpot with YOUR assets...\n\nOb Disclaimer (of course)...\n\nOk, note that I am not a lawyer, and can only base these speculations\non what I have read/heard/been told regarding past Civil Forfeiture\ncases, and how they are used to augment the budgets of assorted agencies,\nor to get 'cooperation' of folks who just want to be left alone, or who\ndo not wish to be put in a risky situation (especially in areas where\nthey are denied either meaningful police protection, AND the means to be\nable to even pretend to defend themselves, as is quite common back East,\nlike NJ, MA, NYC, Wa DC, or out West in CA). These people have the\nchoice of cowering under the government boot, or cowering under threats\nof pissed off drug dealing gang-bangers... helpless in either case...\nAll behind some dude who drops a dime on you for his gain, or behind\nthe Feds wanting to 'make an example'... Civil Forfeiture being the 'hook'.\n\nPoint is, are these speculations way out of line, or are they all too\ntypical, and if so, does the extension to crypto and just about anything\nthat the Feds regard as 'inconvenient' seem reasonable? And if not\nwhy not (what are our guarantees, besides the government promises)?\n\nNONE?\n\n", "54": "\nThere are doubts about it. Why don't you define what self-hating Jew means?\nI found the idea itself of being a self-hating Jew to be one of those\nrediculous things that people repeat and repeat because it seems to have a\nmeaning when in fact it has none.\nI hope you can come up with a definition in itself and not something like:\nlook at this person, that is a self-hating Jew.\n\n\nThat is why I get moved when I see the Israeli Army killing people in \nthe Occupied Territories as much as I get moved when I see a Plestinian\nstabing people in Israel.", "55": "Last year, I was totally surprised when my annual physical disclosed an\ninguinal hernia. I couldn't remember doing anything that would have\ncaused it. That is, I hadn't been lifting more than other people do,\nand in fact probably somewhat less. Eventually the thing became more\npainful and I had the repair operation.\n\nThis year I developed a pain on the other side. This turned out to be\nanother inguinal hernia. So I go back to the hospital Monday for\nanother fun 8-) operation.\n\nI don't know of anything I'm doing to cause this to happen. I'm 38\nyears old and I don't think I'm old enough for things to start falling\napart like this. The surgeon who is doing the operation seems to\nsuspect a congenital weakness, but if so, why did it suddenly appear\nwhen I was 37 and not really as active as I was when I was younger?\n\nDoes anyone know how to prevent a hernia, other than not lifting\nanything? It's rare that I lift more than my 16-month-old or a sack\nfull of groceries, and you may have noticed that your typical grocery\nsack is fairly small these days. Is there some sort of exercise that\nwill reduce the risk?\n\nOf course, my wife thinks it's from sitting for long periods of time at\nthe computer, reading news...", "56": "\nIt is also so easy to blame the West for their indiffernce to\nreal Bosnian suffering. How about the moslem world, about 1 billion?\nHow about them ha? What they are doing to stop this\nmassacre? Why the oil rich Arab states make the Bosnian crises \na national interest of the West, especially for Europeans? We all \nknow they can do it over night, don't we? Blaming West and asking \nwhy they don't put their life into danger seems to be the choice of \nmuslims too. I think who is sleeping is not the West. They are wide \nawake. They are trying to save the face. ", "57": "\nI've just spent two solid months arguing that no such thing as an\nobjective moral system exists.", "58": "garrod@dynamo.ecn.purdue.edu (David Garrod) writes...\n\n\n\n\n\tIt was on CBS yesterday. The explanation is reasonable enough.\n\tThen again, if the fire was accidental, why didn't more\n\tpeople get out?\n\n\n\tThat's true. I think there were several Australians in the \n\tgroup as well.\n\n _____ _____\n \\\\\\\\\\\\/ ___/___________________\n Mitchell S Todd \\\\\\\\/ / _____/__________________________\n________________ \\\\/ / mst4298@zeus._____/.'.'.'.'.'.'.'.'.'.'.'.'_'_'_/\n\\_____ \\__ / / tamu.edu _____/.'.'.'.'.'.'.'.'.'.'.'.'.'_'_/\n \\__________\\__ / / _____/_'_'_'_'_'_'_'_'_'_'_'_'_'_'_/\n \\_ / /__________/\n \\/____/\\\\\\\\\\\\\n \t\t\t \\\\\\\\\\\\", "59": "\nSomebody in comp.multimedia was also having trouble using a Spigot in his\nLC III. It turned out he needed the latest version of ScreenPlay (1.1.1),\nwhich fixed things.", "60": "Hi,\n\nI'm looking for a program which is able to display 24 bits\nimages. We are using a Sun Sparc equipped with Parallax\ngraphics board running X11.", "61": "\nUntil six or seven years ago I was an enthusiastic fan of NFL football.\nLast year I hardly watched a game. What turned me off were the\nincessant interruptions to the continuity of the game. A team scores.\n2.5 minutes of commercials. Kickoff. 1.5 minutes of commercials.\nThree downs and a punt. 2 minutes of commercials. AAAAARRRRGH!\n\nEarlier in this thread I commented on LaRussa and the A's, whom I\nbelieve institutionalize slow play. I don't mind the cat-and-mouse\ngame with Rickey on first; in fact, I rather enjoy it. Similarly\nI would enjoy the battle with Listach or Lofton or Polonia on first. What\nI object to is when such games are played with Karkovice on first,\nor when the game is a blowout. I don't mind when the pitcher steps off \nthe mound to gather his thoughts in a crucial situation, or when a hitter\nsteps out of the box to regain his concentration. What I object to\nis when hitters and pitchers take such breaks at every opportunity.\nWhen a game is exciting, these little delays serve as tension builders\nand for me enhance the value of the experience of the game. When the\ndelays happen with regularity, they become nuisances, just like the\ncommercial breaks in football. \n\nI understand the NFL imposed a number of rule changes to \"speed up\"\nthe games, basically putting an onus on the officiating staff to move\nthe markers and the ball to the spots faster. That did not address\nthe problem of the continuity of the game. It may have appeased the\nsponsors and the networks, but I would be amazed if it did anything\nto enhance the experience of the fans.\n\nSimilary, while some 3-hour baseball games bore me to tears, those are the\nones where there is no continuity and the players are taking exasperatingly\nlong periods to get ready for each pitch. I doubt if anyone watching\nthe Braves-Giants game cared about Gant stepping out. I doubt if anyone\nwatching that game would have found that pause to be anything but an\nopportunity to have their complete attention claimed by the drama that\nwas present. I would be totally opposed to any effort that would\neliminate that aspect of baseball.\n\nOn the other hand, I wish baseball had a commissioner that was powerful\nenough to sit down with Alderson/LaRussa/Duncan and explain that they\nare actually hurting the product of baseball by dragging their games \nout the way that they do. I sure wouldn't mind a little arm-twisting\nthere.\n\n\n\n--\tThe Beastmaster\n\n\n\n\n", "62": ": >Prove it. I have a source that says that to date, the civilian death count\n: >(er, excuse me, I mean \"collateral damage\") is about 200,000.\n: \n: I have _never_ seen any source that was claiming such a figure. Please\n: post the source so its reliability can be judged. \n\nThis figure would not simply be deaths by bombing, but also death later\nfrom disease (the sewer system of Baghdad was deliberately targeted) and\nstarvation. I believe (but when I get a copy of the latest research in\nJune or July) that this was the figure proposed in the Census Bureau \nreport on the matter. The report was suppressed and the CB attempted to\nsack the author of the report, but failed due to procedural technicality.\nThe author is now on permanent leave. ", "63": "It is interesting to note in the past few days' correspondance that some\nbelieve that poor old New Mexico is not capable of hosting a commercial\nspace launch business. For many reasons, it can, and we here on the front\nlines see no reason why it should not. The 'spaceport political publicity'\nreferred to the other day had its intended effect - the state of New Mexico\ndid establish the start of the necessary government infrastructure to back a\ncommercial space port. The commanding general at WSMR is in full support of\ndual-use for the facilities. The WSMR location also has some strategic\nadvantages in the form of necessary infrastructure and controlled air space\nto support the project. Just because the folks involved have not done the\ntraditional aerospace-equivalent of vapor-ware by inviting folks out to kick\nnon-existent tires but have been merely doing their job to prepare for\nlaunch, don't think that nothing has happened. From my interactions with\nthe MACDAC folks, I get the impression that they want to set a firm,\nbelievable launch date based on vehicle readiness and not just some fiction\nto plug a space on a calendar. I believe that all will happen this summer\nand don't worry, the locals here are planning to let everyone know when it\ndoes occur.\nStephen Horan\nshoran@nmsu.edu\n", "64": "\n\nThat is the result of living in an alternate universe with 'Arromdians'\nof the ASALA/SDPA/ARF Terrorism and Revisionism Triangle. Are you '*ians'\nfor real?\n\nA Final Goodbye in Azerbaijan:\n\n[Photo by Associated Press]: \"At a cemetery in Agdam, Azerbaijan, family \nmembers and friends grieved during the burial of victims killed in the \nfighting in Nagorno-Karabagh. Chingiz Iskandarov, right, hugged the \ncoffin containing the remains of his brother, one of the victims. A copy \nof Koran lay atop the coffin.\"\nThe New York Times, 3/6/92\n\nFinal Embrace :\n\n[Photo by Associated Press]: \"Chingiz Iskenderov, right, weeps over \ncoffin holding the remains of his brother as other relatives grieve \nat an Azarbaijani cemetery yesterday amid burial of victims killed \nin fighting in Nagorno-Karabagh.\"\nThe Washington Post, 3/6/92\n\nNagorno-Karabagh Victims Buried in Azerbaijani Town :\n\n\"Refugees Claim Hundreds died in Armenian Attack...Of seven bodies seen \n here today, two were children and three were women, one shot through \n the chest at what appeared to be close range. Another 120 refugees \n being treated at Agdam's hospital include many with multiple stab \n wounds.\"\n Thomas Goltz\n The Washington Post, 2/28/92\n\nArmenians Burn Azeri Village in New Unrest:\n\n\"Armenian guerillas attacked a strategic Azeri village...in Nagorno-Karabagh \n and burned it to the ground on Tuesday, Commonwealth television reported. \n Channel one television said the village of Malybeili, in the Khodzhalin \n district, was now cut off and a large number of wounded were left stranded. \n Itar-Tass news agency said several people were killed and 20 wounded in \n the attack on the village... Tass also said shells fired from Armenian \n villages into the Azeri populated town of Susha, just 6 miles south of \n Stepenakert, demolished two houses and damaged five others...Fierce fighting \n flared two weeks ago following the crash of an Azeri helicopter in Karabagh \n in which 40 people died.\" (Reuters)\n Turkish Daily News, 2/12/92\n\nCIS Commander Pulls Troops Out of Karabagh :\n\n\"Elif Kaban, a Reuter correspondent in Agdam, reported that after a battle \n on Wednesday, Azeris were burying scores of people who died when Armenians \n overran the town of Khojaly, the second-biggest Azeri settlement in the \n area. 'The world is turning its back on what's happening here. We are dying \n and you are just watching,' one mourner shouted at a group of journalists.\"\n Helen Womack\n The Independent, 2/29/92\n\nArmenian Soldiers Massacre Hundreds of Fleeing Families:\n\n\"The attackers killed most of the soldiers and volunteers defending the \n women and children. They then turned their guns on the terrified refugees. \n The few survivors later described what happened: 'That's when the real \n slaughter began,' said Azer Hajiev, one of the three soldiers to survive. \n 'The Armenians just shot and shot. And they came in and started carving \n up people with their bayonets and knives.' A 45-year-old man who had been \n up on us and people were falling all around. My wife fell, then my child.\"\n Thomas Goltz\n Sunday Times, 3/1/92\n\nArmenian Raid Leaves Azeris Dead or Fleeing:\n\n\"...about 1,000 of Khojaly's 10,000 people were killed in Tuesdays attack. \n Azerbaijani television showed truckloads of corpses being evacuated from \n the Khocaly area.\"\n Brian Killen (Reuters)\n The Washington Times, 3/2/92\n\nAtrocity Reports Horrify Azerbaijan :\n\n\"Azeri officials who returned from the seen to this town about nine miles \n away brought back three dead children, the backs of their heads blown off...\n 'Women and children had been scalped,' said Assad Faradzev, an aide to \n Karabagh's Azeri governor. Azeri television showed pictures of one \n truckload of bodies brought to the Azeri town of Agdam, some with their \n faces apparently scratched with knives or their eyes gouged out.\"\n Brian Killen (Reuters)\n The Washington Times, 3/3/92\n\nMassacre By Armenians Being Reported:\n\n\"The Republic of Armenia reiterated denials that its militants had \n killed 1,000 [Azeris]... But dozens of bodies scattered over the \n area lent credence to Azerbaijani reports of a massacre.\"\n (Reuters)\n The New York Times, 3/3/92\n\nKillings Rife in Nagorno-Karabagh, Moldova:\n\n\"Journalists in the area reported seeing dozens of corpses, including some \n of the civilians, and Azerbaijani officials said Armenians began shooting \n at them when they sought to recover the bodies.\"\n Fred Hiatt\n The Washington Post, 3/3/92\n\nBodies Mark Site of Karabagh Massacre:\n\n\"A local truce was enforced to allow the Azerbaijanis to collect their dead \n and any refugees still hiding in the hills and forest. All are the bodies \n of ordinary people, dressed in the poor, ugly clorhing of workers. Of the 31 \n we saw only one policeman and two apparent national volunteers were wearing \n uniform. All the rest were civilians, including eight women and three small\n children. Two groups, apparently families, had fallen together, the children \n cradled in the women's arms. Several of them, including one small girl, had \n terrible head injuries: only her face was left. Survivors have told how they \n saw Armenians shooting them point blank as they lay on the ground.\"\n Anatol Lieven\n The Times (London), 3/3/92\n\nKarabagh Survivors Flee to Mountains:\n\n\"Geyush Gassanov, the deputy mayor of Khocaly, said that Armenian troops \n surrounded the town after 7 pm on Tuesday. They were accompanied by six \n or seven light tanks and armoured carriers. 'We thought they would just \n bombard the village, as they had in the past, and then retreat. But they \n attacked, and our defence force couldn't do anything against their tanks.' \n Other survivors described how they had been fired on repeatedly on their \n way through the mountains to safety. 'For two days we crawled most of the \n way to avoid gunfire,' Sukru Aslanov said. His daughter was killed in the \n battle for Khodjaly, and his brother and son died on the road.\"\n Anatol Lieven\n The Times (London), 3/3/92\n\nCorpses Litter Hills in Karabagh:\n\n\"As we swooped low over the snow covered hills of Nagorno-Karabagh we saw \n the scattered corpses. Apparently, the refugees had been shot down as \n they ran...Suddenly there was a thump...[our Azerbaijani helicopter] had \n been fired on from an Armenian anti-aircraft post...\"\n Anatol Lieven\n The Times (London), 3/4/92\n\n\"Police in western Azerbaijan said they had recovered the bodies of \n 120 Azerbaijanis killed as they fled an Armenian assault in the \n disputed enclave of Nagorno-Karabagh and said they were blocked from \n recovering more bodies.\"\n The Wall Street Journal, 3/4/92\n\nExiting Troops Attacked in Nagorno-Karabagh:\n\n\"Withdrawal halted; Armenians Blamed...\n More video footage and reports from Khocaly paint a grim picture of \n widespread civilian deaths and mutilation...\n One woman's feet appeared to have been bound...\"\n Paul Quinn-Judge\n The Boston Globe, 3/4/92\n\n (to be continued...)\n\nSerdar Argic", "65": "\n\nYou miss the point. A lot more negotiation is needed to convince women\nto have sex because there is a big taboo about women being free with \ntheir sex. Many of the women I know would do almost anything rather\nthan be known as a slag, slut or whore.\n\nWith men however there is *status* attached to being able to fuck \nconstantly. And with gay men, where both partners can prove status\nthrough their constant verility then you are going to get a situation\nwhere there is a lot of sex.\n\nThe difference is between het sex being rationed as a valuable commodity\nand gay sex being virtually unlimited due to the *appetites* of men.\n\nStraights suffer a bottle neck where women are concerned, gay men who\ndo not experience this bottle neck go to excess.\n\n\n", "66": "Maw Ying yuan wrote \u0019\n .................................\n...From: yuan@wiliki.eng.hawaii.edu (Maw Ying Yuan)\n...Subject: Replacement for Program Manager and File Manager?\n...Message-ID: \n...Date: Thu, 29 Apr 1993 06:44:04 GMT\n...\n...replacements for Win3.1's Program Manager and File Manager?\n...yuan@wiliki.eng.hawaii.edu :)\n .................................\n Hi,\n I've been using Plannet Crafter's \"Plug-in\" for Program Manager.\n Its listed in most BBS'es as PLUGIN13. Its an add-on which gives\n some needed features to Progman; such as the ability to better\n manage your groups, change your cursor and icons on the fly,\n constant status of RAM and resources, \"Quick-menu\" (a drop-down\n menu of DOS commands or app launcher), plus some other neat stuff.\n Used it, liked it, and even reg'd it .\n\n If you can't find it anywhere, let me know and I'll zip it up and\n mail it to you (shareware version, of course ...)\n\nAloha...\n---\n .. .es .. All hope abandon, ye who enter messages here.\n---\n . SLMR 2.1a . \n ", "67": "\nDamn, you're dead right! That pretty much settles it. Not to worry.\n\n-- \n------------------------------------------------------------------------------\nJohn Hesse | A man, \njhesse@netcom.com | a plan, \nMoss Beach, Calif | a canal, Bob.", "68": "The following cassette tapes are for sale. $3.00 each... $2.50 each\nfor multiple orders, shipping included. Trades can be arranged.\nSome of the cases are somewhat worn, with a few cracks, but the tapes\nare all in good condition and sound fine.\n\nE-mail to the posting account. Thanks.\n\nThe Who\n\t-Who's Greatest Hits\nBachman Turner Overdrive\n\t-Best of BTO (so far)\nVan Halen\n\t-5150\n\t-OU812\nThe Doors\n\t-The Best of the Doors\nThe Cars\n\t-Door to Door\n\t-The Cars Greatest Hits\nPhil Collins\n\t-Face Value\n\t-No Jacket Required\nTears for Fears\n\t-Songs From the Big Chair", "69": "\n\nHey don't confuse these guys with facts dude! You might break some\nbeautiful illusions!\n\nOf course by BATF admits this they mean that the BATF did not deny some\npost by a pro-Koresh/gun lobby person some time back.\n\nIf anyone wants to understand the paranoid mindset of Koresh I offer you\ntalk.politics.guns. There you can dredge the sewers of minds so hung\nup on power and ego trips that they bend reality arround their own\nparticular set of beleifs.\n\nI long ago gave up arguing the case for arms control directly. Instead\nI invite people to ask themselves, would you want to be in a room full\nof the occupants of talk.politics.guns, their personal armouries and\nattempt to enter a discussion with them?\n", "70": "Like Clinton and Reno, I accept full responsibility for this\nsenseless disaster. My wife and I picked this game to go to\nand thus caused the return of the pre-season-projected Sox\noffense. Like all no-no's Bosio was good, lucky (hard grounder\nby Vaughn off T. Martinez' glove but straight to Boone who \nthrew to Bosio at first, 3-4-1), and backed by good defense\n(many non-trivial groundouts). The game was amazingly fast,\nas the Sox tended to go down quickly and Hesketh was also \nworking fast. The Sox relief pitching was ok -- the runs off\nQuantrill were on two ridiculous bloops and a hard line single\nwhich Greenwell let get past him trying for a catch.\n\nGreenwell's mental stability is a serious concern (I guess it\nhas always been, but his quirks were amusing back when he was\nan MVP candidate). Wednesday he got in a huff with Johnson a\nafter striking out on a bad inside pitch (apparently Johnson\nmade an \"ok, I've got to stay focused\" gesture which Iron Mike\ninterpreted as taunting), and struck out to heavy booing the \nnext two times. As Valentine noted, last night he came up in\nthe first after Riles and Quintana had walked to open the game.\nCan you say \"take the first pitch\"? Not Mike, who dribbled it\ninto a 6-4-3. The PI quoted Bosio that this was a \"batting\npractice fastball\". Next time up he also hit the first pitch,\na hard liner straight to KGJr in center. He also made the\npathetic error and failed to catch Boone's HR (which looked \ncomparable to the ball Lance Johnson caught on the highlight\nreel that night).\n\nIs Riles suppsoed to be good defensively? I couldn't tell from\nthe field angle but his range looked bad, and he coughed a DP\nthat cost a run or two. Why was he leadoff? I hope Fletcher\ngets well soon.\n\nAlso on lineups, Pinella put Bret Boone fifth for reasons beyond\nme. It seemed to work, as he was 3-4 with a HR and some good\ndefense (a wag behind us said \"He sure don't want to go back to\nCalgary!\") There is a theory that you put a leadoff type fifth\nbecause they'll likely lead off the second (as Boone did).\n\nWell, now we face the hot Angels and another power pitcher in\nLangston. A reminder that contest entries are open through next\nWednesday -- I expect a surge of pessimism. By the way, ties will\nbe broken by earliest entry. One entry per person or pseudonym,\nplease, and easy on the pseudonyms.", "71": "Could the guy who wrote the article \"Why I am not Bertrand Russell\"\nresend me a copy?", "72": "\n\nI vote for turning them off at night. THe stress of off/on is a little \nharmful, so don't turn it off, then back on an hour later, etc, but\nturning them off for 4-5 hours or overnight is a good idea.\n\nThe electricy consumption will go down if you turn them off overnight, along\nwith heat. ", "73": "Another article that fell between the cracks:\n\n As evidence for the Resurrection, it is often claimed that the Disciples\nwere tortured to death for their beliefs and still did not renounce\ntheir claim that Jesus had come back from the dead.\n Now, I skimmed Acts and such, and I found a reference to this happening\nto Stephen, but no others. Where does this apparently very widely held\nbelief come from? Is there any evidence outside the Bible? Is there any\nevidence *in* the Bible? I sure haven't found any...\n\nBriefly, no. There is widespread folklore, but no good documentary\nevidence, or even solid rumor, concerning the deaths of the Apostles.\nFurther, the usual context of such arguments, as you observe, is \"No\nMartyrs for a Lie\": i.e. the willingness of these people to die rather\nthan recant is evidence for the truth of their belief. This adds the\nquite stronger twist that the proposed martyrs must have been offered\nthe chance of life by recanting. Since we don't even know how or\nwhere they died, we certainly don't have this information. (By the\nway, even in the case of Stephen it is not at all clear that he could\nhave saved himself by recanting). The willingness of true believers\nto die for their belief, be it in Jesus or Jim Jones, is\nwell-documented, so martyrdom in and of itself says little. [See\n1Kings18:20-40 for a Biblical account of the martyrdom of 450 priests\nof Baal].\n\n", "74": "\n I too noticed that in all this screaming and shouting, not one \nperson brought up the question of atrocities being commited on non-muslims \nby the Sudanese Government. Could it be that they are Africans and so who\ncares? I suggest that everyone cut the hypocrisy and bleating about Bosnia \nand go on to discuss something even more meaningless.\n\n The report below shows that the Sudanese are acting in the finest\ntraditions of Islamic law as expounded by some die-hard people on the \nnet (who shall remain nameless). \n\nSudan\n-----\n\nGovernment troops 'steal women, children'\n\n\nWASHINGTON - Government troops in Sudan are involved in massacres,\nkidnapping and the transporting of forced labor into Libya, according\nto a State Department document declassified Wednesday.\n\n The report compiled by the U.S. embassy in Khartoum said government\nforces, particularly Arab militias organized as the Popular Defense\nForces, \"routinely steal women and children\" in southern Sudan.", "75": "=>I don't necessarily agree with Pat Robertson. Every one will be placed before\n=>the judgement seat eventually and judged on what we have done or failed to do\n=>on this earth. God allows people to choose who and what they want to worship.\n=\n=I'm sorry, but He does not! Ever read the FIRST commandment?\n\nI have. Apparently you haven't. The first commandment doesn't appear to\nforbid worshipping other gods. Yahweh's got to be at the top of the totem\npole, though.\n--------------------------------------------------------------------------------\nCarl J Lydick | INTERnet: CARL@SOL1.GPS.CALTECH.EDU | NSI/HEPnet: SOL1::CARL", "76": "\n\n\nYour ignorance is hardly characteristic of most '*ians'. Sarkis Atamian \nexplains in his book called 'The Armenian Community, New York 1955, \nPhilosophical Library' that, according to historians, original fatherland \nof the Armenians was in Thessaly, Greece. Armenian invaders burned and \nsacked the fatherland of Urartus, massacred and exterminated its population \nand presented to the world all those left from the Urartus, as the Armenian \ncivilization. All reliable western historians describe how Armenians \nruthlessly exterminated 2.5 million Muslim women, children and elderly \npeople of Eastern Anatolia and how they collaborated with the enemies of \nthe Muslim people between 1914-1920. It is unfortunately a truth that \nArmenians are known as collaborators of the Nazis during World War II \nand that, even today, criminal members of the ASALA/SDPA/ARF Terrorism \nTriangle preach and instigate racism, hatred, violence and terrorism \namong peoples. \n\n\nWho says 'Arromdians' are no damn good? During World War II Armenians \nwere carried away with the German might and cringing and fawning over \nthe Nazis. In that zeal, the Armenian publication in Germany, Hairenik, \ncarried statements as follows:[1]\n\n\"Sometimes it is difficult to eradicate these poisonous elements (the Jews)\n when they have struck deep root like a chronic disease, and when it \n becomes necessary for a people (the Nazis) to eradicate them in an uncommon\n method, these attempts are regarded as revolutionary. During the surgical\n operation, the flow of blood is a natural thing.\" \n\nNow for a brief view of the Armenian genocide of the Muslims and Jews -\nextracts from a letter dated December 11, 1983, published in the San\nFrancisco Chronicle, as an answer to a letter that had been published\nin the same journal under the signature of one B. Amarian.\n\n \"We have first hand information and evidence of Armenian atrocities\n against our people (Jews). Members of our family witnessed the \n murder of 148 members of our family near Erzurum, Turkey, by Armenian \n neighbors, bent on destroying anything and anybody remotely Jewish \n and/or Muslim. Armenians should look to their own history and see \n the havoc they and their ancestors perpetrated upon their neighbors.\n Armenians were in league with Hitler in the last war, on his premise \n to grant themselves government if, in return, the Armenians would \n help exterminate Jews. Armenians were also hearty proponents of\n the anti-Semitic acts in league with the Russian Communists.\"\n\n Signed Elihu Ben Levi, Vacaville, California.\n\n[1] James G. Mandalian, 'Dro, Drastamat Kanayan,' in the 'Armenian\n Review,' a Quarterly by the Hairenik Association, Inc., Summer:\n June 1957, Vol. X, No. 2-38.\n\nAnd stick around...\n\nSerdar Argic", "77": "Arthur Melnick posts an interesting first-hand message about his NEA\nalgorithm. Though I have no reason to disbelieve anything he says, I want to\nclarify one point:\n\nHe says he has no connection with the NSA. If he was part of an \"NSA plot\",\nof course he'd say that.\n\nNow I don't think he is. But the level of some discussion here is of that\nsort, and very quickly we reach the point where it's impossible to continue\nrationally discussing some issues.\n\n\"I am not a crook\"\n\n\"Well, if you were, of course you'd say that\"\n\n\nor the ever popular favorite:\n\n\"Please prove the following negative.\"\n\nI don't know what to do with such messages, so I have taken to ignoring\nthem.\n\nComments?\n\nDavid", "78": "I'm interested in building my own PC. Can anyone recommend a\n(UK available) book on the subject, and/or sources for parts?\n\nAlternatively, can anyone recommend a source for a 486DX (33MHz)\nPC (again UK available). I've just seen in Computer Weekly that\nthe March '93 price for these has fallen to sterling 1092 (including\nos, monitor, keyboard, delivery and VAT), but I can't find a single\nadvert that would give me a system at that price.", "79": "There are chips which perform the voice compression/expansion. They can't\nbe expensive, because they exist in many phones connected to PBXs or on the\nPBX line cards, as well as in a lot of equipment which compresses\nvoice-grade circuits to save the cost of long-distance, leased T1s or\nsatellite circuits.\n\nI can't remember the generic term for these chips. My impression is that\nthis was a big deal 10 years ago, but circuits have gotten so cheap that\nit isn't done much now.\n\nLew\n", "80": "Does anybody know where I can get a copy of System 6.0.8L. It is a modified\nversion of System 6 that will work on the newer Mac models.", "81": "\n\n\nOf course not. I would think that would be great _fun_, not having ever\nfelt the joy and peace the Christians speak of with a longing gaze.\nThis is not what I got when I believed - I just tried to hide my fear\nof getting punished for something I never was sure of. The Bible is\nhopelessly confusing for someone who wants to know for sure. God did\nnot answer. In the end, I found I had been following a mass delusion,\na lie. I can't believe in a being who refuses to give a slightest hint\nof her existence.\n\n\nI suggest they should honestly reconsider the reasons why they believe\nand analyse their position. In fact, it is amusing to note in this\ncontext that many fundamentalist publications tell us exactly the\nopposite - one should not examine one's belief critically.\n\nI'll tell you something I left out of my 'testimony' I posted to this\ngroup two months ago. A day after I finally found out my faith is over,\nI decided to try just one more time. The same cycle of emotional\nresponses fired once again, but this time the delusion lasted only\na couple of hours. I told my friend in a phone that it really works,\nthank god, just to think about it again when I hung up. I had to admit\nthat I had lied, and fallen prey to the same illusion.\n\n\nI used to believe what I read in books when I was younger, or what\nother people told me, but I grew more and more skeptical the more I\nread. I learned what it means to use _reason_.\n\nAs a student of chemistry, I had to perform a qualitative analysis\nof a mixture of two organic compounds in the lab. I _hated_ experiments\nlike this - they are old-fashioned and increase the student's workload\nconsiderably. Besides, I had to do it twice, since I failed in my first\nattempt. However, I think I'll never forget the lesson: \n\nNo matter how strongly you believe the structure of the unknown is X,\nit may still be Y. It is _very_ tempting to jump into conclusions, take\na leap of faith, assure oneself, ignore the data which is inconsistent. \nBut it can still be wrong. \n\nI found out that I was, after all, using exactly the same mechanism\nto believe in god - mental self-assurance, suspension of fear, \nfiltering of information. In other words, it was only me, no god\nplaying any part. \n\n\nOh? And I had better believe this? Dan, many UFO stories are much better\ndocumented than the resurrection of Jesus. The resurrection is documented\nquite haphazardly in the Bible - it seems the authors did not pay too\nmuch attention to which wild rumour to leave out. Besides, the ends of\nthe gospels probably contain later additions and insertions; for instance,\nthe end of Mark (16:9-20) is missing from many early texts, says my Bible.\n\nJesus may have lived and died, but he was probably misunderstood.\n\n\nThis is easy. I believe that the world exists independent of my mind,\nand that logic and reason can be used to interpret and analyse what I\nobserve. Nothing else need to be taken on faith, I will go by the\nevidence. \n\nIt makes no difference whether I believe George Washington existed or not.\nI assume that he did, considering the vast amount of evidence presented.\n\n\nA liar, how do you know what my attitude was? Try reading your Bible\nagain. \n\nI was willing to die for my faith. Those who do are usually remembered\nas heroes, at least among those who believe. Dan, do you think I'm\nlying when I say I believed firmly for 15 years? It seems it is \nvery difficult to admit that someone who has really believed does not\ndo so anymore. But I can't go on lying to myself.\n\nBlind trust is dangerous, and I was just another blind led by the blind.\nBut if god really wants me, she'll know what to do. I'm willing. I just\ndon't know whether she exists - looking at the available evidence,\nit looks like she doesn't. \n\nPetri", "82": "Greetings netters,\n\tI have a Seagate 3144 130MB IDE drive forsale. I bought it yesterday\nand have been able to come across a 215MB that I am going to buy, but I \nneed to sell this one. I guarantee that it will work. There is still a\ntransferable warranty I believe. It was only used as a boot drive, not a\nserver (source) drive. I just want my money back out of it...$180. Thanks\na lot and offers appreciated. Dave 317-495-5978 kari@sage.cc.purdue.edu\n", "83": "\nWhat a JOKE! You can't actually believe what you just said. Can you? We \nbombed and invaded these countries.\n\nNotice the definition of war (from the American Heritage Dictionary):\n\t1) A state or period of armed conflict between nations or states.\nThis qualifies the invasions of Cambodia and Laos as wars.\n\nThen let me explain this to you REALLY slowly. Why did he abuse the \npowers of his position? Could it have been to gain personal political \npower? Naw, that would be too obvious.\n\nAnd anyone who can only call names because his position is defensless is\nbreathtakingly ignorant and desperate. I noticed that you edited out the\nother points were I proved you and Phil to be completely wrong.\n\n------------------------------------------------------------------------------\n\"Death to all modifiers, he declared one day, and out of Garrett Johnson\n every letter that passed through his hands went every Garrett@Ingres.com\n adverb and adjective. The next day he made war on articles.\n The following day he blacked out everything in the letters\n but \"a\", \"an\", and \"the\". - Joseph Heller's Catch-22", "84": "Is anyone out there knowledgeable on drug issues in Japan? I'm interested\nin knowing if Japan has or has ever had a problem with drugs, and how they\ndealt with it. I've heard, undocumented, that Japan years ago used heavy\nlegal penalties to end a serious heroin problem. I'd like to know both\nsides of the story. Does anyone recall such a problem? What were laws\nat the time relating to drug use, drug dealing, and drug trafficking? What\nare the laws now? What other anti-drug measures, like education and treatment\nhas Japan used? How are drugs regarded by the Japanese people? How effective\nhave anti-drug measures been in Japan? Thanks for your help.\n", "85": "\n\nSo far, you have presented your opinions as opposed to mine. I would\nhardly take them as facts.\n\n\n\nI could give you hundreds of words in my mother tongue (Spanish), that\nare comonly use and you will never find in a dictionary. Even more, I\ncould show you a lot of meanings that words in Spanish have different\nfrom those in the dictionary.\n\n\nAnd guess why. Isn't it curious that we do not know how many people define \nin how many different ways the term Jew, which is the basis of the movement \nitself?\nSo, the evidence shows that up to now, Jew, when considered in terms of Israel,\nthe Law of Return and Jewish Nationality is defined in terms of religion and\nnot of cultural identity, even if 80% of those defined as Jews in Isreal\nare not religious.\n\n\n\nThat IS a problem. I am saying that I do not support Zionism as it is\nnow. I believe that among the people in the Soviet Communist Party some\nmight even had been inspired by noble ideals. Does that change the\nfinal results of what happened in the USSR?\nIn the same way, even if the Zionist movement is not homogeneous, it\ndoes not matter. What matters is the result.\n\n\nI never said it directly nor indirectly. I am not talking about individuals\nwho defined themselves as zionists here. I am sure most of them are good,\nhonest and caring people. I am talking about the results of the Zionist\nMovement. I am talking about a Movement whose actions resulted in a\nLaw of Return with a religious definition of Jew, a country that defines\nnationality based on religion. I am talking about something I consider\na form of racism such as differenciation based on religious belief. \nAfter all, if Arabs in Israel cannot serve in the Army is becasue they \nwere not born in the \"right\" religion.\n\n\nI had never heard the definition: Only those who are religious are defined as Jews.\nI had always seen the definition: A person is a Jew is his/her mother is/was\na Jew, and if such person does not convert, although I had seen people\nargue about the last part.\n\n\nSo, there is no difference between citizenship and nationality in Israel?\nOr what do you mean by \"Actually, it doesn't\"?\n\n\nSo, it follows a religious definition and not a cultural one. That is what\nI call a form of racism.\n\n\nYou do not need to assume the representation of \"everybody else\" to \nmake your points. You should assume that you are just talking for yourself.\nAbout the other stuff, I still believe that the example was a valid one.\nIt would be a hypocrisy to say that one supports nationalism for all and\nthen support Zionism and then disregard the Palestinian's right.\n\n\nIt was an example. You are trying to justify something nobody has \ntalked about.\n\n\n\nReference.\n\n\nyes, but not all of them. A language is something that evolves all the time.\n\n\nNot really. I posted in another post the definition of Zionism. And, in\nthis post you have showed for me what I was telling you from the \nbegining. Zionism is a form of racism, even if most zionists are not\nracist in their individual and private lifes. A movement that ask\nfor a State and National rights for a people, and then in practice,\nthat people are defined according to religion is, for me, racist-like.\n\n\nYou did it. Next time be more careful.\n\n\nDo you know the difference between opinion and fact?\n", "86": "\n... in response to which ...\n\n[ ... ]\n\n... and ...\n\n[ ... ]\n\n... and ...\n\n[ ... ]\n\n\nHey, guys. You're absolutely correct, and well on the way to winning\nthis battle ... and losing the war. Yes, there are serious philosophical\nflaws in HR 1276. Technical ones, too -- how'd you like to sue the Feds,\nlose, and have to pay _their_ \"reasonable Attorney's fee\" ... ? :-)\n\nStill, I have one basic question: compared to what we've _got_ is HR 1276\n(a) better, or (b) worse? This one shouldn't even take you three guesses.\n\nIf there's a good enough show of support for HR 1276, maybe for a change\n_we_ could be the ones saying \"it's a reasonable first step\" ...", "87": "please subscribe me.", "88": "\n\n Y'all got the first two reversed.", "89": "I'm planning to buy a computer and I like TC's ads. Can you tell anything\nabout the company and their computers? Also, if anyone has a company they \nwould prefer, please let me know.\n\nThanks.", "90": "\nIt will certainly *help* to be able to run Windows and Dos apps but\nthe only way that Solaris or OS/2 or any other scheme is going to \nchallenge Microsoft is if they can somehow get the prices for Solaris\nor OS/2 or whatever apps, down to a DOS competitive level. Everybody\nwould rather run a Solaris app on a Solaris system and an OS/2 app on\nan OS/2 system, they usually just can't afford a Unix system because\nof the high prices for good Unix software.\n\n\n", "91": "I'd like to hear stories on experiences with the Hyundai Sonata. I\nknow Consumer Reports has trashed them but the people I know that\nhave them swear by them. They also haven't had the problems with\nthem that Consumer Reports claims. I haven't driven one yet. I\nhave driven a '93 Hyundai Elantra (which Consumer Reports also\ntrashed) and was very impressed with it. The local Hyundai\ndealership (\"no-haggle\" policy) is offering an Elantra GLS w/ power\nmoonroof for $13163. They also have a Sonata base, w/ Sunroof for\n$13997. I know my preference is for a Sonata GLS w/ sunroof and\n4-spd automatic. I'll decide which engine I prefer after test\ndriving both the 4-cyl and the V6. The Sonata is also offering a\n$1500 rebate. Hmmm, that's another question. Is the following\nscenario the appropriate manner to handle \"negotiation\"?\n\n1. make offer\n2. subtract rebate from offer\n3. talk trade\n4. subtract trade from offer to get final price\n\n", "92": "Yes, but what if my monitor only has 3 BNC's on it, and is expecting\nto get a composite sync signal on the \"green\"? There ought to be a\nlittle black box that takes the VGA signalling (which has horiz, vert,\nand composite sync on different pins, plus the R, G, and B pairs) and\nmerges the green and composite sync together in the output. It's all\n1V analog, as far as I know. I can build this with op-amps but I don't\nthink I can get the shielding done well enough to handle the frequencies\ninvolved without lots of shadows and junk on the screen.\n\nDoes anyone know of a VGA->RGB(composite sync on green) converter?", "93": "\nWe know that sermon. It is posted roughly every month or so by different\npersons, and that doesn't make it any better.\n\nHow did you get the idea that skeptics are closed-minded? Why don't you\nconsider the possibility that they came to their conclusions by the\nproper methods? Besides, one can come to a conclusion without closing\none's mind to other possibilities.\n\nI you don't agree with a person, please ask him why he thinks like that,\ninstead of insulting him. Perhaps he's right. Follow your own advice,\nbe open-minded.\n\nIf you don't post a bit of evidence for your claims, I'll complain that\nit's always those \"neither a real believer, nor a disbeliever\" types who \nnarrow-mindedly judge others without knowing their motives.\n", "94": "\nOpen up one of the airbag control boxes. They have inexpensive piezoelectric\naccelerometers in them. I know that the GM cars use the Setra units. The\ncheapest way to get such an accelerometer is to cannibalize an existing\nautomotive unit.", "95": "\n\n\n\tBaltimore Baseblazers? Where the hell did you come up with that? The\nOrioles are not a base-stealing team except for Anderson. Besides we would\nnever call them anything but the Baltimore Orioles. Why? The ballpark has\nall these orthologically (spelling error?) correct BALTIMORE ORIOLES all\nover the place. I bet you thought the bird is just an oriole. It's not. The\nbird was named after Lord Baltimore when Maryland was founded. They're\ncalled Baltimore Orioles. But the post is just a joke so why do I care what\na non-O's fan thinks of us? But I still wonder where Baseblazers came from.\nSan Diego Padres, now there's a name that needs to be changed. How is padre\nbeing used? As \"Father\" ie priest or \"father\" ie parents?", "96": "\n\n \nCertainly. Reference follows. \n\nBear in mind that there are at least two conditions which may be called\nred/green colour blind. One, protanopia, is caused by a lack or major\ndysfunction of the L cones, those that respond best to long\nwavelengths. This gives much reduced red/green and red/violet discrimination and\nalso means that reds look dimmer than than they do to people with normal vision.\n\nThe other, deuteranopia, is due to missing or dysfunctional M cones although it\ncan also be caused by a lack of the L-M cone difference signals in the retina.\nIt also gives reduced red/green discrimination but red/violet is unaffected. \nUnlike protanopia, reds are not dimmer than normal.\n\nOn a uniform chromaticity diagram - the horseshoe shaped one you see in computer\ngraphics books - there is a single confusion point for each type of colour\ndeficiency. Colours which are confused lie on straight lines radiating from this\npoint. For protanopia the point is at u'=0.61,v'=0.51, very close to the far red\ncorner. For deuteranopia, the point is at u'=-4.75, v'=1.31\n\nNote that different experimental investigations in the literature give slightly\ndifferent values for these depending on the precise details of the experimental\nsetup, random errors, and so on. The values quoted are typical.\n\nSo if all colours on a line are seen as the same, which colour is actually seen?\n\nThis problem has now been solved. Tests on people with one normal eye and one\naffected eye have shown that there is an axis for each type of disorder onto\nwhich all the colours collapse. For protanopes this joins up 473nm and 574nm on\nthe spectral locus (the edge of the horseshoe); for deuteranopes the line is\nvery similar, joining 477nm and 579nm.\n\n*So* to convert colours from normal vision to a simulated protanopia or\nduuteranopia:\n\n1) Plot the colour on a uniform chromaticity diagram\n2) Construct a line from this point to the appropriate confusion point\n3) Find the intersection of this line with the appropriate axis line\n4) This is the new chromaticity. \n\nThe best reference for this is Meyer, G.W. & Greenberg, D.P. (1988) 'Colour\ndefective vision and computer graphics displays', IEEE Computer Graphics and\nApplications 8(5) 28-40.\n\nYou will also need a decent reference on basic colour science if you are not\nfamiliar with the CIE XYZ colour model and the uniform chromaticity scale diagram.\n\n\nYes this is certainly possible. You will need the chromaticities of the red\ngreen and blue phosphors of the monitor you intend to display the images on, and\nthe chromaticity of the white point. This information can be measured, or\nobtained from the manufacturer. I posted a list of some monitor chromaticities a\ncouple of weeks ago.\n\nThe procedure, for each pixel (!) is as follows. (Some lookup tables might be a\nhelp here.)\n\nA) convert RGB to CIE XYZ. This is a simple 3*3 matrix multiplication once you\nhave the monitor data.\nB) retaining the Y component for later, convert XYZ to chromaticity coordinates u'v'\nusing u' = 4X/(X+15Y+3Z), v' = 9Y/(X+15Y+3Z)\nC) find the equation of the line as in step 2 above\nD) find the intersection as in step 3\nE) convert back from u'v' to XYZ, using the Y value from step A\nF) Ensure that this new colour can be displayed on your monitor; if not, move it\nalong a line in XYZ space towards neutral grey (ie half way between black and\nwhite) until it is displayable.\n\n\nDone; also posted for the rest of us.\n\n--\nChris Lilley\n----------------------------------------------------------------------------\nTechnical Author, ITTI Computer Graphics and Visualisation Training Project\nComputer Graphics Unit, Manchester Computing Centre, Oxford Road, \nManchester, UK. M13 9PL Internet: C.C.Lilley@mcc.ac.uk \nVoice: +44 (0)61 275 6045 Fax: +44 (0)61 275 6040 Janet: C.C.Lilley@uk.ac.mcc", "97": "\nThis story was in the LA Times a few months ago.\nThe Clinton administration is exploring every avenue of\n\"revenue enhancement\", but not all will be chosen.", "98": "Hi, folks,\n\nI have a question:\n\n How can I generate a PCX file using Word for Windows (2.0) ?\n\nI know I can select a Postscript printer driver to get a PS file, but how\ncan I generate a PCX file ? Is there a printer capture utility for windows\nthat ever exists ? Or a utility to transfer PS format to PCX format, or\nTIFF format?\n\nPlease reply by E-MAIL, I will give a summary. Thanks.", "99": "\n\n\nI don't think they can do that without changing the law. The chip itself\nisn't classified, and reverse engineering is allowed by law (possibly)\nunless prohibited by a valid contract. The algorithm may be classified,\nbut there are many court cases ruling that information identical to\nclassfied information, but obtained from unclassified sources, is freely\npublishable (with the possible exception of nuclear weapon information.)", "100": "\nI believe it is illegal to send any cryptographic code out of the country\nwithout an export license. (Others will correct me if this is inaccurate.)\n\nDunno if you'd get one for the particular code you have; the only way to\nfind out is to apply for a license.\n\nNote that you need to distinguish between what is legal to send to Canada if\nYOU have such a license, and what is legal to send if you don't.\n", "101": "Mark Ira Kaufman writes\n\nNever mind the fact that these people were denied the right to a fair trial. \nAnd Israel was supposed to uphold \"Western values\", eh?\n\n\nCheck your facts before bashing Islam again. While there may be Muslim \nanti-semites, this is no way a tenet of the religion. Saying anti-semitism is \n\"basic\" to Islam is implicating the entire Muslim world, based on a selective \nsampling of a few people, and it flies in the face of what Islam teaches.\n\nPeace.\n--", "102": "\nThe Catholic church has an entirely different view of Mary than do \n\"most\" other Christian churches (those with parallel beliefs\nnotwithstanding). Christ, by most accounts, is the only sinless\nperson to ever live. I too, have trouble with a sinless Mary\nconcept just. \nAs for the related issue of the \"original\" sin - only Adam and\nEve will answer for that one. My children do not answer for my sins,\ncertainly I only answer for mine.", "103": "\nActually it was in the third period, his return did bring a spark to the\ncrowd, and to the players, who played awesome defense in the third.\n\n\nYou forgot about Gretzky. If any of these guys start scoring, the Kings\nwill be unstoppable, if they continue the great defensive work as well.\n\n\nStauber will be in net on Tuesday. Hopefully he will provide another\nstellar performance and earn the name Robb \"Stopper\" Stauber.\n\n\nI believe this is how they are...I know it is Gretzky and Sandstrom, but he\nhas been putting a number of people on left. Also the Carson, Robataille\nKurri line once ignited, will light the fire of the other lines.\n(Hopefully!)\n\nIt is evident that the scoring drought is getting to Luc, after his slight\nbreakaway in the third (I think) he was steamed on the bench, this emotion\nmight help him break his streak. Also, I have noticed Blake has had a few\nreally good chances to score, but has fanned, or shot wide. Is the injury\nstill affecting him? \n\n\nThe E\n D\n G\n E", "104": "I just got a bug report and a fix for this exact problem from\nfisher@iscp.bellcore.com (Greg Fisher):\n\n\nHe isolated the problem a proposed a workaround which seems precisely\ncorrect. Here is the new implementation of XmpTableNewProposedLayout\nwhich will be released with the next update in 5 weeks:\n\nXmp/Table.c:\n\nvoid XmpTableNewProposedLayout( tw )\n XmpTableWidget tw;\n{\n XmpTableConsiderSameSize( tw );\n XmpTableProposedColsAndRows( tw );\n XmpTableQueryParentForResize( tw ); /* query only, no resize */\n\n /*\n * Since we only made a query, we *should* still need to continue.\n * However, Motif is broken so that we actually may already have\n * been resized. In that case, the proposed layout is already\n * forgotten, so we should just quietly exit.\n */\n if ( tw->table.resize_status == RSdueToRequest )\n {\n XmpTableMakeColsFitQueryWidth( tw );\n XmpTableMakeRowsFitQueryHeight( tw );\n XmpTableGetProposedChildSize( tw );\n XmpTableSaveProposedLayout( tw );\n }\n /* else the resize has already been done. Our proposed layout would\n * have been forgotten in the process.\n */\n}\n\nThe XpTable the fix is identical, except of course for the names:\n\nXp/Table.c:\n\nvoid XpTableNewProposedLayout( tw )\n XpTableWidget tw;\n{\n XpTableConsiderSameSize( tw );\n XpTableProposedColsAndRows( tw );\n XpTableQueryParentForResize( tw ); /* query only, no resize */\n /*\n * Since we only made a query, we *should* still need to continue.\n * However, some manager widgets are broken so that we actually may\n * already have * been resized. In that case, the proposed layout\n * is already forgotten, so we should just quietly exit.\n */\n if ( tw->table.resize_status == RSdueToRequest )\n {\n XpTableMakeColsFitQueryWidth( tw );\n XpTableMakeRowsFitQueryHeight( tw );\n XpTableGetProposedChildSize( tw );\n XpTableSaveProposedLayout( tw );\n }\n /* else the resize has already been done. Our proposed layout would\n * have been forgotten in the process.\n */\n}\n\n-------------------------------------------------------------------------\nDavid Smyth\t\t\t\tdavid@jpl-devvax.jpl.nasa.gov\nSenior Software Engineer,\t\t(818)306-6193 (do NOT use v-mail yet!)\nCCCP, X and Object Guru.\t\toffice: 525/C165\nJet Propulsion Lab, M/S 525-3660 4800 Oak Grove Drive, Pasadena, CA 91109\n------------------------------------------------------------------------- \n\t\"That Sun Windows thingy, what's it called? You know, its\n\treally awful. X? Motif? That's it - Motif! Yuck!\"", "105": "Is there a way to wax out a dull finish (minor scrathes)? While\n\"passngering\" on my fiance's Bandit, my hip-pack rubbed against the tail\nand left a nasty dull finish and teeny scratches. Is there a way to get\nrid of these? Buff them out? Wax them out?\nhelp!", "106": "\nOr just use the URT tool: rastorle.\n\n\nYes, both it and the newer xli can.", "107": "If you can modify the design of the DTMF decoder, the ideal comunications\nwould be over a multi-drop system, like RS-485. RS-485 boards are available\nfor PC's, probably cheaper than a bunch of RS-232 channels, and RS-485 is\ncheaper to build onto your satellite modules, using only a single supply\n8-pin DIP driver chip. Software at the PC end would be similarly complex\nfor either RS-232 or RS-485, in my opinion. The higher data rates possible\nwith RS-485 would permit quasi-simultaneous data transmission.\nHope this helps.", "108": "It's basement cleaning time. This stuff has got to go.\n\nI have two boxes of 9 track 2400' tapes, around 20 tapes/box. They are\nfree to anyone who wants to come by and pick them up. They've seen\nvery little use. If anyone wants these bad enough to ship, they're yours\nfor the cost of shipping, the cod charge and a $10 nusiance fee.\n\nI have a lot of serial cables. I have all kinds, ribbon, shielded, long,\nshort M-M, M-F whatever you want. Most appear to work well with PC serial\nports, but I will not gaurantee that. Tell me what you want and I'll do\nthe best I can to match. 1.50 ea or 10/$10. Shipping included. No CODs\nunder $20. (You want to pay a $5 COD charge for a $1.50 cable? Go buy\nthe cable at your local computer store instead, it'll be cheaper.) I believe\nthese cables were removed from service at a computer center. They appear\nto be in good condition and the ones I have used have worked well.\n\nI also have a 15 KVA Exide UPS with batteries that needs minor repair, probably\na logic board. It weighs about 280 pounds and is 36 inches high. I think\nthey used to run a Prime system off of it. Best offer over $75, but you \nneed to come pick it up. Use this to run your house from your solar panels.\n\nI will consider reasonable offers on any of this stuff.", "109": "\nI'd try it on the VFR, but goddamn Competition Accessories hasn't mailed my\norder yet. Hell, it's only been two weeks and I was ordering some pretty\nbizzare stuff. Like a clear RF-200 face sheild, and a can of Chain Wax...\nBastards.\n\nDean", "110": "\n\n", "111": "\nGeez, I didn't realize things were so bad at Ohio State that they can't\nafford phone books, or even operators.\n\nThis is probably Clinton's fault, isn't it...8^)\n\n403.", "112": "\n\nIndeed Yaqouv, just like the ugly hatred spread by Kahane and\nKahanists, right? Or they are exempt from condemnation, and allowed\nto hate?\n\nNo, fool, not at all like hatred of one's sworn enemies, enemies who\nhave said time and again that they mean to kill you, and have, by mur-\ndering innocent men, women and children, shown that they really mean it.\n\nThe late rabbi never hated anyone merely for having been born into a par-\nticular group, but he (and I) hate and would/will kill anyone who comes\nto kill Jews. I recall VERY well Rabbi Kahane's words to the Iraqis at a\ndemonstration: \"You want peace? Here is our hand (holding out an open\nhand)! You don't want peace? Here is our hand (holding out a fist)!\"\n\nI know you'll answer me indirectly, it doesn't bother me a bit.\nKeep it up.\n\nIndirectly? The wonder of it is that I bother answering the likes of you\nat ALL!\n\nSteel (who's never pissed off).\n\n\n--\n / .. / .\n /_______/_/__________/_/_/ _< /____/\n /___ / .. /____/", "113": "\n\n1. You haven't shown any disproportionate involvement.\n\n2. The Janus Report, which came out recently, gives 9% as the percentage\nof exclusively or predominantly gay men.\n\n3. No one is presumably going to say they're gay if they're not. But\nsome no doubt are going to hide their homosexuality in surveys. Thus\nthe 1-2% is a lower limit.\n\nI still say that weighing all the evidence gives a most likely percentage\nbetween 5 and 7%.\n\nBrian", "114": "I have this kit which includes the following :\n\n1)\t82c84a/82c84a-5\n\tCHMOS CLOCK GENERATOR AND DRIVER\n\tFOR 8086,80C88 PROCESSORS\n2)\t27C64/87C64\n\t64K(8Kx8) CHMOS UV ERASABLE PROM\n3)\t51C259L\n\tLOW POWER 64K x 4\n\tCHMOS DYNAMIC RAM\n4)\t82C59A-2\n\tCHMOS PROGRAMMABLE INTERRUPT CONTROLLER\n5)\t82C88\n\tCHMOS BUS CONTROLLER\n\tFRO 80C86,80C88 PROCESSORS\n6)\t80C88/80C88-2\n\t8-BIT CHMOS MICROPROCESSOR\n7)\t82C55A\n\tCHMOS PROGRAMMABLE PERIPHERAL INTERFACE\n8)\t82C54\n\tCHMOS PROGRAMMABLE INTERVAL TIMER\n9)\t82C08\n\tCHMOS DYNAMIC RAM CONTROLLER\n\nAll these are chips with complete manual in a box. I don't know whether they\nstill work or not, and I don't really know what they are. \n\nSo this is mainly for those who knows what this is and have use of it \n(probably EE stuff since this used to belong to a EE student)\n\nAnyone interested, please make me an offer.", "115": "\ni have no experience with State Farm, but i think it's important to\ndifferentiate your experience from a typical \"accident.\"", "116": "...\n\nIf we are indeed talking about CS, then this is not quite accurate. CS is\n\"just\" tear gas--albeit the worst kind. It isn't a nausea gas, and doesn't\nhave direct CNS effects. However, it's quite bad--much worse than CN gas. I\nwas briefly exposed to it once (during an engagement in Berkeley circa 1968\n8^) and it's not the kind of thing you forget. It seems to be\nmoisture-activated--it not only made my eyes sting and water, but attacked\nmy breathing passages and lungs. Breathing was painful, and my entire face\nfelt as if it was on fire. These effects persisted for hours after\nexposure, and I was coughing for days afterwards. If I was exposed to a\ndense concentration of this stuff in a closed space for several hours, I\ndoubt whether I could find the exit. Indeed, I can't imagine living through\nit.\n\n", "117": "\n\nFrom: thomas@sunshine.Kodak.COM (Thomas Kinsman)\nNewsgroups: comp.os.ms-windows.programmer.misc,alt.binaries.pictures.utilities\nSubject: DIB/BMP CREATION GUIDE, as requested.\nKeywords: DIB BMP Bitmaps File Formats\nMessage-ID: <1992Dec23.214432.18764@kodak.kodak.com>\nDate: 23 Dec 92 21:44:32 GMT\nSender: news@kodak.kodak.com\nOrganization: Precambiran Electronics, Rochester, NY\nLines: 484\nXref: cradle.titech comp.os.ms-windows.programmer.misc:3609\n\n\n\n\n\n\n\n\n\t\t\t GUIDE TO CREATION OF DIB IMAGES\n\n\n\t\t\t\t Thomas B. Kinsman\n\n\t\t\t Precambrian Electronics\n\t\t\t\t 29 Falstaff Rd.\n\t\t\t\t Rochester, NY 14609\n\t\t\t\t thomask@kodak.com\n\t\t\t Copyright March 15, 1991\n\n\n\n\t\t\t\t\t ABSTRACT\n\n\t The format of images created for use by MS Windows 3.0/3.1\n\t applications is\tdocumented in\tthe MS Windows Programmer's\n\t Reference guide.\tThis guide is intended as a clearify some\n\t wording\tof the specifications, and to put forth a\n\t recommendation among the various alternatives.\n\n\t Please send updates/corrections/suggestions and revisions\t to\n\t me. Please thank me for writing this on my own time by\n\t keeping my name with the document. Thank you for your\n\t respect.\n\n\t This document Copyright, 1991, by Thomas B. Kinsman.\n\t If desired, a PostScript version of\tthis document\t is\n\t available.\n\n\t This information is free.\t You get more than what you pay for.\n\t Don't sue me if I'm wrong.\n\n\n OVERVIEW\n\n The DIB image file format is intended to be a \"Device Independent Bitmap\"\n file format. (What Microsoft means by \"Device Independent\" is unclear to\n me.) Four pixel resolutions are supported: 1 bit, 4 bit, 8 bit, and 24 bit\n pixels.\n\n These images were intended for use on DOS (IBM, or Little-Endian) systems.\n If\tyou are creating them on another architecture you will have to byte-\n swap all short and long integer values.\n\n By convention, DIB images end in the extension \".BMP\". This is because\n\n\n\n\t\t\t March 15, 1991\n\n\n\n\n\n\t\t\t\t - 2 -\n\n\n they are a super-set of earlier \"bitmap image files\". Consequently you\n will sometimes hear DIB files referred to as \"BMP\" files.\n\n Since DIB images files are a super-set, there are three \"flavors\" of DIB\n images:\n\t o DOS DIB images. These are the recommended\t convention, and the\n\t form which I will describe how to create.\t They are intended for\n\t applications running under MS Windows /3.0 in a DOS environment.\n\t o OS/2 DIB images. My understanding is that these are the\tflavor\n\t of DIB images that were used by the Presentation Manager.\n\t o Old-style Bitmap images.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\t\t March 15, 1991\n\n\n\n\n\n\t\t\t\t - 3 -\n\n\n DIFFERENCES BETWEEN FLAVORS\n\n The DOS DIB images consist of:\n\t 1. A \"BITMAPFILEHEADER\" file header which identifies the file\t as a\n\t DIB file.\t This\theader\talso gives the total size of the image\n\t file, and the offset to the image data.\n\t 2. A \"BITMAPINFOHEADER\" image header which\t specifies the\t image\n\t attributes.\n\t 3. An optional palette of colors used by the image. If it exists,\n\t this may contain 2, 16, or 256 entries. Each entry is a Windows\n\t RGBQUAD structure.\n\t 4. The image data itself.\n\n\n The OS/2 DIB images consist of:\n\t 1. The same \"BITMAPFILEHEADER\" file header which identifies the file\n\t as\t a DIB\t file.\t This header also gives the total size of the\n\t image file, and the offset to the image data.\n\t 2. A \"BITMAPCOREHEADER\" image header which\t specifies the\t image\n\t attributes.\n\t 3. An optional palette of colors used by the image. Again, if this\n\t exists it\t may contain 2, 16, or 256 entries. Each entry is a\n\t Windows RGBTRIPLE structure.\n\t 4. The image data itself.\n\n\n The Old Style image bitmap consists of:\n\t 1. Either a BITMAPINFOHEADER or a BITMAPCOREHEADER.\t Which\theader\n\t type is determined by the first long integer (DWORD) value.\n\t 2. An optional color palette.\t This\tpalette\t may be composed of\n\t either Windows\tRGBQUAD\t structures (if the\theader\twas a\n\t BITMAPINFOHEADER) or Windows RGBTRIPLE structures (if the\theader\n\t was a BITMAPCOREHEADER).\n\t 3. The image data itself.\n\n\n CREATING DIB IMAGE FILES.\n\n Creating a DOS DIB image file consists of several straight forward\tsteps.\n The headers need to be created and then written to the file. These header\n structures are defined in the MS Windows/3.0 \"windows.h\"\tinclude\t file.\n Palette information needs\t to be\t stored for images that are not 24-bit\n images. The five general steps are:\n\t 1. Filling in the BITMAPFILEHEADER\t and\tthe BITMAPINFOHEADER\n\t structures the basic image information.\n\t 2. If the image is a 1-bit, 4-bit, or an 8-bit image,\t creating the\n\t color palette of RGBQUADS.\n\t 3. Calculating the total file size and putting this information in\n\n\n\n\t\t\t March 15, 1991\n\n\n\n\n\n\t\t\t\t - 4 -\n\n\n\t the \"bfSize\" field of the BITMAPFILEHEADER.\n\t 4. Calculating the offset to the image data from the\tstart of the\n\t file, and putting this in the \"bfOffBits\"\tfield of the\n\t BITMAPFILEHEADER.\n\t 5. Writing to the file the BITMAPFILEHEADER,\tthe BITMAPINFOHEADER,\n\t the color palette, and the image data (in that order).\n\n The following sections describe structures in terms of MicroSoft C\t type-\n defined keywords.\tThe following table describes these keywords for those\n not familiar with MicroSoft C.\n\n\t\t _______________________________________\n\t\t |\t\t\t\t\t |\n\t\t | Type-defined keywords in MicroSoft C.|\n\t\t |______________________________________|\n\t\t | typedef |\t meaning\t\t |\n\t\t |_________|____________________________|\n\t\t | BYTE |\t unsigned character\t |\n\t\t | WORD |\t two byte unsigned integer |\n\t\t | DWORD |\t four byte unsigned integer|\n\t\t |_________|____________________________|\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\t\t March 15, 1991\n\n\n\n\n\n\t\t\t\t - 5 -\n\n\n THE BITMAPFILEHEADER\n\n This structure is defined in \"windows.h\" as:\n\t typedef struct tagBITMAPFILEHEADER {\n\t\t WORD\t bfType;\n\t\t DWORD\t bfSize;\n\t\t WORD\t bfReserved1;\n\t\t WORD\t bfReserved2;\n\t\t DWORD\t bfOffBits;\n\t } BITMAPFILEHEADER;\n\n The \"bfType\" field is the two ascii characters 'B' and 'M'.\t This\tserves\n to\tidentify the file as\t a DIB\t image file. On an intel byte ordered\n machine (IBM or a compatible), this constant can be formed\tin C as the\n quantity ('M' << 8 | 'B') == 0x4d42 on an intel system.\n\n The \"bfSize\" field is the total size of the file. For our\tpurposes this\n field is equal to: the size of the BITMAPFILEHEADER, plus the size of the\n BITMAPINFOHEADER, plus the number of entries in the\t color\tpalette\t times\n the\t size of a RGBQUAD, plus the number of bytes of image data.\tIf the\n image data is being written out in an uncompressed form, this value can be\n calculated\tahead of time. Otherwise, this field needs to be filled in\n later.\n\n Both the \"bfReserved1\" and the \"bfReserved2\" fields are always set to\n zero.\n\n The \"bfOffBits\" field is set to the offset to the start of the image data\n from the start of the file. For our purposes, this field should be set\n to:\t the size of\tthe BITMAPFILEHEADER,\t plus\t the size of the\n BITMAPINFOHEADER, plus the number of entries in the color palette times\n the size of a RGBQUAD. This works out because the image data is written\n write after the color palette if one exists.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\t\t March 15, 1991\n\n\n\n\n\n\t\t\t\t - 6 -\n\n\n THE BITMAPINFOHEADER\n\n This structure is defined in \"windows.h\" as:\n\t typedef struct tagBITMAPINFOHEADER{\n\t\t DWORD\t biSize;\n\t\t DWORD\t biWidth;\n\t\t DWORD\t biHeight;\n\t\t WORD\t biPlanes;\n\t\t WORD\t biBitCount;\n\t\t DWORD\t biCompression;\n\t\t DWORD\t biSizeImage;\n\t\t DWORD\t biXPelsPerMeter;\n\t\t DWORD\t biYPelsPerMeter;\n\t\t DWORD\t biClrUsed;\n\t\t DWORD\t biClrImportant;\n\t } BITMAPINFOHEADER;\n\n The \"biSize\" field is set to the size of the BITMAPINFOHEADER structure\n itself. When reading the image\t file,\tthis value is what is used to\n determine that the image\t contains a BITMAPINFOHEADER\t and not a\n BITMAPCOREHEADER.\n\n The \"biWidth\" field is the width of the image in image pixels.\n\n The \"biHeight\" field is the height of the image in image lines.\n\n The \"biPlanes\" field should always be set to 1. This data is written out\n as if there was one color plane.\n\n The \"biBitCount\" field is the bit-depth of the image. This must be either\n 1, 4, 8, or 24, depending on the bit-depth of the image data.\n\n The \"biCompression\" field tells how the image data is compressed if it is\n compressed.\t DIB\timages\tsupport\t two forms of\t run-length encoding.\n However, I have never seen any images which use it, and don't know yet how\n it works. Set this field to zero (long zero, or 0L), to indicate that the\n data is not compressed.\n\n All subsequent fields of the BITMAPINFOHEADER structure may be set to\n zero. A requirement of\tthe interpretting software that it be able to\n compute these fields as necessary from the previous information.\n\n The field which you might want to explicitly specify might be \"biClrUsed\".\n For\t 4-bit\tand 8-bit images this field\t indicates that not all of the\n possible color entries are used and that the image\t contains \"biClrUsed\"\n colors. If you are using only 32 colors with an 8-bit image, then you may\n only want to save 32 of the possible 256 palette entries. Generally, set\n this field to zero.\n\n\n\n\t\t\t March 15, 1991\n\n\n\n\n\n\t\t\t\t - 7 -\n\n\n COLOR PALETTES\n\n Each entry of a color palette is\t a RGBQUAD structure.\t The RGBQUAD\n structure is defined in the \"windows.h\" include file as:\n\t typedef struct tagRGBQUAD {\n\t\t BYTE\t rgbBlue;\n\t\t BYTE\t rgbGreen;\n\t\t BYTE\t rgbRed;\n\t\t BYTE\t rgbReserved;\n\t } RGBQUAD;\n The \"rgbReserved\" field is always zero. For each color used, the\tamount\n of Blue, Green, and Red are filled into the structure and the structure is\n written to the file. A value of zero in the \"rgbBlue\", \"rgbGreen\", or\n \"rgbRed\" fields indicates that\tthat particular component does not\n contribute to the color composition. A value of 255 in\tany of\t these\n fields indicates that the component contributes fully\t to the color\n composition.\n\n\n\n IMAGE DATA\n\n There are three surprises about the ordering of image data\tin DIB\t image\n file. The\t creator of this format was determined to be creative, and\n certainly was.\n\n Within the image data, each line written out is padded to the next four\n byte quantity. So, if you had an 8-bit image which was only one pixel\n wide, you still have to write out four bytes for every image line. The\n number of bytes per line can be calculated as:\n\n\t\t bytes_per_line = (width_in_pix * bit_depth + 31 ) / 32 * 4;\n\n\t---or, in terms of the fields of the BITMAPINFOHEADER structure---\n\n\t\t bytes_per_line = (biWidth * biBitCount + 31 ) / 32 * 4;\n\n\n When writing out your image data, you must write it out bottom line first.\n The\t bottom line of the image as you would look at it on the screen is the\n first line of image data in the file.\n\n For 1-bit, 4-bit, and 8-bit images, information is written\tas you\t would\n expect. One bit\timages\tare padded eight pixels to a byte. Four bit\n images are padded two pixels to a byte. Eight bit images are written one\n pixel per byte. Twenty-four bit images are written three bytes per pixel.\n However, for 24-bit images the information must be\t written out in the\n order blue, green, red. While most image file formats write data out in\n\n\n\n\t\t\t March 15, 1991\n\n\n\n\n\n\t\t\t\t - 8 -\n\n\n an \"RGB\" ordering, a DIB image file\t writes\t the data out\t in an\t \"BGR\"\n ordering.\n\n SUMMARY\n\n This should provide enough information\tto create DIB\t images\t from\n applications such\tas scanners or for image exporting routines.\tIf you\n find out any more about DIB images, please pass the information on\tto me\n so that I can modify this document accordingly.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\t\t March 15, 1991\n\n\n--\n Thomas B. Kinsman, Rochester, NY, thomas@acadia.kodak.com\n \"Practice random kindness and senseless acts of beauty.\"\t-anon\n", "118": "Michael, you sent your inquiry to the bmw mailing list, but the sw\nreplaces your return addr with the list addr so I can't reply or\nmanually add you. please see my post re the list or contact me directly.\n", "119": "79 Toyota Corolla 4D hatchback, runs OK, needs dents smoothed, serious\nbrake work and miscellaneous TLC. Excellent auto shop project. $250 \nOBO. See in Algonquin or Schaumburg. (708) 658-5285, (708) 576-0675,\nor email.", "120": "\nIMHO this is the most untrustworthy, silly stat, by today's rules, in all \nof baseball. My understanding is to qualify as a save a pitcher cannot \npitch more than three innings and the potential tying run must at least \nappear in the on-deck circle. Also, the lead a pitcher enters with cannot \nexcede three runs.\n\nI believe that the official scorers must assert more of their authority in \ndetermining winners/savers/etc. For instance, a pitcher can come in in the \nninth with a lead, blow the lead, fall behind, have his team come back in \nthe next half inning and earn the win. Has this pitcher earned a win, no \nway.\n\nI guy could pitch five strong innings of middle relief and see his \nteammates rally to tie the score. Assume he came in to start the fourth \nand left after the eighth. His teammate holds the opposition scoreless in \nthe ninth and they score a run in the bottom of the ninth to win. The \nthird pitcher earns the win and the middle reliever gets no \"stat\" \nsatisfaction.\n\nMike", "121": "\n\n \n Yes, it is possible. I'm making a 7 stepper controller board, \nwith 7 digital inputs, and (up to) 18 digital outputs from the // port.\n One main thing that will tell you whether the // port is \nbi-directional or not is the bus tranceiver on it. Look for a chip \nnumbered 74LS245. If you don't have this, then it's probably a 74LS244, \nwhich will do you NO good for reading in.\n \n Now, if you do have the '245 then do the following:\n First, find the address of the port, (decimal) either 888, or 632.\n In pascal, you would \"Write(Port[xxx]);\" where xxx is the address in \neither hex or decimal. The status lines, pins 14, 16, 17, as well as the \nstrobe, pin 1, are bi-directional lines, and are read by base address +2, \nso for 888, to read from status, then read from 890. You can also output \nto these lines in the same fashion as to the data lines. In pascal, \ndo \"Port[xxx]:=value\n\".\n \n Hope this helps.\n Let me know if you need more help.\n \n \n _________________________________________________\n Inspiration | ___ |\n comes to | \\ o baden@sys6626.bison.mb.ca |\n those who | ( ^ ) baden@inqmind.bison.mb.ca |\n seek the | /-\\ =] Baden de Bari [= |\n unknown. | |", "122": "\n[REMAINDER DELETED]\n\nI don't have my copy of the manual with me right now, but I can offer the\nfollowing in the interim:\n\n 1) The card uses port addresses 0x2E0 and 0x2E8 (which are NOT\n configurable). These addresses, incidentally, were inadvertantly\n omitted from my version of the manual.\n\n 2) I believe there is a dip that controls whether or not to enable\n IRQ 2 (for CGA or EGA support??!?).\n\nLance Hartmann (lance%hartmann.austin.ibm.com@ibmpa.awdpa.ibm.com)\n Yes, that IS a '%' (percent sign) in my network address.", "123": "\n\nAssuming that the wax is causing hearing loss, congestion or popping\nin the ears, you can try some cautious tepid water irrigation with a\nbulb syringe, but it is awkward to do for oneself and may not work or\nmay even make things worse. (My wife would disagree, she does it\nsuccessfully every six months or so.) In any case DO NOT ATTEMPT\nANYTHING WITH Q-TIPS!!!\n\nMy experience has been that this is initially best handled by a\nEar/Nose/Throat person. I say initially, because an ENT can evaluate\nwhether or not you might have success on your own with a little\ninstruction.\n\nI am not a physician (obviously, because I eschew the term\notolaryngologist); this posting is based only on personal experience.\n\n========================================================================\n\n \"The best is the enemy of the good\" - Voltaire\n\nLeon Traister (lmtra@amdahl.uts.amdahl.com)", "124": "Has anybody heard about a thing called a MacWatch? I saw it on TV a\ncouple of years ago, it is a watch with a reviever and a transmitter for\nyour mac. The practical upshot is that your Mac can page your watch and\ndisplay a small message. My flatmate is off to the states for a week or\ntwo soon and I am interested in getting one. Any info would be\nappreciated.", "125": "I'd like to install an Apple (Quantum) 40 MB hard drive taken from a IIsi in an\nexternal PowerDrive box from Hard Drives International that currenty has a dead\nConner mechanism in it. Have you done this (or do you know how)? If so, could\nyou please walk me through it, in as much detail as possible?\n\nPlease email me directly. If anyone else is interested in this, email me and\nI'll forward responses to you. If enough people want instructions, I'll post a\nsummary within a week or so.\n\nThanks in advance,", "126": "Yamanari,\n\n---Hey isn't it funny how betas have bugs in them....\nHey...do me a favor and don't put up stupid posts.", "127": "\n\n\nSince Facts and Myths doesn't even know where Deir Yassin was,\nwhy should we pay any attention to the rest of what it says?\n\n\nThis account from Eric Silver is the only valid point that M&F makes.\nYou can find it together with other evidence and analysis in \nSilver's biography of Begin. Also in Silver's book you will find\ndocumentary evidence that nearly everything else in M&F's account\nis pure bullshit.\n\n\nThis is pretty disgusting. The Guardian was told of one or two\nfeeble old men who dressed in women's clothing in a pathetic \nattempt to escape death. See Silver's book.", "128": "\nYes, atheists tend to claim self control and self ownership. Are you saying\nthat theists claim to not have self control? I don't think atheists are\n\"dominantly arrogant.\" They don't claim some god that has supremacy over\nall of mankind. Now this claim would be arrogant, but atheists don't claim \nit. Most atheists do claim to own themselves. I think any disagreement with\nthis claim of self ownership would be supremely arrogant.\n", "129": "\n\nRadiating from someone who is incapable of providing a single scholarly\nsource on his 'genocide apology program', it is rather amusing. Again,\nwhere is your non-existent list of scholars and scholarly sources?\nHere is mine:\n\n\"An appropriate analogy with the Jewish Holocaust might be the\n systematic extermination of the entire Muslim population of \n the independent republic of Armenia which consisted of at \n least 30-40 percent of the population of that republic. The \n memoirs of an Armenian army officer who participated in and \n eye-witnessed these atrocities was published in the U.S. in\n 1926 with the title 'Men Are Like That.' Other references abound.\"\n (Rachel A. Bortnick - The Jewish Times - June 21, 1990)\n\n\n \"In Soviet Armenia today there no longer exists a single Turkish soul.\n It is in our power to tear away the veil of illusion that some of us\n create for ourselves. It certainly is possible to severe the artificial\n life-support system of an imagined 'ethnic purity' that some of us\n falsely trust as the only structure that can support their heart beats \n in this alien land.\"\n (Sahak Melkonian - 1920 - \"Preserving the Armenian purity\") \n\n\n \"The crime of systematic cleansing by mass killing and extermination \n of the Muslim population in Soviet Republic of Armenia, Karabag, \n Bosnia and Herzegovina is an 'Islamic Holocaust' comparable to the \n extermination of 2.5 million Muslims by the Armenian Government \n during the WWI and of over 6 million European Jews during the WWII.\"\n (Tovfik Kasimov - Azeri Leader - September 25, 1992)\n \n\n \"Today's ethnic cleansing policies by the Serbian dictatorship against\n Croatians and Muslims of Yugoslavia, as well as the Soviet Republic\n of Armenia's against the Muslim population of neighboring Azerbaijan,\n are really no different in their aspirations than the genocide \n perpetrated by the Armenian Government 78 years ago against the\n Turkish and Kurdish Muslims and Sephardic Jews living in these\n lands.\" (Cebbar Leygara - Kurdish Leader - October 13, 1992)\n\n\n\nSOME OF THE REFERENCES FROM EMINENT AUTHORS IN THE FIELD OF MIDDLE-EASTERN\nHISTORY AND EYEWITNESSES OF THE ARMENIAN GENOCIDE OF 2.5 MILLION MUSLIMS\n\n1. \"The Armenian Revolutionary Movement\" by Louise Nalbandian,\n University of California Press, Berkeley, Los Angeles, 1975\n\n2. \"Diplomacy of Imperialism 1890-1902\" by William I. Lenger, Professor\n of History, Harward University, Boston, Alfred A. Knopt, New York, 1951\n\n3. \"Turkey in Europe\" by Sir Charles Elliot, \n Edward & Arnold, London, 1900\n\n4. \"The Chatnam House Version and Other Middle-Eastern Studies\" by\n Elie Kedouri, Praeger Publishers, New York, Washington, 1972\n\n5. \"The Rising Crescent\" by Ernest Jackh,\n Farrar & Reinhart, Inc., New York & Toronto, 1944\n\n6. \"Spiritual and Political Evolutions in Islam\" by Felix Valyi,\n Mogan, Paul, Trench & Truebner & Co., London, 1925\n\n7. \"The Struggle for Power in Moslem Asia\" by E. Alexander Powell,\n The Century Co., New York, London, 1924\n\n8. \"Struggle for Transcaucasia\" by Feruz Kazemzadeh,\n Yale University Press, New Haven, Conn., 1951\n\n9. \"History of the Ottoman Empire and Modern Turkey\" (2 volumes) by\n Stanford J. Shaw, Cambridge University Press, Cambridge, New York,\n Melbourne, 1977\n\n10.\"The Western Question in Greece and Turkey\" by Arnold J. Toynbee,\n Constable & Co., Ltd., London, Bombay & Sydney, 1922\n\n11.\"The Caliph's Last Heritage\" by Sir Mark Sykes,\n Macmillan & Co., London, 1915\n\n12.\"Men Are Like That\" by Leonard A. Hartill,\n Bobbs Co., Indianapolis, 1928\n\n13.\"Adventures in the Near East, 1918-22\" by A. Rawlinson,\n Dodd, Meade & Co., 1925\n\n14.\"World Alive, A Personal Story\" by Robert Dunn,\n Crown Publishers, Inc., New York, 1952\n\n15.\"From Sardarapat to Serves and Lousanne\" by Avetis Aharonian,\n The Armenian Review Magazine, Volume 15 (Fall 1962) through 17 \n (Spring 1964)\n\n16.\"Armenia on the Road to Independence\" by Richard G. Hovanessian,\n University of California Press, Berkeley, California, 1967\n\n17.\"The Rebirth of Turkey\" by Clair Price,\n Thomas Seltzer, New York, 1923\n\n18.\"Caucasian Battlefields\" by W. B. Allen & Paul Muratoff,\n Cambridge, 1953\n\n19.\"Partition of Turkey\" by Harry N. Howard,\n H. Fertig, New York, 1966\n \n20.\"The King-Crane Commission\" by Harry N. Howard,\n Beirut, 1963\n\n21.\"United States Policy and Partition of Turkey\" by Laurence Evans,\n John Hopkins University Press, Baltimore, 1965\n\n22.\"British Documents Related to Turkish War of Independence\" by Gothard \n Jaeschke\n \n1. Neside Kerem Demir, \"Bir Sehid Anasina Tarihin Soyledikleri: \n Turkiye'nin Ermeni Meselesi,\" Hulbe Basim ve Yayin T.A.S., \n Ankara, 1982. (Ingilizce Birinci Baski: 1980, \"The Armenian \n Question in Turkey\")\n\n2. Veysel Eroglu, \"Ermeni Mezalimi,\" Sebil Yayinevi, Istanbul, 1978.\n\n3. A. Alper Gazigiray, \"Osmanlilardan Gunumuze Kadar Vesikalarla Ermeni\n Teroru'nun Kaynaklari,\" Gozen Kitabevi, Istanbul, 1982.\n\n4. Dr. Kirzioglu M. Fahrettin, \"Kars Ili ve Cevresinde Ermeni Mezalimi,\"\n Kardes Matbaasi, Ankara, 1970. \n\nT.C. Basbakanlik Osmanli Arsivi, Babiali, Istanbul:\n\na) Yildiz Esas Evraki\nb) Yildiz Perakende\nc) Irade Defterleri\nd) Cemaat-i Gayr-i Muslime Defterleri\ne) Meclisi Vukela Mazbatalari\nf) Dahiliye Nezareti, Kalem-i Mahsus Dosyalari\ng) Dahiliye Nezareti, Sifre Defterleri\nh) Babiali Evrak Odasi: Siyasi Kartonlar\ni) Babiali Evrak Odasi: Muhimme Kartonlari\n\nT.C. Disisleri Bakanligi, Hazine-i Evrak, Defterdarlik \n\na) Harb-i Umumi\nb) Muteferrik Kartonlar\n\nBritish Archives:\n\na) Parliamentary Papers (Hansard): Commons/Lords\nb) Foreign Office: Confidential Print: Various Collections\nc) Foreign Office: 424/239-253: Turkey: Correspondence - Annual Reports\nd) Foreign Office: 608\ne) Foreign Office: 371, Political Intelligence: General Correspondence\nf) Foreign Office: 800/240, Ryan Papers\ng) Foreign Office: 800/151, Curzon Papers\nh) Foreign Office: 839: The Eastern Conference: Lausanne. 53 files\n\nIndia Office Records and Library, Blackfriars Road, London.\n\na) L/Political and Security/10/851-855 (five boxes), \"Turkey: Treaty of\n Peace: 1918-1923\"\nb) L/P & S/10/1031, \"Near East: Turkey and Greece: Lausanne Conference,\n 1921-1923\"\nc) L/P & S/11/154\nd) L/P & S/11/1031\n\nFrench Archives\n\nArchives du ministere des Affaires entrangeres, Quai d'Orsay, Paris.\n\na) Documents Diplomatiques: Affaires Armeniens: 1895-1914 Collections\nb) Guerre: 1914-1918: Turquie: Legion d'Orient.\nc) Levant, 1918-1929: Armenie.\n\n\nOfficial Publications, Published Documents, Diplomatic Correspondence,\nAgreements, Minutes and Others\n\nA. Turkey (The Ottoman Empire and The Republic of Turkey)\n\nAkarli, E. (ed.); \"Belgelerle Tanzimat,\" (istanbul, 1978).\n(Gn. Kur., ATASE); \"Askeri Tarih Belgeleri Dergisi,\" V. XXXI (81),\n(Dec. 1982).\n----; \"Askeri Tarih Belgeleri Dergisi,\" V. XXXII (83),\n(Dec. 1983).\nHocaoglu, M. (ed.); \"Ittihad-i Anasir-i Osmaniye Heyeti Nizamnamesi,\"\n(Istanbul, 1912).\nMeray, S. L. (trans./ed.) \"Lozan Baris Konferansi: Tutanaklar-Belgeler,\"\n(Ankara, 1978), 2 vols.\nMeray, S. L./O. Olcay (ed.); \"Osmanli Imparatorlugu'nun Cokus Belgeleri;\nMondros Birakismasi, Sevr Andlasmasi, Ilgili Belgeler,\" (Ankara, 1977).\n(Osmanli Devleti, Dahiliye Nezareti); \"Aspirations et Agissements \nRevolutionnaires des Comites Armeniens avant et apres la proclamation\nde la Constitution Ottomane,\" (Istanbul, 1917).\n----; \"Ermeni Komitelerinin Amal ve Hareket-i Ihtilaliyesi: Ilan-i\nMesrutiyetten Evvel ve Sonra,\" (Istanbul, 1916).\n----; \"Idare-i Umumiye ve Vilayet Kanunu,\" (Istanbul, 1913).\n----; \"Muharrerat-i Umumiye Mecmuasi, V. I (Istanbul, 1914).\n----; \"Muharrerat-i Umumiye Mecmuasi, V. II (Istanbul, 1915).\n----; \"Muharrerat-i Umumiye Mecmuasi, V. III (Istanbul, 1916).\n----; \"Muharrerat-i Umumiye Mecmuasi, V. IV (Istanbul, 1917).\n(Osmanli Devleti, Hariciye Nezareti); \"Imtiyazat-i Ecnebiyye'nin\nLagvindan Dolayi Memurine Teblig Olunacak Talimatname,\" (Istanbul, 1915).\n(Osmanli Devleti, Harbiye Nezareti); \"Islam Ahalinin Ducar Olduklari\nMezalim Hakkinda Vesaike Mustenid Malumat,\" (Istanbul, 1919).\n----; (IV. Ordu) \"Aliye Divan-i Harbi Orfisinde Tedkik Olunan Mesele-yi\nSiyasiye Hakkinda Izahat,\" (Istanbul, 1916).\nTurkozu, H. K. (ed.); \"Osmanli ve Sovyet Belgeleriyle Ermeni Mezalimi,\"\n(Ankara, 1982).\n----; \"Turkiye Buyuk Millet Meclisi Gizli Celse Zabitlari,\" (Ankara, 1985),\n4 vols.\n\nRussia\n\nAdamof, E. E. (ed.); \"Sovyet Devlet Arsivi Belgeleriyle Anadolu'nun \nTaksimi Plani,\" (tran. H. Rahmi, ed. H. Mutlucag), (Istanbul, 1972).\n\nAltinay, A. R.; \"Iki Komite - Iki Kital,\" (Istanbul, 1919).\n----; \"Kafkas Yollarinda Hatiralar ve Tahassusler,\" (Istanbul, 1919).\n----; \"Turkiye'de Katolik Propagandasi,\" Turk tarihi Encumeni Mecmuasi,\nV. XIV/82-5 (Sept. 1924).\nAsaf Muammer; \"Harb ve Mesulleri,\" (Istanbul, 1918).\nAkboy, C.; \"Birinci Dunya Harbinde Turk Harbi, V. I: Osmanli Imparatorlugu'nun\nSiyasi ve Askeri Hazirliklari ve Harbe Girisi,\" (Gn. Kur., Ankara, 1970).\nAkgun, S.; \"General Harbord'un Anadolu Gezisi ve (Ermeni Meselesi'ne Dair)\nRaporu: Kurtulus Savasi Baslangicinda,\" (Istanbul, 1981).\nAkin, I.; \"Turk Devrim Tarihi,\" (Istanbul, 1983).\nAksin, S.; \"Jon Turkler ve Ittihad ve Terakki,\" (Istanbul, 1976).\nBasar, Z. (ed.);\"Ermenilerden Gorduklerimiz,\" (Ankara, 1974).\n----; \"Ermeniler Hakkinda Makaleler - Derlemeler,\" (Ankara, 1978).\nBelen, F.; \"Birinci Dunya Harbinde Turk Harbi,\" (Ankara, 1964).\nDeliorman, A.; \"Turklere Karsi Ermeni Komitecileri,\" (Istanbul, 1980).\nEge, N. N. (ed.); \"Prens Sabahaddin: Hayati ve Ilmi Mudafaalari,\"\n(Istanbul, 1977).\nErcikan, A.; \"Ermenilerin Bizans ve Osmanli Imparatorluklarindaki Rolleri,\"\n(Ankara, 1949).\nGurun, K.; 'Ermeni Sorunu yahut bir sorun nasil yaratilir?', \"Turk Tarihinde\nErmeniler Sempozyumu,\" (Izmir, 1983).\nHocaoglu, M.; \"Arsiv Vesikalariyla Tarihte Ermeni Mezalimi ve Ermeniler,\"\n(Istanbul, 1976).\nKaral, E. S.; \"Osmanli Tarihi,\" V. V (1983, 4th ed.); V. VI (1976, 2nd ed.);\nV. VII (1977, 2nd ed.); V. VIII (1983, 2nd ed.) Ankara.\nKurat, Y. T.; \"Osmanli Imparatorlugu'nun Paylasilmasi,\" (Ankara, 1976).\nOrel, S./S. Yuca; \"Ermenilerce Talat Pasa'ya Atfedilen Telgraflarin\nIcyuzu,\" (Ankara, 1983). [Also in English translation.]\nAhmad, F.; \"The Young Turks: The Committee of Union and Progress in\nTurkish Politics,\" (Oxford, 1969).\n\nSerdar Argic", "130": "As distributed, twm thinks everything with three or more colormap cells must\nbe a colour screen. Here's a patch to have it use the screen's visual class.\n\n*** twm.c.DIST\tWed May 12 14:56:55 1993\n--- twm.c\tWed May 12 15:47:53 1993\n***************\n*** 343,352 ****\n--- 343,384 ----\n \n \tScr->XORvalue = (((unsigned long) 1) << Scr->d_depth) - 1;\n \n+ #ifdef oldCode\n \tif (DisplayCells(dpy, scrnum) < 3)\n \t Scr->Monochrome = MONOCHROME;\n \telse\n \t Scr->Monochrome = COLOR;\n+ #else\n+ \t{\tXVisualInfo template;\n+ \t\tXVisualInfo *visualInfo;\n+ \t\tint nitems;\n+ \n+ \t\ttemplate.visual = DefaultVisual(dpy, scrnum);\n+ \t\ttemplate.visualid = XVisualIDFromVisual(template.visual);\n+ \t\ttemplate.screen = scrnum;\n+ \t\tvisualInfo = XGetVisualInfo(dpy, VisualIDMask|VisualScreenMask,\n+ \t\t\t\t&template, &nitems);\n+ \t\tif (nitems == 1) {\n+ \t\t\tswitch (visualInfo->class) {\n+ \t\tcase StaticColor:\n+ \t\tcase PseudoColor:\n+ \t\tcase TrueColor:\n+ \t\tcase DirectColor:\n+ \t\t\t\tScr->Monochrome = COLOR;\n+ \t\t\t\tbreak;\n+ \n+ \t\tdefault:\tScr->Monochrome = MONOCHROME;\n+ \t\t\t\tbreak;\n+ \t\t\t}\n+ \t\t}\n+ \t\telse {\n+ \t\t\t(void) fprintf(stderr,\n+ \t\t\t\t\t\"%d Visual match(es), assuming mono\\n\",\n+ \t\t\t\t\tnitems);\n+ \t\t\tScr->Monochrome = MONOCHROME; /* assume */\n+ \t\t}\n+ \t}\n+ #endif\n \n \t/* setup default colors */\n \tScr->FirstTime = TRUE;\n", "131": "\nWhat if.......\n\nWhat if the FBI thought that tear gas would force the Davidians out;\nat least the mothers and the children, so they (the FBI) did not\nbother to think about the effect of tear gas on young children......\n\nWhat if the FBI knew they killed several of the children by using\ntear gas......(let`s assume the FBI knew via their listening devices)\n\nWhat if the FBI saw fire accidently break out at one end of the\nbuilding, e.g. by an upset oil lamp.......\n\nWhat if the FBI thought they could finally force the rest of the\nDavidians out AND also destroy the evidence that they (the FBI) had\nkilled the children by starting a fire at the other end......\n\nWhat if the FBI miscalculated and not many of the rest of the Davidians\nmade it out.......?????", "132": "Try using Laser printer/copier paper, it works quite\nwell and is cheaper than HPspecial paper.\n", "133": "\n\nSo do other parts of the Bible when taken literally - i.e. the Psalms\nsaying the Earth does not move, or the implication the Earth is flat\nwith four corners, etc. The Bible was written to teach salvation, not\nhistory or science.\n\n\nWhat ones? Paryers for the dead or the intercession of saints? (Which\nare taught in 2 Maccabees, Sirach, and Tobit)\n\n\nBy your own subjective judgement. This falling short is your judgement,\nand you are not infallible - rather the Church of Jesus Christ is (see 1\nTimothy 3.15).\n\n\nMore subjective feelings. This is not a proof of anything more than\none persons feelings.\n\n\nAs I have written time and again, the Hebrew canon was fixed in Jamnia,\nPalestine, in 90 AD. 60 years after the foundation of the one, holy,\ncatholic, and apostolic Church. Furthermore, the opinons of Jerome do\nnot count. He was neither the Church, or the Pope, or an ecumenical\ncouncil, or a council in general, or an insturment of the Magisterium of\nthe Church. He was a private individual, learned admittedly, but\nsubject to erro of opinion. And in exlcuding the deuterocanon, he\nerred, as Pope Damsus, and the Council of Carthage, and the tradition of\nthe Fathers, clearly shows, as I pointed out in my previous post.\n\n\nI suggest you take heed of the last part of the statement, if you want\nto take it in the sense you are taking it, that taking away from the\nbook will cause you to lose heaven.\n\n\nThe order of the Canon is unimportant, it is the content that matters. \nNone of Jesus' statments exlcude the deuterocanon, which were\ninterspersed throughout the canon. And remeber, there are some\ncompletely undisputed books, Ezra, Nehemiah, Esther, Ecclesiatses, Song\nof Songs, Job, etc. that are not quoted in the New Testament, which is\nnot taken as prejudicial to their being inspired.", "134": "I am wanting to upgrade from a 386SX-25, to a 486DX-33, and are looking at a\ncheap quote from someone offering me a 486DX-33 motherboard, with no ram in\nit. (I will probably sell my old m-board off somewhere)\nNow, I have 4 meg of RAM in my 386, which consists of\n\n4 x 9 module 1024KB simms, running at 70 nanoseconds.\n ^^^^^^^^ ^^^^^^^^^^^^^^\nWould I encounter problems with the pointed out areas, by throwing these from\none computer to the other?", "135": "Please reply to the seller below.\n\nFor Sale:\n\nExabyte EXB-8500 8mm 5G Tape Drive\n-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-\n\n Writes 5G per 112M 8mm data grade tape UNcompressed\n Latest eeprom revs - fully compatible with Sun machines\n Black faceplate\n Seen Very Little Use (due to the fact that I have no 8mm tapes)\n\n Decided that money is more valuable than quick and convenient backups\n\n List: $3495.00\n Catalog Specials: ~$2495.00\n Your Price: $1900.00\n\n shipping extra\n\nPlease email responses to:", "136": "\n\nI and many others on a.a have described how we have tried to find god.\nAre you saying our efforts have not been sincere? For all the effort\nI have put in, there has been no outward nor inward change that I can\nperceive. What's a sincerely searching Agnostic or Atheist supposed to\ndo when even the search turns up nothing?\n\n\nHow do you \"accept that which you don't know\"? Do you mean that I must\nbelieve in your god in order to believe in your god?\n", "137": "\n\nNo. It's called \"not wiping off the apparatus after taking a picture of the\nwhole leaf.\"", "138": "I'm afriad that's not true. The monitor problem seems to occur whenever\nthe 15\" Mag monitor is put into 1024x768 mode. I'm running OS/2 at 1024 and\nthe same symptoms appear.\n\nIt does not seem like a video card problem as the Cirrus Logic 5426 chip and\nthe ATI GUP seem to cause these problems... two VERY different cards.", "139": "I>From: ccastco@prism.gatech.EDU (Costas Malamas)\nssupports pkzip 2.04. It does NOT require pkz/unzip in order to work, and \nccosts only $10 to register.\n", "140": "NOTE: followups to comp.dcom.modems (for obvious reasons)\n\n\n\n\nthe Courier is their top-of-the-line product, thus the higher price. I've\nnever taken a real look at the Sportster line (only Couriers), but from what\nI've gathered, it's basically more of an entry-level modem. probably\ndoesn't meet the same specifications that the Courier does. I'm not sure\nif the Sportster line is fully DSP driven like the (more recent) Courier\nmodems are, so upgrades in the future may be an issue.\n\nagain, take all of the above with a grain of salt...I've never evaluated\nthe Sportster, so I'm going by bits and pieces that I've heard. if you\nwant a real answer, post the question in comp.dcom.modems and you'll find\npeople who HAVE worked with the Sportster.\n\npersonally, though, if I were going to look at the Courier modems, I'd\nbuy the Dual Standard...then I'd get both HST and V.32bis. in fact, this\nis exactly what I did. :-) I'm sitting here looking at my USR DS right\nnow.\n\nand now, to correct a few VERY incorrect statements.... folks, if you want\nto get reliable answers to modem and/or UART questions, post them to\ncomp.dcom.modems. if you post in other groups, you never know what you'll\nget in the way of an answer (you may very well get a good answer...or you\nmay get something like the one below). at least in cdm, if someone posts\ncomplete and utter bs, you'll see a flurry of folks correcting them (to\navoid spreading faulty info).\n\n\njust as it does at lower speeds, too. there is absolutely nothing in\neither CCITT Recommendation V.42 or V.42bis that says that they can only\noperate on modems that are running V.32bis. V.42bis, of course, is\ncurrently only *STANDARDIZED* for operation on top of V.42 (in its primary\nmode of operation, LAPM), but that's about as far as that goes.\n\nand just in case there's some confusion on this, V.42/V.42bis are also\nsupported by the Courier line (unless you have a really ancient one).\n\n\ntake a second look at the original question:\n\n ^^^^^^^^^^^^^^\nsee the V.32bis up there? the question was not about the Courier HST\nmodem, or about the Courier Dual Standard...it was about the Courier\nV.32bis modem. the modem in question does not support HST, period. it\ntherefore does not support the 16.8 kb HST.\n\nalso, not all Courier HST / Courier Dual Standard modems support the 16.8 kb\nversion of HST. my Dual Standard only supports HST at 14.4 kb. there are\neven older models that only run HST at 9.6 kb.\n\n\nHST is USR's proprietary modulation scheme.... but we're not talking about\nHST, we're talking about V.32bis. V.32bis is most definitely *NOT* a\nproprietary modulation scheme.\n\n\nI do hope you didn't mean for these two sentences to be related in some\nway.....\n\nfirst off, V.32 and V.32bis are both synchronous and asynchronous. this is\npart of the CCITT Recommendation (i.e., part of the standard). it isn't a\nfeature unique to the Sportster (I just looked at the appropriate chapter\nin the Courier DS manual).\n\nsecond, HST is not ``one way only.'' more correctly put, it is an\nasymmetrical modulation scheme, meaning it doesn't work at the same speed\nin both directions. HST operates at [9.6 / 14.4 / 16.8] in one direction,\nand has a low-speed back-channel in the other direction. the high-speed\nchannel goes in the direction of the higher data flow. this is fine if\nyou're logged on to say, a BBS, and type one letter and get screens of\ninfo back, transfer files (not using bimodem), etc.... there is, of course,\na penalty for turnaround time when the high-speed channel needs to reverse\ndirections.\n\nV.32 and V.32bis are both symmetrical, meaning they do transfer the full\ndata rate in both directions at the same time.\n\nthird, synchronous vs asynchronous has absolutely nothing to do with\nsymmetrical vs asymmetrical...they are two completely different topics.\n\n\nagain, more correctly put, *SOME* of the Courier line will be upgradeable\nto whatever ``V.fast'' is called when it's complete. if you have the large\nfootprint Courier modems (like I do), you're S.O.L..... there was an\nupgrade plan a while back to upgrade to a small footprint variety, which\ncould eventually be upgraded to support V.fast, but the cost of the two\nupgrades together pretty much put it higher than just buying a new modem.\n\nlater.....\n --jim\n\n--\n#include 73 DE N5IAL (/4)\n------------------------------------------------------------------------------\nINTERNET: jim@n5ial.mythical.com | j.graham@ieee.org ICBM: 30.23N 86.32W\nAMATEUR RADIO: n5ial@w4zbb (Ft. Walton Beach, FL) AMTOR SELCAL: NIAL", "141": "Has anyone built Xkernel for 3/80's? It works great on our 3/50s, and I \nwould just as soon kiss the entire Sun 3 architeture goodbye (and reclaim \na bunch of disk space). Email me direct, I'll post a summary.\n", "142": "\nI too have had premature ventricular heartbeat, starting in 1974. (These \nare not, by the way, \"extra\" heartbeats. This is how they feel, and \nthis is how I described them initially to the doctor, but they're \nactually *premature* heartbeats. I would sometimes experience a lapse \nafter one of these that went on for a suffocatingly long period of time, \nmaking me wonder if my heart were ever going to beat again.) \n\nI had them persistently for eighteen years. Then I went on a low-fat \ndiet, and they just stopped. I haven't had a single episode of PVH \nfor almost two years. I know: correlation does not imply causation. \nThis is just FWIW. ", "143": " Is it realistic for the government to try to keep the details\nof the encrytion algorithm secret if it intends to use evidence from\nwiretaps in court? Won't defense attorneys attempt to obtain the\ndetails of the method if the prosecution attempts to present evidence\nfrom wiretaps in court? Is it certain that such attempts will fail?\n James B. Shearer\n", "144": "\n\n:-)\n\nI can just imagine it. The mother is wheeled into the labour ward. After\ndelivery a government agent steps up to read the baby its rights...\n\t\"You have the right to remain silent. If you give up this right anything\n\tyou say may be taken down and used in evidence against you.\"\n\n\t\"Waaaaaaaaah\"\n\n\n--\nAnthony Shipman \"You've got to be taught before it's too late,\nCP Software Export Pty Ltd, Before you are six or seven or eight,\n19 Cato St., East Hawthorn, To hate all the people your relatives hate,\nMelbourne, Australia, 3121 You've got to be carefully taught.\" R&H", "145": "\n\n\nYou should read the history. It was Hoover who stopped Nixon's COINTELPRO\ndead in its tracks because he said it was unconstitutional. They tried to\nget around him every way they could.\n\nDespite other things he may have done, for this alone, Hoover saved the\nConstitution.\n\nDavid\n", "146": "", "147": "\nWhoa! Watch your terminology. \"Dealer invoice\" is *not* \"dealer cost\".\nYou'll hear lots of ads screaming \"two dollars over dealer invoice!!!\"\nSounds like a real deal, huh? No. You know what the \"dealer invoice\"\n(also called factory invoice) is? It's a piece of paper with numbers\non it that the factory sends the dealer. What do the numbers\nsignify? Absolutely nothing. It's a marketing gimmick that the\nsalesman can wave in your face to impress you. Note that nowhere\non the \"invoice\" does it claim to be the real price of the car, and\nmost ads which mention dealer invoice will end with a very fast,\nlow voice saying something like \"invoice may not reflect actual\ndealer cost\". Actually, I *guarantee* it does not reflect actual\ndealer cost.", "148": "I am DESPERATELY trying to find a PC based e-mail wide area network service\nor the necessary network software to establish one myself. While I am aware\nthere are various BBS's and other similar services avalible (like Compuserve,\nCanada Remote Systems etc.) I require fairly specific criteria. In \napproximate order of importance they are:\n\n1) The mail/files/news are read/written locally and batched to the network\n server. (ie. no continuous on-line connection)(NOTE: all users are remote\n and will use modems over conventional phone lines.)\n\n2) Simple. The users I have for the system have very little computer knowledge\n have never heard of Unix, and have very little interest in learning. It is\n essential that the client software is completely pain-free.\n\n3) Cheap. We would prefer not paying high connect fees to an established\n commercial network, just so we can send large files between members of the\n group - hence (1). In addition I would like the network server to be\n something small, simple and inexpensive like a 486. (There are only about\n 40 people in the group, so it is not a huge network.)\n\n4) The capability for Internet access (for news/mail).\n\n5) Internet style id's (eg. pwood@math.uwaterloo.ca)\n\n\n If anyone knows of a system similar to what I am describing, even if it\ndoesn't sastisfy all my criteria, and I don't care where it is, PLEASE PLEASE\ne-mail me and tell me about it. We are not adverse to making alterations to\nan existing system if necessary.", "149": "I have a 105MB IDE drive and am having a few problems! I get \n'Data error on drive C' messages when reading some files. The problem is\nalso steadily getting worse.\n\nI have run some diagnostic software (PCTools V7.1) and it says that the\ndrive is OK - but it does have to retry some sectors and it briefly \nflashes up an error message (which is too quick to read).\n\nDoes anybody know of any cheap or free software which could mark these\nsectors as bad (DOS doesn't) or preferably perform a low level format.\nI have heard that the latter is possible on an IDE. Technical answers\nwould be appreciated. It would be nice to be able to use the disk again!!!", "150": "In <1993Apr24.214843.10940@midway.uchicago.edu> eeb1@quads.uchicago.edu\n\n\nIf the ONLY people proposing a \"moment of silence\" are doing so as a\nsham to sneak in prayers, then it MUST be opposed. What the HELL have\nprayers to do with public schooling? [I ask this question as a devout\nChristian.]\n\n\n\nTheir kids can bloody-well pray any God-damned time they WANT to. And\nnothing, on heaven or earth, in government or the principal's office,\ncan prevent or in any other way deal with their doing so. *Especially*\nif the prayer is silent (as bursting out into the \"Shema Yisrael\" or\nsome other prayer *might* be construed as disruptive if audible :-))\nNo one ever prevented ME from praying in public school! They hardly\neven prevented me from masturbating in study hall.\n\nI should have thought better of someone posting from a UChicago address.\nHow can you manage to say such nonsense without shame?\n\nMuslim students might have a complaint, if they are prevented from setting\nout their rugs and doing the proper ablutions before prayer at the times\nspecified in the Qu'ran. Jews would probably like the opportunity to daven\nwith tefillim and whatever else *they* require, at *their* appropriate times.\nI do not see THEM complaining (though Muslims and Jews have a case that no\nChristian I have ever heard has been able to make.)\n\nThe \"Christian\" insistence on a PUBLIC, UNIVERSAL, ENFORCED \"moment of\nprayer^H^H^H^H^H^Hsilence\" is nothing but the Inquisition \"naturalized\"\ninto the American context. It is offensive to the Gospel of Christ.", "151": "\n\n\na 286 upgrade would probably cost about $50, 386 about $150 or so. \nCoprocessors or accelerator cards would cost at least that much.\n", "152": "Does anyone have a pair of Sega 3-d glasses they're willing\nto part with? Or know of anywhere to acquire a pair, as they don't have \nthem around here!!!\n \n Thanks.\n \n \n _________________________________________________\n Inspiration | ___ |\n comes to | \\ o baden@sys6626.bison.mb.ca |\n those who | ( ^ ) baden@inqmind.bison.mb.ca |\n seek the | /-\\ =] Baden de Bari [= |\n unknown. | |", "153": "\nHere are a few ideas:\n\n1) a free library card so they can look up the FBI\n Uniform Crime Report which shows how good HCI is\n at lying through their teeth,\n\n2) a free RTD Transit Pass which will allow anti-gunners\n to tour South Central Los Angeles and convince\n people living there that they don't need guns to protect\n themselves because the police will do it for them \n (don't lose the pass, you'll need it to get out),\n\n3) a free bus ride to Vermont, which has almost no gun\n control and, curiously enough, almost no crime either,\n\n4) a free calculator, since anti-gunners have heretofore\n been unable to figure out what a small percentage of\n the guns owned in America are used to commit violent crime.\n\n--------------------------------------------------------------\nLee Gaucher NRA | My opinions.\ngaucher@sam.cchem.berkeley.edu | No one else's.", "154": "Is anybody using David Rapier's Hebrew Quiz software? And can tell\nme how to *space* when typing in the Hebrew? (space bar doesn't work,\nfor me anyway...) Email please; thanks.\n\nKen", "155": "\nAnyone from Alabama knows it should be:\n\nIs \"The Bear\" Catholic?\nDoes a Pope shit in the woods?", "156": "---\nHello!\n\nWe want to configure our X11R5 sytem (i486 33Mhz running BSD-like UNIX)\ncomming up with a chooser menu with different machines on it (works) an then\nconnect to them. But the only connection works is localhost!\nAn 'X -indirect ' works very well!\nThe configuration:\n\n\t\t- starting the 'xdm' at boot time with no servers specified\n\t\t in Xservers\n\t\t- starting the X-server at boot time with X -indirect localhost\n\n\t ---> the chooser menu appears with the machines named in\n\t\t Xacces bye\n\t\t\t'*\tCHOOSER ... BROADCAST\t\n\t\t- the number of users on this machines and the load is \n\t\t displayed correct\n\n\t\t- selecting an other machine than my own host the X-server\n\t\t starts and nothing happens, after a time out the CHOOSER menu\n\t\t appears again.\n\nI know the xdm bug in X11R4, but all machines running X11R5\n\nPlease help\n\t\t\tLars\n\n\n-------------------------------------------------------------------------------", "157": "\nI would change one of the many parts that define my cultural identity.\nIf I loose a leg, it might change my personality, but I do not\nstop being a human being. \nEven more, when someone gets a baboon heart, that person is still\nhuman.\n\n\nNot really. That is what differenciates agnostics from atheists.\nAs an atheist, I do not believe there is a god, nor do I believe that\nthere ever was one.\nSo, those commandments have no meaning to me. Also, there are a lot\nof ideas that have no meaning to me: The idea of a chosen people,\nthe idea of a given right to the land of Israel, the idea of keeping\nkosher, the idea of opposing intermarriage, the idea of having a \nTorah that was inspired by god, etc. \nBy being an atheist, I cannot support the idea of the Jewish Nation\nas defined by a religious principle or based on a religious identity.\nFor me, religion is just another piece in what constitutes the cultural\nidentity of the Jewish people. I believe that as a people with a \ncultural identity they constitute a Nation and have the same right as\nany other people in the world to have their own State. The same right\nas the Armenians have, as the Palestinians have, as the French have,\nand as anybody else have.\nI cannot say that by accepting a different god someone has lost all \ncultural identification. \n\n", "158": "Get the generic version (for Unix and VMS) and build it. IMHO a\nVMS .com file to build it is supplied.\nAs the distribution comes as .tar.Z you should either have uncompress\nand tar on VMS or a UNIX flavoured machine handy.\nUsually you won't find this on IBM-PC specific archives, but on the better\nones :)\n", "159": "I must say that I have been a customer of Midwest Micro for over 4\nyears now, and have been well taken care of on each purchase.\nI have had many friends that have bought that same modem and (THEY)\ndo have some experience with setting up modems, so there have been\nno problems in 6 of them that I know of. The fact that your time\nto valuable for you to spend on the modem is where you went wrong.\nWHY you say because I must tell you of the 12 yes I say 12 PPI modems\nthat I have had in the past that I was trying to use on my bbs. They\nall were junk and were replace 3 times each, to ther point that\nI just said forget it and I wanted my money back. PPI's teck even\nsaid that they didn't even repair them. That they just strip the\nparts that are good and junk thr rest of the modem.\nI think it was more your fault than Midwest Mirco's faulkt...Sam", "160": "\n\n Huh? Where did you get this idea from? I think you got this\nbackwards. The Duo's memory is faster than its equivalent desktop\nmachine by 5-10% (and the rest of the powerboks). I think the\nexplanation for this was that it can refresh faster (in 2 instead of 5\ncycles I believe). Things that could affect performance would be\nfactors such as use of functions enhanced in the FPU (which the Duo\ndoesn't have undocked). Extensions and background applications can\nslow your computer down too. Real life differences in speed are likely\nto be influence by the software you are running, what kind of screen\ndepth you are running etc.\n\nEspen", "161": "\n\nNonsense! I wasn't asked if Larry O'Brien should trust Nixon with his keys,\nbut whether I would.\n\nDavid", "162": "\n Well I was watching Hockey Hotline last night and Stan said that the\nstation (KBL) had been recieving calls all day concerning this subject. \nAnd the verdict was that almost exclusively NOBODY wanted that load\nmouth, know it all blow hard, former Bruin whiner, Ulf Hating, scum\nsucking, Pr*ck of missery in Pittsburgh on a permanent basis. That's\nnot exactly what Stan said; I did do a bit of interpriting.\n", "163": "\nNot bad. We had a similar situation. Slowpitch softball, bases loaded,\nweakest hitter at the plate. He hits a line drive over the third\nbaseman's head that hooked and hooked and finally landed ten feet in\nfoul ground, almost hitting the fence down that side of the field.\nBut the umpire called fair ball! I was coaching third, yelling at evrybody \nto move up a base. The ump's position: \"it was still fair when it\npassed third base\". \nWhy the other team didn't immediately protest I'll never know; we\ncertainly weren't going to argue about it, since every body did manage\nto advance one base safely.\n\nThere was also the time when a batted ball ricocheted off my (runner\nfrom second base) leg, fielded by the SS, steps on second to force the\nrunner from first, and throw to first in time for what the umpire\ncalled a triple play; protest removed when we won the game anyway.", "164": "\n\nTaking this at face value (though it seems quite dissonant with much else\nthat has been published here about brute force DES cracking, unless Russell\nwas lucky with respect to the key), I'd be very interested in whether the\nprogram Russell used is available? In whether he used a cleartext\nrecognition algorithm in the program or whether he had to examine each\ndecryption by hand? In whether he used a known plaintext attack?\n\nHe probably should also tell us, given his address, what machine he used--a\ndesktop, workstation, or super-computer.\n\nDepending on his answer, this could be an appalling development calling into\nquestion both DES and RSA/DES. Dunno about RSA/IDEA.\n\nIf any bright programmer with a little idle machine time can crack a single\nDES message in a couple of days (assuming no tricks that are\nmessage-specific), then here's my Clipper key, NSA; give me the chip at\nonce. :-)\n\nDavid", "165": "(This is a continuation of an earlier post)\n\n\n(I am sorry you found this offensive. It was not my intent to offend. I was \nleading up to another point, which I discuss in more detail below.)\n\n\nI can see you have a revulsion for bestiality that far exceeds my distaste for \nhomosexuality. Certainly if I spoke about homosexuality the way you speak of \nbestiality, nobody would have any trouble labelling me a homophobe. Let me ask \nthis gently: why are you so judgemental of other people's sexual preferences? \nWhat happened to \"No doubt I am free to do anything\"? I think you have a \nserious double standard here. When you describe a comparison between \nhomosexuality and bestiality as \"slimey\" and \"sleazy\", you are making an \nimplicit judgement that bestiality is perverted, sinful, disgusting, \nunnatural--in short, all the things that society once thought about \nhomosexuality. Not all people share your view. You claim not to know any \nsincere zoophiles, but this does not mean that they do not exist. They even \nhave their own newsgroup: alt.sex.bestiality. Are you going to accuse them \nall of being mere \"jokers\"?\n\nI notice you deleted the main point of my comment: the fact that the only \nBiblical condemnations of bestiality occur in connection with the Levitical \nprohibitions against homosexuality. While there are some New Testament \npassages that can arguably be taken as condemning homosexuality, there are none \nthat condemn bestiality. One of your main points seems to be that Christian \nhomosexuality is acceptable due to the lack of any \"clear\" New Testament \nstatements against it; if this is a valid argument, then should not Christian \nzoophilia be made that much more acceptable by the fact that the New Testament \nmakes no reference, clear or unclear, to the subject at all?\n\nI am quite serious here. If I am going to accept homosexuality as Biblically \nacceptable on the basis of your arguments, then I am going to be fair and apply \nthe same standards to everyone else's declared sexual preferences as well. If \nthe arguments you make for homosexuality can be applied to other sexual \npreferences as well, I'm going to apply them and see what comes up. I'm not \ntrying to \"torpedo a serious issue\" by using what you label \"a ridiculous \njoke\". I posted a question about how we should interpret Biblical guidelines \nfor Christian sexuality, and I don't think such a question is \"irrelevant\" in a \ngroup called \"soc.religion.christian\". The Bible discusses homosexuality and \nbestiality together in the same context, and therefore I feel I have a good \nprecedent for doing the same.\n\n\nI don't know whether it makes any difference, but for the record, this is not a \nside issue for me. I believe loving one another includes not encouraging \npeople to defile themselves, therefore it is of high importance to determine \nwhether God regards certain sexual acts as defiling. I can read in the New \nTestament that \"God has joined together\" heterosexual couples, and that the \nmarriage bed is undefiled. I can read in the Old Testament that homosexual \nintercourse and bestiality defile a person whether or not that person is under \nthe Law. If gay Christians can validly put aside the Old Testament standards \nof defilement, then I want to know so that I can fairly apply it to all the \nsexual practices that defiled a person in the old days. I don't think it's \nright to take just bits and pieces of the Law and try and apply them to \nChristians today, e.g. bestiality still defiles you but homosexuality doesn't. \nThat was pretty much what you said earlier, right? You used different \nexamples, but I think you said essentially the same thing about it being wrong \nto apply only certain parts of the Law to Christians. \n\n\nIt was not my intent to stir up such an emotional reaction. I personally don't \nget all that upset discussing alternatives to the monogamous heterosexual \norientation; I'm afraid I naively assumed that others would have a similar \nattitude. Please note that I have never intended to equate homosexuality with \nchild abuse. I have merely noted that, for all the lack of \"clear\" NT \ncondemnation of homosexuality, there is an even greater lack of NT condemnation \n(or even mention) of bestiality, a practice which a number of people (e.g. on \nalt.sex.bestiality) consider to be their true sexual orientation.\n\n\nThis is an excellent question, and I pray that you will not treat it as a mere \nrhetorical question, but will genuinely seek to discover and understand the \nanswer. I recommend you begin with a little introspection into why you \nyourself have much the same attitude towards zoophilia. Why do you find \nbestiality so repugnant that you regard it as slanderous to even mention in \nconnection with other alternative sexual orientations? Why do you not apply \nall the same verses about love and tolerance to zoophiles the way you apply \nthem to homosexuals?\n\nIs it because you automatically experience a subjective feeling of revulsion at \nthe thought? A lot of people have the same experience at the thought of \nhomosexual intercourse. Is it because you regard the practice as socially \nunacceptable? A lot of people regard homosexuality as socially unacceptable. \nDo you feel that it violates the traditional Judeo-Christian standard of sexual \nmorality? Many people feel that homosexuality does. Do you feel the Bible \ncondemns it? Many people think the Bible says more to condemn homosexuality \nthan it does to condemn bestiality. Why then do you think comparing bestiality \nwith homosexuality is insulting to homosexuality? If you can honestly answer \nthis question, you will have come a long way towards understanding why many \npeople feel the same way about homosexuality as you feel about bestiality.\n\nAlso please note that I am not in any sense condemning *people*. I am merely \npointing out that when I read the Bible I see certain sexual *practices* that \nthe Bible appears to condemn, e.g. sex outside of marriage. When I say I think \nadultery and pre-marital sex are sinful, do you take that as me failing to love \nmy neighbor? When you treat bestiality as something disgusting and \nunmentionable, are you disobeying \"repeated orders not to judge or condemn \nothers\"? When you say other Christians are guilty of sinning by condemning you \nand judging you, are you by that accusation making yourself guilty of the same \noffense? Or are you and I both simply taking note about *practices* the Bible \nbrands as sinful, and leaving the judgement of the *people* up to God?\n\n\nI'm not sure what you mean by the above two paragraphs. If you mean that Jesus \nis the Truth, and that He accepts sinners, and does not reject them, then I \nagree. If we were not sinners, then we would not *need* a Savior. Our \nsalvation in Christ, however, does not mean that sin is now irrelevant for us, \nand we can now do whatever we want. Nor does Christ's grace mean that those \nwho refer to sin as \"sin\" are being judgemental or intolerant. I am speaking \nin general terms here, not specifically about homosexuality. If the Bible \ncalls something \"sin\", then it is not unreasonable for Christians to call it \nsin too.\n\nAs applied to Christian homosexuality, I think the only definitive authority on \nChristian sexuality is the Bible. If you make a list of everything the Bible \nsays on the subject of homosexual intercourse, I think you will find that every \nverse on the list is negative and condemning at worst, and \"unclear\" at best. \nThe most pro-gay statement you could make about the list is that there is some \ndispute about the New Testament verses which many people interpret as \ncondemning homosexual intercourse. That is, from a gay perspective, the most \npositive thing you can say about the Bible's treatment of homosexuality is that \nsome verses fail to clearly condemn it. That's it. Jesus declared all foods \nclean, the council at Jerusalem declared that Gentiles were not required to \nkeep the ritual Law, but nobody ever reclassified homosexual intercourse from \nbeing an abomination deserving of death to being an accepted Christian \npractice. You have verses describing homosexual intercourse as an abomination \nthat defiles both Jews under the Law and Gentiles not under the Law, and you \nhave some verses which are at best \"not clear\" but which some people believe \n*are* clear in their condemnation of homosexual behavior, and that's the sum \ntotal of what the Bible says about same-sex intercourse.\n\nI can appreciate (from personal experience) your desire to have everything \nsimple, cut-and-dried, black-and-white, what-I-want- is-ok, and \nthose-who-oppose-me-are-wicked. However, I do not think the Bible makes your \ncase as definitively as you would like it to. In fact, I don't believe it says \nanything positive about your case at all. Yes, I know the verses about loving \none another, and not judging one another, but that's not really the issue, is \nit? You know and admit that there are still things that are sinful for \nChristians to do, since you say it is wrong for Christians to condemn you. \nTherefore, the issue is whether the Bible says homosexual intercourse is a sin. \nEven if you do challenge the clarity of the New Testament verses, you are still \nleft with the fact that the only thing the Bible does say clearly about \nhomosexual intercourse is that it is an abomination that defiles both those who \nare under the law and those who are not.\n\n- Mark\n", "166": "\n\nDiplomatic :-)\n\nI realize I'm fighting Occam's razor in this argument, so I'll try to\nexplain why I feel a mind is necessary. \n\nFirstly, I'm not impressed with the ability of algorithms. They're\ngreat at solving problems once the method has been worked out, but not\nat working out the method itself.\n\nAs a specific example, I like to solve numerical crosswords (not the\nsimple do-the-sums-and-insert-the-answers type, the hard ones.) To do\nthese with any efficiency, you need to figure out a variety of tricks.\nNow, I know that you can program a computer to do these puzzles, but\nin doing so you have to work out the tricks _yourself_, and program\nthem into the computer. You can, of course, 'obfuscate' the trick, and\nwrite the program so that it is uncovered, but as far as I can see,\nthe trick still has to be there in some form to be discovered. Does\nthis mean that all the ideas we will ever have are already\npre-programmed into our brains? This is somewhat unlikely, given that\nour brains ultimately are encoded in 46 chromosomes worth of genetic\nmaterial, much of which isn't used.\n\nOne way around this is to bring the environment into the equation, but\n(again, as far as I can see) this still has an air of 'if you see\nobject X, then perform action Y,' and we don't seem to get anywhere.\nThe algorithm has to anticipate what it might see, and what\nconclusions to draw from it's experience.\n\nThe other problem with algorithms is their instability. Not many\nalgorithms survive if you take out a large portion of their code, yet\npeople survive strokes without going completely haywire (there are\nside-effects, but patients still seem remarkably stable.) Also,\nneurons in perfectly healthy people are dying at an alarming rate -\ncan an algorithm survive if I randomly corrupt various bits of it's\ncode?\n\nThe next problem is the sticky question of \"What is colour?\" (replace\n'colour' with the sensation of your choice.) Presumably, the\nmaterialist viewpoint is that it's the product of some kind of\nchemical reaction. The usual products of such a reaction are energy +\ndifferent chemicals. Is colour a mixture of these? If this is so, a\ncomputer won't see colour, because the chemistry is different. Does an\nalgorithm that sees colour have a selective advantage over an\nequivalent that doesn't? It shouldn't, because the outputs of each\nalgorithm ought to be the same in equivalent circumstances. So why do\nwe see colour?\n\n\n\nA bit of idle speculation...\n\nIf I remember correctly, quantum mechanics consists of a wavefunction,\nwith two processes acting on it. The first process has been called\n'Unitary Evolution' (or 'U'), is governed by Schroedinger's equation\nand is well known. The second process, called various things such as\n'collapse of the wavefunction' or 'state vector reduction' (or 'R'),\nand is more mysterious. It is usually said to occur when a\n'measurement' takes place, although nobody seems to know precisely\nwhen that occurs. When it does occur, the effect of R is to abruptly\nchange the wavefunction.\n\nI envisage R as an interaction between the wavefunction and 'something\nelse,' which I shall imaginitively call 'part X.' It seems reasonable\nto assume that _something_ causes R, although that something might be\nthe wavefunction itself (in which case, part X is simply the\nwavefunction. Note, though, that we'd need more than U to explain R.)\n\nAnyway, I'm speculating that minds would be in part X. There seems to\nbe some link between consciousness and R, in that we never see linear\nsuperpositions of anything, although there are alternative\nexplainations for this. I've no idea how a brain is supposed to access\npart X, but since this is only speculation, that won't matter too\nmuch :-) My main point is that there might be a place for minds in\nphysics.\n\nI'll go back to my nice padded cell now, if that's OK with you :-)\n\n\n-- \n------------------------------------------------------------------------\nKevin Anthoney kax@cs.nott.ac.uk\n Don't believe anything you read in .sig files.", "167": "\nI'd get the IIci. It's more expandable, just as fast, and preserves the\noption to run System 6.\n\nDavid Gutierrez\ndrg@biomath.mda.uth.tmc.edu", "168": "\n STILL, the Angel Gabriel's greetings was:\n \"Hail Mary, full of grace, the Lord is with you.\n Blessed art thou amongst women\".\n\n Even Mary was confused about this greeting.", "169": "\nYow! Am I ENCRYPTING yet?\n\nDidn't we go over this guns'n'crypto discussion a few months ago? Must\nwe go over it again?", "170": "\nYour starting to sound like a little child who wants ice cream. If you\nkick and scream enough you think people will believe you. Sorry proof\nby vigorous ascertion doesn't hold any water. I can insist that cats\nare dogs all day, it doesn't make it so. ", "171": "\nTrue, but the basic idea behind any communications security system is not\nto absolutely deny access, but to make access more expensive (in time,\nmoney, manpower) than it is worth.\n", "172": "Hi everybody ...\n\nWell I don't know if this is a known problem\nto you in the big state but over here in Europe\nit is in some places ...\nIt just happened to me and I payed A LOT to get my \nnew Honda Civic repaired.\nA marten choose my car to stay one night in and this\ndamn little animal damaged almost everything which\nwas plastic/rubber ..\nI never thought that these little #@%##@ could do that\nmuch damage.\n\nSo to ALL you car owners out there :\n\nIs there a GOOD known method of gettin' rid of this animal ???\nexcept for waiting all night long beneath my car with a gun ???\n\nHELP IN ANY FORM WOULD BE APPRECIATED VERY VERY MUCH !!!!\n\n\n\ne-mail: scheer@faw.uni-ulm.de\n\n", "173": "Mike, Ring is the RED wire. Tip is the GREEN wire of most standard\nphone lines. They two constitute the two wires most often used for\nvoice telephone (the two live lines). They are the two innermost\nconnectors of an RJ-11 phone jack.\n\nAnother way of telling is that if you measure voltage from RED to\nGREEN (ring to tip. tip/green being at ground potential of the\nvoltmeter), it should read -48 volts in the on-hook no-ring position).\nI am 98% sure it's -48 V and not +48 volts. Doesn't hurt a phone too\nmuch if they're reversed, it's just bad if one happens to somehow get\ngrounded to earth ground elsewhere).\n\nAdditionally, when off-hook, the voltage drops to about -4 to -9 Volts\nDC. I think it is supposed to correspond to a 36 to 40 mA current\nloop. And lastly, when ringing, the two wires develop an AC potential\nof about 80 V p-p at 20 to 30 Hz across them (where you get the\nelectromechanical old fashioned bell ringer from).", "174": " \t\nIf, if, if.... Anyway, the question was if the gun was identifiable, which\nit is.\n\n-Tim", "175": "I have been hearing bad thing about amalgam dental fillings. Some say\nthe lead/ mercury leeches into your system and this is bad. And I have\nrecently heard that there is some suspicion that the mercury is a breeding\nground for bacteria that will be resistant to antibiotics. \n\nMy dentist wants to use an amalgam filling for me in a place where I have\ntwo cavaties in one tooth and wants to use one filling to cover both.\nHe says that composite filling don't hold up well when they are large.\nSo, I would like to know if there are any other choices besides amalgam\nand composite. And, should I really even be worried about amalgam? I\nheard that some scandanavian country does not even use them any more- \nis this true.\n\nAny information you can give me will be greatly appreciated.\n\n\nThanks!", "176": "\n\n\tSome TV's, including my RCA set at home, uses simple carriers\nwhich I think run between 32 and 36 or 38 KHz. There is no tone decoding\nin it. All one has to do to piss the thing off :-) is just hook an\nIRLED up to a variable oscillator and tune through. Wreaks all kinds\nof havoc. :-)\n\n\tSimilarly, my VCR remote changes channels on my cable box. Always\nseems to change the cable box to channel 5 when you do the pause/play.\n\n\tSOOOO, some things do have some overlap to them.", "177": "...\n\nThanks for posting the exact wording which I had not seen\npreviously. The part I quote above seems to me to indicate\ndisapproval of capital punishment - it is to be used only when\nother means are not sufficient; I would say this is a stronger\nrestriction than saying that capital punishment is useable when\njustifiable. I would certainly say there are cases where a\ncrime justifies death (perhaps this is the Old Testament\ninterpretation), but my reverence for life would say that I\nwould oppose the actual infliction of the death penalty (a New\nTestament interpretation?). It is a matter for debate whether\nthe death penalty works to keep the peace in a way that\nnon-violent provisions do not. I don't believe it does, and I\nwould certainly observe that in the USA, where you have the\ndeath penalty, there is a far higher murder rate than here in\nthe UK, where we do not.", "178": "I want All-Star Tickets does anyone know how I can get\nsome?\n\nAre they for public sale or are they sold out?\n\nOr do you just have to work for a company with some\n\nAnyway any answers would be appreciated.\n\nPlease E-mail me.", "179": "\n\nI bought mine at the MOW storefront.\nIts not plastic, its woven material.\n\nbut I think you miss the point.\nits not about the five bucks in your pocket, its about supporting the\nmarch and helping to pay for all the printed materail and scehdulkes and\norganisation and...\n\nall leading up to the literal *birth* of Queer visibility in this country.\n\nup to this point all our news coverage has been driven by events thatb\nhappen to us. \nthis event is happening by our direct action.\nof course the last MOW was the same thing but they ignored us.\nI guess that was just labor pains.\nperhaps they will ignore us again, in which case we will come in\neven largeer numbers next time.\n\nLst night in DC there were so many queers out and about you could hardly get\nin any place.\nI suspect thatb over the next two days that will become exponentially\nlarger.\n\nTo my mind this is a physical bsuting down of the collective closet of\nqueer invisibility.\n\nthe five bucks is insignificant.\n\nLUX ./. owen\n\n\n", "180": "\n\nOwieneramus. Always has to stick his 'ASALA/SDPA/ARF' made nose into \nevery discussion with non-points and lies. Well, still anxiously\nawaiting...\n\n\nSource: Cemal Kutay, \"Ottoman Empire,\" vol. II., p. 188. \n\n\"The atrocities and massacres which have been committed for a long time\n against the Muslim population within the Armenian Republic have been \n confirmed with very accurate information, and the observations made by\n Rawlinson, the British representative in Erzurum, have confirmed that\n these atrocities are being committed by the Armenians. The United States\n delegation of General Harbord has seen the thousands of refugees who came \n to take refuge with Kazim Karabekir's soldiers, hungry and miserable, \n their children and wives, their properties destroyed, and the delegation\n was a witness to the cruelties. Many Muslim villages have been destroyed\n by the soldiers of Armenian troops armed with cannons and machine guns\n before the eyes of Karabekir's troops and the people. When it was hoped\n that this operation would end, unfortunately since the beginning of \n February the cruelties inflicted on the Muslim population of the region\n of Shuraghel, Akpazar, Zarshad, and Childir have increased. According\n to documented information, 28 Muslim villages have been destroyed in the\n aforementioned region, more than 2,000 people have been slaughtered,\n many possessions and livestock have been seized, young Muslim women\n have been taken to Kars and Gumru, thousands of women and children who\n were able to flee their villages were beaten, raped and massacred in the\n mountains, and this aggression against the properties, lives, chastity \n and honour of the Muslims continued. It was the responsibility of the\n Armenian Government that the cruelties and massacres be stopped in order \n to alleviate the tensions of Muslim public opinion due to the atrocities \n committed by the Armenians, that the possessions taken from the Muslims\n be returned and that indemnities be paid, that the properties, lives,\n and honour of the Muslims be protected.\"\n\n\nSerdar Argic", "181": ": \n: How about contaminants on the corn, e.g. aflatoxin???\n: \nLittle alflatoxin on commercial cereal products and certainly wouldn't\ncause seizures.\n", "182": "\n\nThat doesn't answer my question: Can you give a proof that it is an official\npolicy of any Israeli government to kill \"neutral observers\" or UN personel\nor others like them?\n\nI wasn't sure that your original statement was wrong and was prepared to\nrecieve proofs that you are right (since I don't follow the events closely).\nYour last response made me pretty damn sure that at least YOU can't give such\na proof, and you made your original statement without much ground to put it\non.\n\n\nEven if it's true (and in this case I'd take it without asking you to prove it)\nit is still far from killing reporters. Also whenever that happened I'll bet\nit happened as individual actions by certain soldiers and not as a policy of\nthe government (e.g. see the Hawara case where a colonel was sentenced for\ngiving orders to kick Arabs, as far as I remember).\n\nBye,\n", "183": " | \n | > Mary at that time appeared to a girl named Bernadette at \n | > Lourdes. She referred to herself as the Immaculate Conception.\n | > Since a nine year old would have no way of knowing about the \n | > doctrine, the apparition was deemed to be true and it sealed \n | > the case for the doctrine. \n |Bernadette was 14 years old when she had her visions, in 1858, \n |four years after the dogma had been officially proclaimed by the \n |Pope. \n | \n | Yours, \n | James Kiefer\n\nI forgot exactly what her age was but I remember clearly\nthat she was born in a family of poverty and she did not\nhave any education, whatsoever, at the age of the apparitions.\nShe suffered from asthma at that age and she and her family were\nliving in a prison cell of some sort.\n\nShe had to ask the 'Lady' several times in her apparitions about \nwhat her name was since her confessor priest asked her to do so. \nFor several instances, the priest did not get an answer since \nBernadette did not receive any. One time, after several apparitions\npassed, The Lady finally said, \"I am the Immaculate Conception\".\nSo, Bernadette, was so happy and repeated these words over and\nover in her mind so as not to forget it before she told the\npriest who was asking. So, when she told the priest, the\npriest was shocked and asked Bernadette, \"Do you know what\nyou are talking about?\". Bernadette did not know what exactly\nit meant but she was just too happy to have the answer for\nthe priest. The priest continued with, \"How did you remember\nthis if you do not know?\". Bernadette answered honestly that\nshe had to repeat it over and over in her mind while on her\nway to the priest...\n\nThe priest knew about the dogma being four years old then.\nBut Bernadette did not know and yet she had the answer which\nthe priest finally observed and took as proof of an authentic\npersonal revelation of Our Lady to Bernadette.\n\n(Note: This Lady of Lourdes shrine has a spring of water which\nour lady requested Bernadette to dig up herself with her\nbare hands in front of pilgrims. At the start little\nwater flowed but after several years there is more water \nflowing.)\n\n-Marida\n \"...spreading God's words through actions...\"\n -Mother Teresa\n\n\n\n", "184": "So what is your definition of \"interfering with the fielder taking the throw\"?\n\nThe rule book certainly doesn't have a definiton or clarification, so it's\npossible to interpret the rule as saying that if the catcher has to alter\nhis throw to avoid hitting the batter-runner, then again we have interference.\nYou know, it seems that there is no way to apply this rule justly--if the\ncatcher (or the pitcher, say Rob Dibble, for example) throws toward first\nand hits the runner running inside the baseline, the fielder takes the chance\nof being ejected. Therefore he probably would throw around the runner or\n(your scenario) above him.\n\nYou should note that in our American Legion League, (which uses MLB rules) we\ninterpret the rule to say in this very circumstance there IS interference\nper rule 7.09.", "185": "Hi there,\n\n\n Do someone of you have a program for sending a key event\nto another window but it MUST appear in that window....\n\nI have used xsendevent.tar package but it does not do that !!!\n\nFor example, if I get a program executing:\n\n--------------\n#!/bin/sh\nread something\n....\n....\necho $something\n....\n....\n--------------\n\nand if I send the key event \"a,a\"\nto that window then I will get:\n\nsomething=a\n\n\nThanks in advance.\n\n\n-- ", "186": "Could someone explain how to make sense of drag coefficients (i.e Cd) mentioned in magazines. I understand that lower numbers signify better aerodynamics but\nwhat does this mean in the real world. Is there a way to calculate new top speeds(assuming the car is not rev limited at top speed) or mileage benefits if a identical car had the Cd reduced from .34 to .33.", "187": "Title says it all, I'm after a Vectrex system. If you have one and want\nto get rid of it let me know.\n\nI can offer cash, or possible trades with Megadrive and SNES games.\n\nCheers\nMarc\n\n ------------------------------------------------------------------------------\n ** ** * ****** *** * | On the net,\n ** * ** *** ** ** * * | no-one can hear you scream!\n ** * ** *** **** ** * * |------------------------------------\n ** * ** *** ** ** * * | email marc@comp.lancs.ac.uk\n ** * ****** * ****** ** ** | marc@computing.lancaster.ac.uk", "188": "1988 Toyota Supra, Fully loaded automatic.\nMaroon color with leather interior.\nAlpine stereo system with CD changer.\nAlpine car alarm\n90,000 miles, great condition, one owner.\n\nHave to leave country in June.\n\nAsking $9,000 o.b.o.\n\nPlease call (310) 212 - 5376 and ask for Cary.\n\n-- \n---------------------------------------------------------------------------\nBernard Lin\t\t\t\t Departmental Research Assistant\nComputing and Information Services\t\tColumbia Business School", "189": "\n\nWhat's so special about this label, that their discs are going for\nupwards of $6 more than most retail outlets average prices for CDs?\n", "190": "\n\n\n BUT... Suppose they had waited. The WORST outcome would have been the\none that actually did. But with the FBI/ATF just standing there watching\ninstead of being a part of the problem. It then would have been very clear\nexactly who was at fault then, rather than the way it turned out.\n\n AND, that would have been the WORST case. The best would have been, they\nfinally get hungry and come out. Possible/likely? Well, the alternative was\nworse...\n\n\n\n But what does it matter? Why say \"I don't remember....\" when it doesn't\nmake any difference? Altho the clintonettes have been pretty good at lying\nwhen it wasn't necessary, they didn't do it this time. But it wasn't \nnecessary - claiming full responsibility is a totall meaningless gesture.\nSymbolism over substance - again! \n\n I've offered to take full responsibility. When do they pay me the big\nbucks the AG is making...???? ;^)\n-- \n-------------------------------------------------------------------------", "191": "For sale : Red Honda Scooter (150cc)\n\nNeed m/c license\nMax speed - 63 mph\nGas mileage - 74 mpg\nMax wt - 250 lbs\nOdo. reading - 3000 miles\n - it has only been out of the factory for 3 years\n - very low mileage\nOriginal Owner - all paperwork available\nVery thorough tune-ups quarterly\nYear - 1986\nBody - Not a scratch, garaged and covered always\nCover and 2 helmets included\nGood for student or light commuter or for fun :)\n$1300 or best offer\n\ne-mail or call in evenings \nSusan Hodapp\n(919)833-8431", "192": "\nDo not presume to tell me what I have and have not read. The system may\nnot rely upon registering people as owning particular phone units, but\nit is necessary to know which phone units are likely to be used for some\nsuspected criminal communication before you can obtain their unit keys\nfrom escrow. This necessity raises the stakes in favor of a criminal's\ncoercing or colluding use of some other person's Clipper phone.\n\nI will restate my assumptions more explicitly and amplify my argument.\nThe original title perhaps should have been \"Distinction between legal\nand illegal cipher systems considered harmful\", but \"Clipper considered\nharmful\" is not inaccurate, and is more eye-catching in the current context.\n\nAssumptions:\n\n 1. Clipper is made available.\n\n 2. Laws are passed to make use of cipher systems other than Clipper illegal\n (either on radio systems, or on any common carrier system). These laws\n also include enforcement authority to listen across the relevant radio\n spectrum (or other medium), characterize signals, validate Clipper\n wrappers, detect probable use of non-Clipper ciphers, and make such\n detection a cause for further action.\n\n 3. For escrowed keys to be useful, some specific Clipper chip must be\n associated with a suspected criminal. This means that at a minimum\n some association between the common carrier's unique phone ID (ESN) and\n the Clipper chip serial number N will be stored in a government database.\n An observed pairing of N and ESN other than the one recorded raises a\n red flag.\n\n 4. To reduce ordinary fraud, the cellphone system which offers Clipper\n will also be constructed with an ESN mechanism much more tamper-proof\n and much less spoofable than today's cellphones.\n\n 5. Criminals want inscrutable communications. Some criminals are not\n entirely stupid or ignorant, and will figure out both that Clipper\n cellphones offer excellent security in normal circumstances, and that\n they offer no security against law enforcement once a (presumably\n legitimate) wiretap order exists. They will also figure out that the\n wiretap order must necessarily be against a specific cellphone, because\n each one has a unique unit key.\n\n 6. Criminals do not want to call attention to themselves. Because they\n are not stupid or ignorant (or because they read netnews), and because\n they know that their open use of a non-Clipper cipher is likely to be\n detected, they will generally avoid using non-Clipper ciphers directly\n on some monitorable/tappable channel. They know that do so would raise\n a red flag, putting a given cellphone (if not a given person) under\n immediate suspicion.\n\n 7. It is impractical to reverse engineer Skipjack, discover family key F,\n and construct a functional clone of a Clipper chip.\n\nBy #2, #3, #4, and #7 it will be very difficult to spoof a given Clipper\nphone without immediate detection. Because it is difficult to obscure one's\nassociation to a specific phone by reprogramming or changing chips\naround, the criminal will be motivated to find an intact phone which is\nassociated with someone else.\n\nA non-stupid criminal will conclude that they can have Clipper-secure\ncommunications, at least for some limited time T, if they buy, beg, borrow,\nor steal use of someone's phone in a way that prevents that person from\nreporting compromise of the phone for at least time T. The encrypted\ncommunications might have been recorded, and thus be retrievable later,\nbut the criminal can delay, and quite likely evade, discovery by destroying\nor abandoning the phone before T elapses.\n\nIt would be unusual for an innocent person to volunteer use of their Clipper\nphone to someone else. The honest subscriber doesn't want to pay someone\nelse's bill, and he doesn't want to fall under suspicion.\n\nThis leaves two sources of Clipper phones for criminal use: coercion\nand collusion.\n\nCoercion first. Theft bears a relatively low risk, but also sometimes\na low time until detection (a few minutes if a phone is stolen from\na car parked in front of a store, a couple of weeks if a phone is stolen\nfrom someone who is away on vacation). Criminal commerce is likely to\narise in stolen Clipper phones, with phones coming from risk-inured poor\ncriminals, and cash coming from risk-averse wealthy criminals. Someone\nwho is extraordinarily motivated to gain a day or two of undetected\ncommunication (like a terrorist) could kill a person or hold them hostage.\nThe limited time (before detection) that a coerced phone is useful means\nthat continuing criminal enterprises require a continuing supply of\nfreshly coerced phones.\n\nThere would also be created a collusive commerce between relatively\nwealthy criminals, and ignorant or don't-care patsies who need money,\nand who will submit to being paid in return for subscribing to Clipper\nphone service for someone else's use.\n\nCriminals will learn that it is more to their advantage to coerce use of a\nClipper cellphone than it is to apply a non-Clipper cipher to a normal\ncellphone. They will call much less attention to themselves (or at least to\ntheir stolen phone) this way. The fact of a phone's use being coerced must\nfirst be reported before it can be identified as an interesting phone, and\nhave its keys obtained from escrow.\n\nClipper also allows an extraordinary opportunity for the criminal to\nconceal use of super-encryption. An automated full-system surveillance\nmechanism (quite feasible across radio bandwidth) which knows family key F,\ncan validate Clipper wrappers and N:ESN associations, but it cannot reveal\nin realtime the use of super-encryption, unless it knows all unit keys,\nwhich we are being assured are only to be made available in two separate\npieces, upon specific wiretap-like order.\n\nWhereas a criminal's use of any cipher within a normally cleartext medium\nwould stand out, a criminal's use of a non-Clipper cipher within a Clipper\nmedium would be very difficult to detect, even ex post facto in bulk\nrecordings, as long as the association between criminal and specific Clipper\nchip is fractured.\n\nIf you make use of this other cipher illegal per se, then you can charge\nthe criminal with this (if you can identify the true criminal - he'll be\nusing someone else's phone), but you'll have no evidence to help you against\nwhatever traditional crime he might have been planning. You will not even be\nable to detect that unusual (encrypted) communications are occurring until you\nidentify specific phones and obtain their keys from escrow.\n\nThe gangster and terrorist are thus arguably more, not less, secure than\nthey were before Clipper came along.\n\nI therefore consider Clipper harmful because:\n\n 1. It does not provide absolute privacy to the honest public against\n aggressive or dishonest government.\n\n 2. If other ciphers are proscribed, it engenders new types of direct\n criminal threat to the honest public.\n\n 3. It provides an extraordinarily effective mechanism for criminals to\n hide their use of some other cipher, making it more difficult than\n ever even to gain notice that unusual communications are occurring\n and that plans for some criminal act might be in progress.\n\n 4. If other ciphers are proscribed, lazy investigators and prosecutors\n are more likely to pursue the easily quantifiable cipher-use crime\n than they are the traditional and directly harmful crimes which key\n escrow is claimed to help against.\n\n 5. If other ciphers are proscribed, the stage is set for witch hunting\n of \"illegal\" cipher use. Because any computer can be used as a cipher\n machine...", "193": "Here follows a headerless (my editing) email message in full (except for the\nheader) sent to me by congruent corporation today. I received it about 5\nminutes ago, and still haven't read it.\n\nHave fun.\n-------------------------------------------------------------------------------\n\nProduct Overview\n\tAllows Existing Unix/X Applications to be hosted on Windows NT\n\tIncludes Common X Support Clients\n\tSupports X Terminals\n\tProvides Multiuser NT\n\tFacilitates Porting Unix/X Applications to Window NT\n\tBSD Behavior\n\tX Programming Libraries\n\t\nTarget Market\n\tCustomers With Unix/X Applications Who Want To Standardize On Windows NT\n\tAllows Hosting On Windows NT With Minimal Effort\n\tPermits X Clients On Single Windows NT System To Support Multiple Users\n\tX Servers Can Be X Terminals, Unix Based, NT Based, Windows Based\n\t\nBSD Library Behavior\n\tMinimize Unix Porting Effort\n\tLayered Above Standard C Libraries/WINSOCK\n\tNT Registry Path/Drive Replacement\n\tBSD Include File Layout\n\tTrue Berkeley Sockets\n\tSupplies Common BSD Functions Missing From NT\n\nX Programming Libraries\n\tComplete X.V11R5 Libraries\n\tMotif Widget Libraries\n\tMotif UIL\n\tRegistry Based X Configuration Locator\n\tDirect to Windows GDI via \"local socket\" winnt:0\n\nX Support Applications\n\tIncludes Full Set Of X Client Applications\n\tMotif Window Manager (MWM)\n\nMultiuser NT Capabilities\n\tNtNixTerm: Special Adaptation of Xterm\n\tSpecial NT Hosted Command Shell\n\tProvides LOGNAME, HOME facilities\n\tMultiple Users on Multiple X Servers Can Simultaneously Access Single NT System\n\nX Terminal Support\n\tBOOTP to Boot X Terminals\n\tTFTPD For Font Loading\n\tFont Server For Scaled X Fonts\n\tXRemote for Serial SLIP X\n\ninfo@com.congruent (Congruent Information)\n-- \nsnail@lsl.co.uk ", "194": "\nA circut court judge in Illinois once said \"When dealing with a government\nthat seeks continually new and more creative ways to spy on its' citizenry,\none cannot discourage the move to empower the common citizen with the means\nto parry this attack on personal privacy.\"\n\n(Unfortunately the comment was with regard to the banning of radar\ndetectors....)\n\nThe point remains. More and more I see the government slowly washing\naway privacy. Even unwittingly. Do you think I will ever live in a\nsoceity that issues smart cards to citizens at birth? Do you think I\nwill live in a soceity that insists I register my crypto keys so they\ncan keep track of what I'm saying? Even if there is no evidence of my\nguilt? Do you think I will ever live in a soceity that seeks to meddle\nin the affairs of its' citizenry without recourse of any kind? I'm tired\nof it. There is (IMHO) no compromise with an administration that seeks\nto implement these proposals under the guise of enhancing privacy.\n\nMore than the proposals themselves, I read the language of the press\nreleases, the obvious deception involved in presenting these pieces to\nthe public, and I am sickened. I am revolted. I am repulsed.\n\n90%, perhaps even 95% of this country could care less about the\nclipper chip, the wiretap bill, the smart card, because they are so\nentrapped in the rhetoric of the Clinton Administration.\n\nThis saddens and frightens me.\n\nI am a conserveative believe it or not. A law and order conserveative.\nBut the move to a centralized authoratarian regime really scares me,\nmostly because I know you cant go far wrong underestimating the\nintelligence of the American people. Tell them it's going to keep\nthem safe from drug dealers and terrorists, and they will let you\nput cameras in their home.\n\nEven in the wake of Waco, you find those who support the increasingly\ntotalatarian moves.\n\n\nTo be quite honest, the way things are going, I'd call it self defense.\n\n\n\nAnd I dont want mine growning up in the eyes of a security camera\n24 hours a day.\n\nuni\n", "195": "While watching the Penguins/Devils game last night, I saw the \"slash\" that\nBarrasso took on the neck. This brought to mind the goaltender who had his\njugular vein cut by a skate. I think he was a Sabre, but I'm not positive.\nDoes anyone remember/know his name? What has happened to him since? What\nabout the player whose skate cut the goalie? Name? Info? Has this ever\nhappened before in a hockey game? \n\nThanks,", "196": "\nUS House of Representatives\nWashington, DC 20515", "197": "\n This is the first I hear that Koresh refused to release\n someone. In fact, a lot of people, including children, came out\n during the stand-off.\n\n How do you know Koresh killed his followers? The FBI said\n he had had no such plans (and they had the place bugged), Koresh's \n attorney said the same thing, and the survivors claimed that the \n fire was started by goverment agents.\n\n\n\n\n\n\n\n-- \n------------------------------------------------------------------------------------------\nDisclaimer: Opinions expressed are mine, not my employer's.", "198": " \nOrganization: Eskimo North (206) 367-3837 {eskimo.com}\n\n\nYeah, Morris just knows how to win. That's why he lost 18 for Detroit in\n1990. Funny how he wins a lot of games when he pitches on good teams but\nloses a lot when he pitches on bad ones. And if \"rings\" was the only\ncriteria for success, then teams would always tend to repeat, and\neventually you'd have the same team win the WS every bleepin' year. Sort\nof like the yanks in the 50s.\n\nMorris is a decent pitcher on the downside of a good, not great, career.\nToronto will finish 3rd or 4th this year, with Morris and all those\nrings, because their pitching staff was destroyed over the off-season.", "199": "\nCite source, please.\n\n\n--Mike\n\n\n\n", "200": "Nikkor 70-210 AF for immediate sale. Excellent condition.", "201": "[ deleted ]\n[ deleted ]\n\n Your information on this topic is very much out of date. Quantum Electro-\ndynamics (QED - which considers light to be particles) has been experimentally\nverified to about 14 decimal digits of precision under ALL tested conditions.\nI'm afraid that this case, at least in the physics community, has been decided.\nLaymen should consult \"QED - The Strange Theory of Light and Matter\" by Richard\nP. Feynman and for the more technically minded there's \"The Feynman Lectures on\nPhysics\" by Feynman, Leighton and Sands (an excellent 3 volumes). Case closed.\n", "202": "I need to add to your message.\nI have a major problem on my hands. I have a Rodime 60+ (series\nRO3000T) external hard drive. Rodime is out of business, \nand not writing any more drivers. In particular, drivers \ncompatable with system 7.1. After talking to Rodime, \nthey recommended the following Hard drive manufacturers \nand their driver software that were compatable:\n \nSCSI Hard drive manufacturer Driver Software\n---------------------------- ----------------\nFWB Hard disk tool kit\nFWB Hard disk tool kit - personal\nLa Cie Silverlining 5.2 or higher\nCasa Blanca Driver Software Drive7\n \nIf anybody has experience with these driver software packages, please reply.\nIf there is shareware out there, I would like to get my hands on it. I would\nmuch rather send a good developer the $25 or so, because most of the software\nI mentioned, if purchased, would cost $125, $49, $149, and $49 respectively.\n\nThanks in advance.\nBob Dohr, the Association\n\n_______________________________________________________________________________\n Bringing a kind word and a helpful Spirit wherever we can, we are...\n-+- THE ASSOCIATION - a multi-line Macintosh BBS in Grand Blanc, Michigan!\n Echoes from Fido, InterNet, FamilyNet, ICDMnet, K-12 - PLUS 2Gb files\n at 313-695-6955 HST/v.32bis.\n___________________________________________________________________ Testify 2.0\n", "203": "\n...\n\nI must object to the characterization of those opposed to the\ngovernment's handling of the Waco situation as \"gun supporters\".\nYour argument tries to paint the BATF critics as right-wing\ngun nuts, and just mixes up two issues.\n\nI am one of the BATF/FBI critics, and yet I am a liberal\nand just as anti-gun as you are. I just happen to believe\nthat everyone has civil rights, even religious crazies.\nThey're all human beings, not some nest of wasps that\nyou're trying to exterminate.\n\nThe BATF created the crisis situation by the way they handled\nthe original raid. It was well known that Koresh regularly\nwent jogging outside his property. He could have been served\nwith a search warrant then. He could have been arrested if\nhe had refused to comply. Instead officers armed with grenades\ninvaded the property. This escalated into a shooting war\nwith tragic deaths on both sides.\n\nThose were the first two mistakes: the bad judgment of\nasking for a no-knock warrant, and the bad and probably\nillegal way the already-unwise warrant was served.\n\nAt this point, the situation escalated to where it was\ndescribed as an armed standoff and a hostage crisis.\nThat's when the government started covering their traces,\nsealing the warrant, revising their reported history of\nthe incident, etc.\n\nThings were already building up to disaster. Now the\ngovernment could have simply closed the supply routes\nand waited. But according to Janet Reno, that option\nhad \"never been seriously considered\". So, supposedly\nbecause the agents were \"frustrated and fatigued\", and\nbecause there supposedly were no backups, they felt\nthey had to go in.\n\nNow it's entirely possible that Koresh was responsible\nfor the fire. If that's so, he deserves the blame\nfor the deaths of the people in his compound.\n\nBut the government's hands are far from clean.\nTheir first raid demonstrated bad judgment plus\ncontempt for the 4th amendment. The motivations\nfor the second raid are just too unbelievable.\nAnd their coverup of the events of the first\nraid undermines their credibility in anything\nthey do thereafter. We have only some very\nbiased FBI agents' word for what happened.\n\nAnd please let's not turn this into a pro-gun vs. anti-gun\ndiscussion. Anti-gun people do not believe that gun-owners\ndeserve to get frontally assaulted by armed government\nagents. And Koresh's civil rights exist whether his\nguns were legal, illegal, illegal-but-should-have-been-legal,\nor whatever! \n\n", "204": "\n[Jesus' comments about how Christians have to follow the OT deleted...]\n\n\nExodus 31:12-17. How many people have you put to death for working on\nthe Sabbath?\n\n\nLeviticus 17:10. How as that medium-rare steak last night?\n\n\nLeviticus 19:19. What did you wear to work friday?\n\n\nDeutromony 18:1. I can you can now justify discrimination.\n\n\nRight.\n\n\nShe is.", "205": "\nBut they also might have run out of fire-wood (maybe chopping up furnature?).\n\nThey also may not have been cooking, but eating MREs and other\ndelicacies stored for just such an occation...\n\nJust a thought.\n\nBrent \"Yes I am well aware that their electricity was cut, thanks to the\nHUNDREDS of E-mail messages and replies to my post\" Irvine\n", "206": "Like many others I too was watching the Caps/Isles game when the went\nto the baseball game. I too was pissed. How could they interupt such\nan important game. I understand about contracts, but you would think they\nwould have a clause in the contract concerning important games!\nAnyway, us BLUES (and Hawks) fans got shafted worse! While everyone\nin the U.S. and watched the game on ABC. However those of us who live in\nthe central Illinois area were subjected to watching the Arthritus(?)\nTelethon. The area that was most affected by the telecast did not get\nto see the game except through HAWK VISION. This game, had it been\ntelevised, would have been the first home Hawks game shown in the area\nsince 1980. This television BULL*&%$ has got to stop. We are not only\nbeing deprived of seeing games, due to skyrocketing ticket prices, but\nwe are also being deprived of watching them on TV.\n PEACE,\n HAMMER\n \n", "207": "\nI recall reading a review article in PC Computing wherein they reported\na reduction in the loading time for lengthy programs using Stacker 3.0.\nThis was not due to the compression algorithm per se, but to the fact\nthat fewer fetches were required during the sequential file access. Does\nanyone have any actual performance numbers relating to speeds of Stacker\nand Dblspace?", "208": "<: \n<: As a private citizen, I would feel much more \"secure in my person and\n<: papers\" knowing that an organization committed to individual civil\n<: liberties- the ACLU and the NRA come to mind- was safeguarding half of\n<: my key. Both the ACLU and the NRA are resistent to government pressure\n<: by the simple expedient fact that they are not supported, funded, or\n<: overtly controlled by the government.\n<: --------------------------\n<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>\n Oscar R. Mitchell\n IBM Advanced Workstations and Systems Division\n RISC System/6000(tm) - Future Systems Hardware Architecture and Design Group\n Mail Stop: ZIP 9461\n 11400 Burnet Road\n Austin, Texas 78758 USA Phone: (512)823-0000\n IBM Tieline: 678-8513 USA \"FAX\": (512)838-8561\n\n IBM VNet: OSCAR at AUSVM6\n IBM InterNet: oscar@oscar.austin.ibm.com\n\n USA InterNet: oscar@austin.ibm.com\n\n#include /* I DO NOT speak for IBM, only for MYSELF */\n<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>", "264": "(st) Stephen Tice \n(km) Ken McVay\n\n\n(st)Seems to me Koresh is yet another messenger that got killed\n(st)for the message he carried. (Which says nothing about the \n\n(km)Seems to be, barring evidence to the contrary, that Koresh was simply\n(km)another deranged fanatic who thought it neccessary to take a whole bunch of\n(km)folks with him, children and all, to satisfy his delusional mania. Jim\n(km)Jones, circa 1993.\n\nI think there's plenty of evidence to the contrary - six \"rescued\"\nDavidians consistantly recounted that the Federal tank knocked over a barrel\nof propane. These guys haven't exactly been spending time together,\nplotting an elaborate and consistent story. It would be contradictory\nfor Koresh to go for \"mass suicide\" - remember that Koresh's death was\nthe opening of the sixth seal - the signal that Armageddon had begun.\nHis army (the people in the compound) would then fight the powers of\nevil and win, ending in the Rapture. The fire wiped out his army. I\nread earlier that Koresh was planning to walk out of the compound \nand blow himself up with a grenade - that would jibe better with\nhis teachings.\n\n(st)In the mean time, we sure learned a lot about evil and corruption.\n(st)Are you surprised things have gotten that rotten?\n\n(km)Nope - fruitcakes like Koresh have been demonstrating such evil corruption\n(km)for centuries.\n\nI'd think you'd be the last one to support gassing people and \nburning them to death for their religious beliefs. Corrupt? Evil?\nI don't know. We'll never know. And when you start calling people \nfruitcakes about their religious beliefs, that's dehumanizing people.\nWe saw what happened when many Germans started believing that Jews\nwere subhuman.\n\nIn one neat stroke, they destroyed all the evidence that could have \npointed to wrongdoing. And killed all the witnesses, including 12\nchildren whose last view of life was choking and pain, followed by\nburning them alive.\n\nI am extremely saddened that this tragedy occurred. I'm furious that\nthey used my money to do it. ", "265": "[to Benedikt Roseneau ]\n\n#In article <1qv6at$fb4@horus.ap.mchp.sni.de>\n# \n#>#The information of that is invariant under your child being a son or\n#>#a daughter and singing about Santa Claus. Wasn't your argument that\n#>#\"there has to be more\"?\n#>More than what?\n#More than we assume.\n\nWhich is what, exactly?\n\n#>(a) Most of the people I debate disagree with my premises. Hardly debate\n#> otherwise.\n# \n#Your favorite point that we sense so it hs to be there has been challenged\n#more than once. When I did it, you said, \"good question\", and did not\n#address it.\n\nI've addressed \"it\" (your caricature is not my \"favourite point\", needless\nto say) at length in a previous outing, and am currently discussing it with \nEric Rescorla. \n\n#>(b) There's little point in responding the same points everywhere; I do\n#> my best to give everyone the courtesy of a reply.\n# \n#You still repeat that point.\n\nI do? Curious, since I believe that was the first time I've ever made it.\nNot that repetition would imply much more than your seeming inability\nto understand; you ask me the same question, I'll give you the same\nanswer, especially when in this case, I know the answer to be true. I\ndo my best to give everyone the courtesy of a reply, but if everyone is\nmaking the same points, and I'm pushed for time, then I try to respond what I \nbelieve are the strongest formulations of those points. If that doesn't\ninclude your post, tough; this is USENET, and life is tough all over.\n\n#>(c) Since there's a great deal of responses this isn't always feasible; I\n#> do my best to honestly answer questions put to me.\n# \n#You drop out of debates with some posters and continue with others. You appear\n#with the same issue every n months, and start the dicussion at the beginning\n#again.\n\nI've only debated this issue twice in a.a, and occasionally in t.a. The\nfirst was in response to Simon Clippingdale's positive assertion that\ndisagreement about moral values inexorably acknowledges that morals\nare relative. It doesn't. Now, Simon has dropped out of the debate\nfor some time; I take that to mean that he is either busy, or bored\nwith the topic. I certainly do not accuse him of dishonesty. Do you? \n\n#>(d) I can't always understand what you say\n# \n#Neither can't I understand you all the time. Usually, one asks what the other\n#side means.\n\nUsually, one does. Usually you're clear, but sometimes you aren't \nand I ask you what you mean; other times you seem to get extremely uptight \nand I feel that I'm debating against line noise. Sometimes I get tired, and \nsometimes I have other things I'd rather do. Again, this is USENET, and\nlife is tough all over. You're going to have to deal with it.\n\n#>(e) You're starting to get personally insulting; I may not even put your name\n#> in the hat in future.\n#\n#That's supposed to be a threat?\n\nNo, that's a simple statement, and an assertion that I am not answerable\nto those who offer me baseless insults. For example, those who accuse me \nof lying about my personal beliefs, while also complaining that I don't answer\ntheir questions. \n\n#>#Like that you what you sense is evidence for the sensed to be there.\n#>#If only everything would be so easy.\n#>\n#>What almost everyone senses is evidence for the sensed to be there.\n#>Because to all intents and purposes, it *is* there.\n#> #We had that argument. For one, your claim that everyone senses it\n#is not founded, and you have been asked to give evidence for it often.\n#And then, the correct statement would be it is reason to assume that it\n#is there unless evidence against it has been found.\n\nI have no problem with the second statement. I have provided an\nargument that almost everyone senses that Freedom is valuable - the\nonly cogent objection to this came from jon livesey, and was offered\nby some other people too: essentially, that people disagree about\nfuzzy concepts such as Freedom. It's a good point, and I'm thinking\nabout it.\n# \n#Your trick is to say, I feel A is not right, and so do many I know,\n#therefore A is absolutely right. It neglects the possibility that\n#these people consider A to be right as an effect of the same process,\n#restricting the claim of its absoluteness to those who have been subject\n#of that process. In other words, refutes it. You make the ontological\n#claim, you have to prove it.\n\nNonsense. My \"trick\" is to say: I feel that A is better than B and so \ndoes almost any disinterested person I ask. Best evidence is therefore \nthat A really is better than B, subject to the assumption that we\ncan establish to our mutual satisfaction what we mean by A and B, and\nthat the resulting system of values is self-consistent.\n\nNow get this: \"really is better\" is an idealisation, a fictional model,\nin the same sense that \"real material existence\" is a fictional model. It\nmay or may not correspond to something true. It is nonetheless a useful\n_assumption_. Far more useful than the equally assumed relativist \n\"trick\", to wit:\n\nI feel that A is better than B, and so does almost any disinterested person\nI ask. However, if even one person disagrees that A is better than B,\nor if even one person dissents from mutually agreed definitions of A and B,\nthen it is the case that B is better than A for that person, and nothing\nmore can be said. \n\nI say this is useless because it inexorably implies that a supermajority\nseeking to maximise A cannot morally take action against someone seeking to\nmaximise B (e.g. a terrorist). To do that would be to claim that \na supermajority's carefully considered morality would be better than the \nterrorist's - which would, of course, be true, but a no-no for an ethical\nrelativist. To claim that ethical relativism implies anything else is\nsimply weasel words, and an example of compartmentalisation to rival\nanything in the world of religion.\n\n#>#For a similar argument, I sense morality is subjective, it does not\n#>#hurt me to do things that are considered to be objectively wrong by\n#>#others.\n#>\n#>If you mean that you do things that some others consider objectively\n#>wrong, and it turns out not to be the case for you - of course this\n#>is possible. It is neither evidence for subjectivism, nor evidence\n#>against objectivism (except sometimes, in a pragmatic sense).\n#>\n#It serves as a counterexample for that everything that is subject to\n#judgements is absolute. And as long as you don't provide evidence for\n#that there is something universally agreed upon there is no reason to\n#believe your hypothesis.\n\nI've done this: freedom, with the proviso that I still have to \nanswer jon's objection that fuzzy concepts like freedom have no\nobjective meaning.\n\n#Further, in order to make morality absolute, universal, or objective,\n#you would have to show that it is independent of humans, or the attributes\n#above look quite misleading.\n\nNot really. What evidence is there that _anything_ exists independently\nof humans? You'll be hard pressed to find any that isn't logically\nequivalent when applied to values.\n\n#>An analogous set of premises would be:\n#>\n#>Premise 1: Some people believe that objectively speaking the shortest\n#> route from my house to a bar is through the main entrance\n#> of the estate, and down the Malahide road.\n#>\n#>Premise 2: I checked it out, and found that the shortest route from my\n#> which is much closer.\n#>\n#>You would never deduce from these that there is no shortest route from my\n#>house to a bar; yet that is seemingly how you derive your relativist claim,\n#>using premises which are logically no different.\n#>\n# \n#No. Morals are a matter of belief so far. The people still believe that the\n#shortest way is through the main entrance. No agreement on *belief* here.\n#And in order to have an analogy you would have to show that there is a\n#shortest way and that there is a method to convince everyone of that it\n#is the shortest way indeed. In other words, your analogy works only when\n#one assumes that your premises are right in the first place. If not, it is\n#a fallacy.\n\nAnd if this were an argument for objectivism, you'd be right. It isn't,\nthough, it's a demonstration that the argument you gave me is neither argument\n*against* objectivism, nor argument *for* relativism. Your gimmick is to\nassume in the first place that values aren't real, and to use this to \"prove\"\nthat values aren't real. In other words, you beg the question against me.\n", "266": "\nThere has been no empirical evidence to support the first statement. True,\nthere is a power surge at startup that has the potential to do damage, but\nthe internal power supply is well-protected. (I've turned my Mac on and off \nsix or seven times a day for three years without problem). The monitor is\nthe same. To leave it on is to waste a lot of electricity -- twice as much\nas a television, possibly more.\n\nTurn it off when you're not using it. It'll save you money and the world\na few more resources.\n\n-Kelley-\n-- \n-----------------------------------------------------------------\nThomas Kelley Boylan, PowerPC, IBM Austin, kelleyb@austin.ibm.com", "267": "\nQuite honestly, this one is ridiculous. Consider the following\nscenario: Runner on third. As the pitcher starts to throw home, the\nrunner takes off for home and the batter squares around to bunt for\nthe suicide squeeze. The pitcher, seeing this, does not throw home,\nbut stops in mid action and puts the runner in a run down. It is the\nbalk rule that prevents this from happening. \n\nBelieve it or not, this actually happened to me once in an OBA\n(Ontario Baseball association) game in Milton, Ontario. I was the\nbatter and to my amazement, the umpire missed it. In the 12 years\nthat I played ball, this was worst piece of umpiring I ever saw.", "268": "\nTimbo, Israel has not been recognized as a state by the Arabs, except for\nEgypt, of course. Isn't that a gesture? What has Israel offered?\nWell, it has been calling for peace talks for 45 years, asked for\neconomic relations, and asked for diplomatic ties. What else is there?\nWould you have Israel sacrifice its security? Nay, I think not.", "269": "Enough, already. Let's take this discussion to some other newsgroup\nthat's more appropriate. Most of us are tired of it and would like to \nget back to old cars, IMHO.", "270": "being gay and Christianity are not compatible should \n\nI would absolutly love to have the time and energy to do so. The\nproblem is to be totally fair I would have to go throught this type of\nsearch on every issue I belive in. I don't have the time, resources,\nor ability to do what you ask. Maybe you should pray that God gives\nme the opportunity instead of simply discrediting me because I have\nnot been able to talk to every gay christian.", "271": "\n\nYes, but no more than he is worth. :-). Seriously: Jerome is merely\n(and grandly) another Christian witness, to be taken for what he can\ntell us. He is one in the community of saints. You seem to wish for\na greater polarization and dichotomy between Catholic and Protestant\nthought than seems to me, from a historical perspective, to be valid.\nTo be sure, Rome rejects (some significant aspects of) Protestant\nthought just as vehemently as Protestants reject (some significant\naspects of) Roman thought. Other than some peoplw who apparently try\nto embody the greatest extreme of this rejection, on either side, there\nis not quite so vast a gulf fixed as casual observers seem to assume.\n\nEcumenical consultations between Rome and the Lutherans, as well as \nthose between Rome and the Anglican communion (to which I belong) show\nvery nearly complete convergence on understanding the basic theological\nissues -- the sticking points tend to be ecclesiology and church polity.\nThus, for example, as you go on to say:\n\n\nMany of us do not regard a papal decretal as having any necessary (as\nopposed to political) significance. Sometimes it will, sometimes it\nwon't. You misread me if you think that my communion, at least, \"throws\nout\" the deuterocanonical books. Nor do I think you should overstress\nthe sense in which the more Reformed may do so.\n\n\nI seriously suggest you rethink what you are saying here. It verges on,\nand could be taken as, anti-Semitic in the worst sense. The \"unbelieving\"\nJews were, according to what I understand as a Christian, the chosen\npeople of God, and the recipients of His pre-Incarnational revelation.\nI think they have some say in the matter. The Javneh meeting should not\nbe over-interpreted. A recent magisterial study titled _Mikra_ (I don't\nhave more citation information on hand, sorry) produced primarily from\nthe background of Christian (rather than specifically Jewish) scholarship\nsuggests strongly that the Javneh meeting mostly resolved a lingering\nquestion, where in practice the canon had long been fixed on the basis\nof the scrolls that were kept in the Temple, and thereby \"made the hands\nunclean\" when used. The list of \"sacred books\" that may be drawn up from\nJosephus and other pre-Yavneh sources correspond (plus or minus one book,\nif I rememeber the chapter correctly) to the current Jewish canon of Tanakh.\n\nAll of this is not to \"throw out\" the deuterocanonicals (what, by the way,\nis YOUR position about the books the Greeks accept and Rome does not? :-))\n-- just to observe that the issue is complex and simply binary judgment\ndoes not do it justice.\n\n", "272": "The subject line says it all really, I'm looking for a PD application\nwhich will just handle the displaying of 3D data sets (images) in\ncross section, or any pointers to code which will aid in the development\nof such a system.\n\n Thanks in advance\n\n\tKeith Marlow\n\n", "273": "For a SIZE 9 wedding dress with lots of beads,\ninquire at 801-269-1157 MST (Utah).", "274": "\n But the \"values and systems that make the rich rich\" all basically\n amount to freedom of choice. \n\n In New England in 1800 the entire economy was based on the small family\n farm. Farm economy households were economically diversified, producing\n not only agricultural goods but also \"manufactured\" goods, especially \n cloth. Many farm women carded, spun, and/or wove, producing not only\n cloth for their own family but also to sell, generating extra income.\n\n But about this time the Industrial Revolution was underway in England\n and by the 1820's it had moved to the US, in both cases in the form \n of textile mills. These mills could produce cloth far more efficiently\n and cheaply than people at home. \n\n The result was that an important source of home income was wiped out\n and many of these women were compelled by economic circumstance to \n go to work in these same mills in Lowell, Mass, or Nashua, NH, where\n they worked 73 hour weeks in deafening, dangerous conditions, living \n regimented lives and being exposed to cotton-dust and infectious dis-\n eases due to the work.\n\n Now people didn't *HAVE* to buy the cheaper factory-made cloth. \n They were free to keep buying the home-made variety and support\n their local economy . . . \n\n\n . . . but (sorry for the cliche), \"it takes two to tango\". The big\n rich corporations achieved that wealth because we buy their stuff.\n It used to be the case that the business center of a town was also \n its social center. You KNEW the merchants you did business with \n or even local kids working behind the counter. You would see\n people on the street whom you knew and you could stop for a chat.\n\n Nowadays local merchants are going out of business and people shop \n at huge anonymous malls serving regional populations of hundreds of\n thousands or millions. You have no particular relationship with the\n companies you do business with, and feel no particular commitment\n to them, nor they to you. Major components of what defines a \"com-\n munity\" have been destroyed. On the other hand the products we buy\n at these malls are a lot cheaper due to economies of scale and foreign\n manufacture, and they are probably of better, or at least more consistent,\n quality.\n\n\n\n Don't blame the conservatives for this. Everyone makes their own\n individual choice and the liberals and the fence-sitters are just\n as guilty of pretending there are no social and cultural consequences\n to economic choices.\n", "275": "\n\nWhy not design the solar arrays to be detachable. if the shuttle is going\nto retunr the HST, what bother are some arrays. just fit them with a quick release.\n\none space walk, or use the second canadarm to remove the arrays.", "276": "\nGenerally, the second or third major release usually takes care of it.\nMy advice, based on plenty of personal experience, is to never buy the\nfirst version of anything from Microsoft. This includes major version\nnumber upgrades from previous releases, such as Microsoft C 6.00.\nAlways wait at least for the \"a\" upgrade or slipstream upgrade if\nyou're going to buy it.", "277": "\n\nWow that certainly CONVINCED me that all Americans ar hung up about sex.\nJust one example of something that probably ran in a Hustler mag is enough\nto convince me.\n\nSarchasm off.\n", "278": "", "279": "\n\n\n\n\n\n\n James Madison, Federalist Paper 41:\n\n \"It has been urged and echoed, that the power ``to lay and\n collect taxes, duties, imposts, and excises, to pay the debts,\n and provide for the common defense and general welfare of the\n United States,'' amounts to an unlimited commission to exercise\n every power which may be alleged to be necessary for the common\n defense or general welfare...\n\n \"No stronger proof could be given of the distress under which\n these writers labor for objections, than their stooping to such a\n misconstruction. Had no other enumeration or definition of the\n powers of the Congress been found in the Constitution, than the\n general expressions just cited, the authors of the objection\n might have had some color for it; ... But what color can the\n objection have, when a specification of the objects alluded to by\n these general terms immediately follows, and is not even\n separated by a longer pause than a semicolon? ... Nothing is\n more natural nor common than first to use a general phrase, and\n then to explain and qualify it by a recital of particulars.\n-- ", "280": "I am going to stop reading the homosexuality posts, at least for a \nwhile, because of the repeated seemingly personal attacks on me via \npost/e-mail(mainly e-mail). If anyone has a specific comment, \nsuggestion, and/or note that does not contain any name calling, etc. \nthat they would like for me to read, send it to me via e-mail. I \nwould like a copy of file mentioned by the moderator ragarding the \nexergetical issue of it. I attempted to get it via ftp but was \nunable.", "281": "\nFrom whose point of view would you like to know what relativism concludes? \nOne of the people involved in the argument, or some third person observing\nthe arguers?\n", "282": "I'm looking for an old album or cassette tape. The group is Sanford/Townsend\nthe name of the album is 'Smoke from a Distant Fire' (I think). This album\ncame out somewhere around 1975-76, and I believe was the first album produced\nby Kenny Loggins after he and Jim Messina broke up.\n\nIf you happen to have this album and are willing to part with it, great. If\nyou don't want to part with it, but are willing to copy it onto cassette I'd\nlove that too.\n\nThanks\n\nJK", "283": "I've had similar problems downloading using WinCIM, I discovered that if I\ndisabled data compression on my modem, it works fine.\n", "284": "Well, the Opel deal fell through...\n\nNow i'm looking at a Datsun 240Z for sale in our local buy&sell. Any\nprevious owners have any experience with these cars? Besides looking\nfor rust,good compression,low miles, and all the other usual car\nthings one looks for, is there anything special about these cars that\nI should watch out for?\n\nHow about things like handling,performance,mileage,etc. These cars\nlook hot, to my eyes at least, and bear more than a passing\nresemblance to the Aston Martin DB4 Zagato(sp?), which has to be one\nof the most beatiful cars ever made.", "285": "I writing a program that uses the parallel port. My problem is that I need to\ngenerate an interrupt when the ack line is pulsed. I can get this to occur \nonce, but am unable to generate succesive interrupts.\n\nCan someone suggest how I may resolve this problem.", "286": " [...]\n\nSome of the Davidians *are* black.\n\nNext question?\n\n", "287": "\n\n\n\nThe Delorean used the Peugot/Renault/Volvo V6 in a rear engine configuration.\nThe Bricklin use some 'Merkin iron in a front engine/rear drive configuration.\n", "288": "Regarding the horror stories about DOS6/DOUBLEDISK and STACKER 2.?\nkilling hard drives:", "289": "\n\n\"We however, shall be innocent of this sin, and will pray with earnest\nentreaty and supplication that the Creator of all may keep unharmed the\nnumbers of His elect.\"\n -St. Clement, Bishop of Rome, Letter to the Corinthians, 59.2, (c. 90 AD)\n\n\"Ignatius also called Theophorus, to the Church at Ephesus in Asia,\nwhich is worthy of all felicitation, blessed as it is with greatness by\nthe fullness of God the Father, predestined from all eternity for a\nglory that is lasting and unchanging, united and chosen in true\nsuffering by the will of the Father in Jesus Christ our God...\"\n -St. Ignatius, Bishop of Antioch, Letter to the Ephesians, Address,\n(c 110 AD)\n\n\"We say therefore, that in substance, in concept, in orgin and in\neminece, the ancient and Catholic Church is alone, gathering as it does\ninto the unity of the one faith which results from the familiar\ncovenants .... those already chosen, those predestined by God who knew\nbefore the foundation of the world that they would be just.\"\n -St. Clement, Patriarch and Archbishop of Alexandria, Miscellanies,\n7.17.107.3, (c 205 AD)\n\nOf course the doctrine was explained more fully later on by Sts.\nAugustine, Aquinas, etc., but the seeds were ther from the beginning.\n\n\nI think you are reading it wrong. I say those who are not saved are not\nsaved on account of their own sins. It is not because God did not give\nthem sufficient grace, for He does do so, in His desire that all men\nmight be saved. However, as only some are saved - and those who are\nsaved are saved by the grace of God, \"not by works, lest any man should\nboast\" - the others are damned because of their obstinacy in refusing to\nheed the call of God. They are damned by their own free will and\nchosing, a choice forseen by God in His causing them to be not\npredestined, but reprobated instead.\n\n\nCertainly God does not distribute grace evenly. If He did, no one could\nhave their heart hardened (or rather, harden their heart, thus causing\nGod to withdraw His grace). But, you are correct - the world is divided\ninto those who God knows to be saved, and those God knows to be on the\nroad to perdition. THe key is that God knows it and we do not. Thus,\nno one can boast in complete assurance that they are one of the elect\nand predestined. But no one who is a Christian in good standin should\ndoubt their salvation either (that shows a lack of trust in God).\n\n\nYou must admit it is possible. Anyway, why would you want something in\nthe hear and know, when you can recieve 100 fold in heaven? Better to\nlay up your treasure in heaven is what Jesus said.\nThis is not to condemn the rich, but simply to point out that those who\nare rich are frequently very evil or immoral, so God must give them\ntheir blessing know, as they have chosen. Remeber, Jesus promised\ntribulation in this world, and hatred of others because we are\nChristians. He did not promise heaven on earth. He promised heaven.\n\n\nNot really. Unless you do penance here on earth, you will have to do it\nin Purgatory, as Paul pointed out (1 Corinthians 3.15). Those with\npoorer works, though still done with good intentions, will only be saved\nthrough fire (the damned will of course go into fire immeadiately, for\nwhatever good they did was not for God but for self (dead works)). Of\ncourse, the Church gives indulgences, has Confession, and Annointing of\nthe Sick to remove sin and the the vestiges of sin, so there is really\nlittle excuse for ending up in Purgatory - it is a last hope for the\nsomewhat lazy and careless as I said above in referring to Paul.\n\nAnd no comments were taken as flames. You are one of the more polite\npeople I have talked to over the net.\n\nAndy Byler", "290": "Recently I've come upon a body of literature which promotes colon\ncleansing as a vital aid to preventive medicine through nutrition. In\nparticular, Dr. Bernard Jenssen in his book \"Colon Cleansing for\nHealth and Longevity\" -- the title actually escapes me, but it is very\nsimilar to that -- claims that regular self-administered colonics,\nalong with certain orally ingested \"debris-loosening agents\", boosts\nthe immune system to a significant degree.\n\nHe also plugs a unique appliance called the \"Colema Board\", which\nfacilitates the self-administration of colonics. It sells for over\n$100 from a California-based company. He also plugs Vitra-Tox\nproducts as his chemical agents of choice: these include volcanic ash,\nsupposedly for its electrical charge, and psyllium powder, for its\nbulkiness.\n\nIf anyone knows anything about colon cleansing theory, its\nparticulars, or the Colema Board and related products, I'd be very\ninterested to hear about research and personal experience.\n\nThis article is crossposted to alt.magick as the issue touches upon\nfasting and cleansing through a \"ritual\" system of purification.\n\n-- Eli\n", "291": "Hi, It's time to clean my shelf, all price include shipping, so you don't\nhave to worry about it, just pay the amount you see.\n\n\nName Cover Publisher Year Origin Now\n----\t\t ----- --------- ---- ------ --- \n\nThe Ultimate DOS Heavy\nProgrammer's Manual Hard WindCrest 1991 $50 $25\n\nBit-Mapped Graphics Hard WindCrest 1990 $50 $25\n\nAlgorithms in C Hard Addison-Wesley 1990 $45 $25\n\nFile Structure Hard Addison-Wesley 1988 $36 $20\n\nProgramming with\nData Structure\n(Pascal Version) Soft Prentice Hall 1989 $? $10\n\nDigital Design Hard Wiley 1989 $51 $30\n\nNumerical Analysis Hard PWS-KENT 1990 $50 $25\n\n W. Disk \nBatch files to Go Soft McGraw-Hill 1992 $35 $25 \n \nAdvanced Batch W. Disk\nFile Programming Soft Mcgraw-Hill 1992 $30 $20\n\nComputer Graphics \nPrinciple and Heavy \nPractice Hard Addison-Wesley 1992 $65 $40\n\nStructure and \nInterpreter of\nComputer Program Hard Macgraw-Hill 1991 $40 $20\n\nC: An Advanced\n Introduction Hard Bell Tele Lab 1989 $40 $15\n\nBuilding C Library Soft WindCrest 1991 $25 $15\n\nX Window System\nC Lib and Protocol\nReference Soft Digital press 1992 $? $25 \n\nOh! Pascal! Soft W.W. Norton 1986 $? $10\n\nDifferential \nEquation Hard PWS-KENT 1990 $55 $15\n\nApplied Discrete \nStructure for\nComputer Science Hard MacMillan 1993 $45 $25\n\nProgramming in C++ Soft Prentice Hall 1990 $28 $15\n\nUsing WordPerfect 5.0 Soft Houghton 1989 $8 free with\n purchase\n\nLinear Algebra Hard Addison-Wesley 1991 $50 $30\n\n\nDEC Station W. Disks\nMS-DOS 3.30.01 Binders\nand GW-BASIC Box Digital ? ? $20\n\n***************************************************************************\n\nThe Big Gray Book: The next Step with ULTRIX\nUltrix/SQL Net User's Guide\n Database Adminstrator's Guide\n Reference Manual\n Error Message Dictionary\n Operation Guide\nGuide to Diskless Management Services\nGuide to Server Setup\nGuide to Remote Installation Service\nGuide to BIND/Hesiod Service\nGuide to the Network File System\nGuide to Ethernet Communication Servers\nIntroduction to Networking and Distributed System Service\nGuide to the Yellow Page Service\nGuide to Backup and Restore\nGuide to Shutdown and Startup\nGuide to Disk Maintenance\nGuide to Kerberos\nGudie to the uucp Utility\nGuide to IBM Terminal Emulation for VAX Processors\nGuide to Configuration File Maintenance\nGuide to SCAMP\nGuide to Printer Clients\nGuide to Adminstrator's security\nGuide to the Location Broker\nGuide to System and Network Setup\nGuide to System Environment Setup\nGuide to Software Licensing\nGuide to System Exercise\nGuide to Error Logger\nGuide to System Crash Recovery\nGuide to the Nawk Utility\nSecurity Guide for the users\nKernal Message reference Manual\nReference Page\nSection 4: Special Files\n 5: File Formats\n 7: Macro Package and Conventions\n\nAsking for $100/obo, it's pretty heavy though. ", "292": "\nOne usual suggestion is to put everything into your every-time shell rc-file\ninstead of your login-only one, which is fair enough if you only have a few\nusers who know what they're doing. If you have several hundred users who do\nwhat the books tell them, though, then it's confusing at best. Another is to\nhave your xterms run login shells, but that still leaves the window manager\nand the things that get started from its menus with the wrong environment.\n\nOur alternative is that instead of having xdm run the client startup scripts,\nit runs the user's favourite shell as a login shell, and has *it* then run the\nrest of the startup scripts. That way the user's usual environment gets set\nup as normal and inherited by everything. You can find an almost-current copy\nof our scripts and things in contrib/edinburgh-environment.tar.Z, available\nfrom the usual places. ", "293": "Gentlefolk,\n\n It seems to me that the \"Step 1\" of taking a warrant to the\n telco to get a wiretap is so much stinky red herring (don't\n you love animal metaphors).\n\n With each phone broadcasting the serial number of its chip\n (\"E(N;F)\" is not syntactically different than \"N\"), all they\n have to do is aim a reciever in the general direction of\n today's target and use the serial number to identify the\n session they want, and get the chip number of the other end of\n the conversation. Even without the key, this is great for\n traffic analysis. I can think of several ways to learn the\n right serial number.\n\n It looks like one intended effect of the Clipper is to\n eliminate the awkward business of getting the telco to\n cooperate (or risking getting caught in the act with your\n alligator clips erect). This is particularly handy if you have\n S1 and S2.\n\n BTW, did anyone explain why they are scrambling the serial\n number?\n \n Cheers,\n Marc\n\n---\n Marc Thibault | marc@tanda.isis.org\n Automation Architect | CIS:71441,2226\n R.R.1, Oxford Mills, Ontario, Canada | NC FreeNet: aa185", "294": "I'm wondering if \"vandalize\" is the proper word to use in this situation. My\ndictionary defines \"vandalism\" as \"the willful or malicious destructuion of \npublic or private property, especially of anything beautiful or artisitc.\" I\nwould agree the sky is beautiful, but not that it is public or private property.\n\nI personally prefer natural skies, far from city lights and sans aircraft. \nHowever, there is also something to be said for being able to look up into the\nsky and see a satellite. Many people get a real kick out of it, especially if\nthey haven't seen one before. ", "295": "\nIf you had been looking in your mirror, you would have seen the guy coming \nbefore you heard the screeching tires.\n\nWhen you're stopped at a light:\n\n1) Stop so that you're got space in front of you, and a quick easy escape\nroute (between lanes, into a crosswalk, up a driveway, somewhere) if someone\ndecides they want to plow into you.\n\n2) Keep the bike in first with the clutch in until at least a couple of cars\nare stopped behind you, so you don't have to waste a second you don't have\ntrying to get it in gear if you need to move.\n\n3) Watch your mirrors. In that situation, most of the hazards you are \ntrying to avoid are coming from behind you. SIPDE (<-- msf-geek-speak)\nisn't just for when you're moving. And you're less likely to panic and stall\nthe bike if you've got time to prepare before the guy's tires lock up behind\nyou. (You still get the bejeezus scared out of you, but it's more a feeling\nof quickly-rising dread than a sudden jolt.)\n\n\n\n\n", "296": "[Frank's solution deleted.]\n\nIf you have access to telnet, contact nyx.cs.du.edu. It's a public access\nUnix system, completly free, and all you need to for access is a verifiable\nform of ID (I think he requires a notarized copy of a picture, or a check, or\nsome such).", "297": "\nA friend of mine had the same problem, it turned out that his floppy was\nset up as a 5 1/4 1.2Mb drive instead of 3.5 1.44Mb.....\n\nmight help...\n\n\nMatt.\n\n-- ", "298": "(Anthony \n\nIf she doesn't welcome the excruciating pain of labor, the\nselfish bitch deserves to die in childbirth. She was probably\nlying about the rape anyway.", "299": "\nFor example, I would claim that the recent assassination of four\ncatholic construction workers who had no connection with the IRA\nwas probably religously motivated.\n\n\nWhat would you call is when someone writes \"The killings in N.I \nare not religously motivated?\"\n\n\nGiven that the avowed aim of the IRA is to take Northern Ireland\ninto a country that has a particular church written into its \nconstitution, and which has restriction on civil rights dictated\nby that Church, I fail to see why the word \"past\" is appropriate.\n\n\n\nYou don't have to hand us a bunch of double-talk about what\nI was \"seemingly\" attacking. I *quoted* what I was attacking.", "300": "I'm looking to buy machinist tools of any kind. If you have\nany or know of any for sale please leave me e-mail and I'll\nget back to you promptly.\n\n\t\t\t\tFrank", "301": "\nNo.\n\n\nNo. The library at Alexandria was perhaps the greatest library ever\nbuilt in the world. The Greeks had a love of wisdom, philo sophos, and\nthis great love was reflected in the Alexandrian library. The Christians \ngot a hold of it and began modifying and purging texts and then the Moslems \ninvaded and either the Christians burned the library to keep it from falling \ninto Moslems hands (far more likely since they were the book burners, not the \nMoslems), or it burned in the sack of the city or the Moslems burned it. \nEither way, a tremendous amount of information was lost. The destruction of the\nlibrary of Alexandria was probably one of the greatest crimes of man\nagainst man.\n\n\nActually, the Hebrew almah, (young woman), was translated as the Hellenistic \nGreek parthenos which may or may not be correctly translated into the\nmodern and technical English term virgin. The Jews did not have the type\nof virginity cult that the Greco-Romans had in Artemis and Diana.\n\n\nThe standard text used by Christians and Jews is the Masoretic Text.\nJews of course use the text in its original Hebrew, without translation.\n\n\nPropaganda.", "302": "I guess the real question is:\n\nWho asked the original questions, and why was it so _broad_.\nAre we talking pure processing power (what kind of processing BTW)\nisolated from every other factor and influence in the system? \nOr are we shopping for a home computer based on the CPU specs (yuck)!\n\nI just finished a project that involves real-time processing of serial\ndata and discovered that the programming interface (assembly) has\n_a lot_ to do with the \"power\" of a CPU in a particular application.\nIf what you want to do is easy to code with the instruction set given,\nthen not only is it easy, but it's cheap and quick. If you have to\nfake things (like resolving indirection without a LEA instruction), then\nyour cycle count goes through the roof!\n\nwell, let's _NOT_ start a flame war about whose computer is better than whose.\nThe orginal question was about classifying micro-processors...\nhaving re-read the entire thread, I don't think much more can be said without\ngetting down into specific proposed systems with important details given.\n\n\nThat's it for another $0.02.\n\nCheers everyone.\n\n\n~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=\n Peter Pundy\n\n Email: 2545500@jeff-lab.queensu.ca", "303": "Here is a press release from the American Federation of Teachers.\n\n HHS Secretary Shalala to Address AFT's Paraprofessional and\nSchool-Related Personnel Conference\n To: National and Assignment desks, Education Writer\n Contact: Jamie Horwitz of American Federation of Teachers,\n 202-879-4447\n\n News Advisory:\n\n Secretary of Health and Human Services Donna Shalala will speak\nto the 16th annual AFT Paraprofessional and School-Related\nPersonnel Conference at 8 p.m., Friday, April 23, at the\nWashington Hilton. Shalala will discuss HHS's agenda for helping\nchildren over the next four years.\n AFT's Paraprofessional and School-Related Personnel Division\nincludes school workers such as paraprofessionals and teacher\naides, school bus drivers, school secretaries, school custodians\nand maintenance workers and school food service workers. More\nthan a thousand school employees will attend the conference which\nis being held at the Washington Hilton, April 23-25. Most of the\nschool workers attending the conference come from urban school\ndistricts where child health and nutrition, welfare reform and the\navailability of Head Start and other preschool programs are major\nissues.\n Workshops scheduled for the conference include sessions\naddressing issues around reauthorization of Chapter 1; how\nparaprofessionals and school-related personnel, especially\nminority men, can serve as student role models; the increasing\nproblem of school violence; dealing with abused children; and\nassisting children with serious health problems.\n For a complete conference schedule, contact Jamie Horwitz\nat 202-879-4447.\n The American Federation of Teachers represents 805,000\nelementary and secondary teachers, paraprofessionals and\nschool-related personnel, higher education faculty, nurses, state\nand municipal workers.\n -30-", "304": "\n\n\n\n\n\tTry rec.radio.packet\n\n \n _______ ______\n / / / / Michael A. de Kraker\n / /______ / / Georgia State University 404-651-2390\n / ___ / / / Internet:REGMAD@GSUSGI2.GSU.EDU\n /_______/ ______/ /_______/ BITNET :REGMAD@GSUVM1 PACKET:KD4FKW@W4QO", "305": "I need some help in tracking down a dvi viewer for X. I have xdvi but we\nhave not got the X libraries and includes installed- so \n\t\ti) is there a way around this, as we are trying to avoid\n\t\t installing the stuff (space is at a premium).\n\t\tii)would someone be prepared to make the binaries\n\t\t available. We have a HP700 and a HP382.", "306": "According to an article in the LA Times, Todd Worrell will not\nbe ready to come off the DL list Friday. It sounds like\nhe has had another set back in his come back. At present,\nhe has stopped throwing the ball. Supposedly, he had\nno velocity. It doesn't sound like there is any particular\ntime table at this point for when he will be back.", "307": ": Build 59 causes 2 exceptions when I exit Windows. In fact, I have had\n: this happen on all builds after 44, which shipped with my Gateway\n: system. Am I doing something wrong, or is this problem commonly\n: overlooked?\n\nI have never had \"exceptions\" with build 44, 50, or 59 drivers. I have a\nGW2000 DX266.\n\n--", "308": "\nI've done some ASIC and digital design, but not any CPU design.\nIt would seem to me that on a 486, the FPU is not being used, most of\nthe cache is not being accessed, the off chip buffers/drivers are idle,\nthe multiplier isn't multiplying, the barrel shifters aren't shifting,\nmicrocode isn't microcoding, etc. This means transistors aren't\nswitching which means less power dissipated (in CMOS), which means\nless heat.\\\n\nFrom what I understand, the Pentium shuts down those sections of the\nCPU which aren't being used in order to cut down on heat/power.\n\n", "309": "G'Day All,\n\nI'm looking for a program to convert BMP images to GIF, TGA or even PPM.\n\nI'd prefer a unix program, but Dos is fine also.\n\nI've seen Alchemy (for DOS) and some windows image viewers which can save\nan image in other formats, but what I'm after is a converter not a viewer...\n\nAny help would be apprieciated!\n\ncheers\nStephen.", "310": "\n\n\n\n\nMy mistake. ", "311": "\nActually, I've got an entire list of books written by various atheist\nauthors and I went to the largest bookstore in my area (Pittsburgh) and\ncouldn't find _any_ of them. What section of the bookstore do you find\nthese kinds of books in? Do you have to look in an \"alternative\" bookstore\nfor most of them? Any help would be appreciated (I can send you the list\nif you want).", "312": "HELP!\n\nI am trying to find software that will allow COM port redirection under\nWindows for Workgroups. Can anyone out there make a suggestion or reccommend\nsomething. I would really hate to have to write some driver for the serial\nport that would support the network, but that is my next step.\n\nThanks in advance.", "313": "Hi!\n\nI want to change the default paper cassette on our LaserWriter Pro 630\nfrom the 250-sheet cassette to the 500-sheet cassette. Right now, we all\nhave to change it manually on the Print dialog each time we print. If we\nforget, the document is printed on the letterhead paper we have in the\n250-sheet cassette.\n\nAny ideas?\n--Michael", "314": "ALL,\n\nFinally cleaned out the storage room and have the following items\nfor sale:\n\n C-64 Computer\n 2-1542 Disk Drives\n 1351 Mouse\n all cables\n lots of software (mostly games)\n\nThe computer and drives work (hooked it to the TV to test)\nexcept for sound-evidently the sound chip is gone. When GEOS\nwas loaded, the mouse would not respond, so assume it is bad.\nCould be used for the games, or for spare parts.\n\nIf interested, would accept any reasonable offers.\n\nSend replies to ihlpl!rsbrd or call (708) 979-8816.", "315": "\nI have several questions:\n\n1) What do I gain with this new BIOS?\n\n2) How can I save a copy of my old BIOS in case I want to go back?\n\n3) How do I install the new BIOS?\n\nI'd like to enjoy, but need answers first.\n\nThanks\n\n\n-- ", "316": "Hi. I'm looking for information on how to directly manipulate\n video memory. I have an application that I would like to use this for,\n because it is much faster than going through the BIOS. I know that\n video memory ispart of the system area above the first 640K, so I guess\n I am looking to find out exactly what section of memory it is, and how it\n is layed out. Thanks.", "317": ": worked fine.) Please note: none of the software or hardware parameters\n: were changed, only the phone line itself. Is my new modem faulty? What\n: can I do? \n: \n: -- \n: David Thomas Dudek / v098pwxs@ubvms.bitnet \\ __ _ The Cybard\n\nI'm arguing with the phone company about a similar problem. We\ninstalled a second phone line in our home (for our kids), and whenever\none of them is on THEIR line, the modem returns \"NO DIAL TONE\" on its\nline.\n\nWhen we pick up the phone and listen, we can hear my kids' voices\n\"bleed\" through. Whenever we can hear this, the modem won't dial (even\nthough the dial tone is loud and clear through the modem speaker).\n\nI think it's the phone company's problem, but they say they can't\n(won't?) correct the problem...I'm still working on them. ;-}", "318": "\nPlease post to news, too.\n\n\n\n", "319": "1993 World Championships in Germany:\n ====================================\n\n Group A results:\n\n RUSSIA - SWITZERLAND 6-0 (2-0,1-0,3-0)\n\n 1st: RUS 1-0 Alexei Yashin 1 5:23\n RUS 2-0 Alexei Yashin 2 16:45\n 2nd: RUS 3-0 Ilia Biakin 1 7:13\n 3rd: RUS 4-0 Andrei Khomutov 3 3:47\n RUS 5-0 Ilia Biakin 2 4:13\n RUS 6-0 Sergei Sorokin 1 13:50\n\n Penalties: RUS 7*2min 1*5min game penalty, SWI 9*2min\n Referee: Rob Hearn, USA\n Attendance: 3,500\n\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n\n CANADA - AUSTRIA 11-0 (6-0,2-0,3-0)\n\n 1st: CAN 1-0 Shayne Corson 1 9:51\n CAN 2-0 Rod Brind'Amour 2 10:24\n CAN 3-0 Paul Kariya 1 12:42\n CAN 4-0 Gerry Galley 1 18:23\n CAN 5-0 Eric Lindros 2 19:11\n CAN 6-0 Rod Brind'Amour 3 19:46\n 2nd: CAN 7-0 Eric Lindros 3 0:31\n CAN 8-0 Eric Lindros 4 8:50\n 3rd: CAN 9-0 Brian Savage 1 13:37\n CAN 10-0 Brian Benning 1 16:26\n CAN 11-0 Geoff Sanderson 3 17:55\n\n Penalties: CAN 2*2min, AUT 2*2min\n Attendance: 7,500\n\n-------------------------------------------------------------------------------\n\n USA - FRANCE 6-1 (3-1,1-0,2-0)\n\n 1st: FRA 0-1 Antoine Richer 1 5:02\n USA 1-1 Adam Burt 1 8:32\n USA 2-1 Rob Gaudreau 1 18:15\n USA 3-1 Jeff Lazaro 1 18:29\n 2nd: USA 4-1 Adam Burt 2 10:54\n 3rd: USA 5-1 Shjon Podein 1 8:03\n USA 6-1 Rob Gaudreau 2 16:25\n\n Penalties: USA 3*2min, FRA 2*2min\n Referee: Darren Loraas, Canada\n Attendance: 1,511\n\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n\n FINLAND - NORWAY 2-0 (0-0,0-0,2-0)\n\n 1st:\n 2nd:\n 3rd: FIN 1-0 Juha Riihijarvi 1 4:16\n FIN 2-0 Kari Harila 1 12:37\n\n Penalties: FIN 5*2min, NOR 7*2min\n Referee: Sven-Erik Sold, Sweden\n Attendance: 3,600\n\n-------------------------------------------------------------------------------\n\n The best goal scorers:\n\n Eric Lindros\t\tCAN\t4\n Rod Brind'Amour\tCAN\t3\n Dieter Hegen\t\tGER\t3\n Andrei Khomutov\tRUS\t3\n Geoff Sanderson\tCAN\t3\n Ilia Biakin\t\tRUS\t2\n Adam Burt\t\tUSA\t2\n Viacheslav Bykov\tRUS\t2\n Jiri Dolezal\t\tCZE\t2\n Mike Gartner\t\tCAN\t2\n Rob Gaudreau\t\tUSA\t2\n Patrik Juhlin\t\tSWE\t2\n Frank Pajonkowski\tFRA\t2\n Bernd Truntschka\tGER\t2\n Jarkko Varvio\t\tFIN\t2\n Alexei Yashin\t\tRUS\t2\n\n-------------------------------------------------------------------------------\n\n Some WC stats:\n\n * Fastest goal in a WC game after first face-off:\n\n 10 seconds:\t Steve Larmer, Canada 1991 in a game vs Sweden (ended 3-3)\n Boris Michailov, USSR 1978\n\n * Most consecutive WC games without a loss:\n\n 47: USSR 1978-85\n 38: USSR 1963-68\n 37: Canada 1937-49\n 35: USSR 1985-90\n 27: Canada 1950-54\n", "320": "\n\nTsiel,\n\nI would contend that there was shelling from both sides of the border,\nstarting from the early 70's. Certainly the PLO did shell Northern\nIsrael from the Arqoub region, but Israel did much more shelling\ndestroying several South Lebanese villages. At the very least\nwe can say that both sides exchanged shelling, with occasional\naerial raids by Israel on Lebanese villages.\nIn any case Steve's characterization that the 1982 invasion was only in \nresponse to years of shelling from Lebanon is false. Israel had\nmany reasons for invading but mainly it did so to install a government\nin Lebanon favorable to Israel, and it nearly achieved this aim\nwith the election of Basheer El Gemayel, and his brother, Amin\nEl Gemayel, but the internal situation in Lebanon was too hard\nto control and predict so Israel had to withdraw, and Amin El Gemayel\nhad to abrogate the 17 th of May Agreement.\n", "321": "\nIf I remember correctly Prometheus books have this one in stock,\nso just call them and ask for the book.\n\nCheers,\nKent", "322": "\n\n\nIt is for a business and the end product has to be a photograph.\nI take damaged black and whites, usually old, some very, and repair them\nby hand at present. I would like to do this by using a computer.\nI am just trying to find a vendor who can convert my computer stored\nimages to negatives or thermal print. The customer will want his/her\ncopy as much as possible like a brand new original photgraph.\n\n\n-- David", "323": "\n\nOf course,\n\n\tHow many government projects after Using PERT, GANT, C.P.M.s\nProcess flow diagrams, Level 5 software projects.... actually\ncome in on schedule and under Cost. I know the GAO determined\nthat 80% of all NASA projects miss their budgets due to failing\nto adequately measure engineering developement costs. \n\nMe, I am allin favor of Government R&D. I thought Bell Labs was one of the best \nto do research. I don't think the government should pour money\ninto any one sector, but should engage in projects which naturally\npush the state of the art. \n\nTHings like High tech construction projects, apollo was worth it for the doing. Running hte national labs. The SSC is grossly overweight, but\nis a reasonable project at a lower cost. \n\nUnfortunately support for solo investigators is direly neglected.\n\nMaybe what they should do, is throw out much of the process and just tell\nnew PH'ds, you get a 1 time grant of $50,000.00 If you produce, you\ncan qualify for other grants. If you don't you never get in again.\n\nTHis way young people get a shot at reserach, and older stale \nscientists don't dominate the process.", "324": "\n(about my reply)\n\n\nIt a society that is constantly on the verge of flaming, Usenet, diplomacy\nis the best way to ensure the voice of reason gets through, isn't it?\n\n\nKevin, unfortunately you are now delving into field I know too little\nabout, algorithms. Your reasoning, as I see it, is very much along the\nlines of Roger Penrose, who claimed that mathematical 'insight' cannot\nbe algorithmic in his book _The emperor's new mind: Concerning\ncomputers, minds, and the laws of physics_. However, Penrose's\nclaim that he _has_ mathematical insight, or your similar claim\nthat wavefunctions collapse only when we consciously take a look,\ncould be just illusions.\n\nWe are obviouslu taking very different viewpoints - I try to ponder\non the problem of consciousness from an evolutionary perspective,\nrealising that it might not be anything special, but certainly\nuseful. Thinking back of what I wrote, do you think worms have minds\nor not? They are able to experience pain, at least they behave \njust like that. Yet it is conceivable that we might some day\nin the future perform a \"total synthesis of C. elegans\" from\nthe elements. Would such a worm have a mind?\n\n\nThis is true to some extent. However, I do not think that our brains\nwork like computers, at all. In fact, there is substantial evidence\n(Skarda, 1985; Skarda & Freeman 1987) that brains work more or less\nchaotically, generating enough randomness for mental states to evolve.\nOur brains work much like genetic algorithm generators, I suppose.\n\n\nIndeed, this is extremely unlikely, given the vast impact of nurture\non our mind and brain. I suggest, however, that before trying to\nunderstand our consciousness as a collection of algorithms. \n\nKevin, take a look at the references I mentioned, and think again.\nI still think the best experts on the nature of a conscious mind\nare neurologists, neuropsychologists and biologists (but do not \nflame me for my opinions), since they study beings that are\nconscious. \n\nThe reason I am repeating my advice is that this discussion cannot\nlead to anywhere if our backgrounds are too different.\n\nAnd please, do not bring QM into this discussion at all - not\nall physicists are happy with the claim that our consciousness\nplays some special role in physics. I would say it doesn't.\n\n\nAgain, _brains are not computers_. Don't forget this. This does not\nmean they need something else to work - they just work differently.\nTheir primary 'purpose' is perception and guidance of action, \nself-awareness and high intelligence are later appearances.\n\n\nYou are still expecting that we could find the idea of 'green' in\nour brains somewhere, perhaps in the form of some chemical. This is\nnot how I see it. The sensation 'green' is a certain time-dependent\npattern in the area V4 of our visual cortex, and it is distributed\nwith the help of areas V1 and V2 to the rest of the brain. \n\nIndeed, a firing pattern. I have sometimes thought of our consciousness\nas a global free induction pattern of these local firing patterns,\nbut this is just idle speculation.\n\nScientific American's September 1992 issue was a special issue on\nmind and brain. Have you already read it from cover to cover? ;-)\nThere are two articles on visual perception, so you might be \ninterested.\n\nBut again, please note that subjective experiences cannot be \nobserved from a third-person perspective. If we see nothing but \nneuronal activity, we cannot go on to conclude that this is not the\nmind.\n\nKalat (1988) writes about numerous examples where electric stimulation\nof different areas of brain have led to various changes in the \npatients' state of mind. For instance, a patient whose septal area\nwas stimulated (without his knowledge) by remote control during\na psychiatric interview was quickly cured of his depression, and\nstarted discussing a plan to seduce his girlfriend.\n\nStimulations in the temporal lobe have sometimes led to embarrassing\nsituations, when the patients have started flirting with the\ntherapist.\n\nIn conclusion, there is evidence that\n\n1) brains are essentially necessary for subjective experiences, \n brain damage is usually equivalent to some sort of mind damage\n\n2) conscious processes involve substantial brain activity in\n various areas of brain - when we think of colours, our\n visual cortex is activated etc.\n\n3) consciousness is an afterthought - we become conscious of our\n actions with a half a second delay, and our brains are ahead\n of our 'conscious will' by at least 350 ms. \n\nThus, I think it is fruitful to turn the question \"Why do 'I' see\ncolours\" around and ask \"What is this 'I' that seems to be \nobserving?\", since it seems that our conscious mind is not\nthe king of our brains.\n\n\nThis depends on what is meant by 'seeing colours'. Does a neural\nnetwork that is capable of recognising handwritten numbers from\n0 to 9 see the numbers, if it is capable of sorting them?\n\nIf you are asking, \"why does an animal who is conscious of itself\nas an observer have an evolutionary advantage over an animal who\ndoesn't\", I have a good answer - read my previous posting,\nwhere I wrote why a sense of identity helps social animals to swap\nroles and act more morally, so that they don't unconsciously\nkill each other with newly discovered weapons. (A bit extreme,\nbut this is the basic idea.)\n\nWhen early _Homo_ became more and more efficient in using tools, \na sense of identity and the concept of 'self' had to evolve in\nline with this development. Indeed, respect for others and \nconscious altruistic behaviour might be evolutionary advantages\nfor social animals, such as early humans. \n\n\nIf minds are required for this, does this mean that until human\nminds came to the scene, wavefunctions never collapsed, but remained\nin the superpositions for aeons? My, how powerful we are.\n\nThis has been discussed before, and I think this topic is irrelevant,\nsince we do not agree that minds are necessary, and neither do\nphysicists. \n\n\nI agree, but not in the sense you apparently mean above - physics\nneeds sharp minds to solve many real problems. ;-)\n\n\nIt's OK, if you don't forget to take with you the references I\nwrote about in my previous posting, plus the following:\n\nKalat, James W. (1988): Biological Psychology.\n3rd ed., Wadsworth Publishing Company, Belmont, CA 1988.\n\nSkarda, C. (1985): Explaining behavior: Bringing the brain back in.\nInquiry 29:187-202.\n\nSkarda, C. & Freeman, W. (1987): How brains make chaos in order to\nmake sense of the world. \nBehavioral and Brain Sciences 10:161-173.\n\nPetri\n", "325": "\n\n\n\n\nCould someone please post Roger Grywalski's response? Or point me to where\nI could find it?\n\nThanks a lot,\n\n\nS. Raj Chaudhury\t\t\t|\nDept. of Physics \t\t\t| raj@phys.ksu.edu\nKansas State University\t\t\t|\nManhattan, KS 66506\t\t\t|", "326": "\nI had posted that it came from a survey of registered users, I \ndouble-checked with a friendly neighborhood marketing type and\nfound there were actually two surveys. One of randomly selected\nresellers, one of randomly selected users from the 6 upgrade \nregistered user database. Both surveys showed a 93% positive\nrating.\n\n-jen\n\n-- ", "327": "\n", "328": "\nFollowing up to my own article... I found that several people say that \nLAN Server clients can talk to WFW. Is this, then, also true for LAN\nManager? (Don't LAN Server and LAN Manager share common roots?)\n\n\nSomewhat less so now... :)\n", "329": "Go to your public library and get the February, 1988 issue of Consumer\nReports. An article on allergy shots begins on page 96. This article\nis MUST reading for anyone contemplating allergy shots.\n", "330": "Question for those of you who seem to be fundamentalists (Stephen\nTice, the Cotera, Joe Gaut, et al)(apologies if I've mislabelled any\nof you, I've only started reading t.r.m since the BD disaster. But I\nknow the Cotera is a fundy) and are defending Koresh and his beliefs\nas an example of True Christianity under persecution from the the Big\nBad Secular State: what is your opinion of his reported sexual habits?\nIf the reports are accurate, what IYO does this say about the quality of\nhis Christianity? Or are the allegations just part of the Big\nCover-Up?\n\n(I remain deliberately neutral on the cause of the fire: I wouldn't\nput it past Koresh to have torched the place himself. On the other\nhand, if the propane-tank-accident story is correct, I wouldn't put it\npast the FBI to try to cover its ass by claiming Koresh did it. I\nhope your government does a VERY thorough investigation of the whole\ndebacle, and I'll be disappointed if a few heads don't roll. The\nauthorities seem to have botched the original raid, and in the matter\nof the fire, are guilty of either serious misjudgement, or reckless\nendangerment.)", "331": "Quebec dominated Habs for first 2 periods and only Roy kept\nthis one from being rout, although he did blow 2nd goal.\nCanadians showed up in third but Nords were playing dump &\npull back most of the time. Hextall made some good saves but\nreally this one was lost in first period when nords scored 3\n& could have had 5, plus another 4 in 2nd. Canadians are dead\nmeat, they may take one or 2 but this one is over. Tee it up\nJacques, next time you might rest players & forget about 1st\nplace, welcome to the Adams division.", "332": "", "333": "For Sale 1989 Kawasaki TS (650) Tandum seating\nColor: White with Blue and Red.\nJet Ski runs great and looks good.\n\nZiemans Trailer with locking Utility Box.\nColor: Black\nZiemans Trailer is less than a year old.\n\nBoth have been garaged kept and well maintained.\n$4200.00 for both \n(To be sold as a set only)", "334": "You mena in the same way french intelliegence agents steal\ndocuments from US corporate executives?", "335": "Hi,\n\nI got a NE2100 compatible ethernet card, and I just received my copy\nof Chameleon NFS. Unfortunately, it is not compatible with the NE2100\n(only NE2000 or NE1000). What is the latest version number for Chameleon\nNFS ? Did soemone tackle this problem ?\n\nThanks for help,\n\nF. Popineau\n", "336": "\nW --> \nW --> SEE! The Providence Bruins lost the first two games at home and came back to\nW --> tie the series on the road, there may be hope for the Bruins yet!\n\nToast. They're toast. (And I know how much you want me to eat these \nwords, but it ain't gonna happen.) Are the golf courses in the Boston \narea in playable condition yet?\n\n- Jack\n\n * Acid consumes 47 times its weight in life!", "337": "As I recall from Kieth Hernandez' 'auto'biography, Rusty is a devout\nRoman Catholic. Kieth and Rusty would carpool to Shea everyday but\nSunday, when Rusty would go to mass.\nSC\n", "338": "\n\nThe IRS doesn't need to rely on the Federal Marshall's Services; the\nIRS has its own Swat teams. I saw a picture of one in an article on\nthe IRS in some magazine or other.\n-- \nDave Feustel N9MYI ", "339": "\n\n\n\nBut it is subject to all kinds of bias, and is almost completely useless\nfor first basemen. From the raw stats, there is no way to tell which of\na first baseman's putouts were made on throws from other fielders, and\nwhich were made on his own plays; likewise, you can't tell whether a\ndouble play was 6-4-3 or 3-6-3. Fielding Runs thus gives a first\nbaseman no credit for putouts or double plays, only for assists and\nerrors. \n\nIt thus favors first basemen who play deep, reaching a lot of balls but\nforcing the pitcher to cover first more frequently. It also hurts first\nbaseman who play behind left-handed pitching staffs and thus face few\nleft-handed batters.\n\n\nThis is better; of course, it still isn't all of a first baseman's\ndefense.\n\n\nDefensive Average, which uses larger (and probably better) zones, has\nMattingly tied for second in the league.\n\n\nWhile 233 batting runs is good, it is mostly in the past; the runs he\nproduced in 1986 don't say much about his value in 1993. \n", "340": "\tPersonally, I think it was Mrs. O'Leary's cow that knocked over that\nlantern...\n\n:*)", "341": "I'm interested in this from the other angle: what antihistamine can I\ntake at bedtime for relief of allergies, with the assurance that its\nsedative effect will have completely worn off by the next morning, but\npreferably with the anti-allergy effect lasting longer?\n\nI'm thinking mainly of OTC products. Which has the least duration of\nsedative action: Benadryl, Chlor-Trimeton, or what?\nNote that I'm asking about duration, not intensity.", "342": "FULL 1993 CALDER CUP PLAYOFF SCHEDULE AND RESULTS\t\nhome team in CAPS\t\t*=if necesary\n\nFIRST ROUND\t\t\t\t\t\nSpringfield Indians vs Providence Bruins\nGm 1:\tSpringfield 3\tPROVIDENCE 2\t\nGm 2:\tSpringfield 5\tPROVIDENCE 4\nGm 3:\tProvidence 3\tSPRINGFIELD 2\nGm 4:\tProvidence 9\tSPRINGFIELD 0\t\t\nGm 5:\tSpringfield 4\tPROVIDENCE 2\nGm 6:\t4/24\tProvidence at Springfield\t\nGm 7:\t4/27\tSpringfield at Providence\t*\n\nCD Islanders vs Adirondack Red Wings\nGm 1:\tADIRONDACK 6\tCDI 2\nGm 2:\tADIRONDACK 5\tCDI 3\nGm 3:\tAdirondack 3\tCDI 0\nGm 4:\tAdirondack 3\tCDI 1\n(ADIRONDACK WINS SERIES, 4-0)\n\nBaltimore Skipjacks at Binghamton Rangers\nGm 1:\tBaltimore 4\tBINGHAMTON 3\t\nGm 2:\tBINGHAMTON 6\tBaltimore 2\nGm 3:\tBinghamton 8\tBALTIMORE 3\nGm 4:\t4/24\tBinghamton at Baltimore\nGm 5:\t4/26\tBaltimore at Binghamton\t\nGm 6:\t4/28\tBinghmaton at Baltimore\t*\nGm 7:\t4/30\tBaltimore at Binghamton\t*\n\t\t\nUtica Devils vs Rochester Americans\nGm 1:\tUtica 3\t\tROCHESTER 2\t(OT)\nGm 2:\tROCHESTER 9\tUtica 3\nGm 3:\tRochester 6\tUTICA 4\nGm 4:\tRochester 4\tUTICA 3\t\t(OT)\nGm 5:\t4/24\tUtica at Rochester\t\nGm 6:\t4/26\tRochester at Utica\t*\nGm 7:\t4/28\tUtica at Rochester\t*\n\nMoncton Hawks vs St John's Maple Leafs\nGm 1:\tSt JOHN'S 4\tMoncton 2\t(at Halifax)\nGm 2:\tST JOHN'S 3\tMoncton 2\t(at Halifax)\nGm 3:\tSt John's 6\tMONCTON 5\nGm 4:\tMONCTON 5\tSt John's 4\t(OT)\nGm 5:\t4/26\tMoncton vs St John's at Halifax\t\nGm 6:\t4/28\tSt John's at Moncton\t\t*\nGm 7:\t4/30\tMoncton vs St John's at Halifax\t*\n\nCape Breton Oilers vs Fredericton Canadiens\nGm 1:\tFREDERICTON 4\tCape Breton 3\t(2OT)\nGm 2:\tCape Breton 5\tFREDERICTON 2\nGm 3:\tCAPE BRETON 3\tFredericton 0\t\nGm 4:\tCAPE BRETON 6\tFredericton 5 \t(OT)\nGm 5:\t4/24\tCape Breton at Fredericton\t\nGm 6:\t4/26\tFredericton at Cape Breton\t*\nGm 7:\t4/28\tCape Breton at Fredericton\t*\n(note about this series: the AP reports that CB has won this\n series 4-1, but in the original schedule, Game 5 wasn't supposed\n to be until tonight and I only have the Oilers as being up 3-1)", "343": "I've got an IN-2000 working in a (wimpy) 386SX20 presently. In a few\nmonths I'm getting a 486 motherboard and probably a Toshiba 3401e CDROM and\na SBPro.\n\nWill I need special drivers for getting all this to work? Do they exist?\nBasically, is this feasible, or should I expect to be getting a newer, \nfaster SCSI card?\n\nthanks,\n-Bryan\n", "344": " I did. You're mistaken. NSA's communications intelligence mission is\n strictly against foreign governments. Here's an excerpt from the enabling\n charter (24 Oct 52, Truman) that should clarify this. The charter was\n declassified in about Feb 1990 when an FOIA request made it public.\nInteresting! Where can I get the whole thing?\n\n NSA is not in the standard-setting business, though -- that's why this\n Clipper stuff came from NIST, which I believe is tasked with coming up\n with standards based on their best inputs from other government agencies,\n which would include NSA.\n\nSeveral of the newspaper reports have made it fairly clear that the\nNSA did all the real work. You can't believe everything you read in\nthe papers :-), but the package of information the NIST is faxing out\nhas so little information beyond what's widely known that it sounds\nlike it's true.", "345": "\nM --> \nM --> Look for the Leafs, led by a healthy Doug Gilmour and a confidence-restored\nM --> Felix Potvin to do the Blues in 6. The Leafs will have 3 more games with the\nM --> Wings and that should give Joseph a few extra days to pass those horshoes.\nM --> \n\nHA! Roger the dodger is back! (on the bandwagon, that is.)\n\n- Jack\n\n * Please Tell Me if you Don't Get This Message", "346": "Hi Netters,\n\tHaving inherited a Solbourne (S-4000 : Sun 4 Compatible), I was wondering\nif somebody has ported X11R5 to this beast. Since Solbournce Computer Inc. folded\nup I don't know where I can get the kernel to move from R4. Since they never\njoined the MIT Consortium, the regular distribution doesn't work. Any pointers\nwill be highly appreciated.\n\nJulian", "347": "\nI really don't want to get into a DidSo-DidNot debate with you. But\nthis is somewhat at the heart of our disagreement. I did not say, \nnor did I imply, that I could predict the future. You have inferred\nthat my comments meant this, and you have based your rebuttal of my\ncomments on the fact that statistical studies have demonstrated that\nthere is no reasonable basis for predicting future performance in\nregard to clutch hitting.\n\n\nSabo\t\t1539\t452\t.294\t\t259\t59\t.228\nSamuel\t\t1564\t383\t.245\t\t278\t83\t.299\t\n\nThat is *your* opinion that Sabo is \"clearly a better hitter\" than\nSamuel. The above data is for a 4-year period ending last season.\nLast season Samuel batted .272 while Sabo hit .244 (not park adjusted).\nThis season they are both hitting below .200, albeit Sabo with more\nat bats. I will agree that over his career Sabo has been a better\nhitter than Samuel, but I will also remind you that Samuel has been\na better hitter in certain situations than Sabo.\n\nI did not predict that Sabo would choke, nor that Samuel would get a\nhit. I expressed my opinion that had I been the Reds manager (or\neven a Reds fan) that I would prefer to have Samuel hit in that\nsituation than Sabo.\n\n\n\nAh. \"properly\". Yes. I see.\n\n\nPlease help me. What, exactly, is \"everything else\" that pointed to Sabo?\n\n\n\nI must say, I was not aware of the publication. Can you email me the\ninformation regarding its availability?\n\nAnd I guess I must apologize to all of those who have done extensive \nstudy on, say, supply side economics. I didn't mean to insult you.\nBut I never did believe you were on the right path. I'm sorry for\nmy contrary opinion/position. I also regret that I don't have the\nability to prove that you are wrong. But you are.\n \n\n\nIt is what it says it is!\n\n\n\nThe \"second\" is *your* statement, not mine.\n\nWell, actually, I haven't yet. But I'm not finished looking.\nThat is, I haven't yet found someone who hit significantly below\nhis overall batting average in clutch situations for the years \n1989 - 91, and then reversed that relationship in 1992.\n\n\n\nNope. Sorry. But if you were interested in a reason why I expect\nChris Sabo's ability to hit in the clutch to correlate from one\nyear to the next, I think I could. If you were interested in a\nreason why I expect Joe Carter's ability to hit in the clutch to\ncorrelate from one year to the next, I think I could. But you're\nnot interested in that, because you think that those conclusions\ncould only be valid if they could be extrapolated over the entire\nbaseball population. And they can't be.\n\n\n\nThe problem here is that I *do* believe you. I accept your work.\nI believe that trying to predict future clutch performance based\non prior clutch history is meaningless. No better than a coin toss.\nI actually *do* accept your work.\n\nAs it happens, I also have an *opinion* that in certain situations,\nfor certain players, a history of superior or inferior ability to\nhit in the clutch might suggest a reason what such history could be\nvalid in projecting future player performance. For that player.\nAnd Chris Sabo is one such player.\n\n\n\nWell, since I defer to your statistical wisdom, I think I must have\nan open mind. Now we have to pose the same question to you.\n\n\n\n\n--\tThe Beastmaster\n\n\n", "348": "\nStill thinking you have all the answers, eh?\n\n\nJim\n--\njmd@handheld.com", "349": "\n...execellent examples of Luther's insane rantings deleted...\n\nGee, I'm *sooooo* surprised that they don't teach this part of his\nideology in high schools today.\n", "350": "\nFaith and intelligence tell me that when a druggie breaks into my house at\nnight with a knife to kill me for the $2 in my wallet, a .357 is considerably\nmore persuasive than having devotions with him.\n", "351": "Hi. I'm looking for a 3D shark for use in a ray tracing rountine I'm doing.\n I'll be using Vivid or POV, but it can be in any format. Are there any\n FTP sites with 3D objects or does anyone have a good 3D shark?\n\nThanks alot!\n\nChad\n\n", "352": "\n\nFine, are you willing to bet that he will bat .400 the rest of the way?\n\nThe point is that he has hurt the Rockies so far; it's that he *will* hurt\nthem, eventually. Just as much as he hurt the Expos and the Cardinals the\npast couple seasons.\n\n\nIt has happened for the past 3+ seasons; where have you been?\n\n\nWe'll see come September. (I have an outstanding bet with someone that\nGalarraga's OBP will be less than .300 on June 1.)", "353": "I recently saw a message here (posted by Bob Silverman, I think) which \nreferred to a \"birthday\" attack on a cryptosystem. I'm looking for \nreferences on, and explanations of, this type of attack.", "354": "From: Center for Policy Research \nSubject: Zionists reject non-Jews. News\n\n\nEthiopian Jews and not-quite Jews\n\nThe Israeli press has published items about Ethiopian \nJews waiting in camps in Addis Ababa for immigration to \nIsrael, who are dying of starvation. The following are \nexcerpts from an interview with the former general \ndirector of the JDC project for development and welfare \nof Ethiopian Jews, Kobi Friedman (Hadashot, 21 April \n1993), who has stated that \"there are people dying in \nAddis Ababa, but they are converts to Christianity\":\n\n\"Hadashor published the item about the dying Jews after \nviewing a video tape filmed last week in Adis Ababa. \nHow do you know that they are actually converts to \nChritianity ?\n\n\"If there are Jews on the tape, then I don't know what to \nsay. I am speaking from experience when I say that those \nwho remained in Ethiopia are Christians. I know that \nthere have previously been things published in the press \nby interesting parties, and there is no connection \nbetween them and reality.\"\n\n\"What interested parties ?\"\n\n\"Ethiopian immigrants who want their Christian relatives \nto come here.\"\n\n\"What to you recommend that Ethiopian children in Israel \ndo, when their parents and the rest of their relatives \nremain in Ethiopia ?\"\n\n\"I ask if it is the job of the State of Israel to bring in the \n40 relatives who stayed in Ethiopia. Well, my answer is \nthat it is not. It would be a better solution, economically \nas well, for that young man to buy a one-way ticket to \nEthiopia and reunite with his family there.\"", "355": "I had ankle reconstruction (grafting the extensor digitorum\nlongus to the lateral side of the ankle, along with a video\narthroscopy of the ankle (interesting to watch, to say the\nleast). Since then, I have had periodic muscle spasms (not\ncramping, but twitching that is very fast) in some of the\nmuscle groups along the lateral side, and along the top of\nmy foot. \n\nTX with quinine sulfate produced ringing in my ears, but did\nhelp with the spasms.\n\nI am on flexeril now, but no discernable help with the spasms.\n\nAny ideas?\n\nOne thing - I am in a short leg cast, so heat is not the answer.", "356": "", "357": "I have a '81 DATSUN 210 HATCHBAK forsale:\n\n\tIt's a Blue Datsun\n\tTwo doors (three, since it's a hatchback)\n\t69,900 miles\n\tAutomatic\n\tVery good condition (I hate to sell it, but Phila insurance is\n\t\t\t outrageous; I also don't need a car right now)\n\tI am asking $800 or BO", "358": "Hi,\n\nI have been told by a local sales that Asante has come out with this\nLCIII PDS Ethernet adapter with an optional 68882 socket on the board.\nMy question is will the FPU performance degrade will I put the 68882\non the PDS card socket instead of on the motherboard itself? Intuitively,\nthe math co-processor should always be placed close to the CPU, but\nI am not sure how good Apple's so-called processor-direct slot is when\nit comes to throughout. Does anyone know the answer to this or have\nany experience with the Asante LCIII Ethernet adapter? Thanks in advance.\n\nAndy", "359": "\n\n\nAnd unless I am mistaken (I screwed up my borrowed VCR and got the first 2\nminutes :-), the Corrado SLC was awarded AJAC's Sports (Sporty?) Car of the\nYear..\n\nMattias\n", "360": "\nAnd not the only quality Mariner pitcher. I logged on expecting to see\nat least ONE congratulatory note for Chris Bosio's NO HITTER, but nary\na peep. \n\nSo I'll take this opportunity to note that the red feet are now 11-5 and\nslinking out of town without having scored a run in the last two games\nor even a hit in last night's gem. \n\nNot that we M's fans can compare our suffering to those of the followers\nof New England's long-running tragedy, but only one winning season in\nhistory is something of a burden to bear. So we'll take our joys when\nwe can get 'em. \n\nThe Mariners now have two no-hit pitchers on the staff and not\ncoincidentally those pitchers beat the Red Sox in back to back games.\n\njsh", "361": "From 9150618 Thu Apr 29 16:36:43 1993\nDate: Thu, 29 Apr 1993 16:36:42 +1000\nFrom: 9150618 (Gavin Fairlamb)\nTo: 9130037\nStatus: R\n\n\nHello, folks...\n I am doing a uni. project and was wondering if you could\n supply with some specific info. or references for info. regarding\n \t\t1). Considerations for installation of XWindows in\n\t\ta HP 9000(unknown model)\n 2). Motif, OPENLOOK, XToolkit????\n 3). X11, X11R.... \n 4). Glossary of any term on X \n\tWe considering this software for the project which deals\n in image analysis...\n\n Any info. would be greatly appreciated.", "362": "# Mr Cramer-\n# \n# You are on one hand condemning the news media as;\n# \n# \"The Role of the National News Media in Inflaming Passions\" that\n# was your message subject I believe.\n# \n# Then you turn around and actually take; From the Santa Rosa (Cal.) Press-Democrat,\n# April 15, 1993, p. B2: \n# \n# Male sex survey: Gay activity low title.\n# \n# You even use such a title for the San Jose Mercury News- the Murky News.\n# \n# Now which is it? Are you going to comdemn national media, then turn around\n# and use it to support some position you present? Seems somewhat contradictory\n# doesn't it.\n\nIf you can show me that the Press-Democrat misrepresented the Guttmacher\nInstitute's study, do so.", "363": "What's the best way to archive GIF's? I zip them and they only shrink 1%. I\nhave most compression programs except stacker which I heard was good for GIF's.\n\n\nThanx\n-Brando", "364": "Grr. Hate the bastard who picked the weather for today.\n \n Went up to visit a friend overnight (about 45 minute ride).. rode up after \nwork, only minor drizzing for the last 5 minutes of the ride... rest of the \nride was very zen.\n \n Got up this morning, needed to go home and get some disks & stuff to work \non her computers with, rainy as all hell. Soaked and cold by the time I got \nhome.\n \n Since I didn't have another set of thermals which were dry, I said \"to heck \nwith it\" and drove my cage back up.\n \n Lo and Behold, those funny blue clouds were up in the sky and this warm \nyellow thing I haven't seen in quite awhile showed up when I was 10 minutes \ninto the trip.\n \n And me in my cage. Oh JOY.\n \n \n Happily, my right hand mirror finally showed up at the dealer (dropped the \nbike when I first got it, put on an EMGO replacement mirror... hated it the \nentire time that thing was on my bike because I couldn't see a DAMNED thing \nthrough it, plus it's flat instead of convex like the stock mirrors, so you \nget a NARROW ANGLE wobbly blur)... And I got a replacement windshield for my \nfairing (dropped the original and chipped the front edge... cosmetic but \nannoying)... so I spent half an hour happily unscrewing things and replacing \nthem this afternoon.\n \n 'Bout the only thing I still hate about the bike ('75 CB360T) is the damned \n\"2 D-Cell Flashlight\" headlight.", "365": "\n\n\n\nI don't see any way that the concrete floor could do anything to the\nbattery.\n\nHowever, you would have been better off leaving them outside. Keeping\nthem cold would have been better for them than bringing them inside.\nA warm battery will self-discharge faster than a cold one.\n\nWhen you are storing a battery it's a good idea to charge it once a month.\nLetting a battery go completely dead is bad for it (I suspect this is\nwhat caused your problems).\n\n-- ", "366": "\nOK. It varies from state to state. It has to do with operating a vehicle\nwhile there is greater than a given percentage of alcohol in your\nbloodstream. Can we drop this now, and get back to asking Ed Green to\ngetabike?\n\n tom coradeschi <+> tcora@pica.army.mil", "367": "Here is how I modified my Quadra 700 for higher speed. Previously I\nhad been using a Variable Speed Overdrive for accelerating my CPU\nbut this modification is testing out as more stable at higher speeds.\n\nYour mileage may vary. The top speed you achieve cannot be predicted\nbefore hand. My personal Q700 has tested fine up to 32 mhz thus far.\nI didn't have higher speed clock oscillators on hand to test higher\nspeeds.\n\nParts\n\n\tClock Oscillators (4 pin TTL variety) You will need a selection of\n\tspeeds beginning at 50 mhz on up. The CPU will run at 1/2 the\n\toscillator speed. The original one is a 50 mhz unit. I recommend\n\tgetting a 50 mhz clock in case you damage the existing one.\n\n\t I obtained my clock oscillators from DigiKey 1-800-344-4539 for\n\t less than $5.00 each. Some of their part numbers are:\n\n\t\t 50 mhz TTL Clock Oscillator (part # X121)\n\t\t 62 mhz TTL Clock Oscillator (part # X136)\n\t\t 66 mhz TTL Clock Oscillator (part # CTX137)\n\n\t Don't get the half size clock oscillators. They won't fit.\n\n\t There are also CMOS clock oscillators. I haven't tried one in a\n\t Quadra. (They work fine in IIsi's)\n\t \n\tSocket: Obtain a 4 pin socket which is in the same form factor as\n\t a 14 pin DIP package. Alternatively, use 4 machined socket pins\n\t from an Augat style socket. Just cut them out of the socket.\n\n\tCooling Fan: A very small 12 volt fan to keep the CPU cool is a \n\t must. My VSO came with a specially modified heatsink which had\n\t a fan built onto it. It had a pass-through connector which\n\t tapped into the hard drive power cable. You should rig up \n\t something similar or risk frying your CPU.\n\t \nProcedure\n\n1) Insert usual disclaimer and antistatic warnings here.\n\n2) Remove the top lid of the machine. You will see the floppy disk and\n hard drive mounted in a plastic tower. Follow the usual anti-static\n precautions and of course make sure the machine is OFF when you do\n this. Unplug ALL cables, wall and monitor power supply cords from\n\tthe back of the mac.\n \n3) Remove the power supply by pulling the plastic interlocking tab on the\n tower forward and simultaneously pulling the power supply straight up.\n The tab is a piece of plastic from the left posterior aspect of the\n tower which extends downward to hook on to the power supply. You may\n also feel a horseshoe shaped piece at the right portion of the power\n supply. Leave that alone. The plastic tab from the tower is all you\n need release.\n \n4) Look at the rear of the tower assembly. You will see the flat ribbon\n SCSI connector to the hard drive, a power cable and a flat ribbon cable\n leading to the floppy drive. Disconnect all these from the motherboard.\n The hard drive power cable connector has a tab which must be squeezed\n to release it.\n \n5) Unplug the drive activity LED from its clear plastic mount\n\n6) Look down the posterior, cylindrical section of the plastic tower. A\n phillips head screw is at the base. Remove it, taking care not to drop\n it into the case. A bit of gummy glue on your screwdriver is helpful\n here.\n\n7) Remove the tower assembly by pulling medially the plastic tab on the\n right side of the tower. This tab prevents the tower from sliding\n\tposteriorly. Slide the entire tower assembly 1 cm posteriorly then\n\tlift the tower assembly straight up and out of the case.\n\n8) Remove the interrupt switch assembly. It is a strangely shaped plastic\n device at the left, front edge of the motherboard. Pull the middle,\n\trear plastic prong up and forward. The entire device will release.\n\t\n9) Unplug the speaker cable. Squeeze the plastic tab on the speaker to\n free it then swing it backwards to free it from the case.\n\t\n10) Remove the motherboard form the case. Lift the front right corner of\n the motherboard about 1 mm. This allows it to clear the clear plastic\n\tPower light guide. Slide the motherboard forward about 1 cm. The\n\tmotherboard then comes directly out.\n\t\n11) Locate the 50 mhz clock crystal. It is a small metal box near the\n CPU chip. Note and remember its orientation. The new clock oscillators\n\tmust be aligned with pin 1 in the same orientation.\n\t\n\tVery carefully desolder and remove the old clock oscillator. Some of\n\tthe pins may be bent over. Simply desolder then unbend them. Be sure\n\tyour desoldering iron is hot enough before heating the board.\n\t\n\tI used a suction desoldering iron to accomplish this task. This is\n\tNOT appropriate for a first soldering experience. The motherboard is\n\ta multi-layer design with very fine traces - easily damaged without\n\tproper care.\n\t\n12) Install your socket or socket pins where the old oscillator once was.\n\n13) Put a 50 mhz clock oscillator into the new socket. You could use the\n\told clock but it has solder on its pins. This may come of inside the\n\tsocket and cause corrosion problems later. I suggest using a new\n\t50 mhz clock.\n\t\n14) Install your cooling fan system to complete the modification.\n\t\n14) Reinsert the motherboard and slide it into place.\n\n15) Snap in the interrupt switch assembly and speaker to lock the mother\n board firmly. Plug the speaker wire back into the motherboard.\n\t\n16) Reinstall the tower assembly by first placing the right wall of the\n tower against the right wall of the case with the tower assembly about\n\t1 cm posterior of its intended position. Lower the tower assembly into\n\tplace while maintaining contact with the right wall of the case.\n Once fully down, slide the tower assembly anteriorly until it clicks\n into place.\n\t\n17) Reconnect the motherboard ends of the cables. DONT'T FORGET THE FLOPPY\n DRIVE CABLE.\n\n18) Replace the phillips head screw\n\n19) Drop the power supply straight down into place until it clicks in.\n\n20) Plug the hard drive activity light back into its clear plastic mount.\n\n21) Reattach your cables and power cords. Cross your fingers and turn \n on the Mac. It should make the usual power on chord. If it doesn't,\n\tsomething is amiss. Immediately turn of the power and recheck your\n\thandiwork. If all is not well, you have my sincere condolences.\n\t\n\tHopefully, all will work normally. Turn the machine back off and\n\treplace the 50 mhz clock oscillator with a faster one. Reboot and\n\tbe astounded. \n\t\n\tYou will need to fully test the machine for many hours before deciding\n\ta particular speed is truly usable. With my VSO, a machine lock-up\n\tmight take 8 hours of operation to occur. In the brief time since\n\tmodifying my clock oscillator (36 hours) I have not had a single\n\tproblem.\n\t\nGood Luck to all who attempt this modification. There is a small but real\nrisk, but you could well reach Quadra 950 speeds or higher with less than\n$50 in parts.", "368": "\nIt has been done, but the other companies don't have the marketing\nbudgets that MS do. 4DOS, for instance, is everything that\nCOMMAND.COM should have been (but never could be under MS). Those who\nuse it usually find it more addictive than crack cocaine. But they\nhave to rely on word of mouth for sales. It seems to have worked\npretty good so far, but your corporate weenie manager type usually\nlikes to see a big glossy ad in PC Magazine. That's okay, marketing\nisn't a fundamental human right, but they've got a product that's\nsuperior to the DOS command interpreter in every way. They have a lot\nmore to be proud of than MS does. If MS really gave a damn, they\ncould duplicate it, buy it outright (they've got the money), or even\nuse the old ruse of sending engineers out to help them with\ncompatability issues and absconding with the technology.\n\nDOS is a mediocre product at a cheap price backed up by top notch\nmarketing and vendor agreements. The \"mediocre\" was excusable in the\nearly days when it was someone else's hack, but they've had ten years\nto play with it.\n\nAn interesting thought on that: Most MS products that I'm aware of in\nthe last few years allow you to access the names of the designers and\nprogrammers through easter egg screens, including Windows, or at least\nhave the names buried in the files. Is there such a thing in DOS 5.0\nand 6.0, or are they too ashamed to have their names on it?", "369": "I am looking for a 20/40 MHz scope, in good condition. Please email me or call me at (713)280-2788.\n\n", "370": "I am pleased to announce that a *revised version* of _The Easy-to-Read Book\nof Mormon_ (former title: _Mormon's Book_) by Lynn Matthews Anderson is now\navailable through anonymous ftp (see information below). In addition to the\nchange in title, the revised ETR BOM has been shortened by several pages\n(eliminating many extraneous \"that's\" and \"of's\"), and many (minor) errors\nhave been corrected. This release includes a simplified Joseph Smith Story,\ntestimonies of the three and eight witnesses, and a \"Words-to-Know\"\nglossary.\n\nAs with the previous announcement, readers are reminded that this is a\nnot-for-profit endeavor. This is a copyrighted work, but people are welcome\nto make *verbatim* copies for personal use. People can recuperate the\nactual costs of printing (paper, copy center charges), but may not charge\nanything for their time in making copies, or in any way realize a profit\nfrom the use of this book. See the permissions notice in the book itself\nfor the precise terms.\n\nNegotiations are currently underway with a Mormon publisher vis-a-vis the\nprinting and distribution of bound books. (Sorry, I'm out of the wire-bound\n\"first editions.\") I will make another announcement about the availability\nof printed copies once everything has been worked out.\n\nFTP information: connect via anonymous ftp to carnot.itc.cmu.edu, then \"cd\npub\" (you won't see anything at all until you do).\n\n\"The Easy-to-Read Book of Mormon\" is currently available in postscript and\nRTF (rich text format). (ASCII, LaTeX, and other versions can be made\navailable; contact dba@andrew.cmu.edu for details.) You should be able to\nprint the postscript file on any postscript printer (such as an Apple\nLaserwriter); let dba know if you have any difficulties. (The postscript in\nthe last release had problems on some printers; this time it should work\nbetter.) RTF is a standard document interchange format that can be read in\nby a number of word processors, including Microsoft Word for both the\nMacintosh and Windows. If you don't have a postscript printer, you may be\nable to use the RTF file to print out a copy of the book.\n\n-r--r--r-- 1 dba 1984742 Apr 27 13:12 etrbom.ps\n-r--r--r-- 1 dba 1209071 Apr 27 13:13 etrbom.rtf\n\nFor more information about how this project came about, please refer to my\narticle in the current issue of _Sunstone_, entitled \"Delighting in\nPlainness: Issues Surrounding a Simple Modern English Book of Mormon.\"\n\nSend all inquiries and comments to:\n\n Lynn Matthews Anderson\n 5806 Hampton Street\n Pittsburgh, PA 15206", "371": "Does anyone on this group use this program? It stacks up pretty well to \nCorel Draw, and since I don't have a CDROM, it was the best buy...", "372": "(sci.space readers can skip the first paragraph)\n\n Yesterday, in response to Henry Spencer's question about the \ntemperature of a blackbody in interstellar space, I said \"Dust grains\nacts as blackbodies, and they're at 40-150 K.\" Well, I was dead\nwrong. Our local interstellar dust expert, Bruce Draine, has\ninformed me that dust grains _aren't_ good radiators in the far IR,\nwhich is why they are so warm; actually, the ambient radiation field\nfrom distant stars can bring a true blackbody to only 3 or 4 Kelvin.\nSorry, Henry, and anyone else I misled. Obviously, time for me to\ntake another ISM class :-(\n\n In other news, Alan Stern of the Southwest Research Institute gave\na talk on the Pluto-Charon binary system yesterday. He gave a brief\noverview of the currently-accepted system parameters (volume ratio of\nabout 8:1, mass ratio about 15:1 or so, plus lots more...) and then\ngave his thoughts on the formation of Pluto-Charon. His idea is \nthat there were lots and lots of small planetesimals in the outer\nsolar system, with masses distributed as a power law of some kind;\nover time, the planetesimals accreted into larger bodies. Most got\nscattered out of the solar system by close encounters with Jupiter\nand Saturn, but many accreted into the gas giants, especially\nUranus and Neptune. A large planetesimal was captured by Neptune -\nwe call it Triton [captured how? Perhaps by a collision with a smaller,\nalready-existing Neptunian moon, perhaps by a very close passage through\nNeptune's atmosphere - mondo aerobraking!].\n\n He notes that the two recently discovered \"Kuiper Belt\" objects,\n1992 QB1 and 1993 FW, plus Chiron and Pholus, are all about the same \nmass, and he identifies this group as one-accretion-down from the\nlarger bodies of Triton and Pluto/Charon. Pluto/Charon, he thinks,\nformed when an impacting body hit proto-Pluto, knocking some material\ninto a ring around Pluto which later accreted in Charon; similar to\nideas about the formation of Earth's moon. There is good evidence\nfrom spectra that the surfaces of Pluto and Charon are very different\n(Pluto has methane frost, Charon doesn't), which can be used as evidence\nfor the impact theory.\n\n He believes that there may be around 1000 Pluto-to-Chiron-sized objects\nremaining in a relatively stable dynamical zone just outside Neptune's \norbit, beyond 35 AU or so. 1992 QB1 and 1993 FW are the first members\nof this population to be found, in his model. Note that such bodies\nwill be very dark, since if their surfaces are covered with methane \nfrost, it will have photolyzed into very dark, long-chain hydrocarbons\nby now. The reason that Pluto has such a high albedo (around 0.5, I think)\nis that its surface warms up JUST enough around perihelion to sublimate,\nand when the atmosphere freezes out again, thirty years later, it forms\nbright, new frost. So any bodies much farther away than 30 AU are going\nto be very hard to see.\n\n I hope I haven't made any errors in the transcription; if you see\na howling mistake, it's undoubtedly mine, not his.\n\n By the way, he's one of the top guns behind the Pluto Fast Flyby\nmission (I think), and said that the current plans are to use a\nTitan 4 to send the probe on \"just about a rectilinear trajectory\"\nto Pluto (we were speaking loosely at the time...). He'd like\nto use a Proton, which gives a slightly smaller velocity but costs\nMUCH less. His figures: $500 Million for 2 Titan 4 launches (there\nwill be two separate probes, launched separately), or $120 Million\nfor 2 Proton launches. He told a story about how the Soviets originally\noffered to sell Proton launches for $30 Million each, but were forced\nto increase their prices in the US in order to be allowed in the\nmarketplace.\n\n I'm just telling you what he said.\n\n Michael\n", "373": "\nThen we all live happily ever after. :-)\n\nSeriously, if we all agreed on the circumstances we're in, I suspect we'd all\nagree on the best course of action. Unfortunately, I have no confidence that\nsuch a situation will ever arise. \n\nSome of us think there's a big God in the sky, some don't. Some think\nthey've been chosen by God, others disagree. Some think they are infallible,\nothers think otherwise. Until those disagreements over circumstances can be\nironed out, there's little hope of everyone agreeing.\n\n\nYes. I think that, for example, only a vanishingly small number of people\nwould hold that there's a frame of reference in which gassing six million\nJews is good. So that's probably about as close to an objective moral value\nas I've encountered in my life so far.\n\n\nWell, I think your example's poor. If the bomb's in Iraq, for example, and\nwas dropped by an American plane, many people would hold that it was a moral\nact.\n\n\nHmm. So these moral values have a perceptible physical presence?\n\n\nRight, and the chain ends right there. The buck stops with me. It's not an\ninfinite regress.\n\n\nRight. The key point, however, is that there are vanishingly few of these\nmoral issues where we can get 99.9% of people to agree on the outcome for all\nframes of reference (and agree on the frames of reference...)\n\n\nI can't manage either. Killing Hitler using a car bomb would have been a\nterrorist act, but I have to admit that I couldn't exactly condemn it. \nAlthough there are tricky philosophical issues to do with hindsight...\n\n\nI think that circumstances have already arisen where terrorism would have\nbeen better than peace. Better in terms of numbers of innocent people\nkilled. Assuming it was successful terrorism, of course.\n", "374": "I got the following today from Gary Risebrough and it worked fine:\n\nExcerpts from mail: 29-Apr-93 Re: ol{v}wm 3 virtual keybo..\nITO2@aodc.gov.au (554)\n\n\n\n", "375": "\n\nIt fixed a problem for us of getting Divide Errors that were\ncaused by the GW BIOS overwriting some interapplication \nmemory area. Our problem was with Clarion Database programs,\nbut I also heard that it fixed the same problem with Brief", "376": "KW> If you don't like additives, then for godsake, \nKW> get off the net and learn to cook from scratch. Sheesh.\n\nMary Allison exclaims:\nMA> EXCUSE ME!!!!!!!!!!!!\nMA> Why can't people learn to cook from scratch *ON* the net. \nMA> I've gotten LOTS of recipes off the net that don't use additives.\n\nBecause one simply _can't_ cook on the net, nor can one cook while ON the\nnet. Cooking is best done IN a kitchen, ON a stove. (Gotcha! *grin*)\n\n(I said this out of general frustration at people (not anyone in particular)\n who seem to expect packaged food to conform to their tastes. In other\n words, if packaged foods are not to your liking, prepare foods that are.)\n\nMA> If you LIKE additives then get off the net and go to your local\nMA> supermarket, buy lots of packaged foods, and YOU get OFF THE NET!!\n\nI don't have strong feelings about additives, as long as I can't taste 'em.\n\n(As for the rest of your reply to me, I am sorry it it seemed as if i was \n picking on you. I wasn't trying to do so. Please accept my apologies.)", "377": "\nIt's the video card. It's 8514/A compatible, which means it uses the\nsame i/o addresses as com4.\n\n --jh", "378": "\n\nValve seat wear?\n\n\nTony\n", "379": "\n\n\n\nAs I recall, it is a statistical anomaly because of the sample involved in the studies.\nI am certain that if it were true the Europeans would be cutting kids right & left.\n\n\n\nI think alot do it blindly because \"Dad\" had it done. But there are many\nwho get bamboozled into it with the bogus cancer thing. Awhile back some\nquack told a friend of mine that it would help prevent AIDS.\n\nYeah...Right! (Sarchasm)\n\n\nOh YEAH ?\n\nScene: Navy boot camp\n\nDI:\t\t\"Son, you smel awful! Dont you ever clean that thing?\"\nRecruit:\t\"No Sir !\"\nDI:\t\t\"Why the hell NOT!\"\nRecruit:\t\"Your not sposed to touch down there?\"\nDI:\t\t\"Why ?\"\nRecruit:\t\"Cause thats the eye of god down there, an' your not s'posed to touch it...\"\n\nThis did not happen 40 years ago, it happened 2 years ago.", "380": "I have the following machine for sale:\n\n Zenith 386, 20MHz machine\n 40 MB Hard disk\n 3.5 inch 1.44 MB Floppy drive\n 5.25 1.2 MB Floppy drive\n 2 MB of RAM\n VGA card\n ZCM 1492 FTM (Flat Tension Mask) VGA Color monitor\n Flat screen , Non-Glare\n 101 Key Keyboard, 2 Serial ports, 1 Parallel port\n\n Original manuals that it came with.\n\nIn excellent condition. $1100.00 or best (reasonable) offer.", "381": "\nI seem to recall graphic news file of buddhist monks setting themselves on fire\nin the streets of Saigon. Yes, its a horrible way to go, but apparently not\nso horrible that someone with enough religious conviction might not be able to \ncarry it through. And, since they've discovered bullet wounds in a couple of \nthe bodies from the compound, there is the possiblity that those with the will power to self immolate also had the will power to take out the ones who had\nless constitutional fortitude. Then again, maybe the FBI ran in while the fire\nwas raging, executed those two, and ran out again.", "382": "\nI cannot believe you can make these claims given hard evidence of\nabuse. Do you ignore stories about survellience of Martin Luther\nKing, have you blocked from your mind McCarthy's crusade in the 50's?\n\n\nAnd how many illegal wiretaps are performed? Funny, but I'll be that\nthe FBI doesn't keep statistics on these!\n\n\"confidential informer\" = illegal wiretap\n\n/-----------------------------------\\\n\\-----------------------------------/\n", "383": "Habital planets are also dependent on what kind of plant life can be grown..\nand such.. Length of growing season (that is if you want something more than\nVAT food, argh, Id ratehr eat an MRE for along period of time).\n\nI know in Fairbanks (Furbanks to some) the winter can get to -60 or so F, but\nin the summer can get to +90 and such.. I know of worse places..\n \nIncans and Sherpa and other low pressure atmosphere and such are a limit in\nhuman adaptability(someone mentioend that Incan woman must come to lower\nelevations to have babies brought to term? true?) I remember a book by\nPourrnelle I think that delt with a planet was lower density air..\n\nI wonder what the limit on the other end of atmospheres?\n\nI am limiting to human needs and stresses and not alien possibilties..\nThou aliens might be more adapted to a totally alien to human environment, such\nas the upper atmosphere of Jupiter or??\n\nAlmost makes bio-engineered life easy...", "384": "Do we know yet who will be holding the hearings? And, if so, do\nwe know who is on the committee of question askers? I'm sure\nmany of us have potential questions we'd like to send to them.", "385": "Hi guys....\n\nWhat happened?\n\t1. Potvin didn't let six goals by.\n\t2. Wendel and Andreychuk woke up.\n\t3. Home ice and LOTS of yelling in the Gardens gave the Leafs\n\t\tthe emotional edge.\n\t4. Refs calls (especially last night) tended to favour Leafs.\n\n\tA couple of comments:\n\n\t1. On Gilmour: Just because the guy isn't one of the three\n\tstars doesn't mean he was not leading the team. Someone posted\n\tthe playoff point total and he's in something like fifth or sixth\n\tplace....plus, he walked away with the Molson cup (given for\n\taccumulating points from the three star selection) during the\n\tregular season.\n\n\t2. On the officiating: I've heard gripes from both ends on this\n\tone. Emotions are very high in this series; the rivalry is\n\tone of the stronger ones I know of. I do have to agree that the\n\tofficiating last night was pro-Leaf in general (except for whoever\n\tmissed that slash on Gilmour's hand).\n\n\t3. In general: I STILL think Detroit has one of the better\n\tchances vs. Pittsburgh (though I think the Leafs would do better\n\tagainst the Blues....but not as well if they made it out of the\n\tdivision). Problem is, I like both these teams, though I'm\n\tsupporting the Leafs on the underdog principle. D\n\n\tBy the way...Gilmour tiring out is a lot like Bob Probert not\n\t\tplaying aggressive hockey....\n\tBy the way....I'm not any sort of expert, nor do I claim to be.\n\t\tI just like watching a good matchup.\n", "386": " >Clipper also allows an extraordinary opportunity for the criminal to\n >conceal use of super-encryption. An automated full-system surveillance\n >mechanism (quite feasible across radio bandwidth) which knows family key F,\n >can validate Clipper wrappers and N:ESN associations, but it cannot reveal\n >in realtime the use of super-encryption, unless it knows all unit keys,\n >which we are being assured are only to be made available in two separate\n >pieces, upon specific wiretap-like order.\n\n The serial number will be in a 64 bit block, with a 34 bit filler. Doesn't\n take a lot to check to see if that is correct.\n\nDepends on whether the filler is a constant (makes checking easy,\nbut susceptible to replay), or variable (e.g. timer, counter, random),\nwhich makes replay harder and can also make it easier for the\ninquisitors to know if they've missed messages, or gotten them out of\nsequence, or other interesting things that sort of person might care about.\n\nIt is still easy to conceal super-encryption, at least until the\ninquisitors get ahold of the K key, which can take a while,\npresumably not in near-real-time. (Worst-case, in which the escrow agencies\nprovide the U key to the local cops, still only gets one side of the\nconversation per warrant, unless the same key is used for both directions,\nwhich I suppose the CAPSTONE version of the chip will probably insist on.)", "387": ")Many high-end graphics cards come with C source code for doing basic graphics\n)sorts of things (change colors, draw points/lines/polygons/fills, etc.). Does\n)such a library exist for generic VGA graphics cards/chips, hopefully in the\n)public domain? This would be for the purpose of compiling under a non-DOS\n)operating system running on a standard PC.\n\nCheck the server code for X11R5. (or \"XFree86\")", "388": "\n\nPolysyllabic is polysyllabic too....", "389": "\n\nBut this is all gun control laws end up doing. Politicians can never\nmanage to get a handle on those who obtain arms illegally, so all their\nlaws can ever do is further restrict people who obtain them legally.\n\nKaren McNutt, a local attorney, states that there are about two MILLION\nlicensed gun owners in Massachusetts. In the past year, the number of\nlicensed gun owners involved in gun crimes was something like SIX.\nYet, there were a large number of gun crimes in the state last year.\n\nDoes passing laws that will further restricting only those people ALREADY\nobeying laws pay any dividents?\n\n\nSo far, I've seen them treated with the least respect by legislators.\n\n\nSee, this is what I call the \"argument from religion:\" \"I believe.\" Don't\nbelieve -- it's not NECESSARY to take this on faith. Go look at the history\nof countries that passed gun restrictions. Pay particular attention to\nwhether or not violent crime was HIGHER before the restrictions and LOWER\nafter. (Don't look at \"violent gun crimes,\" that's begging the question.)\nYou may be very surprised.\n\n\nYou have this absolutely backwards. If crime stopped in the presence of\nstrict gun control, there is NO WAY I would consider lifting any of it.\nHowever, if gun control made absolutely NO IMPROVEMENT in the violent \ncrime rate, THAT'S when I would have it lifted. Think about it.\n\nSo far, none of the stats show any improvement...\n\n\nDo you really think driver's tests are any indication of your propensity\nfor having accidents? \n\nI've never known anybody stupid enough to take a driving test while \ndrunk; after having been up all night; with two fighting kids in the \nback seat; with a hot cup of coffee on their lap; or while putting on \nmakeup, reading the newspaper, or talking on their cellular phone. \nBut that's what they're doing when they have those accidents.\n\n\nHow can anything that has no positive effect at all ever be \"necessary?\"\n\n\nAnd it didn't help, any of it.\n\n\nI'm sorry, I don't remember any story where Winnie the Pooh was\noffered weapons.\n-- ", "390": "\nIf he says he knows for a fact, what more do you have to gain if he gives\nhis word? Do you think he's lying right now?\n\n\nAnyway, how about this: I give you my word, without naming sources, that IBM\npaid companies to write applications for OS/2. Satisfied?", "391": "\n Me too. Our local used book store is the second largest on the\n West Coast, and I couldn't find a copy there. I guess atheists\n hold their bibles in as much esteem as the theists.\n\n/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\ \n\nBob Beauchaine bobbe@vice.ICO.TEK.COM \n\nThey said that Queens could stay, they blew the Bronx away,\nand sank Manhattan out at sea.", "392": "I've got the following Lynx games for sale/trade. Make an offer.\n\nBatman Returns\nPinball Jam\nPaperboy\nGates of Zendecon\n\n\n\n\n-- \nbrian\noplinger@ra.crd.ge.com", "393": "Subject sez it...\n\nWondering if either team are in town that weekend (5-30/5-31).\n\nI can probably get Phillies tix, as the Vet can hold a bunch (and\nI hope they're still in 1st but it's late may, and...). Camden\nYards is a problem - is there any way of getting in the park w/o an SRO\nticket? Any advice if there at home?\n\nJoe Leonard\njle@world.std.com", "394": "I have a small network running in my dorm at school, and I am kind of\nworried about the length of the wires and the way that I have run it.\nI was wondering if anyone might have some schematic or at least some\nideas on how to make some sort of simple appletalk repeater. I'm not\nso interested in making actual zones and zone names, just a way to\nisolate different branches of the network.\n\nDoes anyone have any ideas on what could be done??", "395": ": \n: Hams can legally run up to 1500 watts. It is very unlikely, however,\n: that a ham would be running that kind of power from a car. Ham rigs\n: \n: Not possible either. You'd need about a 300 amp alternator for\n: just the amplifier. I can just see it. You need to slow\n: down on a downgrade, so you hit the push to talk button.\n\nWell - 100+ amps anyway. Transmissions are generally for a short interval.\nThe battery would supply the rest. Of course, if you transmitted too much,\nyou would run the battery down.\n\nIt really would not be that much of a brake. Even at 50% efficiency, 1500\nwatts would only consume 4 horsepower.", "396": "I am running System 7.1 on a Centris 610. I have not been able to setup my\nprinter yet because when I open Chooser, I get a blank screen. I do have all\nkinds of print drivers but none shows up. I even do not get a port iconn\neither. It is just one big BLANK screen.\n\nYour help is very appreciated. \nBTW I did rebuild the desktop but that did not help either.", "397": "T.S.Reddy writes\n\nWhile the people here may be claim to be Muslim, the actions reported here, \nif they actually happened, are 180 degrees opposite from what Islam stands \nfor, and I, for one, condemn them.\n--", "398": "\n: \tI was recently talking to a possible employer ( mine! :-) ) and he made a reference to a\n: 48-bit graphics computer/image processing system. I seem to remember it being called IMAGE or\n: something akin to that. Anyway, he claimed it had 48-bit color + a 12-bit alpha channel. That's\n: 60 bits of info--what could that possibly be for? Specifically the 48-bit color? That's 280\n: trillion colors, many more than the human eye can resolve. Is this an anti-aliasing thing? Or\n: is this just some magic number to make it work better with a certain processor.\n\n\n\tI'm pretty sure most industry strength image processing specific \nsystems (i.e. photo processing gear) use as much as 96 bits of color info.\nWhy? Why not, oversampling is never a bad idea especially if the\nhardware's only task is image manipulation, and profressional photographers\ndemand professional results.\n\n: \tAlso, to settle a bet with my roommate, what are SGI's flagship products? I know of\n: Iris, Indigo, and Crimson, but what are the other ones, and which is their top-of-the-line?\n: (sadly, I have access to none of them. Just a DEC 5000/25. Sigh.)\n\n\tStrange question, but anyway, there's the VGX line, the newer\nIndigo^2, and the Onyx systems are the new big boys on the block (you\ncan get a 24 processor system with twice the graphics performance of\na reality engine). There's more, but I don't have my handy \"periodic \ntable of sgi's\" on me...\n", "399": "OK I sold all but these, I had some offers and I accepted an offer\nof 25.00 for the pair from bdale@gag.com ( Bdale Garbee ). I don't\nknow what happened to him but he won't reply now that I accepted\nit so I'll offer these again.\n\n", "400": "\nCould an atheist accept a usage in which religious literature or\ntradition is viewed in a metaphorical way? Of course: this is\nessentially what we do with Homer, or with other concepts such as\nfate, luck, free will ;-)... However, there remains the question of\nwhether the religious literature of -- say -- Christianity is a\nparticularly *good* set of metaphors for the world today. It's also\nentirely unclear, and to me quite unlikely, that one could take a\ncontemporary religion like that and divorce the metaphoric potential\nfrom the literalism and absolutism it carries now in many cases.", "401": "To the media, \"religion\" and \"cult\" have about the same relative\nconnotations as \"government\" and \"terrorist group\".\n", "402": "\n For your information, I checked the Library of Congress catalog,\nand they list the following books by Francis Hitching:\n\n Earth Magic\n\n The Neck of the Giraffe, or Where Darwin Went Wrong\n\n Pendulum: the Psi Connection\n\n The World Atlas of Mysteries\n", "403": ": |> : |> None of this changes the fact that MSW3.1 is objectively inferior to its\n: |> : |> competition.\n: |> \n: |> : Do you mean that MSW3.1 is objectively inferior in _some_ respects (which\n: |> : is trivially true), that it is objectively inferior in _all_ respecets\n: |> : (which is trivially false) or do you mean something else? What criteria\n: |> : have you chosen for your objective assesment? Are you sure that these\n: |> : criteria are themselves objective?\n: |> \n: |> I believe that enough is inferior to make it overall as a product\n: |> inferior to its competition-- Apple System 7, OS/2 2.0, NeXTStep 3.0,\n: |> UNIX/Xwindows (pick your favorite flavor).\n\n: In other words, it is your *opinion* that MSW3.1 is inferior to its\n: competition. That's not the same as MSW3.1 being objectively inferior.\n\nNo. It is technically inferior to the OS/GUIs that I listed. I have already\ndescribed why. To say briefly:\n\nSystem 7 --easier to learn and use. There have been independent studies to \n that effect.\nOS/2 --Can run MSW applications and has more stable multitasking.\nNeXTSTep --easier to learn, use, and program. More stable multitasking\nUNIX/X --As easy to learn and use. More stable multitasking.\n\nWith the prpoer setup, all of these will exchange data with MSW machines as\nwell as MSW machines will amongst themselves, so interoperability is not\nan issue.\n\nBy this criterion, it is inferior. If you have another, then perhaps I am\nincorrect. Do you pick up the glove?", "404": "Robert,\n\nI'm *so* glad that you posted your Biological Alchemy discussion. I've \nbeen compared to the famous Robert McElwaine by some readers of Sci. Med.\nI didn't know how to respond since I had not seen one of your posts(just \nlike I haven't read \"The Yeast Connection\").\n\nLet me just start by stating that the authors of the \"Cold Fusion\" papers of \nrecent years are now in scientific exile(I believe that one has actually \nleft the country). Scientific fraud is rare. I'm still not sure that if a \nreview of the research notes of the \"cold fusion scientists\" actually \nproved fraud or just very shoddy experimentation.\n\nYour sources do not seem to be research articles. They are more like lay \ntexts designed to pique human interest in a subject area(just like the food \ncombining and life extension texts). Robert, I try to keep an open mind.\nBut some things I just can't buy(one is taking SOD orally to prevent \noxidative damage in the body).\n\nYour experiment, if conducted by readers of this news group, would prove \nthat you are right(more ash after seed sprouting than before). Unless you \nuse a muffle furnance and obtain a very high temperature(above 600 degrees \nI believe), you will get organic residue in the ash. Even the residue in \ncommercial incinerators contains organic residue. I remember doing this \nkind of experiment in my organic chemistry couurse in College but I \ncouldn't find a temperature for mineral ash formation so I'm really \nguessing at 600 degrees F, it may actually be much higher. The point is \nthat no one in their home could ever get a high enough temperature to \nproduce *only* a mineral ash. They also could not measure the minerals so \nthey could only weigh the ash and find out that you appear to be correct. \n\nChemical reactions abound in our body, in our atmosphere, in our water and \nin our soil. Are these fusion reactions? Yes many of them do involve \nfusing oxygen, nitrogen and sulfur to both organics and inorganics. Do we \nreally have the transformation of silicone to calcium if carbon is fused with \nsilicon? Not in my book Robert.\n\nSilicon is the most abundant mineral on our planet. I've seen speculation \nthat man could have evolved to be a silicon based rather than a carbon \nbased life-form. I like reading science fiction, as many people do. But I \nknow enough about biochemistry(and nutrition) to be able(in most cases) to \nseparate the fiction from the fact.\n\nSilicon may be one of the trace elements that turns out to be essential in \nhumans. We have several grams of the stuff in our body. What's it doing \nthere? Only the Lord knows right now. But I will tell you what I do know \nabout silicon and why, as you state, it helps bone healing(and it is not \nbecause silicon is transformed into calcium).\n\nAlmost all of the silicon in the human body is found in the connective \ntissue(collagen and elastin). There have been studies published which show \nthat the very high silicon content in elastin may be an important protective \nfactor against atherosclerosis(the higher the silicon content in elastin, \nthe more resistant the elastin is to a an age-related loss of elasticity \nwhich may play a role in the increase in blood pressure that is often seen as \npart of the ageing process in humans).\n\nFor bone fracture healing, the first step is a collagen matrix into which \ncalcium and phosphate are pumped by osteoblasts. A high level of silicon \nin the diet seems to speed up this matrix formation. This first step in the \nbone healing process seems to be the hardest for some people to get going.\nElectriacl currents have been used in an attempt to get the matrix forming \ncells oriented in the right direction so that the matrix can be formed in \nthe gap(or gaps) between the ends of the broken bone. A vitamin C deficiency\n(by slowing collagen formation as well as causing the prodcution of \ndefective collagen) does slow down both bone and wound healing. Zinc is also \nanother big player in bone and wound healing. And so is silicon(in an \nundetermined role that most likely involes matrix formation and not \ntransformation of silicon to calcium). For you to take this bone healing \nobservation and use it as proof that silicon is transformed into \ncalcium is an interesting little trick.\n\nBut Robert, I have the same problem myself when I read the lay press(and \nyes even some scientific papers). Is the explanation reasonable? Without \na very good science knowledge base, you and most readers of this news group \nare flying blind(you have to take it on faith because you don't know any \nbetter).\n\nIf the explanation seems to make sense to me based on my knowledge base, \nI'm inclined to consider it(this usually means trying to find other sources \nthat come to the same conclusion). If the idea(like a candida bloom) seems \nto make sense to me, I tend to pursue it as long as any advice that I'm \ngoing to give isn't going to really mess somebody up. If this makes us \nkindred souls Robert, then I guess I'll have to live with that label.\n\nFor the physicians who have decided to read my response to Robert's \ninteresting post, I hope that you saw the segment on the pediatric \nneurosurgeon last night on U.S. TV. I can't remember the network or his \nname(like many nights, I was on my computer and my wife was watching TV in \nour Den where I have my computer setup). This neurosurgeon takes kids with \nbrain tumors that everyone else has given up on and he uses\"unconventional\"\ntreatments(his own words). He says that he has a 70% success rate. The one \ncase that I heard him discussing would normally use radiation(conventional \ntreatment). He was going to go in and cut. You guys complain about the \ncost of the anti-fungals. What do you think the cost difference between \nradiation treatment and surgery is guys? \n\nI'm going to ask you guys one more time, why blast a physician who takes the \nchronic sinus sufferer(like Jon) and the chronic GI sufferer(like Elaine)\nand tries to help them using unconventional treatments? Treatments which \ndo not result in death(like those that the neurosurgeon uses?). Is it \nbecause candida blooms are not life-threatening while brain tumors are?\nHow about quality of life guys? May the candida demon never cross your \nsinus cavity or gut(if it does, you may feel differently about the issue).", "405": "The tech support line for GCC is 1-800-231-1570.", "406": "*** On 04-19-93 03:56, Juan Carlos Leon had the unmitigated gall to say this:\n\n JCL> I just got a problem, I have a cheapo 2400bps modem which I use to\n JCL> connect to my university, but I get too much garbage on the screen. I\n JCL> do know it's because the noise in the line (I can actually hear it). \n JCL> So my question is will an error correction protocol help to eliminate\n JCL> this garbage?, my modem doesn't have any of these on hardware, can a\n JCL> software implemented protocol do the trick?\n\nThere is a software version of MNP-5 available from MTEZ, and it will often\nconnect with other modems that are MNP compatible, but if the modem that you\nare connecting to doesn't support MNP then it won't help. Error correcting\nmodems will eliminate line noise, but only id there are error correcting\nmodems on both ends of the conncetion. The added soeed is much worth the\nprice of error correcting modems. 9600 baud V.42bis modems are very\nreasonable, and they are only about 15% slower than the more expensive\n14,400 modems on the market.\n\n... My hard disk is full! Maybe I'll try this message section thing.\n--- Blue Wave/QWK v2.10\n ", "407": "\nYep, you can use any type of UNIX, or maybe VMS, or buy a MAC or something...\n If you want longer filenames for your documents, I heard of a wordprocessor for\nwindows which let you assign long names to files. Those long filenames could only be\nseen from that programs open/save dialogs though... Maybe someone knows more about\nthis wordprocessor than I do?\n \n", "408": "Where can I get documentation about the X-Server-Internals?\nBTW, I'm also interested in documentation about TIGA.\n\nAny hints welcome.\n\nThanks, rainer.\n", "409": "Hello there!\n\nA week ago a guy asked what a .SCO file was - well I researched a bit and foundout that it is just another RIX file. .SCI files are 320x200 files and .SCO files are 1024x768 files! alle the other formats (800x600, 640x480...) are also called something like .SC(character).", "410": "\n\nLike non-Sudafed cold medicines? 1/2 :-) ", "411": "\n\n\nBut neither of them claimed to have experimental evidence that proved \nthem right. In a similar vein, there is as yet no experimental evidence\nfor supersymmetric particles; so some physicists believe in them, and\nsome don't -- but all agree that either there is an objectively true\nanswer to the question.\n\n--\nMark Pundurs", "412": "\nNot anymore! Recent archaeological inspection of the site presents pretty\ncompelling evidence that the \"mass suicide\" at Masada never occured. This\nevidence was so compelling tha the Tzahal no long hold their secret ceremony\nat the fortress.\n\n", "413": "********* WANTED : Word Processing Typewriter ********\n\n A friend is looking for a wordproccing electronic typewriter, preferably\nwith 40 char. display and spelling correction.\n\nSend info to the addresses below: \n\nThanks,\n -Steve", "414": "I've started getting a message from Windows 3.1 whenever I try to execute\na DOS program from Windows, either thru the Program Manager or the File\nManager. A message box comes up and says \"This program or one of its\ncomponents is compressed. Use the MS-DOS expand command to expand the\nfile.\"\n\nNow, I know this is bogus, because I can always execute the program\nfrom DOS when not running windows. The program in question is COMMAND.COM\n(yup, the basic DOS command line shell...) And, the expand command tells\nme that the file is already expanded.\n\nAll my windows apps work just fine - I only get this message when trying\nto execute a DOS program from Windows.", "415": "\nI too think that Joseph has had a GREAT year and should be considered for the\nVezina. I think Barrasso and Joseph should be the two strongest candidates\nthis year. I don't believe ALL of the hype that Roy, Belfour and now Potvin\nreceive for their goaltending. I do think that they are great in the nets,\nbut I would rather have Curtis, Tommy or Fuhr in the nets during this years\nplayoffs. The big name tenders always seem to have a strong defense in front\nof them and the goaltenders get the most credit. I would rather face 25 shots\na game, than have to rely on Joseph saving 35, but if the goalie is going to\nface 35 shots, I would rather have Joseph or Barrasso facing them.\n\n-Jay\n\nps Go Quebec!!! And I know that McLean and several others should be mentioned\nas candidates for this years Vezina, but I am partial to Joseph and Barrasso\nthis season.\n", "416": "Does anyone know if there are any problems (or if it's possible)\nadding a third hard drive(scsi) to a dos pc.\n\nI currently have a 386 pc with Future Domain scsi board and 2\nMaxtor scsi drives installed. They work great, I haven't had\nany problems!\n\nWell, now I want more disk space and went out and got another\n(larger) scsi hard disk thinking all I had to do was add it\nto the chain(50pin ribbon that has 3 connectors) and run\nthe fdisk program to format/initialize the disk.\n\nThat didn't happen. When the pc boots, the scsi prom shoots\nback the devices that are attached to the board[target\n0/target1/target2]. All three disks are seen.\n\nWhen I run the dos fdisk program to format the disk, I choose to\nselect another disk(option 5(dos6)) and voila, it's not there.\nThe first two disks show up no problem, but the third disk is\nno-where to be found....\n\n\n\nARGH!\n\nIdeas anyone?????\n\nThanks in advance!\n\n\n------------------------------------------------------------------------\nMike \"Migkiller\" Figueroa |\nSun Microsystems Computer Corporation |\nE-mail: maf@Corp.Sun.COM \t|\nWork: (415) 336-2798 (n)\n X-----====(...)====-----X\n X +++ X\n ~\n \t\t\t Sierra Hotel, and check six\n\t\t\t \t\t F16-FALCON", "417": "At first this kind of ranting annoyed me, but now it's rather entertaining.\nThese kinds of posts don't require ANY facts, logic, or even sense. It's \nkind of like what 10-year old kids do on the playground. So go on and play.\nNot everyone on the net is as simple minded as you guys seem to be.\n\n\n------------------------------------------------------------------------------\n\"Nothing is as inevitable as a mistake whose time has Garrett Johnson\n come.\" --Tussman Garrett@Ingres.com\n\"The probability of someone watching you is proportional\nto the stupidity of your action.\" - Unknown", "418": "\nKnowing Keith, I expect he'll bring the leather accessories.\n\nBetter oil it well. Leather cracks when it dries.", "419": "\nAaron> Colossians 2:11-12 \"In him you were also circumcised, in the\nAaron> putting off of the sinful nature, not with a circumcision done\nAaron> by Christ, having been buried with him in baptism and raised\nAaron> with him through your faith in the power of God, who raised him\nAaron> from the dead.\"\n\nAaron> In baptism, we are raised to a new life in Christ (Romans 6:4)\nAaron> through a personal faith in the power of God. Our parent's\nAaron> faith cannot do this. Do infants have faith? Let's look at\nAaron> what the Bible has to say about it.\n\nYes, let do. Try: \n\n\"And if anyone causes one of these little ones *who believes in me*\nto sin, it would be better for him to be thrown into the sea\nwith a large millstone tied around his neck.\" Mark 9:42\n\n\"Let the little children come to me, and do not hinder them,\nfor the kingdom of God belongs to such as these. I tell you\nthe truth, anyone who will not receive the kingdom of God\nlike a little child will never enter it.\"\n\nThe Colossians passage does not make faith a requirement\nfor baptism. It merely says that in baptism we are born again,\nregenerated, and resurrected through faith. In the case\nof an infant I would say that baptism works faith in the\nheart of the infant--through the power of the word.\n\nThe Colossians passage does make baptism a spiritual circumcision.\nCircumcision was the means by which a male infant was made\na part of God's covenant with Israel. It was commanded to be\nperformed on the eighth day. The early church understood this,\nand even debated whether baptism had to be performed on the\neighth day, or if it could in fact be done earlier.\n\nAaron> Romans 10:16-17 \"But not all the Israelites accepted the good\nAaron> news. For Isaiah says, 'Lord, who has believed our message?'\nAaron> Consequently, faith comes from hearing the message, and the\nAaron> message is heard through the word of Christ.\"\n\nAaron> So then we receive God's gift of faith to us as we hear the\nAaron> message of the gospel. \n\nAnd the gospel is surely preached at any infant's (or adult's)\nbaptism. Indeed, in a very real sense, the sacraments are\nthe Gospel made tangible.\n\nAaron> Faith is a possible response to hearing\nAaron> God's word preached. Kids are not yet spiritually,\nAaron> intellectually, or emotionally mature enough to respond to\nAaron> God's word. \n\nHow do you know they are not yet mature enough to have faith?\nDo you know this on the basis of God's Word, or from your own\nreason?\n\nFaith is also described as a gift from God, Ephesians 2:8,9. \nHe gives faith to infants just as he gives it to adults, through\nthe power of the gospel, Romans 1:6.\n\nAaron> If you read all of Ezekiel 18, you will see that God doesn't\nAaron> hold us guilty for anyone else's sins. So we can have no\nAaron> original guilt from Adam.\n\nHere you show that you just don't understand original sin--\nyou are arguing against a straw man.\nMaybe you've been talking to Catholics too much. I don't\nknow. But original sin does not consist of God's imputation\nof Adam's guilt to us. It consists of our inheritance of\nAdam's sinful nature. It is actual sin. See for example,\nthe Augsburg Confession, Article II, and the Apology of the\nAugsburg Confession, Article II, and, for extra credit,\nJohn Knox's `The Scots confession', Article III.\n\nAaron> Now then that we have a little more background as to why\nAaron> original sin is not Biblical, let's look at some of the\nAaron> scriptures used to support it.\n\nAaron> Romans 5:12 \"Therefore, just as sin entered the world through\nAaron> one man, and death through sin, and in this way death came to\nAaron> all men, because all sinned--\"\n\n\nAsk yourself this question. \"Do infants ever die?\" Then ask\nyourself, \"If infant baptism is not valid, then where was the\nChristian Church during all the centuries when almost all \nof the baptisms were performed on infants? Were Luther, Melancthon,\nCalvin, Zwingli, Hus, Knox, Andrae, and Chemnitz Christians?\n\n\nAaron> Psalm 51:5 \"Surely I was sinful at birth, sinful from the time\nAaron> my mother conceived me.\"\n\nAaron> This whole Psalm is a wonderful example of how we should humble\nAaron> ourselves before God in repentance for sinning. David himself\nAaron> was a man after God's own heart and wrote the Psalm after\nAaron> committing adultry with Bathsheba and murdering her husband.\nAaron> All that David is saying here is that he can't remember a time\nAaron> when he wasn't sinful. He is humbling himself before God by\nAaron> confessing his sinfulness. His saying that he was sinful at\nAaron> birth is a hyperbole. The Bible, being inspired by God, isn't\nAaron> limited to a literal interpetation, but also uses figures of\nAaron> speech as did Jesus (John 16:25). For another example of\nAaron> hyperbole, see Luke 14:26.\n\nWho are you to say what is literal and what is not? Is a literal\ninterpretation manifestly absurd in Psalm 51 by reason of direct\ncontradiction with a clear passage from the Word of God?\n\nYou might also compare Genesis 8:21, \"The LORD smelled the\npleasing aroma and said in his heart, `Never again will I curse\nthe ground because of man, even though every inclination of\nhis heart is evil from childhood....\"\n\nAaron> We see\nAaron> that he did grow and become wiser in Luke 2:40 and 2:52. The\nAaron> implication is that Jesus did wrong things as a child before he\nAaron> knew to choose right over wrong.\n\nYou are a long way from proving this (rather monstrous) assertion.\nAll you can say is that Jesus grew in wisdom and in stature. A\nconclusion that he did wrong as a child is based on an extrapolation\nof reason, not on a direct revelation in Scripture.", "420": "\nNot when your talking about cryptography.\n\n\nThink again. You won't see me using apple's new signature from the\nfinder feature.\n\n\nThis analogy fails in its assumption that the government gives two\nsquirts about credibility.\n\n\nIn addition, Apple's proclaimed purpose in releasing the Macintosh wasn't\nsurvellience.\n\nQuite the opposite:\n\"On January 24, Apple will introduce.... Macintosh, and you'll see why\n1984 won't be, like '1984'\"\n\nSo don't give me any bullshit analogies about how we trust coke not to\nput mind control drugs in every can to get us to buy more.\n\n\n\nOne of the reasons we should be all the more suspicious. When was the\nlast time the president wasted his time to comfort americans?\nJust another reason to look closely at exactally what's going on.\n\n\nuni@acs.bu.edu", "421": "This isn't quite true - depending on the number of local bus slots, and\nwhether or not the device is integrated into the mother board, it is\npossible to run local bus at up to 40 and 50 mhz. I've also spoken to a few \npeople who run standard local bus video cards at 50 mhz without trouble\n(and a couple of people who couldn't get a lb card to work at that speed).", "422": "\n\tThe garbage started hitting the field well before the Sunday\ngame. It started on Thursday or Friday (I can't recall which games I\n*didn't* watch on TBS). Deion was getting pelted with trash the whole\ntime, it seemed. The announcers talked about the change in the seating\nin the bleachers, and how that made it easier for the events that\ntranspired. I actually thought at the start of the Sunday slugfest that\nsince it was a Sunday daygame the crowd would be a little different,\nmore refined. Surprise?\n", "423": "SCO ODT allows to adapt the X-Server to any non-standard (AT) keyboard \nusing the Xkeyboard configuration compiler xsconfig. SCO provides some\nconfiguration files in /usr/lib/X11/xsconfig/*.kbd, e.g. for \nSiemens WX200.\n\nQuestion:\nIs there anywhere a configuration file for the HP46021A keyboard\navailable ? \nI am especially interested in using the HP specific keys such as \n\"InsertLine\", \"Menu\".", "424": "To: ashwin@cc.gatech.edu (Ashwin Ram)\n\nAR>Does the \"Thermoscan\" instrument really work? It is supposed to give you a\n\nABSOLUTELY!\nYa don't have to do the other end!\n(it is accurate - but technique is important)\n\ncccbbs!rob.welder@uceng.uc.edu", "425": " We don't disagree on this. All I said was that a right is whatever\nyou or somebody acting for you can enforce. The Bill of Rights didn't\ncome into effect until it was ratified by the states (and indirectly,\nthe people); from that point it defined legal rights. \"Common law\"\nrights are vague and situational; that's why the people insisted on a\nBill of Rights in the Constitution, spelling out exactly what they\ndemanded from the government. Legitimate or illegitimate, power is\npower. That's why the federal government can force states to grant\ntheir citizens rights they don't wish to: In a slugging match, the feds\nwin. Period.\n\n And you're right, this doesn't belong in sci.space. I've said my\npeace. No more frome me on rights (at least not here).\n", "426": "\nLarger drives tend to have multipule platters which can allow adjacent\nbits to be read in parallel resulting in higher throughput. They also\nhave higher spindle speeds which leads to both increased throughput and\nreduced seek times (due to reduction of rotational latency.)", "427": "In the wake of the Waco denouement, I had email discussions with\npeople from this group. In particular, we discussed how cults\noperate, why the FBI might be motivated to black out news or behave\nthe way it did, and what kinds of problems are involved in dealing\nwith cults and similar organizations.\n\nI include an edited account of what I wrote. The identity of my\ncorrespondents have (I hope) been erased. The editing process makes\nthe text choppy - sorry about that. I've tried to retain the\ninformation content.\n\nEllipses (...) indicate where text was removed. A few of the comments\nin parentheses are new, intended to make it easier for outsiders to\nunderstand.\n\nThese notes are preliminary - feel free to criticize.\n\nCheers(?),\nOded\n\n------------------------ (begin included text) -----------------------\n\nI took a course called the MADNESS OF CROWDS, ... The course included\ncults and briefly mentioned/analyzed Jonestown. (Did some external\nreading too).\n\nWilliam Adorno ... edited a series of books on the psychology of\n\"evil\" mass movements... starting with THE AUTHORITARIAN PERSONALITY,\nUniversity of Chicago Press, 1948 ... an attempt to figure out what\nwould motivate people to support fascism or be the bad guys in WWII,\nand by extension in other wars, in racial lynchings ... I don't think\nthe books are perfect, and the study of psychopathology has advanced\n..., but you can elicit Koresh types from even the first volume. So I\nthink they're onto something.\n\n----------------------------------------------------------------------\n\t\tHow cult psychology works...\n\t[I'm an amateur. Hope I'm not hopelessly naive.]\n\nSo long as Koresh could \"own\" his people, he made sure they didn't\nbelieve there was any life out there for them, away from him.\nOtherwise, he'd (Koresh) be nothing. During the siege, ex-Davidians\nrecounted how he convinced the people in the compound they survived\nonly through his intercession with God to spare their worthless souls.\nAbsolutely classic brainwashing technique. ... As long as they\nbelieved him, they'd ignore BATF/FBI/Child Protective Services or even\nthe Red Cross asking them to come out. After all, if they ever left\nhim, God would catapult them straight to Hell, and the combined forces\nof the US gummint, with all the goodwill in the world (doubtful)\ncouldn't save them for a second. If I believed it, I'd stay and die\ntoo, like the folks in Jonestown.\n\nFor a prosaic analogy, replace a cult leader with an estranged wife\n(or husband), and notice how many folks show up, kill the ex and then\nthemselves. That's the consequence of shattered \"cultism.\" It really\ndoes happen all the time. [By the way, the treasured ideal in such\ncases, without which life is meaningless, is the relationship, no\nmatter how abusive, rather than the individual's partner.]\n\n...\n\n----------------------------------------------------------------------\n [Why No News, Don't The Feds Owe The World An Explanation?]\n\nI agree that official explanations are in order. I can also see good\n(?) reasons for news blackouts.\n\n\n ... that no matter what, those people would have died, because Koresh\nmade sure they believed they had no lives outside his influence.\nHence it would make little difference when or how the FBI acted. He\nheld them hostage, as his trump against going to jail, but nothing\nwould really stop him from offing them. Even if the FBI went away!\n\nLook at history. Rep Leo Ryan (and some staffers) visited Jonestown,\nat the request of constituents who had relatives there. Once\nJonestown was discovered, and even though they killed Ryan and his\nentourage ... they all killed themselves, because Jim Jones knew he'd\nbe busted. Internal arguments asking to spare the children, brought\nup by some of the women in the cult, were shouted down. There are\ntapes... The \"logic\" of saying that no matter how bad the gummint is, it\nwouldn't kill the kids, was shouted down as blasphemy, and the people\nwho brought it up were threatened with ostracism by people who by\nTHEIR OWN AVOWAL would be dead within the hour. I suspect it's the\nsame with the Branch Davidians.\n(There's a book on Jonestown by James Reston Jr., titled OUR FATHER\nWHO ART IN HELL. I don't know whether it's good - never read it.)\n\n...\nThe only way to prevent such a problem would be never to investigate\nreports of child abuse or sexual mistreatment, or organizations buying\nfull-auto conversion kits or shipping hand grenades via UPS, on the\noff chance of stumbling across cults that would kill themselves. ...\n\nSo, the only way the BATF/FBI could \"save\" those people, and future\ncults, is by ignoring such signs.\n\nI suppose there's another way - outsmarting Koresh and tricking him\ninto letting them go, or somehow influencing \"his\" people to abandon\nhim while he owns most of their means of communication with the world.\n... a mighty tough row to hoe. ... I suspect the FBI tried to do that\nwith blackouts, noise and other sensory insults. However, maybe\nthey're not very sophisticated, or maybe the job is impossible. It's\ncertainly possible the guy running the show was a jerk.\n\n...\n----------------------------------------------------------------------\n\t[Why the FBI might want to blackout during and coverup after]\n\n ... - if they were doing a poor job of weaning the BD's from\nKoresh, they'd want to keep it quiet so they wouldn't be embarrassed.\n\n ... - if they were trying to wean the BD's from Koresh, they'd\nwant to keep it quiet so he couldn't outflank them, or well-meaning\nboneheads from ANY point of view wouldn't screw it up. ... I _hate_\nplaying chess when the world screams in my face, especially if at\ncheckmate time people really die, and I could be blamed.\n\n...\n\nI don't think ignoring such incidents is a workable policy, unless you\ndeny the FBI, BATF, Child Protective Services (of whatever stripe) and\nthe rest of the gummint should exist at all. \n\n\t\t(the end)\n----------------------------------------------------------------------", "428": "mwilson@ncratl.AtlantaGA.NCR.COM (Mark Wilson) writes,\n(missing the entire point of my post):\n\n\nNo joke.\n\n\nNo,_you_jumped to_that_conclusion. It's actually an argument as\nto how to accomplish the societal good of discouraging drug use\nwithout violating individual rights.\n\n\nNo. _You_missed the point. The point is, the \"War On Drugs\"\nis a failure, and is counterproductive.\n\n\nBut, they are not free to be stupid and injure other people.\nAdmittedly, the fetal right-to-life is outside the scope of\nthis discussion. However, it's ridiculous to assert, as you\napparently do, that cocaine has_no effect_on the developing\nfetal nervous system. Caffiene and nicotine have fetal effects\ntoo, why should cocaine be any exception?\n\n\nIf you had read my article before writing your knee-jerk response\nyou would have seen that this is exactly what I advocated.\n\n\nNo shit, Sherlock.\n\n[...]\n\nThank you. How could you have missed the point so utterly?\nWhat_have_you been smoking?\n\n\nObviously, importers will not be buying drugs in the U.S., under\nU.S. jurisdiction. Use your remaining brain cells.\n\n\nO.K., I'll spell it out for you. \"Barter economy\" means that\ndrug users will be permitted to grow or synthesize chemically\nanything they choose, or to buy it outside the U.S. and bring\nit in, if it won't grow here. They will also be permitted to\ntrade with other drug users for drugs other than the ones they\nthemselves grow or manufacture. They will not, however be able\nto legally sell their drugs for money. Both manufacture and\nimportation of noncommercial drugs will be taxed, to discourage\ntheir use. \"This is your brain on drugs. Any questions?\"\n\n\nPardon me, but possession/use of these drugs is still a crime!\nYou cannot analogize the rates at which drug users would seek\ntreatment, and the comparative ease with which it could be\nmade available today, when these drugs are illegal to possess/use,\nwith what it would be were they_not_illegal to possess/use.\nDecriminalizing possession and use makes treatment_much_easier.\nDrug dealers are exploiting the weaknesses of those persons who\nare prone to addiction, and as such, the drug users should be\nleft alone, not thrown in prison along with their victimizers.\nDrug_dealers_are the criminals, and should be treated as such.\nDrug addiction does not absolve you of responsiblity for your\ncriminal actions, however.\n\n\nThe drug test of an arrested suspect is voluntary, not coerced,\nand does not therefore constitute violation of Amendment V.\nThose convicted who are drug users, as evidenced by the test,\nare in need of treatment for their problem. Institutionalization\nof these adddicted criminals is, I would argue, the best way to\nhelp them straighten out. If they refuse the test and are convicted,\ntheir sentence can be appropriately harsher, since they, unlike the\naddict, have no \"excuse\" for their crimes.\n\n\nWhy not? My objective is to discourage drug use_and_criminal\nbehavior. If fewer criminals do drugs out of fear of getting a\nharsher sentence if they are convicted, why is that not a good\nthing? If fewer drug dealers (who are still criminals, BTW)\ncan find victims, why is that not a good thing? If fewer drug\nusers, such as drunks, 'potheads,' etc., commit crimes out of\nfear of being cut off from their sources of supply, why is that\nnot a good thing?\n\nI'm certainly willing to debate my position.\nYou have to read it carefully though.", "429": "Hi -- sorry if this is a FAQ, but are there any conversion utilities\navailable for Autodesk *.DXF to Amiga *.IFF format? I\nchecked the comp.graphics FAQ and a number of sites, but so far\nno banana. Please e-mail.\n\nThanks.", "430": "\n\nNo, no, no! The previous one was called \"Smiley\". 1992 QB1 = Smiley,\nand 1993 FW = Karla.\n\nNote that neither name is official. It seems the discoverers have an\naversion to the designation scheme.", "431": "Well everybody,\n\nAfter reading tons of notes by Serdar, I have come to the following conclusion. \nTurkey is PERFECT, and no Turk has ever made a mistake. He has proved to me at \nleast that the land occupied by Turkey today, was ALWAYS lived in peacefully by \nTurks. (Including Istanbul AKA Constantinople) They treat their minorities \nlike gods and have only done good while all of their evil neighbors attacked \nthem. Somehow, despite these evil neighbors capable of nothing but murder \ntheir population has exploded to almost 60 million in Turkey alone. (Note, \nArmenian worldwide population is approximately 7 million total) I want to go \nto this heaven on earth and meet the race that has made Serdar possible, that \nhas persevered, and has become a mecca for human rights lovers. (Amnesty \nInternational must have bad sources, Turkey would never torture its citizens, \ntreat minorities badly, or kidnap 7 foreign journalists last year alone, who \nincidentally are still missing), what I am trying to say is I WANT TO BE A \nTURK!!!!\n\nNow back to reality. I have once again been astounded by Serdars ability to \nignore all truth, all truly difficult questions, and go on to his encyclopedia \nof quotes and sources that can be pasted into any note BY THE PAGE! Anybody at \nall who has believed ANYTHING he has said, please step forward. Let him know \nhe hasn't been wasting his time, that SOMEBODY out there can be convinced by \nthe volume of e-mail you can produce, not the quality of the content. Well I am \noff now. I will go dream some more about that perfect place, that nirvana, \nthat utopia, that xanadu, that TURKEY! ", "432": "\nCam,\n\nSeveral months ago I bought a 4/40 PB100 with external floppy, AppleTalk\nRemote Access, a Kensington case and AC adapter with complete documentation\nand in almost new condition, used for US$900. I considered it a very good\nbuy and am very *cosy* with my little baby now... :-)\n\nMurray\n", "433": "%\n% Well, here goes. After lurking for a LONG time, I'll announce myself.\n% Yes, I'm the enemy.\n%\n\n Sorry Allan, but unless you happen to be the guy who watches T.V.\n while he's driving a white Toyota on route 129 between Atsugi and\n Hiratsuka, you're not even -close- to being \"the enemy\"!!\n\n-- \n ------------------------------------------------------------------------\n | John Little - gaijin@Japan.Sun.COM - Sun Microsystems. Atsugi, Japan | ", "434": "A few months ago, in one the the motorcycle mags, there was\nan article that mentioned reflector tape that was supposed to\nbe available thru BMW. The idea was that the tape would look\nblack in sunlight, and reflect in other colors at night to\nheadlights. It sounded like a nice way to add nighttime \nvisibility without turning the bike into a carnival attraction.\n\nI talked to the local BMW dealer about this. I was told that the \nonly thing he had heard about this kind of reflector, was it being \nused in a coming line of BMW clothing (rainsuits). He wasn't aware \nof anything regarding self applied tape.\n\nHas anyone come across this from BMW or any other source?\n\nThanks,\n", "435": "\nI purchased one personal computer and three for business from them. No \nproblems. The only time I called tech support was for a minor question \nabout a video driver and I had no problem getting through.\n\nAll four machines seem to be high quality and well made. A 486dx50 EISA \nmachine has been our network file server running 24 hrs per day since last \nsummer with no problems.\n\nI hope this is helpful.", "436": "+\n+>This tactic depends for its effectiveness on the dog's conformance to\n+>a \"psychological norm\" that may not actually apply to a particular dog.\n+>I've tried it with some success before, but it won't work on a Charlie Manson\n+>dog or one that's really, *really* stupid. A large Irish Setter taught me\n+>this in *my* yard (apparently HIS territory) one day. I'm sure he was playing \n+>a game with me. The game was probably \"Kill the VERY ANGRY Neighbor\" Before \n+>He Can Dispense the TERRIBLE PUNISHMENT.\n+\n+What, a dog weighs 150lb maybe, at max? You can't handle it?\n+\n+You have, I presume, thumbs? Grapple with it and tear it's head\n+off!\n+\n+Sheesh, even a trained attack dog is no match for a human,\n+we have *all* the advantages.\n\nLook, if you are worried about being attacked by a dog, just carry\nsome \"Spot\" remover with you :-).\n____________________________________________________________________________\n\t\tRussian Roulette is fun 5 out of 6 times", "437": "\nAbsolutely not. I went through a \"journey\" of lukewarm Christianity,\nagnosticism, atheism, agnosticism, and now (although I know my faith\nis less than what it should be) Christianity again. I think it's a path\nmany of us take.", "438": "\n\nAs an earlier post noted - through DMA.\n\n\n\nAny one time means IMHO a single byte xfer. If I have four sources of\nDMA requests ready, the DMA would service the one after the other. If\nthe bandwidth for the four together is lower than the ISA/DMA\nbandwidth, this will work.\n\nNote that the bus mastering here is the priority mechanism in the DMA\ncontroller.\n\n--\nPenio Penev x7423 (212)327-7423 (w) Internet: penev@venezia.rockefeller.edu", "439": "\nI'm not sure if this is a big issue, but it seems to me like it\nmight be -- up till now, all >1g forces applied to the mirror and\nits mounting (and nearly all =1g forces) have been applied along the\ntelescope's optical axis, and against the mirror's base. Reentry\nwould apply forces along roughly the same axis, but tending to pull\nthe mirror away from the mount, and the landing would apply on-edge\nforces to both the mirror and mount. It could be that one or both\nof these would not survive.\n\ngreg\n-- ", "440": "\nAn even better strategy is to leave less of a buffer between you and\nthe car in front, but enough to manuver around it. Keep the bike in\n1st gear with the clutch handle squeezed in (how's that for\nengaged/disengaged?), until there are two cars stopped behind you.\n\nWhen the next BDI cager comes screaching in, simply ride up along side\nof the car in front of you. You don't need to panic and do it, or you\nwill pop the clutch and stall the engine. Do is smoothly, just\nrapidly. The cage in front of you will provide MUCH better protection\nthan anything else (particularly empty road).\n", "441": "Quoting dougb@ecs.comm.mot.com in article <1993Apr26.150434.227@lmpsbbs.comm.mot.com>:", "442": "----- Begin Included Message -----\n\nThe following teaching is brought to you on behalf of Malcolm Smith\nMinistries, a ministry dedicated to leading believers everywhere into a\nknowledge of the love of God. If you would like more info on the ministry,\nand/or would like to comment on whether you found this teaching beneficial,\ne-mail to Randy Hunt at rlhunt@hou.amoco.com.\n\n\nLOVE IN THE MORNING (Psalm 90:14)\n\nby Malcolm Smith\n\nMoses wrote this prayer at a weary time in the history of Israel. A generation\nbefore the time of its writing, the people of Israel had stood at Kadesh,\ngateway to Canaan, and made the fateful choice to go their own way rather\nthan God's way. They refused an adventure of faith in God which would\nhave given them Canaan, the homeland of promise. God honored their\ndecision, and said they would wander in the desert only a few miles from the\nland of promise until they were all buried in the sand. The young decision-\nmakers of that fateful day were between twenty and thirty years old, and\ndestined to be dead within forty years... bleached bones in the desert by the\ntime they were seventy-- eighty, at the most. The lives of these wanderers\nhad been unending sadness. Moses described it as ending each year with a\nsigh (v. 9). The fact that they knew, give or take a few months, when they\nwere going to die, underscored the meaninglessness of their existence.\nWhatever heights of success they reached, they would be a heap of bleached\nbones within forty years. The only ones to live outside of that depression of\nhopeless disbelief were Joshua and Caleb, who had stood against the nation\nat Kadesh and had God' s promise of one day entering the land. The\nforty-year period was finally drawing to an end. The new generation, those\nwho were children at Kadesh, were now grown and eager to take the\ninheritance their parents had refused to enjoy. In the light of this, Moses\nprays...it is time for a new day to begin and the days of misery to be over.\nAll these years, as Moses had walked with these moaning and complaining\npeople through the wilderness of their exile, he had carried a double burden.\nHis was not only the sadness of living in less than what could have been; but\nhe also knew why they had chosen as they had at Kadesh. The problem was\nthat they were ignorant of the character of their God. If asked. \"Who is your\nGod?\" they would have described Him as the God who is Power. When\nAaron had created their concept of God in an idol. he chose a calf. or young\nbull--a symbol of power, of virility. In their minds, God was the young bull\nwho had impaled Pharaoh on his horns and gored Egypt's gods as He led\nIsrael to Sinai. But when man worships a God of power, His miracles grow\nthin and even boring. After miracle food on the desert floor and water\ngushing miraculously from the solid rock through the desert wasteland, the\nGod of Almightiness becomes \"ho-hum --What' s next on the miracle menu?\"\nAnd a God of power can be as unpredictable as a young bull calf. He might\nbe all they need, but then...who knows? If He has all power, He has a right\nto do whatever He wants, whenever He wants. The only person these people\nhad known who had absolute power was Pharaoh, and men's lives had hung\non the whim of his moods, which could change with the wind. They believed\nGod could work His wonders on their behalf, but they did not know HIM\nand, so, could not trust Him. Israel had a God based on what He DID, His\nacts; Moses knew the heart of God, the motivation behind the acts. From the\nday of his encounter at the burning bush, Moses had been fascinated by God.\nAt Sinai, he asked to be shown His glory...to know who He really was. He\nhad seen what God had done; he wanted to know who God was. This\nrequest was granted, and Moses was given a glimpse of God's glorious\nPerson. He had come to know the heart of God as compassion and\nlovingkindness (Exodus 34:6,7). The word \"lovingkindness\" is not to be\nunderstood as a human kind of love. It speaks of the kind of relationship\narising out of the making of a covenant. It can only be understood as the\nlove that says, \"I will never leave you nor forsake you.\" Lovingkindness is as\ntenacious as a British bulldog; when the world walks out, this love digs in its\nheels and refuses to leave.And it is not human romantic love, based on\nfeelings and rooted in emotions. It is a love of covenant commitment and,\ntherefore, operates quite apart from feelings. God's love is not an emotion\nthat wavers day by day; it is the total commitment of His Being to seek our\nhighest and best, and to bring us to our fullest potential as humans. God\ndoes not see something good and beautiful in us which arouses His feelings\nof love toward us...we do not woo Him and cause Him to fall in love with\nus! If that were the case, the first ugly, sinful thing we did would cause Him\nto reject us. He is Love, and He loves us because of who He is-- not\nbecause of who we are. He does not love what we do, but He is committed\nto us, pursuing us down every blind alley and bypath of foolishness. He will\nnot let us go. His is a love that is not looking for what it can get out of us--\nbut a committed love that searches for opportunities to give to us. It is\nsaying to the recipient, \"For as long as we shall live, I am for you.\" The God\nwho has revealed Himself to man through Scripture and, finally, in Jesus--in\nHis coming, and in His death and resurrection--is the God who is\nlovingkindness. Thus He loves us and gives Himself to us...He will never\nleave us nor forsake us. Tragically, many believers have never seen Him as\nlove; they see Him as power. No one will come to faith by just seeing\nmiracles. Miracles point to who He is, and that is when faith springs in the\nheart. Israel did not see God as lovingkindness; they saw His acts of power.\nMoses knew His ways, the kind of God He was, and the love that He had for\nthese people. Because of their total lack of understanding of His love, they\ncould not trust Him to be their strength in taking the land. Faith is born out\nof knowing the love He has for us; it is the resting response to the One who\ngives Himself to us. He is not the force, and to call Him the Almighty is to\nmiss His heart. He is Love who is the Almighty and the Infinite Force. If\nman is to make force or raw power work for him, he must depend on\nknowing the forrnula and have faith in it. But the power that issues from\nlove demands faith in the Person of love Himself. The forty years of\nmeaningless wandering was a monument to a people who had never come to\nknow the God of love. At this point, with the new generation and the\npossibility of enjoying all that God promised, Moses prays verse 14. The\nlanguage Moses uses is reminiscent of a baby having slept secure in its\nmother's love, now waking to look up into the delight of her eyes. It is\nwaking to the consciousness of being loved... watched over, cared for,\nprotected, fed, and cleaned, day and night, by the mother. Suppose we were\nto ask, \"What has the baby done to deserve this?\" or, \"Have arrangements\nbeen made for the child to repay the parents for this inconvenience?\" Our\nquestions would be considered unnatural, even immoral. The child was\nconceived in love, anticipated and prepared for with love's excitement, a love\nthat has been to the gates of death to bring it into being. The parents' love is\nunconditional, spontaneous...it has nothing to do with the looks of the child\nor its performance. So God is love. He loves us unconditionally,\nspontaneously. We were conceived in His imagination and fashioned after\nHis image, to be brought to where we are at this moment by the blood of the\nLord Jesus. It is slanderous, and immoral, to even ask what we must do to\nearn and deserve that love. The child discovers its personhood and identity\nthrough the eyes and touch, through the cuddles, of its parents' love. It is a\nscientific fact that a baby who is not touched and held will probably die or, if\nit survives, will have severe emotional problems. And a person who has been\nheld and loved will still never know the true meaning of life without the\nembrace and knowledge of love from God. Moses prays that the new\ngeneration will learn to wake every morning, resting with total confidence in\nthe love of God. and will receive all His promises and blessings with joy and\ngladness. Significantly, Moses prays that they will be SATISFIED with His\nlove. \"Satisfied.\" in the Hebrew language. is a rich picture word describing\nbeing filled with an abundance of gourmet food. It is also used to describe\nthe earth after the rain has soaked it and all the vegetation has received\nenough water. Moses prays that they will awaken every morning to be\ndrenched in the life-giving love of God. That sense of satisfaction is the\nlifelong quest of every man and woman. When we are satisfied in our\ndeepest selves, many of our emotional--and even our physical--problems\ndisappear. Man seeks that sense of satisfaction which comes from feeling\nthat he is fulfilled as a human being...his hours have meaning, which make\nsense out of the ordinary and mundane. Apart from God, man seeks this\nsatisfaction through intellectual pursuit, through the exciting of the\nemotions, and through the feeding of his body...he will even seek it in\nreligious exercise. But man will always be dissatisfied until he is responding\nto the love of the living God. Only in knowing God's love will the rest of life\nmake sense. As the forty years drew to a close and the land of promise again\nbecame the inheritance to be taken, Moses prayed this psalm. I find it\nfascinating that he should pray and ask God for a daily revelation of His\nlove. Considering the awe with which the people held Moses. one would\nthink he could have lectured them on the subject of lovingkindness and, by\nthe knowledge they gained, they would live in it. But Moses knew\nbetter. God is the only one who can make known to us His love. We won't\nfind it in a religious lecture or a formula which we can learn and use to\nmanipulate Him. Nor is it in a beautiful poem to titillate our emotions and\ngive us God feelings. It is God, himself, the Lover, who must open our eyes\nand satisfy us with His love. This prayer is man, in helplessness, asking God\nto make the love He is real in our hearts. Moses' prayer was partially\nanswered in the next generation and seen in the exploits of faith which\nworked by love in The Book of Judges. But it would not be answered in its\nfullest dimensions until the coming of the Holy Spirit, who pours out the\nlove of God in our hearts (Romans 5:5). In the history of the early Church,\nwe read of the Holy Spirit \"falling upon\" the believers. This is an ancient\nexpression that, in modern English, means to give a bear hug. It is used in\nLuke 15 to describe the father running to the prodigal and \"falling on his\nneck and kissing him.\" The Holy Spirit is God hugging you in your deepest\nself and smothering you with divine kisses at the deepest level of your\nbeing. This is not a one-time experience to be filed in our spiritual resumes.\nMoses prayed that morning by morning we would awaken to the realization\nthat we are loved. The world, and much of our religious training, has taught\nus to perform in order to be accepted. We have spent far too long living in a\nstate of doing in order to find satisfaction for ourselves...to find acceptance\nand love from others, and from God. We now come humbled to receive love\nwe cannot earn...to be still and let Him tell us we are loved: to let the Holy\nSpirit descend into us, pouring out the love of God. We come in stillness to\nthink on and repeat His words of love to our minds. which have been jaded\nwith the doctrine of \"perform to be accepted.\" We begin to realize that He\nloves us as we are, and gives meaning and purpose to all of life. I challenge\neveryone reading this to begin each day, from the moment you open your\neyes, by celebrating the God of love and praying this prayer. You may not\nfeel anything, but SOMETHING ALWAYS HAPPENS. I was X-rayed the\nother day. I did not see or feel anything, but I noted that the technicians kept\nbehind protective walls. They know you cannot be exposed to those rays\nwithout being affected. So it is as we consciously begin our day knowing\nthat we are loved. Such experiential knowledge will produce, according to\nMoses, \"joy and gladness all our days.\" Joy is the result of a life that is\nfunctioning as God intended us to function when He made us. You might say\nthat joy is the hum of an engine that is at peak performance. Man' s highest\nperformance is to rest in the love God has for him... the hum will be joy, and\nthe result will be endless creativity arising from the sense of meaning he now\nhas in life. Stop wandering in the wilderness. Be satisfied with His love and,\nin joy, day by day, receive all His promised blessings.\n", "443": "\n\n\n\n\n\n\nThe number you gave is the Borland BBS, and darned if I can find any\nstealth drivers there!\n\nDiamond's BBS is 1-408-730-1100 - according to the manual I got with\nmy Stealth-24. I have had a bunch of trouble using the RIGHT drivers\nthat came with the card (locking up, de-syncing, etc.) so I hope you \ndo better than I do!", "444": "\nWell, as I remember Jacoby's \"Mythmaker\" talks about this to cite\none source -- but I'm not sure if all Christians have read this book.\nIn addition my social experiences is from being raised and educated\nas a Lutheran, having a lot of Christian friends, and I even\nhave played in two Christian rock bands!\n\nSo, over to you, do you have any counter claims, sources et \nrest that shows that Christianity does not have the concept\nof a social promise that is independent on the social status?\n\nCheers,\nKent", "445": "I am looking of information regarding UIMX. I believe this is an application\nfront end generator tool for Motif (among others). Whould someone given me a\ncontact? I need to get hold of the programmers' guide, or something like it.", "446": "I'm looking for algorithms or articles on virtual sound. What i want to do is\nthe following;\n\nFrom a fast source, eg. a CDROM, several sound sources are read, each having\nit's own defined position and other attributes, eg. direction etc. Given the\nlisteners position and direction, the sum of sound played back in each of the\nlisteners earphones will be a function of this position and direction. This\nmeans that some simulation of the ears coloring of sound relative to it's\nincoming direction have to be done for each sound source. (I think this is\npossible to do with a lookup table of impulse responses for several angles\nrelative to each ear, and interpolate an impulse function from this for a given\nangle. This impulse function could then be convoluted with the sound from the\nsource. This impulse function must be changed every time some sound source\nchanges position or the listener changes orientation.) Additionally some\nreflection, diffusion and absorbtion due to the environment wich is defined\ncould be simulated, but this requires some sort of sound propagandation\nsimulation, kinda like some radiosity algorithm. \n\nHave someone done this and/or written articles on implementing such a system? \n\nPlease post or mail any answers or comments.\n\n-- \nTorgeir Veimo\n\nStudying at the University of Bergen\n\n\"...I'm gona wave my freak flag high!\" (Jimi Hendrix)", "447": "Ugliest swing..I am not sure. I think the ugliset stance is\nJolio Franco of the Ranger. I wonder how that bat comes around in time\nto hit the ball. It looks bad but hey.it get the job done. ", "448": "\n I'd like to echo these sentiments. This is the worst coverage I can \n ever remember seeing on CBC. As soon as the game ends, I can count to 30,\n and by that time, they've signed off the air. No post game interviews,\n no updating of late scores, nothin'. TSN is really putting CBC to \n shame. I only hope the later round coverage improves, I mean, who\n really wants to see CBC PrimeTime News instead of hockey.\n\n My $.02,\n Darren\n", "449": "\nIt is ironic that in any post that criticizes langauge ability, the critic\ninvariably makes a mistake himself (\"english\" is generally written \"English\".)\n\n\nOddly, I do not see that I have contested any of that. Perhaps you, with \nassuredly greater \"english\" ability can explain, in tiny words that I might\ngrasp their meaning, precisely WHERE I infer that you have said any of those\nthings? \n\n\nNo Mr Fisher, you should place the burden of proof on the one who makes the\nallegation in the first place. You do not. Perhaps you might explain why that\nis? As for the email route, Mr Fisher, you might have tried that yourself. ", "450": "Can anyone give me information or lead me to electronic information (not\nbooks; I'm too poor...) regarding programming the standard graphics modes?\n320x200x4 and 640x200x2 are easy enough, but I'm not so sure about the\nrest. Something about planes or something, and writing to ports and the\nlike, but I don't know the numbers or anything -- for the 16 color modes, I\nthink. If I'm wrong, let me know. Also, 320x200x256 is just one byte/pixel;\nthat's easy enough, but are there any other ways to write to the screen,\nperhaps bytes at a time, or something like that?\n\nOf course, I'd appreciate any information about any mode.... which reminds\nme of another question -- do the SuperVGA modes work the same, generally,\nas the normal 16 and 256 color modes, or is not only the mode numbers\nfor various cards different, but the methods for writing to the screen\ndifferent as well?\n\nThanks for any help you can give me... I'm developing a screen class for\nC++ and find myself searching for information. Oh, I do have Ralf Brown's\nInterrupt List, which has given me tons of invaluable information already.\nIt just doesn't go into the screen programming details (except for the\nread/write pixel BIOS calls...\n\nThanks again.\n", "451": "When attempting to connect to an SGI Indigo from a PC clone using\na commercial X windows emulation package, the X package hangs in\na pre-login X screen mode. The login box won't display. Using\nthe package in 'telnet' mode, I can logon to the SGI, and run any\nnone graphic type things. On the PC I get an error:\n\"Read error 0 on socket 1\" (raw socket error)\n\nOn the SGI, in xdm-errors:\nI get a termination error when I kill the stalled screen on the PC\n\nOn the SGI, in SYSLOG:\n