diff options
Diffstat (limited to '.git_copy')
237 files changed, 722 insertions, 0 deletions
diff --git a/.git_copy/COMMIT_EDITMSG b/.git_copy/COMMIT_EDITMSG new file mode 100644 index 0000000..33af6a2 --- /dev/null +++ b/.git_copy/COMMIT_EDITMSG @@ -0,0 +1,17 @@ +Modified embellishing a plot,loading data from files,plotting data. + +# Please enter the commit message for your changes. Lines starting +# with '#' will be ignored, and an empty message aborts the commit. +# On branch master +# Changes to be committed: +# (use "git reset HEAD <file>..." to unstage) +# +# modified: embellishing_a_plot/slides.org +# modified: embellishing_a_plot/slides.tex +# modified: loading_data_from_files/script.rst +# modified: loading_data_from_files/slides.org +# modified: loading_data_from_files/slides.tex +# modified: plotting_data/script.rst +# modified: plotting_data/slides.org +# modified: plotting_data/slides.tex +# diff --git a/.git_copy/FETCH_HEAD b/.git_copy/FETCH_HEAD new file mode 100644 index 0000000..5c00e7c --- /dev/null +++ b/.git_copy/FETCH_HEAD @@ -0,0 +1 @@ +1020097fa446ad8c6bdff784d5d0da9e98a55892 branch 'master' of https://github.com/FOSSEE/st-scripts diff --git a/.git_copy/HEAD b/.git_copy/HEAD new file mode 100644 index 0000000..cb089cd --- /dev/null +++ b/.git_copy/HEAD @@ -0,0 +1 @@ +ref: refs/heads/master diff --git a/.git_copy/MERGE_HEAD b/.git_copy/MERGE_HEAD new file mode 100644 index 0000000..f2b9f72 --- /dev/null +++ b/.git_copy/MERGE_HEAD @@ -0,0 +1 @@ +1020097fa446ad8c6bdff784d5d0da9e98a55892 diff --git a/.git_copy/MERGE_MODE b/.git_copy/MERGE_MODE new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/.git_copy/MERGE_MODE diff --git a/.git_copy/MERGE_MSG b/.git_copy/MERGE_MSG new file mode 100644 index 0000000..5c1b878 --- /dev/null +++ b/.git_copy/MERGE_MSG @@ -0,0 +1,4 @@ +Merge branch 'master' of https://github.com/FOSSEE/st-scripts + +Conflicts: + plotting_data/script.rst diff --git a/.git_copy/ORIG_HEAD b/.git_copy/ORIG_HEAD new file mode 100644 index 0000000..57cd38a --- /dev/null +++ b/.git_copy/ORIG_HEAD @@ -0,0 +1 @@ +96ef551c38234ab234e47b78936f184b9e4e42e3 diff --git a/.git_copy/config b/.git_copy/config new file mode 100644 index 0000000..4cedaeb --- /dev/null +++ b/.git_copy/config @@ -0,0 +1,11 @@ +[core] + repositoryformatversion = 0 + filemode = true + bare = false + logallrefupdates = true +[remote "origin"] + fetch = +refs/heads/*:refs/remotes/origin/* + url = https://Jovina@github.com/FOSSEE/st-scripts.git +[branch "master"] + remote = origin + merge = refs/heads/master diff --git a/.git_copy/description b/.git_copy/description new file mode 100644 index 0000000..498b267 --- /dev/null +++ b/.git_copy/description @@ -0,0 +1 @@ +Unnamed repository; edit this file 'description' to name the repository. diff --git a/.git_copy/hooks/applypatch-msg.sample b/.git_copy/hooks/applypatch-msg.sample new file mode 100755 index 0000000..8b2a2fe --- /dev/null +++ b/.git_copy/hooks/applypatch-msg.sample @@ -0,0 +1,15 @@ +#!/bin/sh +# +# An example hook script to check the commit log message taken by +# applypatch from an e-mail message. +# +# The hook should exit with non-zero status after issuing an +# appropriate message if it wants to stop the commit. The hook is +# allowed to edit the commit message file. +# +# To enable this hook, rename this file to "applypatch-msg". + +. git-sh-setup +test -x "$GIT_DIR/hooks/commit-msg" && + exec "$GIT_DIR/hooks/commit-msg" ${1+"$@"} +: diff --git a/.git_copy/hooks/commit-msg.sample b/.git_copy/hooks/commit-msg.sample new file mode 100755 index 0000000..b58d118 --- /dev/null +++ b/.git_copy/hooks/commit-msg.sample @@ -0,0 +1,24 @@ +#!/bin/sh +# +# An example hook script to check the commit log message. +# Called by "git commit" with one argument, the name of the file +# that has the commit message. The hook should exit with non-zero +# status after issuing an appropriate message if it wants to stop the +# commit. The hook is allowed to edit the commit message file. +# +# To enable this hook, rename this file to "commit-msg". + +# Uncomment the below to add a Signed-off-by line to the message. +# Doing this in a hook is a bad idea in general, but the prepare-commit-msg +# hook is more suited to it. +# +# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') +# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" + +# This example catches duplicate Signed-off-by lines. + +test "" = "$(grep '^Signed-off-by: ' "$1" | + sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || { + echo >&2 Duplicate Signed-off-by lines. + exit 1 +} diff --git a/.git_copy/hooks/post-commit.sample b/.git_copy/hooks/post-commit.sample new file mode 100755 index 0000000..2266821 --- /dev/null +++ b/.git_copy/hooks/post-commit.sample @@ -0,0 +1,8 @@ +#!/bin/sh +# +# An example hook script that is called after a successful +# commit is made. +# +# To enable this hook, rename this file to "post-commit". + +: Nothing diff --git a/.git_copy/hooks/post-receive.sample b/.git_copy/hooks/post-receive.sample new file mode 100755 index 0000000..7a83e17 --- /dev/null +++ b/.git_copy/hooks/post-receive.sample @@ -0,0 +1,15 @@ +#!/bin/sh +# +# An example hook script for the "post-receive" event. +# +# The "post-receive" script is run after receive-pack has accepted a pack +# and the repository has been updated. It is passed arguments in through +# stdin in the form +# <oldrev> <newrev> <refname> +# For example: +# aa453216d1b3e49e7f6f98441fa56946ddcd6a20 68f7abf4e6f922807889f52bc043ecd31b79f814 refs/heads/master +# +# see contrib/hooks/ for a sample, or uncomment the next line and +# rename the file to "post-receive". + +#. /usr/share/doc/git-core/contrib/hooks/post-receive-email diff --git a/.git_copy/hooks/post-update.sample b/.git_copy/hooks/post-update.sample new file mode 100755 index 0000000..ec17ec1 --- /dev/null +++ b/.git_copy/hooks/post-update.sample @@ -0,0 +1,8 @@ +#!/bin/sh +# +# An example hook script to prepare a packed repository for use over +# dumb transports. +# +# To enable this hook, rename this file to "post-update". + +exec git update-server-info diff --git a/.git_copy/hooks/pre-applypatch.sample b/.git_copy/hooks/pre-applypatch.sample new file mode 100755 index 0000000..b1f187c --- /dev/null +++ b/.git_copy/hooks/pre-applypatch.sample @@ -0,0 +1,14 @@ +#!/bin/sh +# +# An example hook script to verify what is about to be committed +# by applypatch from an e-mail message. +# +# The hook should exit with non-zero status after issuing an +# appropriate message if it wants to stop the commit. +# +# To enable this hook, rename this file to "pre-applypatch". + +. git-sh-setup +test -x "$GIT_DIR/hooks/pre-commit" && + exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"} +: diff --git a/.git_copy/hooks/pre-commit.sample b/.git_copy/hooks/pre-commit.sample new file mode 100755 index 0000000..b187c4b --- /dev/null +++ b/.git_copy/hooks/pre-commit.sample @@ -0,0 +1,46 @@ +#!/bin/sh +# +# An example hook script to verify what is about to be committed. +# Called by "git commit" with no arguments. The hook should +# exit with non-zero status after issuing an appropriate message if +# it wants to stop the commit. +# +# To enable this hook, rename this file to "pre-commit". + +if git rev-parse --verify HEAD >/dev/null 2>&1 +then + against=HEAD +else + # Initial commit: diff against an empty tree object + against=4b825dc642cb6eb9a060e54bf8d69288fbee4904 +fi + +# If you want to allow non-ascii filenames set this variable to true. +allownonascii=$(git config hooks.allownonascii) + +# 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')" +then + echo "Error: Attempt to add a non-ascii file name." + echo + echo "This can cause problems if you want to work" + echo "with people on other platforms." + echo + echo "To be portable it is advisable to rename the file ..." + echo + echo "If you know what you are doing you can disable this" + echo "check using:" + echo + echo " git config hooks.allownonascii true" + echo + exit 1 +fi + +exec git diff-index --check --cached $against -- diff --git a/.git_copy/hooks/pre-rebase.sample b/.git_copy/hooks/pre-rebase.sample new file mode 100755 index 0000000..9773ed4 --- /dev/null +++ b/.git_copy/hooks/pre-rebase.sample @@ -0,0 +1,169 @@ +#!/bin/sh +# +# Copyright (c) 2006, 2008 Junio C Hamano +# +# The "pre-rebase" hook is run just before "git rebase" starts doing +# its job, and can prevent the command from running by exiting with +# non-zero status. +# +# The hook is called with the following parameters: +# +# $1 -- the upstream the series was forked from. +# $2 -- the branch being rebased (or empty when rebasing the current branch). +# +# This sample shows how to prevent topic branches that are already +# merged to 'next' branch from getting rebased, because allowing it +# would result in rebasing already published history. + +publish=next +basebranch="$1" +if test "$#" = 2 +then + topic="refs/heads/$2" +else + topic=`git symbolic-ref HEAD` || + exit 0 ;# we do not interrupt rebasing detached HEAD +fi + +case "$topic" in +refs/heads/??/*) + ;; +*) + exit 0 ;# we do not interrupt others. + ;; +esac + +# Now we are dealing with a topic branch being rebased +# on top of master. Is it OK to rebase it? + +# Does the topic really exist? +git show-ref -q "$topic" || { + echo >&2 "No such branch $topic" + exit 1 +} + +# Is topic fully merged to master? +not_in_master=`git rev-list --pretty=oneline ^master "$topic"` +if test -z "$not_in_master" +then + echo >&2 "$topic is fully merged to master; better remove it." + exit 1 ;# we could allow it, but there is no point. +fi + +# Is topic ever merged to next? If so you should not be rebasing it. +only_next_1=`git rev-list ^master "^$topic" ${publish} | sort` +only_next_2=`git rev-list ^master ${publish} | sort` +if test "$only_next_1" = "$only_next_2" +then + not_in_topic=`git rev-list "^$topic" master` + if test -z "$not_in_topic" + then + echo >&2 "$topic is already up-to-date with master" + exit 1 ;# we could allow it, but there is no point. + else + exit 0 + fi +else + not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"` + /usr/bin/perl -e ' + my $topic = $ARGV[0]; + my $msg = "* $topic has commits already merged to public branch:\n"; + my (%not_in_next) = map { + /^([0-9a-f]+) /; + ($1 => 1); + } split(/\n/, $ARGV[1]); + for my $elem (map { + /^([0-9a-f]+) (.*)$/; + [$1 => $2]; + } split(/\n/, $ARGV[2])) { + if (!exists $not_in_next{$elem->[0]}) { + if ($msg) { + print STDERR $msg; + undef $msg; + } + print STDERR " $elem->[1]\n"; + } + } + ' "$topic" "$not_in_next" "$not_in_master" + exit 1 +fi + +exit 0 + +################################################################ + +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". diff --git a/.git_copy/hooks/prepare-commit-msg.sample b/.git_copy/hooks/prepare-commit-msg.sample new file mode 100755 index 0000000..f093a02 --- /dev/null +++ b/.git_copy/hooks/prepare-commit-msg.sample @@ -0,0 +1,36 @@ +#!/bin/sh +# +# An example hook script to prepare the commit log message. +# Called by "git commit" with the name of the file that has the +# commit message, followed by the description of the commit +# message's source. The hook's purpose is to edit the commit +# message file. If the hook fails with a non-zero status, +# the commit is aborted. +# +# To enable this hook, rename this file to "prepare-commit-msg". + +# This hook includes three examples. The first comments out the +# "Conflicts:" part of a merge commit. +# +# The second includes the output of "git diff --name-status -r" +# into the message, just before the "git status" output. It is +# commented because it doesn't cope with --amend or with squashed +# commits. +# +# The third example adds a Signed-off-by line to the message, that can +# still be edited. This is rarely a good idea. + +case "$2,$3" in + merge,) + /usr/bin/perl -i.bak -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1" ;; + +# ,|template,) +# /usr/bin/perl -i.bak -pe ' +# print "\n" . `git diff --cached --name-status -r` +# if /^#/ && $first++ == 0' "$1" ;; + + *) ;; +esac + +# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') +# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" diff --git a/.git_copy/hooks/update.sample b/.git_copy/hooks/update.sample new file mode 100755 index 0000000..71ab04e --- /dev/null +++ b/.git_copy/hooks/update.sample @@ -0,0 +1,128 @@ +#!/bin/sh +# +# An example hook script to blocks unannotated tags from entering. +# Called by "git receive-pack" with arguments: refname sha1-old sha1-new +# +# To enable this hook, rename this file to "update". +# +# Config +# ------ +# hooks.allowunannotated +# This boolean sets whether unannotated tags will be allowed into the +# repository. By default they won't be. +# hooks.allowdeletetag +# This boolean sets whether deleting tags will be allowed in the +# repository. By default they won't be. +# hooks.allowmodifytag +# This boolean sets whether a tag may be modified after creation. By default +# it won't be. +# hooks.allowdeletebranch +# This boolean sets whether deleting branches will be allowed in the +# repository. By default they won't be. +# hooks.denycreatebranch +# This boolean sets whether remotely creating branches will be denied +# in the repository. By default this is allowed. +# + +# --- Command line +refname="$1" +oldrev="$2" +newrev="$3" + +# --- Safety check +if [ -z "$GIT_DIR" ]; then + echo "Don't run this script from the command line." >&2 + echo " (if you want, you could supply GIT_DIR then run" >&2 + echo " $0 <ref> <oldrev> <newrev>)" >&2 + exit 1 +fi + +if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then + echo "Usage: $0 <ref> <oldrev> <newrev>" >&2 + exit 1 +fi + +# --- Config +allowunannotated=$(git config --bool hooks.allowunannotated) +allowdeletebranch=$(git config --bool hooks.allowdeletebranch) +denycreatebranch=$(git config --bool hooks.denycreatebranch) +allowdeletetag=$(git config --bool hooks.allowdeletetag) +allowmodifytag=$(git config --bool hooks.allowmodifytag) + +# check for no description +projectdesc=$(sed -e '1q' "$GIT_DIR/description") +case "$projectdesc" in +"Unnamed repository"* | "") + echo "*** Project description file hasn't been set" >&2 + exit 1 + ;; +esac + +# --- Check types +# if $newrev is 0000...0000, it's a commit to delete a ref. +zero="0000000000000000000000000000000000000000" +if [ "$newrev" = "$zero" ]; then + newrev_type=delete +else + newrev_type=$(git cat-file -t $newrev) +fi + +case "$refname","$newrev_type" in + refs/tags/*,commit) + # un-annotated tag + short_refname=${refname##refs/tags/} + if [ "$allowunannotated" != "true" ]; then + echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2 + echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2 + exit 1 + fi + ;; + refs/tags/*,delete) + # delete tag + if [ "$allowdeletetag" != "true" ]; then + echo "*** Deleting a tag is not allowed in this repository" >&2 + exit 1 + fi + ;; + refs/tags/*,tag) + # annotated tag + if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1 + then + echo "*** Tag '$refname' already exists." >&2 + echo "*** Modifying a tag is not allowed in this repository." >&2 + exit 1 + fi + ;; + refs/heads/*,commit) + # branch + if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then + echo "*** Creating a branch is not allowed in this repository" >&2 + exit 1 + fi + ;; + refs/heads/*,delete) + # delete branch + if [ "$allowdeletebranch" != "true" ]; then + echo "*** Deleting a branch is not allowed in this repository" >&2 + exit 1 + fi + ;; + refs/remotes/*,commit) + # tracking branch + ;; + refs/remotes/*,delete) + # delete tracking branch + if [ "$allowdeletebranch" != "true" ]; then + echo "*** Deleting a tracking branch is not allowed in this repository" >&2 + exit 1 + fi + ;; + *) + # Anything else (is there anything else?) + echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2 + exit 1 + ;; +esac + +# --- Finished +exit 0 diff --git a/.git_copy/index b/.git_copy/index Binary files differnew file mode 100644 index 0000000..1d8fcdb --- /dev/null +++ b/.git_copy/index diff --git a/.git_copy/info/exclude b/.git_copy/info/exclude new file mode 100644 index 0000000..a5196d1 --- /dev/null +++ b/.git_copy/info/exclude @@ -0,0 +1,6 @@ +# git ls-files --others --exclude-from=.git/info/exclude +# Lines that start with '#' are comments. +# For a project mostly in C, the following would be a good set of +# exclude patterns (uncomment them if you want to use them): +# *.[oa] +# *~ diff --git a/.git_copy/logs/HEAD b/.git_copy/logs/HEAD new file mode 100644 index 0000000..e36ffd7 --- /dev/null +++ b/.git_copy/logs/HEAD @@ -0,0 +1,30 @@ +0000000000000000000000000000000000000000 546ca05dc2dbe66e776aaa00035b7936e720931c jovina <jovina@endymion.(none)> 1303374479 +0530 clone: from https://Jovina@github.com/FOSSEE/st-scripts.git +546ca05dc2dbe66e776aaa00035b7936e720931c abbd94236712544407e1c83dc2371fea8273cc3e jovina <jovina@endymion.(none)> 1303375387 +0530 commit: Add .gitignore. +abbd94236712544407e1c83dc2371fea8273cc3e 659ad75e230fb6814d1b9d8e999268819d599fff Jovina D'Souza <jovina@fossee.in> 1303375742 +0530 commit (amend): Add .gitignore. +659ad75e230fb6814d1b9d8e999268819d599fff 546ca05dc2dbe66e776aaa00035b7936e720931c Jovina D'Souza <jovina@fossee.in> 1303375809 +0530 HEAD~1: updating HEAD +546ca05dc2dbe66e776aaa00035b7936e720931c b547668529750b5187d264ed74b0452a6b049d50 Jovina D'Souza <jovina@fossee.in> 1303375852 +0530 commit: Replace .hgignore with .gitignore. +b547668529750b5187d264ed74b0452a6b049d50 d39fe005fdc6c73105568880c1dc7b4721737139 Jovina D'Souza <jovina@fossee.in> 1303375892 +0530 commit: Add images folder with iitb logo. +d39fe005fdc6c73105568880c1dc7b4721737139 019f716f1d44f3ecbf0f51c0a69db5aa475c40d4 Jovina D'Souza <jovina@fossee.in> 1303376333 +0530 commit: Add questions.rst and mcqs.rst to .gitignore. +019f716f1d44f3ecbf0f51c0a69db5aa475c40d4 60aa412e17fb8c6c54dbba0bdb16f0d119203018 Jovina D'Souza <jovina@fossee.in> 1303377551 +0530 commit: Major changes to getting_started_with_ipython. +60aa412e17fb8c6c54dbba0bdb16f0d119203018 bc013e5d812661e045f8e6ed2bc940d53d306098 Jovina D'Souza <jovina@fossee.in> 1303380228 +0530 commit: Objectives added to the script. +bc013e5d812661e045f8e6ed2bc940d53d306098 04d250dd3b5e8cf32d1716f1539e5cf4347af785 Jovina D'Souza <jovina@fossee.in> 1303380598 +0530 pull : Merge made by recursive. +04d250dd3b5e8cf32d1716f1539e5cf4347af785 8a8ee62d543a0f923f00f7a90eacd701b6bc98b7 Jovina D'Souza <jovina@fossee.in> 1303713650 +0530 commit: modified script. +8a8ee62d543a0f923f00f7a90eacd701b6bc98b7 4d16113c380d87049ba2ad66fa7e81a0ca619a51 Jovina D'Souza <jovina@fossee.in> 1303713817 +0530 pull : Merge made by recursive. +4d16113c380d87049ba2ad66fa7e81a0ca619a51 30bad0969f98efd7eac2234311dc0ce247615430 Jovina D'Souza <jovina@fossee.in> 1303714645 +0530 commit: added the objectives. +30bad0969f98efd7eac2234311dc0ce247615430 451f643762f21a798fe26def83697658088b3b32 Jovina D'Souza <jovina@fossee.in> 1303715633 +0530 commit: Made some minor changes. +451f643762f21a798fe26def83697658088b3b32 56ad65e7d6f17705053b633ace5adbbb03472f77 Jovina <jovinadsouza@gmail.com> 1303725447 +0530 commit: Made some minor changes to the script 'using plot interactively'. +56ad65e7d6f17705053b633ace5adbbb03472f77 564b6c7660916cf6b4bb13f03a7d6b0747092be0 Jovina <jovinadsouza@gmail.com> 1303725758 +0530 pull : Merge made by recursive. +564b6c7660916cf6b4bb13f03a7d6b0747092be0 8823c0f0153cbec86f40f04a07a91c8d980707c3 Jovina <jovinadsouza@gmail.com> 1303797719 +0530 commit: Modified the script 'embellishing a plot'. +8823c0f0153cbec86f40f04a07a91c8d980707c3 9f465c6647c092ba3017eccb76d25c3d474b5836 Jovina <jovinadsouza@gmail.com> 1303900253 +0530 commit: Modified the script "saving plots"of module 1. +9f465c6647c092ba3017eccb76d25c3d474b5836 7edf99a1a95e2145d58b60bddd71a649e8b94101 Jovina <jovinadsouza@gmail.com> 1303902703 +0530 commit: Add Objectives and Acknowledgement to multiple_plots. +7edf99a1a95e2145d58b60bddd71a649e8b94101 1423a34d37b265821961cffe7f37789410bb685d Jovina <jovinadsouza@gmail.com> 1303974214 +0530 commit: Modified the script "multiple plots" of module 1. +1423a34d37b265821961cffe7f37789410bb685d f954186a89d75882c65635f5ba741b1197e19e1c Jovina <jovinadsouza@gmail.com> 1303988724 +0530 commit: Modified the slides for "using_plot_interactively". +f954186a89d75882c65635f5ba741b1197e19e1c 411c8b748499da47fc7b6113e57521b281c38d5d Jovina <jovinadsouza@gmail.com> 1304066794 +0530 commit: Modified the script "Additional_features_of_ipython". +411c8b748499da47fc7b6113e57521b281c38d5d e6ae7ecbb317c42898a8a26fe631491552f1bd9c Jovina <jovinadsouza@gmail.com> 1304073806 +0530 commit: Modified slides for "getting_started_with_ipython". +e6ae7ecbb317c42898a8a26fe631491552f1bd9c a2dcea2c70bf4e2ca2f8836a643a46f41cdbb618 Jovina <jovinadsouza@gmail.com> 1304074457 +0530 commit: Modified the slides for "using_plot_interactively". +a2dcea2c70bf4e2ca2f8836a643a46f41cdbb618 72deadab425a2cdbca9ddfab6e7c03408b0bd6a5 Jovina <jovinadsouza@gmail.com> 1304325898 +0530 merge origin/master master: Merge made by octopus. +72deadab425a2cdbca9ddfab6e7c03408b0bd6a5 6f33c1a932a6f01efbeca0318eb7cc2490dd598f Jovina <jovinadsouza@gmail.com> 1304327418 +0530 commit (merge): Manual merge. +6f33c1a932a6f01efbeca0318eb7cc2490dd598f d29720a2660489ad15e03f875d83d3c228fef411 Jovina <jovinadsouza@gmail.com> 1304328160 +0530 commit: Modified the slides for "Embellishing a plot". +d29720a2660489ad15e03f875d83d3c228fef411 19c8f29fa0be1c8697078fbeae780c5aa52b0676 Jovina <jovinadsouza@gmail.com> 1304337070 +0530 commit: Modified the slides for "Additional_features_of_ipython". +19c8f29fa0be1c8697078fbeae780c5aa52b0676 8f769af90d747f7e12e4ef64ec2ee9dabf19b727 Jovina <jovinadsouza@gmail.com> 1304490901 +0530 commit: Modified files in module1. +8f769af90d747f7e12e4ef64ec2ee9dabf19b727 96ef551c38234ab234e47b78936f184b9e4e42e3 Jovina <jovinadsouza@gmail.com> 1304683640 +0530 commit: Modified embellishing a plot,loading data from files,plotting data. diff --git a/.git_copy/logs/refs/heads/master b/.git_copy/logs/refs/heads/master new file mode 100644 index 0000000..e36ffd7 --- /dev/null +++ b/.git_copy/logs/refs/heads/master @@ -0,0 +1,30 @@ +0000000000000000000000000000000000000000 546ca05dc2dbe66e776aaa00035b7936e720931c jovina <jovina@endymion.(none)> 1303374479 +0530 clone: from https://Jovina@github.com/FOSSEE/st-scripts.git +546ca05dc2dbe66e776aaa00035b7936e720931c abbd94236712544407e1c83dc2371fea8273cc3e jovina <jovina@endymion.(none)> 1303375387 +0530 commit: Add .gitignore. +abbd94236712544407e1c83dc2371fea8273cc3e 659ad75e230fb6814d1b9d8e999268819d599fff Jovina D'Souza <jovina@fossee.in> 1303375742 +0530 commit (amend): Add .gitignore. +659ad75e230fb6814d1b9d8e999268819d599fff 546ca05dc2dbe66e776aaa00035b7936e720931c Jovina D'Souza <jovina@fossee.in> 1303375809 +0530 HEAD~1: updating HEAD +546ca05dc2dbe66e776aaa00035b7936e720931c b547668529750b5187d264ed74b0452a6b049d50 Jovina D'Souza <jovina@fossee.in> 1303375852 +0530 commit: Replace .hgignore with .gitignore. +b547668529750b5187d264ed74b0452a6b049d50 d39fe005fdc6c73105568880c1dc7b4721737139 Jovina D'Souza <jovina@fossee.in> 1303375892 +0530 commit: Add images folder with iitb logo. +d39fe005fdc6c73105568880c1dc7b4721737139 019f716f1d44f3ecbf0f51c0a69db5aa475c40d4 Jovina D'Souza <jovina@fossee.in> 1303376333 +0530 commit: Add questions.rst and mcqs.rst to .gitignore. +019f716f1d44f3ecbf0f51c0a69db5aa475c40d4 60aa412e17fb8c6c54dbba0bdb16f0d119203018 Jovina D'Souza <jovina@fossee.in> 1303377551 +0530 commit: Major changes to getting_started_with_ipython. +60aa412e17fb8c6c54dbba0bdb16f0d119203018 bc013e5d812661e045f8e6ed2bc940d53d306098 Jovina D'Souza <jovina@fossee.in> 1303380228 +0530 commit: Objectives added to the script. +bc013e5d812661e045f8e6ed2bc940d53d306098 04d250dd3b5e8cf32d1716f1539e5cf4347af785 Jovina D'Souza <jovina@fossee.in> 1303380598 +0530 pull : Merge made by recursive. +04d250dd3b5e8cf32d1716f1539e5cf4347af785 8a8ee62d543a0f923f00f7a90eacd701b6bc98b7 Jovina D'Souza <jovina@fossee.in> 1303713650 +0530 commit: modified script. +8a8ee62d543a0f923f00f7a90eacd701b6bc98b7 4d16113c380d87049ba2ad66fa7e81a0ca619a51 Jovina D'Souza <jovina@fossee.in> 1303713817 +0530 pull : Merge made by recursive. +4d16113c380d87049ba2ad66fa7e81a0ca619a51 30bad0969f98efd7eac2234311dc0ce247615430 Jovina D'Souza <jovina@fossee.in> 1303714645 +0530 commit: added the objectives. +30bad0969f98efd7eac2234311dc0ce247615430 451f643762f21a798fe26def83697658088b3b32 Jovina D'Souza <jovina@fossee.in> 1303715633 +0530 commit: Made some minor changes. +451f643762f21a798fe26def83697658088b3b32 56ad65e7d6f17705053b633ace5adbbb03472f77 Jovina <jovinadsouza@gmail.com> 1303725447 +0530 commit: Made some minor changes to the script 'using plot interactively'. +56ad65e7d6f17705053b633ace5adbbb03472f77 564b6c7660916cf6b4bb13f03a7d6b0747092be0 Jovina <jovinadsouza@gmail.com> 1303725758 +0530 pull : Merge made by recursive. +564b6c7660916cf6b4bb13f03a7d6b0747092be0 8823c0f0153cbec86f40f04a07a91c8d980707c3 Jovina <jovinadsouza@gmail.com> 1303797719 +0530 commit: Modified the script 'embellishing a plot'. +8823c0f0153cbec86f40f04a07a91c8d980707c3 9f465c6647c092ba3017eccb76d25c3d474b5836 Jovina <jovinadsouza@gmail.com> 1303900253 +0530 commit: Modified the script "saving plots"of module 1. +9f465c6647c092ba3017eccb76d25c3d474b5836 7edf99a1a95e2145d58b60bddd71a649e8b94101 Jovina <jovinadsouza@gmail.com> 1303902703 +0530 commit: Add Objectives and Acknowledgement to multiple_plots. +7edf99a1a95e2145d58b60bddd71a649e8b94101 1423a34d37b265821961cffe7f37789410bb685d Jovina <jovinadsouza@gmail.com> 1303974214 +0530 commit: Modified the script "multiple plots" of module 1. +1423a34d37b265821961cffe7f37789410bb685d f954186a89d75882c65635f5ba741b1197e19e1c Jovina <jovinadsouza@gmail.com> 1303988724 +0530 commit: Modified the slides for "using_plot_interactively". +f954186a89d75882c65635f5ba741b1197e19e1c 411c8b748499da47fc7b6113e57521b281c38d5d Jovina <jovinadsouza@gmail.com> 1304066794 +0530 commit: Modified the script "Additional_features_of_ipython". +411c8b748499da47fc7b6113e57521b281c38d5d e6ae7ecbb317c42898a8a26fe631491552f1bd9c Jovina <jovinadsouza@gmail.com> 1304073806 +0530 commit: Modified slides for "getting_started_with_ipython". +e6ae7ecbb317c42898a8a26fe631491552f1bd9c a2dcea2c70bf4e2ca2f8836a643a46f41cdbb618 Jovina <jovinadsouza@gmail.com> 1304074457 +0530 commit: Modified the slides for "using_plot_interactively". +a2dcea2c70bf4e2ca2f8836a643a46f41cdbb618 72deadab425a2cdbca9ddfab6e7c03408b0bd6a5 Jovina <jovinadsouza@gmail.com> 1304325898 +0530 merge origin/master master: Merge made by octopus. +72deadab425a2cdbca9ddfab6e7c03408b0bd6a5 6f33c1a932a6f01efbeca0318eb7cc2490dd598f Jovina <jovinadsouza@gmail.com> 1304327418 +0530 commit (merge): Manual merge. +6f33c1a932a6f01efbeca0318eb7cc2490dd598f d29720a2660489ad15e03f875d83d3c228fef411 Jovina <jovinadsouza@gmail.com> 1304328160 +0530 commit: Modified the slides for "Embellishing a plot". +d29720a2660489ad15e03f875d83d3c228fef411 19c8f29fa0be1c8697078fbeae780c5aa52b0676 Jovina <jovinadsouza@gmail.com> 1304337070 +0530 commit: Modified the slides for "Additional_features_of_ipython". +19c8f29fa0be1c8697078fbeae780c5aa52b0676 8f769af90d747f7e12e4ef64ec2ee9dabf19b727 Jovina <jovinadsouza@gmail.com> 1304490901 +0530 commit: Modified files in module1. +8f769af90d747f7e12e4ef64ec2ee9dabf19b727 96ef551c38234ab234e47b78936f184b9e4e42e3 Jovina <jovinadsouza@gmail.com> 1304683640 +0530 commit: Modified embellishing a plot,loading data from files,plotting data. diff --git a/.git_copy/logs/refs/remotes/origin/master b/.git_copy/logs/refs/remotes/origin/master new file mode 100644 index 0000000..da9552c --- /dev/null +++ b/.git_copy/logs/refs/remotes/origin/master @@ -0,0 +1,22 @@ +546ca05dc2dbe66e776aaa00035b7936e720931c 60aa412e17fb8c6c54dbba0bdb16f0d119203018 Jovina D'Souza <jovina@fossee.in> 1303377666 +0530 update by push +60aa412e17fb8c6c54dbba0bdb16f0d119203018 a79d6745b309c343aa01adeafac7c40026df1f06 jovina <jovina@endymion.(none)> 1303380598 +0530 pull : fast-forward +a79d6745b309c343aa01adeafac7c40026df1f06 04d250dd3b5e8cf32d1716f1539e5cf4347af785 Jovina D'Souza <jovina@fossee.in> 1303380676 +0530 update by push +04d250dd3b5e8cf32d1716f1539e5cf4347af785 4963b30e06901e89bacbe90160b84de705f4543b jovina <jovina@endymion.(none)> 1303713816 +0530 pull : fast-forward +4963b30e06901e89bacbe90160b84de705f4543b 4d16113c380d87049ba2ad66fa7e81a0ca619a51 Jovina D'Souza <jovina@fossee.in> 1303713869 +0530 update by push +4d16113c380d87049ba2ad66fa7e81a0ca619a51 30bad0969f98efd7eac2234311dc0ce247615430 Jovina D'Souza <jovina@fossee.in> 1303714690 +0530 update by push +30bad0969f98efd7eac2234311dc0ce247615430 451f643762f21a798fe26def83697658088b3b32 Jovina D'Souza <jovina@fossee.in> 1303715705 +0530 update by push +451f643762f21a798fe26def83697658088b3b32 821c6829953a15121851fbc8f33b4d2b9eaae565 jovina <jovina@endymion.(none)> 1303725758 +0530 pull : fast-forward +821c6829953a15121851fbc8f33b4d2b9eaae565 564b6c7660916cf6b4bb13f03a7d6b0747092be0 Jovina <jovinadsouza@gmail.com> 1303725831 +0530 update by push +564b6c7660916cf6b4bb13f03a7d6b0747092be0 8823c0f0153cbec86f40f04a07a91c8d980707c3 Jovina <jovinadsouza@gmail.com> 1303797875 +0530 update by push +8823c0f0153cbec86f40f04a07a91c8d980707c3 9f465c6647c092ba3017eccb76d25c3d474b5836 Jovina <jovinadsouza@gmail.com> 1303900436 +0530 update by push +9f465c6647c092ba3017eccb76d25c3d474b5836 7edf99a1a95e2145d58b60bddd71a649e8b94101 Jovina <jovinadsouza@gmail.com> 1303902746 +0530 update by push +7edf99a1a95e2145d58b60bddd71a649e8b94101 1423a34d37b265821961cffe7f37789410bb685d Jovina <jovinadsouza@gmail.com> 1303974361 +0530 update by push +1423a34d37b265821961cffe7f37789410bb685d f954186a89d75882c65635f5ba741b1197e19e1c Jovina <jovinadsouza@gmail.com> 1303988861 +0530 update by push +f954186a89d75882c65635f5ba741b1197e19e1c 807ca1ef1cc4a6b1862ee8f4ad2df03d51fbf83a jovina <jovina@endymion.(none)> 1304067018 +0530 pull : fast-forward +807ca1ef1cc4a6b1862ee8f4ad2df03d51fbf83a ba36be48b6904f5ddd4f58e9b085504bf60b911d jovina <jovina@endymion.(none)> 1304073902 +0530 pull : fast-forward +ba36be48b6904f5ddd4f58e9b085504bf60b911d c105a0c530b04bba0b2d6770a03700a4230c4ecc jovina <jovina@endymion.(none)> 1304326812 +0530 pull : fast-forward +c105a0c530b04bba0b2d6770a03700a4230c4ecc 6f33c1a932a6f01efbeca0318eb7cc2490dd598f Jovina <jovinadsouza@gmail.com> 1304327456 +0530 update by push +6f33c1a932a6f01efbeca0318eb7cc2490dd598f d29720a2660489ad15e03f875d83d3c228fef411 Jovina <jovinadsouza@gmail.com> 1304328666 +0530 update by push +d29720a2660489ad15e03f875d83d3c228fef411 19c8f29fa0be1c8697078fbeae780c5aa52b0676 Jovina <jovinadsouza@gmail.com> 1304337118 +0530 update by push +19c8f29fa0be1c8697078fbeae780c5aa52b0676 8f769af90d747f7e12e4ef64ec2ee9dabf19b727 Jovina <jovinadsouza@gmail.com> 1304490970 +0530 update by push +8f769af90d747f7e12e4ef64ec2ee9dabf19b727 1020097fa446ad8c6bdff784d5d0da9e98a55892 jovina <jovina@endymion.(none)> 1304683881 +0530 pull : fast-forward diff --git a/.git_copy/objects/00/e203a9ec2db4f2983f1aea7006e748bcb62666 b/.git_copy/objects/00/e203a9ec2db4f2983f1aea7006e748bcb62666 Binary files differnew file mode 100644 index 0000000..9e4d2ba --- /dev/null +++ b/.git_copy/objects/00/e203a9ec2db4f2983f1aea7006e748bcb62666 diff --git a/.git_copy/objects/01/9f716f1d44f3ecbf0f51c0a69db5aa475c40d4 b/.git_copy/objects/01/9f716f1d44f3ecbf0f51c0a69db5aa475c40d4 new file mode 100644 index 0000000..0d52354 --- /dev/null +++ b/.git_copy/objects/01/9f716f1d44f3ecbf0f51c0a69db5aa475c40d4 @@ -0,0 +1 @@ +xMJ1@a9Ef!4"#r #t$i^o[<x{pf|=%ɄN0cY7!;mLY{4{"mFky]W:ٌhruxkߥzx=ݗHi)4!0#ZB3+V/1HcV_#`Y_Q
\ No newline at end of file diff --git a/.git_copy/objects/02/77ecec0a6827cbf984a52b22ba43acea34a183 b/.git_copy/objects/02/77ecec0a6827cbf984a52b22ba43acea34a183 Binary files differnew file mode 100644 index 0000000..3b6cefb --- /dev/null +++ b/.git_copy/objects/02/77ecec0a6827cbf984a52b22ba43acea34a183 diff --git a/.git_copy/objects/02/9983d34bdce3be17a91c89b40b42029f3376a2 b/.git_copy/objects/02/9983d34bdce3be17a91c89b40b42029f3376a2 Binary files differnew file mode 100644 index 0000000..3ebb6b1 --- /dev/null +++ b/.git_copy/objects/02/9983d34bdce3be17a91c89b40b42029f3376a2 diff --git a/.git_copy/objects/04/d250dd3b5e8cf32d1716f1539e5cf4347af785 b/.git_copy/objects/04/d250dd3b5e8cf32d1716f1539e5cf4347af785 new file mode 100644 index 0000000..9b007b4 --- /dev/null +++ b/.git_copy/objects/04/d250dd3b5e8cf32d1716f1539e5cf4347af785 @@ -0,0 +1 @@ +xKN0DYe"X0,9AnOb',+U\i{uW7f!-f4G|r֥hYi㹊A"dodP
>D iLdGTHShM2ihò{Ie!u/y)4B" :މ{M]rەEhh'*KCkyX=r9RJƵIf3
\ No newline at end of file diff --git a/.git_copy/objects/08/7f43f192ff53d2045110ba9a4edd5ca45576eb b/.git_copy/objects/08/7f43f192ff53d2045110ba9a4edd5ca45576eb Binary files differnew file mode 100644 index 0000000..e309b36 --- /dev/null +++ b/.git_copy/objects/08/7f43f192ff53d2045110ba9a4edd5ca45576eb diff --git a/.git_copy/objects/08/84c93e984f7d33213d8fbbd3204ad4e43cc683 b/.git_copy/objects/08/84c93e984f7d33213d8fbbd3204ad4e43cc683 Binary files differnew file mode 100644 index 0000000..aff85d2 --- /dev/null +++ b/.git_copy/objects/08/84c93e984f7d33213d8fbbd3204ad4e43cc683 diff --git a/.git_copy/objects/08/e99f3bd98f06fa868facb99a5185967efd6983 b/.git_copy/objects/08/e99f3bd98f06fa868facb99a5185967efd6983 Binary files differnew file mode 100644 index 0000000..5e57f1d --- /dev/null +++ b/.git_copy/objects/08/e99f3bd98f06fa868facb99a5185967efd6983 diff --git a/.git_copy/objects/0a/1bfbb579d7be09579e6fd6ef946c108dc34ed1 b/.git_copy/objects/0a/1bfbb579d7be09579e6fd6ef946c108dc34ed1 Binary files differnew file mode 100644 index 0000000..cc3552e --- /dev/null +++ b/.git_copy/objects/0a/1bfbb579d7be09579e6fd6ef946c108dc34ed1 diff --git a/.git_copy/objects/0f/f85c0748a6c5f6f6270a41e69324c45f1b92d2 b/.git_copy/objects/0f/f85c0748a6c5f6f6270a41e69324c45f1b92d2 Binary files differnew file mode 100644 index 0000000..c380f92 --- /dev/null +++ b/.git_copy/objects/0f/f85c0748a6c5f6f6270a41e69324c45f1b92d2 diff --git a/.git_copy/objects/10/20097fa446ad8c6bdff784d5d0da9e98a55892 b/.git_copy/objects/10/20097fa446ad8c6bdff784d5d0da9e98a55892 new file mode 100644 index 0000000..7a2ce0f --- /dev/null +++ b/.git_copy/objects/10/20097fa446ad8c6bdff784d5d0da9e98a55892 @@ -0,0 +1 @@ +xJ1=)aH& }73$lFSQEUZXC|fWg[2V'dWbڂnX[2}qw֗5z&_"R~z&s6\VwfF\LW8#a_Y{RF{9Bp)yxj5)9C}~(W;C(G>nCOET
\ No newline at end of file diff --git a/.git_copy/objects/12/a9762a13bf99a61cf8f64fa4c660fff49da99c b/.git_copy/objects/12/a9762a13bf99a61cf8f64fa4c660fff49da99c Binary files differnew file mode 100644 index 0000000..122b9f4 --- /dev/null +++ b/.git_copy/objects/12/a9762a13bf99a61cf8f64fa4c660fff49da99c diff --git a/.git_copy/objects/13/3fce0261bb8ffca1da38d9a65dadf4b2866cce b/.git_copy/objects/13/3fce0261bb8ffca1da38d9a65dadf4b2866cce new file mode 100644 index 0000000..2b5bde3 --- /dev/null +++ b/.git_copy/objects/13/3fce0261bb8ffca1da38d9a65dadf4b2866cce @@ -0,0 +1 @@ +x+)JMU045a040031Q(,L.JM+I`p$wYjDWB'e09=J8SZ_p]5/>LO+2qip.*WTg7䮷jT_ϭMB??
\ No newline at end of file diff --git a/.git_copy/objects/14/13964f231154c3a134eb933aed58c40f9de7f5 b/.git_copy/objects/14/13964f231154c3a134eb933aed58c40f9de7f5 Binary files differnew file mode 100644 index 0000000..3d2ddbb --- /dev/null +++ b/.git_copy/objects/14/13964f231154c3a134eb933aed58c40f9de7f5 diff --git a/.git_copy/objects/14/23a34d37b265821961cffe7f37789410bb685d b/.git_copy/objects/14/23a34d37b265821961cffe7f37789410bb685d new file mode 100644 index 0000000..2b1ef14 --- /dev/null +++ b/.git_copy/objects/14/23a34d37b265821961cffe7f37789410bb685d @@ -0,0 +1,2 @@ +xj0wS^GIe<iOXr!;;IK1:?L3Hptc;ґp[[ +NiCf9ѨpЖj%Z[SKİ\/zQ7<KKh;?=Q Xa[SHbڀ: qDVH] wئ,5Fbs܂gyxr
\ No newline at end of file diff --git a/.git_copy/objects/14/a65f62d4f7925eb1cc7777d5901d82259fd11c b/.git_copy/objects/14/a65f62d4f7925eb1cc7777d5901d82259fd11c Binary files differnew file mode 100644 index 0000000..f8a2d8a --- /dev/null +++ b/.git_copy/objects/14/a65f62d4f7925eb1cc7777d5901d82259fd11c diff --git a/.git_copy/objects/15/fe07661ef4c6f6cee9c30b79285232820aa81f b/.git_copy/objects/15/fe07661ef4c6f6cee9c30b79285232820aa81f Binary files differnew file mode 100644 index 0000000..886a0bf --- /dev/null +++ b/.git_copy/objects/15/fe07661ef4c6f6cee9c30b79285232820aa81f diff --git a/.git_copy/objects/17/003bfedc91bd4e36b4a25fafb4dfe4b87bb732 b/.git_copy/objects/17/003bfedc91bd4e36b4a25fafb4dfe4b87bb732 Binary files differnew file mode 100644 index 0000000..154a221 --- /dev/null +++ b/.git_copy/objects/17/003bfedc91bd4e36b4a25fafb4dfe4b87bb732 diff --git a/.git_copy/objects/17/16c83078fa1444a2997bedeb26fe1a643ba7ac b/.git_copy/objects/17/16c83078fa1444a2997bedeb26fe1a643ba7ac Binary files differnew file mode 100644 index 0000000..ddfeabb --- /dev/null +++ b/.git_copy/objects/17/16c83078fa1444a2997bedeb26fe1a643ba7ac diff --git a/.git_copy/objects/17/3e8f97f020992a5ab8f8ec4d9d878dc3b65e1b b/.git_copy/objects/17/3e8f97f020992a5ab8f8ec4d9d878dc3b65e1b Binary files differnew file mode 100644 index 0000000..93b871f --- /dev/null +++ b/.git_copy/objects/17/3e8f97f020992a5ab8f8ec4d9d878dc3b65e1b diff --git a/.git_copy/objects/17/dad460cf7de5a59b21c37af9cd4b3246751a37 b/.git_copy/objects/17/dad460cf7de5a59b21c37af9cd4b3246751a37 Binary files differnew file mode 100644 index 0000000..a92d505 --- /dev/null +++ b/.git_copy/objects/17/dad460cf7de5a59b21c37af9cd4b3246751a37 diff --git a/.git_copy/objects/18/80632b1ddcb41dd7f422e2ebaf80d4bbfdb8d9 b/.git_copy/objects/18/80632b1ddcb41dd7f422e2ebaf80d4bbfdb8d9 Binary files differnew file mode 100644 index 0000000..ece8403 --- /dev/null +++ b/.git_copy/objects/18/80632b1ddcb41dd7f422e2ebaf80d4bbfdb8d9 diff --git a/.git_copy/objects/18/e74cbc7bd0e109e013567810d8dacdadfb61a1 b/.git_copy/objects/18/e74cbc7bd0e109e013567810d8dacdadfb61a1 Binary files differnew file mode 100644 index 0000000..d5af2d9 --- /dev/null +++ b/.git_copy/objects/18/e74cbc7bd0e109e013567810d8dacdadfb61a1 diff --git a/.git_copy/objects/19/c8f29fa0be1c8697078fbeae780c5aa52b0676 b/.git_copy/objects/19/c8f29fa0be1c8697078fbeae780c5aa52b0676 new file mode 100644 index 0000000..c485e1c --- /dev/null +++ b/.git_copy/objects/19/c8f29fa0be1c8697078fbeae780c5aa52b0676 @@ -0,0 +1,2 @@ +xMj0u +m!FRmg0ͨQ`ˁ5=BW<1h/\5C&Q^53#RwZeq!K9Y1)E{UG]H|-omϙtm~Ƃ6Bނ:h\K&z*˦ˁ8]kmi,B}_e[@.We
\ No newline at end of file diff --git a/.git_copy/objects/1a/20ef158f56a7fc6772bc4758ba999a32852b11 b/.git_copy/objects/1a/20ef158f56a7fc6772bc4758ba999a32852b11 new file mode 100644 index 0000000..3b97663 --- /dev/null +++ b/.git_copy/objects/1a/20ef158f56a7fc6772bc4758ba999a32852b11 @@ -0,0 +1,3 @@ +x=N0`b-";GBW4`bg8 =+Z:L=Ul,N8%E0DOڠskwZuHd\fd#Ĥ);<ޯ +¥So>+q^+h6 +=nv!"Яۼ{әPW`ɐ64?ƿY
\ No newline at end of file diff --git a/.git_copy/objects/1a/8cc3abf9b4c67352d0db9c896a194917c62885 b/.git_copy/objects/1a/8cc3abf9b4c67352d0db9c896a194917c62885 Binary files differnew file mode 100644 index 0000000..7ca4417 --- /dev/null +++ b/.git_copy/objects/1a/8cc3abf9b4c67352d0db9c896a194917c62885 diff --git a/.git_copy/objects/1a/9aee82bd89f42ae86338bd7d832e75639e4099 b/.git_copy/objects/1a/9aee82bd89f42ae86338bd7d832e75639e4099 Binary files differnew file mode 100644 index 0000000..2c4d2a2 --- /dev/null +++ b/.git_copy/objects/1a/9aee82bd89f42ae86338bd7d832e75639e4099 diff --git a/.git_copy/objects/1c/cec05b1a337e41c29946f44c753a88de3fbd1f b/.git_copy/objects/1c/cec05b1a337e41c29946f44c753a88de3fbd1f Binary files differnew file mode 100644 index 0000000..06659e5 --- /dev/null +++ b/.git_copy/objects/1c/cec05b1a337e41c29946f44c753a88de3fbd1f diff --git a/.git_copy/objects/1d/ea6b045ce94e24a4032f95ea5a1123340e7145 b/.git_copy/objects/1d/ea6b045ce94e24a4032f95ea5a1123340e7145 Binary files differnew file mode 100644 index 0000000..2a7429e --- /dev/null +++ b/.git_copy/objects/1d/ea6b045ce94e24a4032f95ea5a1123340e7145 diff --git a/.git_copy/objects/1f/679716dc52e5c38e0cb7eeebaaca9d482bd94e b/.git_copy/objects/1f/679716dc52e5c38e0cb7eeebaaca9d482bd94e new file mode 100644 index 0000000..36d0c5a --- /dev/null +++ b/.git_copy/objects/1f/679716dc52e5c38e0cb7eeebaaca9d482bd94e @@ -0,0 +1,7 @@ +x}VT,1;)"?lƢR;;ٙa`BrL +S(QRSP5ꚨ"{\Lv<?=<>-/, w֑G?چhbM@NZl^Pmθ_^>ZM<I0 1Z8ȃ@rv{k[[l;ogh´y$kz.|!s}E b:N Ѵ`s}guڟ"ynqGO#>mE%T'84Nk0%82}J
m#W~
oM[S3āx0⽚і*EN)@ !E8G<h}*vl_ٳrs5
![TH^om*onyzf;*:HhC~ԙ'Ӂl./
$~?xΠym]qZHJ§$8oM\Ģ(#HQ#zK1 qb@ҲO͏~}ҿc>Өrts~d;P3!/?ͼU\3cE$E"XP<-%0fog'NBq$Rm`4Us^@9!~=-}W.)_>hHe(R̓/9T`S~kȌR +4 c<PffFz0J4+@ J{3Uԋk}%QQCOp$Dz>"f]u#϶s}"pZ[g,.Jٷ^nk~<YsBnYaXN:ؕraBloH74 +.μ/Ƨ{Z2.V9?0/wv3uxߡZ7fZ=k hO:J5(
)~)|@o h(^OɊlɳw֕kǾwZw +0.'V +ذMljлWղK$<XW]ff2l( @=a&C[Y#y,|VAӥIwr춆|&CS$ΆNQ5mUΩvsfT_y#zAMMH.UA[_ֈKROmT}sTub@QsC႒#&Tg/S5.N~Uoq^
֦WlN-X/yxwwꂻ=i!)֮5sΫi/++'PCp:0>K44Zwp{/+\,jxuvg3vaѝSG_~<;o0e]y+zA +f(mm6("g^Y`f/J0h p;2zfW3g7A"e!R}K?ST;pYy!/4Lhx`,~fjH1W6U~O66S3`Y#`AI_575hz*oIJRmHq(2=y[6G=&]((+k/&ژ{@Wmo,p1i_,ja+/Y*~; \Ot_dR13KW- %t~Xӓ<jdQN;tmn1{TPֆ
\ No newline at end of file diff --git a/.git_copy/objects/20/e7033679f7f02515202a0df0cb8557335572fb b/.git_copy/objects/20/e7033679f7f02515202a0df0cb8557335572fb new file mode 100644 index 0000000..3b654a1 --- /dev/null +++ b/.git_copy/objects/20/e7033679f7f02515202a0df0cb8557335572fb @@ -0,0 +1 @@ +x+)JMU066g040031QH*-)++Kgk~+U|W~5Pe`5wBMz씤&P5e5}sOSǬ/LRTMaifrvQj^IjC>K۔V=ǾْSfm\VZjWT]Fna|J`j2JKb^]=CsgRTd3rg.E=./H!*dvI>zTvP7?98Kļ%2
\ No newline at end of file diff --git a/.git_copy/objects/21/7181cc1d464af8eee7941c59fb6fb9590f14e3 b/.git_copy/objects/21/7181cc1d464af8eee7941c59fb6fb9590f14e3 Binary files differnew file mode 100644 index 0000000..13e27ba --- /dev/null +++ b/.git_copy/objects/21/7181cc1d464af8eee7941c59fb6fb9590f14e3 diff --git a/.git_copy/objects/23/b5de3ab7c201220de16da2fcbaf6a54e128a0f b/.git_copy/objects/23/b5de3ab7c201220de16da2fcbaf6a54e128a0f Binary files differnew file mode 100644 index 0000000..4230ae9 --- /dev/null +++ b/.git_copy/objects/23/b5de3ab7c201220de16da2fcbaf6a54e128a0f diff --git a/.git_copy/objects/24/df387e678ff321db07dd6f0ad6624a7446dc50 b/.git_copy/objects/24/df387e678ff321db07dd6f0ad6624a7446dc50 Binary files differnew file mode 100644 index 0000000..86d9b38 --- /dev/null +++ b/.git_copy/objects/24/df387e678ff321db07dd6f0ad6624a7446dc50 diff --git a/.git_copy/objects/25/6edf6ff11dd126f8250704a84d073fc5bd9a03 b/.git_copy/objects/25/6edf6ff11dd126f8250704a84d073fc5bd9a03 Binary files differnew file mode 100644 index 0000000..66c4f80 --- /dev/null +++ b/.git_copy/objects/25/6edf6ff11dd126f8250704a84d073fc5bd9a03 diff --git a/.git_copy/objects/25/9be80a50a7561ea3c26911a23cce495ba0e963 b/.git_copy/objects/25/9be80a50a7561ea3c26911a23cce495ba0e963 Binary files differnew file mode 100644 index 0000000..1319782 --- /dev/null +++ b/.git_copy/objects/25/9be80a50a7561ea3c26911a23cce495ba0e963 diff --git a/.git_copy/objects/27/ab28ee115a0bc680ce31b2de198c6f8bb5da87 b/.git_copy/objects/27/ab28ee115a0bc680ce31b2de198c6f8bb5da87 Binary files differnew file mode 100644 index 0000000..2fd9a61 --- /dev/null +++ b/.git_copy/objects/27/ab28ee115a0bc680ce31b2de198c6f8bb5da87 diff --git a/.git_copy/objects/29/eb0eb885870549c2e3fb6fea9aefb60165bd1a b/.git_copy/objects/29/eb0eb885870549c2e3fb6fea9aefb60165bd1a Binary files differnew file mode 100644 index 0000000..9268712 --- /dev/null +++ b/.git_copy/objects/29/eb0eb885870549c2e3fb6fea9aefb60165bd1a diff --git a/.git_copy/objects/2b/3198bfb817c2dbb04424b7c1a2e65771688802 b/.git_copy/objects/2b/3198bfb817c2dbb04424b7c1a2e65771688802 new file mode 100644 index 0000000..9165a3f --- /dev/null +++ b/.git_copy/objects/2b/3198bfb817c2dbb04424b7c1a2e65771688802 @@ -0,0 +1,4 @@ +xMN0Yuh?P7e*=l'8 .j74Z=5%.aV4JJ] +}v_Ԙ +£I
r@䞬DBۻZh^7("`PV8b +{WycNCHs}e|t JB
.ihdv`sfckfz>[{h-Kۺoΰi
\ No newline at end of file diff --git a/.git_copy/objects/2f/48d826809e59f0b5783f6cc62d3c880f016c10 b/.git_copy/objects/2f/48d826809e59f0b5783f6cc62d3c880f016c10 Binary files differnew file mode 100644 index 0000000..90b1f9d --- /dev/null +++ b/.git_copy/objects/2f/48d826809e59f0b5783f6cc62d3c880f016c10 diff --git a/.git_copy/objects/30/564ad9d1e8c064d91753988d6ff6bb45fa4c43 b/.git_copy/objects/30/564ad9d1e8c064d91753988d6ff6bb45fa4c43 new file mode 100644 index 0000000..7ae6f6f --- /dev/null +++ b/.git_copy/objects/30/564ad9d1e8c064d91753988d6ff6bb45fa4c43 @@ -0,0 +1,2 @@ +xMJ0a=EBMZ\ޠLIiIxxmEAʚp-4zФb&!CwP* +\2R!fkvd.Puo̲Rq7^gEiֹ0Z[z;нzrSɮ)uN&"TY!};~[
\ No newline at end of file diff --git a/.git_copy/objects/30/bad0969f98efd7eac2234311dc0ce247615430 b/.git_copy/objects/30/bad0969f98efd7eac2234311dc0ce247615430 new file mode 100644 index 0000000..bdc96c8 --- /dev/null +++ b/.git_copy/objects/30/bad0969f98efd7eac2234311dc0ce247615430 @@ -0,0 +1,3 @@ +x= +1@ab:A2ς'M&ٍ^xLM_T0T}M#;SLb)`@Lɖ-8)!TPlx4귶Y༽GpuUO,Ev֓5/l-o +mk[.oI
\ No newline at end of file diff --git a/.git_copy/objects/31/6f575f8b42278d19334219c444fa2c3acef1d7 b/.git_copy/objects/31/6f575f8b42278d19334219c444fa2c3acef1d7 Binary files differnew file mode 100644 index 0000000..dfd9052 --- /dev/null +++ b/.git_copy/objects/31/6f575f8b42278d19334219c444fa2c3acef1d7 diff --git a/.git_copy/objects/33/8807195f7c7dea9c2eab603f97ffc2ac20b201 b/.git_copy/objects/33/8807195f7c7dea9c2eab603f97ffc2ac20b201 new file mode 100644 index 0000000..991fcd7 --- /dev/null +++ b/.git_copy/objects/33/8807195f7c7dea9c2eab603f97ffc2ac20b201 @@ -0,0 +1,2 @@ +xMj0F)fEײ#iVv
}Ǘ*;Pѡ8f'*1'`:?*BQܰ PK*MōK1Y麗!4zr:*%År]*1c_
אHkTptF7= >ҝ2L^o1 +c+πc; Y
\ No newline at end of file diff --git a/.git_copy/objects/35/1e8c3794afd983a033dcf6c74156fad295d0f2 b/.git_copy/objects/35/1e8c3794afd983a033dcf6c74156fad295d0f2 Binary files differnew file mode 100644 index 0000000..7350274 --- /dev/null +++ b/.git_copy/objects/35/1e8c3794afd983a033dcf6c74156fad295d0f2 diff --git a/.git_copy/objects/36/a67e82a57ec10a1f72d3a6901a92a72fe200eb b/.git_copy/objects/36/a67e82a57ec10a1f72d3a6901a92a72fe200eb Binary files differnew file mode 100644 index 0000000..b6b3282 --- /dev/null +++ b/.git_copy/objects/36/a67e82a57ec10a1f72d3a6901a92a72fe200eb diff --git a/.git_copy/objects/3a/446a3d8f9d56bc9043031f8670671dcdb603c9 b/.git_copy/objects/3a/446a3d8f9d56bc9043031f8670671dcdb603c9 Binary files differnew file mode 100644 index 0000000..c587dfb --- /dev/null +++ b/.git_copy/objects/3a/446a3d8f9d56bc9043031f8670671dcdb603c9 diff --git a/.git_copy/objects/3b/6fd2be4ea54f6acc773df5d2bd68799469ed9b b/.git_copy/objects/3b/6fd2be4ea54f6acc773df5d2bd68799469ed9b Binary files differnew file mode 100644 index 0000000..b3cb46f --- /dev/null +++ b/.git_copy/objects/3b/6fd2be4ea54f6acc773df5d2bd68799469ed9b diff --git a/.git_copy/objects/3c/b764ddfee1b297561f4614e83db72b223210e9 b/.git_copy/objects/3c/b764ddfee1b297561f4614e83db72b223210e9 new file mode 100644 index 0000000..4dc0570 --- /dev/null +++ b/.git_copy/objects/3c/b764ddfee1b297561f4614e83db72b223210e9 @@ -0,0 +1,3 @@ +x=N0F}@Dc @4`bl,@O_Z6D`HGfcJ1v0ک;vZ&cBND9GO34G~ʲuxR +X/.׆6䭝86Yxiuп;}՝ +B^Opz!^ar*p~rW
\ No newline at end of file diff --git a/.git_copy/objects/41/1c8b748499da47fc7b6113e57521b281c38d5d b/.git_copy/objects/41/1c8b748499da47fc7b6113e57521b281c38d5d new file mode 100644 index 0000000..ccbecd9 --- /dev/null +++ b/.git_copy/objects/41/1c8b748499da47fc7b6113e57521b281c38d5d @@ -0,0 +1,2 @@ +xj!E+ٖQG!v[77LH.s庒RlD0@JqG%o;˥`^Δ02sZ^5 (HXNera~\_DŽqڹ^@\r+ᙫCeC;T7K͛Œq:¶T%̛c?^ZR7]s~i +RBGB- l[K"H1[#w~
\ No newline at end of file diff --git a/.git_copy/objects/42/617d4b32e9320134ab12a026c9ac1735d859f4 b/.git_copy/objects/42/617d4b32e9320134ab12a026c9ac1735d859f4 Binary files differnew file mode 100644 index 0000000..6dabcec --- /dev/null +++ b/.git_copy/objects/42/617d4b32e9320134ab12a026c9ac1735d859f4 diff --git a/.git_copy/objects/43/393cb202aa7016877b039d614a24cb940e24d7 b/.git_copy/objects/43/393cb202aa7016877b039d614a24cb940e24d7 Binary files differnew file mode 100644 index 0000000..3e8e803 --- /dev/null +++ b/.git_copy/objects/43/393cb202aa7016877b039d614a24cb940e24d7 diff --git a/.git_copy/objects/43/e9f9b8498cfbb897a77e635d07dae9b2777328 b/.git_copy/objects/43/e9f9b8498cfbb897a77e635d07dae9b2777328 Binary files differnew file mode 100644 index 0000000..c4ad47a --- /dev/null +++ b/.git_copy/objects/43/e9f9b8498cfbb897a77e635d07dae9b2777328 diff --git a/.git_copy/objects/44/2bf6c51953fd5c6d4710823eab7ea73da165b2 b/.git_copy/objects/44/2bf6c51953fd5c6d4710823eab7ea73da165b2 Binary files differnew file mode 100644 index 0000000..cb860f3 --- /dev/null +++ b/.git_copy/objects/44/2bf6c51953fd5c6d4710823eab7ea73da165b2 diff --git a/.git_copy/objects/45/1f643762f21a798fe26def83697658088b3b32 b/.git_copy/objects/45/1f643762f21a798fe26def83697658088b3b32 new file mode 100644 index 0000000..6c4fd46 --- /dev/null +++ b/.git_copy/objects/45/1f643762f21a798fe26def83697658088b3b32 @@ -0,0 +1,3 @@ +xα +0a>m\rI\Vh"m[|e +¦N"K8X;$E>%YyO+v0/}jdH16S6GRCf8ooe0>eEC>"VYG;*I`.8u >8e7_OK
\ No newline at end of file diff --git a/.git_copy/objects/45/4c1da10a431a7506be2779dca3829cdc1ba651 b/.git_copy/objects/45/4c1da10a431a7506be2779dca3829cdc1ba651 Binary files differnew file mode 100644 index 0000000..bd2b555 --- /dev/null +++ b/.git_copy/objects/45/4c1da10a431a7506be2779dca3829cdc1ba651 diff --git a/.git_copy/objects/45/ddcb5677663110835fff126d0c6373d359f9ba b/.git_copy/objects/45/ddcb5677663110835fff126d0c6373d359f9ba new file mode 100644 index 0000000..2c3890d --- /dev/null +++ b/.git_copy/objects/45/ddcb5677663110835fff126d0c6373d359f9ba @@ -0,0 +1,9 @@ +x}V{TTxia >)E(&z%a̩3g30,I$D +D%(KM*y8脤,,dCr1f}ۿo{OQ>~`wFx +l!8;1$oUGh_Qq. !gwr 6-ō'?wR Y-a y NC<O +Z
M{v)jZdZs,DO<`B:ʆ5%'*bEoe!IVEAʮC/3So+HUdg<yTb3:{b_97p{n{uѓ| i&Ldgxq<F\}:i@hOqc4TH<ǎ)enF>D#-&H05-$y̘;M]2;^zPz:$'QCC$a`8ZcR:bK%23^&Bv D3)4ҍL s{ԕof#^Wl) 74a`!/bSn>i=Qq%bp܉ɺ9+7BYu.5<W>ﵣ.s~l;p3q:>[@Pe`2glB@Ώۏ/z3I-E8mpp/־Ov(2x>7>-,7_f'qSda7թтDrr3=V9v`
"8?7ZUEE]SH0"!"`@8Ҕv&ܾ
,g"Ñjrگ9=w,tszn|s>f+s'֗&\n]h-[oEEIד,mRyi<;E秥zit?>ngP_ZsүYm}i/cN3pxNLu^}d7A/= !bx=E3TA<gyF˨iz IHDI(pyuS0h Vx +Jv)06``,12{AԞܢ,䐎 )p*Kpz`XLlx2otݡGecx#S&Tx6yƜuneeKk6RS_LKN
훟wٴ<YVde欲~<p趺Biu*R|X/Vۇ[4Nr)x:M{z{U;AmikWO,wpTG֬A?HГ`x"|odxcw^"yѾRWt§ +2Ms@1H^ 2 +roK|RfF.Pf۾M~^*(o<~_p?c>eq.=="NM% Z-u!OR;oI~%+8Dx 0<4ϲHc'&܆@w* {5>MvoVw:EKJRm hqF12#X:?(cOH +BW*5̱m +k(\߰~@+ݹfY"U:2|*Rr:ou-Sx>=TɣY{*e#ô_
\ No newline at end of file diff --git a/.git_copy/objects/46/91c982bc369799f12bd76812cc25e44b64326d b/.git_copy/objects/46/91c982bc369799f12bd76812cc25e44b64326d Binary files differnew file mode 100644 index 0000000..9a73a38 --- /dev/null +++ b/.git_copy/objects/46/91c982bc369799f12bd76812cc25e44b64326d diff --git a/.git_copy/objects/47/0c4c9cd42ef2b0a27f6624603e0541ab9ac32d b/.git_copy/objects/47/0c4c9cd42ef2b0a27f6624603e0541ab9ac32d Binary files differnew file mode 100644 index 0000000..3ced40e --- /dev/null +++ b/.git_copy/objects/47/0c4c9cd42ef2b0a27f6624603e0541ab9ac32d diff --git a/.git_copy/objects/48/7f7aa83926ce3f1078ff78b39a8688b1b5bdb6 b/.git_copy/objects/48/7f7aa83926ce3f1078ff78b39a8688b1b5bdb6 Binary files differnew file mode 100644 index 0000000..90801f4 --- /dev/null +++ b/.git_copy/objects/48/7f7aa83926ce3f1078ff78b39a8688b1b5bdb6 diff --git a/.git_copy/objects/49/63b30e06901e89bacbe90160b84de705f4543b b/.git_copy/objects/49/63b30e06901e89bacbe90160b84de705f4543b new file mode 100644 index 0000000..d32d049 --- /dev/null +++ b/.git_copy/objects/49/63b30e06901e89bacbe90160b84de705f4543b @@ -0,0 +1,5 @@ +xKj0D)z?`F!C.+-0i%1!'Ȳգ!`"GKj +WD +h̬wdcI{=TlV,I#E4Hkpj1òDmdG̲f9V{%<# +*up9p }]~Ԏ* A +Pyt] @v[)_+
\ No newline at end of file diff --git a/.git_copy/objects/4a/038f9e4f5cb643035273f9b21400d8154addd8 b/.git_copy/objects/4a/038f9e4f5cb643035273f9b21400d8154addd8 Binary files differnew file mode 100644 index 0000000..981a3b7 --- /dev/null +++ b/.git_copy/objects/4a/038f9e4f5cb643035273f9b21400d8154addd8 diff --git a/.git_copy/objects/4b/b14ba4a9d1b95f66be0d71a49627fe3e8bd351 b/.git_copy/objects/4b/b14ba4a9d1b95f66be0d71a49627fe3e8bd351 Binary files differnew file mode 100644 index 0000000..1442f5d --- /dev/null +++ b/.git_copy/objects/4b/b14ba4a9d1b95f66be0d71a49627fe3e8bd351 diff --git a/.git_copy/objects/4c/2d53d724066aba8fcf51f32f13e07627f64bde b/.git_copy/objects/4c/2d53d724066aba8fcf51f32f13e07627f64bde Binary files differnew file mode 100644 index 0000000..cc5156d --- /dev/null +++ b/.git_copy/objects/4c/2d53d724066aba8fcf51f32f13e07627f64bde diff --git a/.git_copy/objects/4c/92f2a1d924e57492e2a3f23f46338c80237b59 b/.git_copy/objects/4c/92f2a1d924e57492e2a3f23f46338c80237b59 Binary files differnew file mode 100644 index 0000000..1cd6091 --- /dev/null +++ b/.git_copy/objects/4c/92f2a1d924e57492e2a3f23f46338c80237b59 diff --git a/.git_copy/objects/4c/b06087c7ee700a39dd6f1d52cbb89a4b5c2646 b/.git_copy/objects/4c/b06087c7ee700a39dd6f1d52cbb89a4b5c2646 Binary files differnew file mode 100644 index 0000000..35d1130 --- /dev/null +++ b/.git_copy/objects/4c/b06087c7ee700a39dd6f1d52cbb89a4b5c2646 diff --git a/.git_copy/objects/4d/16113c380d87049ba2ad66fa7e81a0ca619a51 b/.git_copy/objects/4d/16113c380d87049ba2ad66fa7e81a0ca619a51 new file mode 100644 index 0000000..668d531 --- /dev/null +++ b/.git_copy/objects/4d/16113c380d87049ba2ad66fa7e81a0ca619a51 @@ -0,0 +1,2 @@ +xO;N0)ܥ@l^`)Ş=y|d;k%.@53|4a[%4^GM`Ix-¡c6rԃB^ h'C;E +'ĕ 7lAǡvQG$yE^M-gӼ>^r4v+JIZԊ-=?vu.Aҽ}^.sCiKn~fR
\ No newline at end of file diff --git a/.git_copy/objects/4e/4e1a14d62af5fcc8ec1b4cc62df9cff34cc4ac b/.git_copy/objects/4e/4e1a14d62af5fcc8ec1b4cc62df9cff34cc4ac Binary files differnew file mode 100644 index 0000000..2ecc2cd --- /dev/null +++ b/.git_copy/objects/4e/4e1a14d62af5fcc8ec1b4cc62df9cff34cc4ac diff --git a/.git_copy/objects/4f/315fc87248120ddca273c887a6460db078cef3 b/.git_copy/objects/4f/315fc87248120ddca273c887a6460db078cef3 Binary files differnew file mode 100644 index 0000000..c60ee34 --- /dev/null +++ b/.git_copy/objects/4f/315fc87248120ddca273c887a6460db078cef3 diff --git a/.git_copy/objects/53/8c6c9f2aecbe177d69f3c22b049a5279e090d8 b/.git_copy/objects/53/8c6c9f2aecbe177d69f3c22b049a5279e090d8 Binary files differnew file mode 100644 index 0000000..cd999c2 --- /dev/null +++ b/.git_copy/objects/53/8c6c9f2aecbe177d69f3c22b049a5279e090d8 diff --git a/.git_copy/objects/53/d054a5b88c4abd99cfb2259da237e7826b6aa7 b/.git_copy/objects/53/d054a5b88c4abd99cfb2259da237e7826b6aa7 Binary files differnew file mode 100644 index 0000000..eb068fa --- /dev/null +++ b/.git_copy/objects/53/d054a5b88c4abd99cfb2259da237e7826b6aa7 diff --git a/.git_copy/objects/55/90364d09d7e5fe04dc47735ec06c277485ac11 b/.git_copy/objects/55/90364d09d7e5fe04dc47735ec06c277485ac11 Binary files differnew file mode 100644 index 0000000..1a667b9 --- /dev/null +++ b/.git_copy/objects/55/90364d09d7e5fe04dc47735ec06c277485ac11 diff --git a/.git_copy/objects/55/ff0ce3935a80a7ce6c95da79e80f9e2240bd17 b/.git_copy/objects/55/ff0ce3935a80a7ce6c95da79e80f9e2240bd17 Binary files differnew file mode 100644 index 0000000..76e3331 --- /dev/null +++ b/.git_copy/objects/55/ff0ce3935a80a7ce6c95da79e80f9e2240bd17 diff --git a/.git_copy/objects/56/4b6c7660916cf6b4bb13f03a7d6b0747092be0 b/.git_copy/objects/56/4b6c7660916cf6b4bb13f03a7d6b0747092be0 new file mode 100644 index 0000000..0cc65cf --- /dev/null +++ b/.git_copy/objects/56/4b6c7660916cf6b4bb13f03a7d6b0747092be0 @@ -0,0 +1,2 @@ +x=N0s +w@dm!D(;A$lӓF̧ iY*753.һh"@{m6̼Vvאs$``HDtNVz`Pʃ(ꢦ,4)eǯƒo|?CZ28
=ز9PT7#ʸI,IALnmǹN;]r>ޕ策Te
\ No newline at end of file diff --git a/.git_copy/objects/56/71e20cb9a1d73be9c8ac2348ab859f072fce59 b/.git_copy/objects/56/71e20cb9a1d73be9c8ac2348ab859f072fce59 Binary files differnew file mode 100644 index 0000000..c25dc45 --- /dev/null +++ b/.git_copy/objects/56/71e20cb9a1d73be9c8ac2348ab859f072fce59 diff --git a/.git_copy/objects/56/ad65e7d6f17705053b633ace5adbbb03472f77 b/.git_copy/objects/56/ad65e7d6f17705053b633ace5adbbb03472f77 new file mode 100644 index 0000000..a460a06 --- /dev/null +++ b/.git_copy/objects/56/ad65e7d6f17705053b633ace5adbbb03472f77 @@ -0,0 +1,3 @@ +xKj0D)z7 /Bց-lK2<>"GȪ> +AX":%HzqL:x$s,A)%IL )9i5qf9Kk;=sEx|i<KC+o0I.JYxZr6q?# +AuÊuz$yp\ط!AY
\ No newline at end of file diff --git a/.git_copy/objects/57/a54f3097746639678b4b0691446df3f1a0454c b/.git_copy/objects/57/a54f3097746639678b4b0691446df3f1a0454c Binary files differnew file mode 100644 index 0000000..7711b1d --- /dev/null +++ b/.git_copy/objects/57/a54f3097746639678b4b0691446df3f1a0454c diff --git a/.git_copy/objects/59/0dfcf16f0e4571c997852d275553fc5e595509 b/.git_copy/objects/59/0dfcf16f0e4571c997852d275553fc5e595509 Binary files differnew file mode 100644 index 0000000..85e10eb --- /dev/null +++ b/.git_copy/objects/59/0dfcf16f0e4571c997852d275553fc5e595509 diff --git a/.git_copy/objects/5a/35c275d919b7ad9755c2ed49991ec24b76da35 b/.git_copy/objects/5a/35c275d919b7ad9755c2ed49991ec24b76da35 Binary files differnew file mode 100644 index 0000000..abffe70 --- /dev/null +++ b/.git_copy/objects/5a/35c275d919b7ad9755c2ed49991ec24b76da35 diff --git a/.git_copy/objects/5a/da326b9c2425995f5ba3abc6d27abc7a91c829 b/.git_copy/objects/5a/da326b9c2425995f5ba3abc6d27abc7a91c829 Binary files differnew file mode 100644 index 0000000..6814ddc --- /dev/null +++ b/.git_copy/objects/5a/da326b9c2425995f5ba3abc6d27abc7a91c829 diff --git a/.git_copy/objects/5a/edeb28b0f789f02a6bdcd2ab3e53926f2c44f8 b/.git_copy/objects/5a/edeb28b0f789f02a6bdcd2ab3e53926f2c44f8 new file mode 100644 index 0000000..ce79d26 --- /dev/null +++ b/.git_copy/objects/5a/edeb28b0f789f02a6bdcd2ab3e53926f2c44f8 @@ -0,0 +1 @@ +x+)JMU045a040031Q(,L.JM+I`p$wYjDWB'e0xo^}KSZ_p]5/>LO+2qip.*WTg7䮷jT_ϭMB?8@f
\ No newline at end of file diff --git a/.git_copy/objects/5b/2a47fe5b602c5763810441ac8907487dc429b7 b/.git_copy/objects/5b/2a47fe5b602c5763810441ac8907487dc429b7 new file mode 100644 index 0000000..28a1ede --- /dev/null +++ b/.git_copy/objects/5b/2a47fe5b602c5763810441ac8907487dc429b7 @@ -0,0 +1,4 @@ +xAO!=+փM1hha.mwփ 7P14k,[6ho<dhu~${[$``=iͮ#ӰV&> +/m^مFx8GS0w#^66pwV +f7:J%,
G
˜$H-\ytJ\TpyA3' +-C3C8B
q09Vp#@<ONj!?/"CZcT[CNYƂEڄb0J`yWN}6
\ No newline at end of file diff --git a/.git_copy/objects/5b/af3cca0a4e867b7bca91cd04c0a5d147a72ae1 b/.git_copy/objects/5b/af3cca0a4e867b7bca91cd04c0a5d147a72ae1 Binary files differnew file mode 100644 index 0000000..fe418db --- /dev/null +++ b/.git_copy/objects/5b/af3cca0a4e867b7bca91cd04c0a5d147a72ae1 diff --git a/.git_copy/objects/5d/088a498c11c5d28a91b2bbcdff5001eb3502d9 b/.git_copy/objects/5d/088a498c11c5d28a91b2bbcdff5001eb3502d9 Binary files differnew file mode 100644 index 0000000..64c8a0e --- /dev/null +++ b/.git_copy/objects/5d/088a498c11c5d28a91b2bbcdff5001eb3502d9 diff --git a/.git_copy/objects/5d/e2c30ba8410b748b981047d0e746fecc65fa24 b/.git_copy/objects/5d/e2c30ba8410b748b981047d0e746fecc65fa24 Binary files differnew file mode 100644 index 0000000..2dfacc5 --- /dev/null +++ b/.git_copy/objects/5d/e2c30ba8410b748b981047d0e746fecc65fa24 diff --git a/.git_copy/objects/5e/37bc216ec6d3fb7bccd8535dbb6473448cc8d3 b/.git_copy/objects/5e/37bc216ec6d3fb7bccd8535dbb6473448cc8d3 Binary files differnew file mode 100644 index 0000000..c036d05 --- /dev/null +++ b/.git_copy/objects/5e/37bc216ec6d3fb7bccd8535dbb6473448cc8d3 diff --git a/.git_copy/objects/5e/902eb7311f242da4c2e0f9611055e8bcdd206a b/.git_copy/objects/5e/902eb7311f242da4c2e0f9611055e8bcdd206a Binary files differnew file mode 100644 index 0000000..eeed180 --- /dev/null +++ b/.git_copy/objects/5e/902eb7311f242da4c2e0f9611055e8bcdd206a diff --git a/.git_copy/objects/5f/3241817f81308ae4c78f60093fd4e03d15e5c4 b/.git_copy/objects/5f/3241817f81308ae4c78f60093fd4e03d15e5c4 Binary files differnew file mode 100644 index 0000000..1874132 --- /dev/null +++ b/.git_copy/objects/5f/3241817f81308ae4c78f60093fd4e03d15e5c4 diff --git a/.git_copy/objects/60/aa412e17fb8c6c54dbba0bdb16f0d119203018 b/.git_copy/objects/60/aa412e17fb8c6c54dbba0bdb16f0d119203018 new file mode 100644 index 0000000..a515ea4 --- /dev/null +++ b/.git_copy/objects/60/aa412e17fb8c6c54dbba0bdb16f0d119203018 @@ -0,0 +1 @@ +xJ0=)A, I-(xăޗi2idiOo\<,A[w+RAKCn4{oP*8JA!:GeK0ZD72erJlKD]ʏ9kIWEϘ'&bNyWƕ)ω}:^^s_%C,ܵsNm s-&hmRnvv'
\ No newline at end of file diff --git a/.git_copy/objects/63/7f3c0496aac982af18f2280375c3f9fd2a4171 b/.git_copy/objects/63/7f3c0496aac982af18f2280375c3f9fd2a4171 Binary files differnew file mode 100644 index 0000000..fa237e8 --- /dev/null +++ b/.git_copy/objects/63/7f3c0496aac982af18f2280375c3f9fd2a4171 diff --git a/.git_copy/objects/65/9ad75e230fb6814d1b9d8e999268819d599fff b/.git_copy/objects/65/9ad75e230fb6814d1b9d8e999268819d599fff new file mode 100644 index 0000000..72a0736 --- /dev/null +++ b/.git_copy/objects/65/9ad75e230fb6814d1b9d8e999268819d599fff @@ -0,0 +1,3 @@ +xEJ1D=+"=I2O^tg7$ +.詠ཪԶv]ͺ& +q,q%F"I٧g`杻nIS5̈Hn"d4[(Zs+N7U}I?vxׯxTJba$ӾdiGy
\ No newline at end of file diff --git a/.git_copy/objects/66/535efaa3e6a1d46ee3769d517dd1eff62ec96d b/.git_copy/objects/66/535efaa3e6a1d46ee3769d517dd1eff62ec96d Binary files differnew file mode 100644 index 0000000..d99e050 --- /dev/null +++ b/.git_copy/objects/66/535efaa3e6a1d46ee3769d517dd1eff62ec96d diff --git a/.git_copy/objects/69/bfd3ec4739cd4a5a9d2074e47f5aa9257c5b93 b/.git_copy/objects/69/bfd3ec4739cd4a5a9d2074e47f5aa9257c5b93 Binary files differnew file mode 100644 index 0000000..f7e8b36 --- /dev/null +++ b/.git_copy/objects/69/bfd3ec4739cd4a5a9d2074e47f5aa9257c5b93 diff --git a/.git_copy/objects/6c/95e79130ec291051c9afe016f48b6dbbd3851a b/.git_copy/objects/6c/95e79130ec291051c9afe016f48b6dbbd3851a Binary files differnew file mode 100644 index 0000000..6854880 --- /dev/null +++ b/.git_copy/objects/6c/95e79130ec291051c9afe016f48b6dbbd3851a diff --git a/.git_copy/objects/6d/2c243859361df95e2e8d55a3e6fe460f596d63 b/.git_copy/objects/6d/2c243859361df95e2e8d55a3e6fe460f596d63 Binary files differnew file mode 100644 index 0000000..27f526e --- /dev/null +++ b/.git_copy/objects/6d/2c243859361df95e2e8d55a3e6fe460f596d63 diff --git a/.git_copy/objects/6e/4100b29e013053e24134ca49abf12ce0aa3bef b/.git_copy/objects/6e/4100b29e013053e24134ca49abf12ce0aa3bef new file mode 100644 index 0000000..6e1e84e --- /dev/null +++ b/.git_copy/objects/6e/4100b29e013053e24134ca49abf12ce0aa3bef @@ -0,0 +1,2 @@ +x1 DQkNaMAuXJ,gwh^g(1n\a7`+ +{XM&s7VS?J
\ No newline at end of file diff --git a/.git_copy/objects/6e/b8a0e6bcb02a576831a6dab53ad08f592e9d2d b/.git_copy/objects/6e/b8a0e6bcb02a576831a6dab53ad08f592e9d2d Binary files differnew file mode 100644 index 0000000..0d4626a --- /dev/null +++ b/.git_copy/objects/6e/b8a0e6bcb02a576831a6dab53ad08f592e9d2d diff --git a/.git_copy/objects/6f/33c1a932a6f01efbeca0318eb7cc2490dd598f b/.git_copy/objects/6f/33c1a932a6f01efbeca0318eb7cc2490dd598f new file mode 100644 index 0000000..e005bf7 --- /dev/null +++ b/.git_copy/objects/6f/33c1a932a6f01efbeca0318eb7cc2490dd598f @@ -0,0 +1,3 @@ +xMJ@])z/]q-x%v\xz{<mk~{LphΘR!ENH."Q ɼ%|[5P.Dy2Y +H0 +
k AD$P+0``Jom/k8^>ϷEa5y?ᕷqU
\ No newline at end of file diff --git a/.git_copy/objects/70/19015b6f46ed53efae654da5d2bc12d3c934e7 b/.git_copy/objects/70/19015b6f46ed53efae654da5d2bc12d3c934e7 Binary files differnew file mode 100644 index 0000000..a5f7f45 --- /dev/null +++ b/.git_copy/objects/70/19015b6f46ed53efae654da5d2bc12d3c934e7 diff --git a/.git_copy/objects/70/1d24560ccb5151f9cd935065bcda024fb0464a b/.git_copy/objects/70/1d24560ccb5151f9cd935065bcda024fb0464a Binary files differnew file mode 100644 index 0000000..f9cd816 --- /dev/null +++ b/.git_copy/objects/70/1d24560ccb5151f9cd935065bcda024fb0464a diff --git a/.git_copy/objects/70/2e0095c7326174d0c11c61e784b664e3064cf2 b/.git_copy/objects/70/2e0095c7326174d0c11c61e784b664e3064cf2 Binary files differnew file mode 100644 index 0000000..25d8698 --- /dev/null +++ b/.git_copy/objects/70/2e0095c7326174d0c11c61e784b664e3064cf2 diff --git a/.git_copy/objects/70/ee6944f357e926701c2ccb5ac233684035147c b/.git_copy/objects/70/ee6944f357e926701c2ccb5ac233684035147c Binary files differnew file mode 100644 index 0000000..2ec80ef --- /dev/null +++ b/.git_copy/objects/70/ee6944f357e926701c2ccb5ac233684035147c diff --git a/.git_copy/objects/71/f786d389b127bc978ed26379a28821415bf56f b/.git_copy/objects/71/f786d389b127bc978ed26379a28821415bf56f Binary files differnew file mode 100644 index 0000000..e27f220 --- /dev/null +++ b/.git_copy/objects/71/f786d389b127bc978ed26379a28821415bf56f diff --git a/.git_copy/objects/72/deadab425a2cdbca9ddfab6e7c03408b0bd6a5 b/.git_copy/objects/72/deadab425a2cdbca9ddfab6e7c03408b0bd6a5 new file mode 100644 index 0000000..61ccffa --- /dev/null +++ b/.git_copy/objects/72/deadab425a2cdbca9ddfab6e7c03408b0bd6a5 @@ -0,0 +1 @@ +xOJ1<_zųGt'YD=xRJu("J"0#j).a$ X]
E&'!f$2%Βt̨o"\9D=8.]ǩunFҮTZSG-8k|A݃0~h?ӛEwI*]ÃR[_u{/Ac
\ No newline at end of file diff --git a/.git_copy/objects/72/f5386c5dcc47adcbad426a610f0dadc075406a b/.git_copy/objects/72/f5386c5dcc47adcbad426a610f0dadc075406a Binary files differnew file mode 100644 index 0000000..0134a1f --- /dev/null +++ b/.git_copy/objects/72/f5386c5dcc47adcbad426a610f0dadc075406a diff --git a/.git_copy/objects/73/a638d577eeb95bdac140e7ec5bcd7481c86423 b/.git_copy/objects/73/a638d577eeb95bdac140e7ec5bcd7481c86423 Binary files differnew file mode 100644 index 0000000..207ce5e --- /dev/null +++ b/.git_copy/objects/73/a638d577eeb95bdac140e7ec5bcd7481c86423 diff --git a/.git_copy/objects/74/98504fe92cf1e98c73d16a9acdd4fca09790be b/.git_copy/objects/74/98504fe92cf1e98c73d16a9acdd4fca09790be new file mode 100644 index 0000000..67ee375 --- /dev/null +++ b/.git_copy/objects/74/98504fe92cf1e98c73d16a9acdd4fca09790be @@ -0,0 +1,3 @@ +x}TM6ٿb7﮽H$"A~lFHbL9Jxfq9_Y+ +]WWWoׯ߽Z-©!` dc "Xу;~ڶU/rS:"zoxK3Xylks8[1¸4ynً9\gӞk9ڠ߹phhi&CKS)(;CzT$[js2E%R{QE\-&N|BCo&$ +Ѡ:iӁkgc*&c.e !hq>z*Ls%)a2(o+Od"Ԯ?LQؔhm;_r\Hti1j=2uYjr^_ð5wuk>ǩhH?ilL}~H}B*Qbm錶LuQnG"Hdi}hыX(JxZ-,ϿYei*ϿbKI3Z1 [+Sh:1v{b#EL_Px9)&ŠATA]E1l_'dž\\e5K̜L S:@ppkO% N9=H1/.-25H>Yֺ^VY܌۱Gmsv8"Jc*<f|Ov$+_C9Ȕzy=M_N /'e(dykMB f{v=4}|w
\ No newline at end of file diff --git a/.git_copy/objects/76/40973562e3dc4502d77f1f8b4469f311e71f5b b/.git_copy/objects/76/40973562e3dc4502d77f1f8b4469f311e71f5b Binary files differnew file mode 100644 index 0000000..8d20fbb --- /dev/null +++ b/.git_copy/objects/76/40973562e3dc4502d77f1f8b4469f311e71f5b diff --git a/.git_copy/objects/78/96a08fe550ce2434afd8e2b2904546034a76d1 b/.git_copy/objects/78/96a08fe550ce2434afd8e2b2904546034a76d1 Binary files differnew file mode 100644 index 0000000..21e6048 --- /dev/null +++ b/.git_copy/objects/78/96a08fe550ce2434afd8e2b2904546034a76d1 diff --git a/.git_copy/objects/7d/907d78ef6ded27133d4a5600355deee7809ce9 b/.git_copy/objects/7d/907d78ef6ded27133d4a5600355deee7809ce9 Binary files differnew file mode 100644 index 0000000..c5bb7f6 --- /dev/null +++ b/.git_copy/objects/7d/907d78ef6ded27133d4a5600355deee7809ce9 diff --git a/.git_copy/objects/7e/9f34a8db52d4a7b5dee5897a1356656571d26d b/.git_copy/objects/7e/9f34a8db52d4a7b5dee5897a1356656571d26d Binary files differnew file mode 100644 index 0000000..2d9409d --- /dev/null +++ b/.git_copy/objects/7e/9f34a8db52d4a7b5dee5897a1356656571d26d diff --git a/.git_copy/objects/7e/df99a1a95e2145d58b60bddd71a649e8b94101 b/.git_copy/objects/7e/df99a1a95e2145d58b60bddd71a649e8b94101 Binary files differnew file mode 100644 index 0000000..1e2e129 --- /dev/null +++ b/.git_copy/objects/7e/df99a1a95e2145d58b60bddd71a649e8b94101 diff --git a/.git_copy/objects/7f/9b4320b8802c7535defd189664c0871d569a1c b/.git_copy/objects/7f/9b4320b8802c7535defd189664c0871d569a1c Binary files differnew file mode 100644 index 0000000..8dc6e0e --- /dev/null +++ b/.git_copy/objects/7f/9b4320b8802c7535defd189664c0871d569a1c diff --git a/.git_copy/objects/80/7ca1ef1cc4a6b1862ee8f4ad2df03d51fbf83a b/.git_copy/objects/80/7ca1ef1cc4a6b1862ee8f4ad2df03d51fbf83a new file mode 100644 index 0000000..5634259 --- /dev/null +++ b/.git_copy/objects/80/7ca1ef1cc4a6b1862ee8f4ad2df03d51fbf83a @@ -0,0 +1,3 @@ +xMN0Y!M٠EO0c;NĽ?)HՓ>=}z/̥ +C]S$-a} e"[kZTA1s^"ZivAJ8'^#V>%)
Pi{fɻnuW=凝B +ƠFxEVM4 x)p(=.s.;
7h>ּԭvj
\ No newline at end of file diff --git a/.git_copy/objects/82/1c6829953a15121851fbc8f33b4d2b9eaae565 b/.git_copy/objects/82/1c6829953a15121851fbc8f33b4d2b9eaae565 Binary files differnew file mode 100644 index 0000000..ab57af5 --- /dev/null +++ b/.git_copy/objects/82/1c6829953a15121851fbc8f33b4d2b9eaae565 diff --git a/.git_copy/objects/87/ca3b9399053d37e3c5c19428db043546674c3f b/.git_copy/objects/87/ca3b9399053d37e3c5c19428db043546674c3f new file mode 100644 index 0000000..87b602c --- /dev/null +++ b/.git_copy/objects/87/ca3b9399053d37e3c5c19428db043546674c3f @@ -0,0 +1,3 @@ +x; PkNamAH~HEw!jl^&3c~nлĠ=a
BN +Y +i ,w>>Cמ:)>YT>#
\ No newline at end of file diff --git a/.git_copy/objects/88/23c0f0153cbec86f40f04a07a91c8d980707c3 b/.git_copy/objects/88/23c0f0153cbec86f40f04a07a91c8d980707c3 Binary files differnew file mode 100644 index 0000000..04fa8e5 --- /dev/null +++ b/.git_copy/objects/88/23c0f0153cbec86f40f04a07a91c8d980707c3 diff --git a/.git_copy/objects/88/5fd0d300dfa42c90609192c495ba91fdca3a7f b/.git_copy/objects/88/5fd0d300dfa42c90609192c495ba91fdca3a7f Binary files differnew file mode 100644 index 0000000..aa12743 --- /dev/null +++ b/.git_copy/objects/88/5fd0d300dfa42c90609192c495ba91fdca3a7f diff --git a/.git_copy/objects/88/c2c781234bc3775afdb1841c41d3ebf468f25c b/.git_copy/objects/88/c2c781234bc3775afdb1841c41d3ebf468f25c Binary files differnew file mode 100644 index 0000000..74bcfb8 --- /dev/null +++ b/.git_copy/objects/88/c2c781234bc3775afdb1841c41d3ebf468f25c diff --git a/.git_copy/objects/89/c44926f1ed8cce7b54eda5cfeb3d02d6617308 b/.git_copy/objects/89/c44926f1ed8cce7b54eda5cfeb3d02d6617308 Binary files differnew file mode 100644 index 0000000..7b1b95f --- /dev/null +++ b/.git_copy/objects/89/c44926f1ed8cce7b54eda5cfeb3d02d6617308 diff --git a/.git_copy/objects/8a/8ee62d543a0f923f00f7a90eacd701b6bc98b7 b/.git_copy/objects/8a/8ee62d543a0f923f00f7a90eacd701b6bc98b7 Binary files differnew file mode 100644 index 0000000..1f6f089 --- /dev/null +++ b/.git_copy/objects/8a/8ee62d543a0f923f00f7a90eacd701b6bc98b7 diff --git a/.git_copy/objects/8c/02263adf0306cddb00469eeca0d466061aaef4 b/.git_copy/objects/8c/02263adf0306cddb00469eeca0d466061aaef4 Binary files differnew file mode 100644 index 0000000..2d6c285 --- /dev/null +++ b/.git_copy/objects/8c/02263adf0306cddb00469eeca0d466061aaef4 diff --git a/.git_copy/objects/8c/261a8746621331bb1a75529259e5425e214bd0 b/.git_copy/objects/8c/261a8746621331bb1a75529259e5425e214bd0 Binary files differnew file mode 100644 index 0000000..6c37223 --- /dev/null +++ b/.git_copy/objects/8c/261a8746621331bb1a75529259e5425e214bd0 diff --git a/.git_copy/objects/8c/82d1c7be4239bdcf3967a6800b82001c933a07 b/.git_copy/objects/8c/82d1c7be4239bdcf3967a6800b82001c933a07 Binary files differnew file mode 100644 index 0000000..1dd72a5 --- /dev/null +++ b/.git_copy/objects/8c/82d1c7be4239bdcf3967a6800b82001c933a07 diff --git a/.git_copy/objects/8f/769af90d747f7e12e4ef64ec2ee9dabf19b727 b/.git_copy/objects/8f/769af90d747f7e12e4ef64ec2ee9dabf19b727 new file mode 100644 index 0000000..dc9424f --- /dev/null +++ b/.git_copy/objects/8f/769af90d747f7e12e4ef64ec2ee9dabf19b727 @@ -0,0 +1,3 @@ +xM +0F]d6 Zd{<xVkA'(بP*Ir
鑥rY<iṃe3a`ˁè +h{[e&8>~^mVL ѣ=fHŵ'ejK L
\ No newline at end of file diff --git a/.git_copy/objects/8f/930bf1a03b6ea7bb292b63ef78a233e6af585b b/.git_copy/objects/8f/930bf1a03b6ea7bb292b63ef78a233e6af585b Binary files differnew file mode 100644 index 0000000..b172f07 --- /dev/null +++ b/.git_copy/objects/8f/930bf1a03b6ea7bb292b63ef78a233e6af585b diff --git a/.git_copy/objects/90/1591d8ad5e9f618b44a6ec374c4a03ba1a1017 b/.git_copy/objects/90/1591d8ad5e9f618b44a6ec374c4a03ba1a1017 Binary files differnew file mode 100644 index 0000000..cde5697 --- /dev/null +++ b/.git_copy/objects/90/1591d8ad5e9f618b44a6ec374c4a03ba1a1017 diff --git a/.git_copy/objects/96/ef551c38234ab234e47b78936f184b9e4e42e3 b/.git_copy/objects/96/ef551c38234ab234e47b78936f184b9e4e42e3 new file mode 100644 index 0000000..2a9d0bc --- /dev/null +++ b/.git_copy/objects/96/ef551c38234ab234e47b78936f184b9e4e42e3 @@ -0,0 +1,2 @@ +xKj1D)zci!d!Zݶ423r>@.UQPKoq~3hS1g$"Kpёf!$MGl,{ỷ0I9ڨ:}SVߤ_oqjXq>.x
zrZ=NE +p\ke=¥q鉄A@JO+[
\ No newline at end of file diff --git a/.git_copy/objects/97/a47ede34ff6ba45b1cc74da8b027ada6e42101 b/.git_copy/objects/97/a47ede34ff6ba45b1cc74da8b027ada6e42101 new file mode 100644 index 0000000..a1bd86e --- /dev/null +++ b/.git_copy/objects/97/a47ede34ff6ba45b1cc74da8b027ada6e42101 @@ -0,0 +1 @@ +x+)JMU066g040031QH*-)++Kgk~+U|W~5Pe`5wBMz씤&P5e5}sOSǬ/LRTMaifrvQj^IjC>K۔V=ǾْSfm\VZjWT]Fna|J`j2JKo]I8_tlU?zJTd3rg.E=./H!*dvI>zTvP7?98Kļ%<
\ No newline at end of file diff --git a/.git_copy/objects/9e/fe38bc82e24cf7d6c6a1e93c31622b4b9f0714 b/.git_copy/objects/9e/fe38bc82e24cf7d6c6a1e93c31622b4b9f0714 Binary files differnew file mode 100644 index 0000000..6e1a86a --- /dev/null +++ b/.git_copy/objects/9e/fe38bc82e24cf7d6c6a1e93c31622b4b9f0714 diff --git a/.git_copy/objects/9f/465c6647c092ba3017eccb76d25c3d474b5836 b/.git_copy/objects/9f/465c6647c092ba3017eccb76d25c3d474b5836 new file mode 100644 index 0000000..d18448e --- /dev/null +++ b/.git_copy/objects/9f/465c6647c092ba3017eccb76d25c3d474b5836 @@ -0,0 +1 @@ +xPN0朧v69JS !H<8[)q:OOęߟrJxW3h֮QO49By2=v~T+^*Xuo>cێC:G(9x<]nK(3hfDzT
m+C!zfWZa'`s]f}PjO7v.j}R˻DX$}c1/x^@ /I8j
\ No newline at end of file diff --git a/.git_copy/objects/a0/b5fc8f0aa602176deea52406d169408c510491 b/.git_copy/objects/a0/b5fc8f0aa602176deea52406d169408c510491 Binary files differnew file mode 100644 index 0000000..36b36b2 --- /dev/null +++ b/.git_copy/objects/a0/b5fc8f0aa602176deea52406d169408c510491 diff --git a/.git_copy/objects/a1/e672748ff4a2bc7a6d6da2fad7d07eab7ef615 b/.git_copy/objects/a1/e672748ff4a2bc7a6d6da2fad7d07eab7ef615 Binary files differnew file mode 100644 index 0000000..f3b2d4f --- /dev/null +++ b/.git_copy/objects/a1/e672748ff4a2bc7a6d6da2fad7d07eab7ef615 diff --git a/.git_copy/objects/a2/b7ab0fefc0d8c8c3ec208a5c1f59a641a4f136 b/.git_copy/objects/a2/b7ab0fefc0d8c8c3ec208a5c1f59a641a4f136 Binary files differnew file mode 100644 index 0000000..ae9f149 --- /dev/null +++ b/.git_copy/objects/a2/b7ab0fefc0d8c8c3ec208a5c1f59a641a4f136 diff --git a/.git_copy/objects/a2/dcea2c70bf4e2ca2f8836a643a46f41cdbb618 b/.git_copy/objects/a2/dcea2c70bf4e2ca2f8836a643a46f41cdbb618 new file mode 100644 index 0000000..564c6d7 --- /dev/null +++ b/.git_copy/objects/a2/dcea2c70bf4e2ca2f8836a643a46f41cdbb618 @@ -0,0 +1 @@ +xMj0F)lA!=CFm[4zxԦv^PI.$sHIˈTqzexsȁ)%Y/썲rN@~k|gN?m/NX#H+.tF};C?-R9C1cͼB#Z1~Q@uV
\ No newline at end of file diff --git a/.git_copy/objects/a3/426395b94a1cb3b1bebb4a01d5dd066de2d09f b/.git_copy/objects/a3/426395b94a1cb3b1bebb4a01d5dd066de2d09f Binary files differnew file mode 100644 index 0000000..60643d3 --- /dev/null +++ b/.git_copy/objects/a3/426395b94a1cb3b1bebb4a01d5dd066de2d09f diff --git a/.git_copy/objects/a3/aacae4196541033d3141b00d9b8b492e7d881a b/.git_copy/objects/a3/aacae4196541033d3141b00d9b8b492e7d881a Binary files differnew file mode 100644 index 0000000..4aab367 --- /dev/null +++ b/.git_copy/objects/a3/aacae4196541033d3141b00d9b8b492e7d881a diff --git a/.git_copy/objects/a4/e750973a492171617dcd7c320428eef872b76a b/.git_copy/objects/a4/e750973a492171617dcd7c320428eef872b76a new file mode 100644 index 0000000..fd21894 --- /dev/null +++ b/.git_copy/objects/a4/e750973a492171617dcd7c320428eef872b76a @@ -0,0 +1,7 @@ +x}VmTUvCF(H ++2e$)(!P1Ee4?LE,Q\Md[ 9ݝ:8{x}ޏx?Lc9k~/t +y͊W蔳dT\Ș<D`u +k}|1%nsxj5!##HpZyApB =rYu˓9
ϱ$Ch) <%h 9xCjmj>bɪ)hZU;AտwlMξR'"i
|9.zO]~U)$ՄD$2&IDhRw߸Lۢ*ؾ VYQosleљŖg%u<MApzTL1bʏoa)Ph*I{Jkhg+G`Q9,ovk<:wz臥,-oo͛K*L;wGxP>'OwaP.߁}ּnӜnnz&7C[Yuϐ7^y|O9?{/^\o]T<qnB? E"X<(90"eM[?5C"XQ)xܝ ѵ~sZE###Oz'.sEd:xZfh&C +j|g+Num/!xX} =J)HDڀA8>74*TAxDp@{u/Vu)OZR`EBDT)BK#p,c#5c.'_{GjxRرxEz5-d 傓[g`D®+#
͓mEy
$Kw^ϹȭGOVҙ]>0;)WvKy-}pn4{`7s Q;9ލ,ER@H|*()hB6g8<; +DBHDH)r}`m []z +}sK-D1@p$N{znJ@)`Fn s34kîG2MƮ*9s<yאoWY(,Ewx$<{G1F9#'P"o\]_T*VMfc>6LISo.N(Y? Jp<<7([&Z]Бor/;*_<}h~t Ck=e5
z)dccS&=O,?TƎ:/(<#ϖ:"칞s^^}XCrص6'í͍3g{i]Y#&J1e0⍧|z_rlo sgRӿ+T-h?8X&A600$،7L@ꨣ:f>tQ 3Y漈]0=L2EN Pj_WX[As͖aę
ڛ9
]Y+:rK.D @փgwyO[ˏ.GK<YyڈsQњSf'˴?
\ No newline at end of file diff --git a/.git_copy/objects/a6/18555139bea4d53eff2fa3f42d912a895bdbbe b/.git_copy/objects/a6/18555139bea4d53eff2fa3f42d912a895bdbbe Binary files differnew file mode 100644 index 0000000..a8b85b2 --- /dev/null +++ b/.git_copy/objects/a6/18555139bea4d53eff2fa3f42d912a895bdbbe diff --git a/.git_copy/objects/a6/49f93f7eb3979189e7221b0ab7fa04606ad31c b/.git_copy/objects/a6/49f93f7eb3979189e7221b0ab7fa04606ad31c Binary files differnew file mode 100644 index 0000000..a6ea3bf --- /dev/null +++ b/.git_copy/objects/a6/49f93f7eb3979189e7221b0ab7fa04606ad31c diff --git a/.git_copy/objects/a7/9d6745b309c343aa01adeafac7c40026df1f06 b/.git_copy/objects/a7/9d6745b309c343aa01adeafac7c40026df1f06 new file mode 100644 index 0000000..69b0401 --- /dev/null +++ b/.git_copy/objects/a7/9d6745b309c343aa01adeafac7c40026df1f06 @@ -0,0 +1,2 @@ +xKn )z?
dud `Es09BVOric4K̠$Aä
2 +,PMv0ݝ2FA%%ac^JB 9wt5e<˺|poNq]@*d"%F[gx&x,B=:P2f>c!xS,Kda
\ No newline at end of file diff --git a/.git_copy/objects/a7/bd2ca8b962d16596c22a320edae8fbb8be089b b/.git_copy/objects/a7/bd2ca8b962d16596c22a320edae8fbb8be089b Binary files differnew file mode 100644 index 0000000..8abc86d --- /dev/null +++ b/.git_copy/objects/a7/bd2ca8b962d16596c22a320edae8fbb8be089b diff --git a/.git_copy/objects/a8/0c454d686d49f4244c762ae3e146aa36d26cce b/.git_copy/objects/a8/0c454d686d49f4244c762ae3e146aa36d26cce Binary files differnew file mode 100644 index 0000000..7defcc3 --- /dev/null +++ b/.git_copy/objects/a8/0c454d686d49f4244c762ae3e146aa36d26cce diff --git a/.git_copy/objects/a8/8ba3ebf861c4b73f06a8a1e38d6be7350376e6 b/.git_copy/objects/a8/8ba3ebf861c4b73f06a8a1e38d6be7350376e6 Binary files differnew file mode 100644 index 0000000..b82bdd9 --- /dev/null +++ b/.git_copy/objects/a8/8ba3ebf861c4b73f06a8a1e38d6be7350376e6 diff --git a/.git_copy/objects/a9/56b9a527a53e905fcb4044b97b046b8ace80f1 b/.git_copy/objects/a9/56b9a527a53e905fcb4044b97b046b8ace80f1 Binary files differnew file mode 100644 index 0000000..10f1c89 --- /dev/null +++ b/.git_copy/objects/a9/56b9a527a53e905fcb4044b97b046b8ace80f1 diff --git a/.git_copy/objects/a9/6047932af29570a2e011e8cd97a2e8531b6633 b/.git_copy/objects/a9/6047932af29570a2e011e8cd97a2e8531b6633 Binary files differnew file mode 100644 index 0000000..83c7ea9 --- /dev/null +++ b/.git_copy/objects/a9/6047932af29570a2e011e8cd97a2e8531b6633 diff --git a/.git_copy/objects/ab/3342e49f3b4648c2f73e70fd63e3f297108944 b/.git_copy/objects/ab/3342e49f3b4648c2f73e70fd63e3f297108944 Binary files differnew file mode 100644 index 0000000..719f260 --- /dev/null +++ b/.git_copy/objects/ab/3342e49f3b4648c2f73e70fd63e3f297108944 diff --git a/.git_copy/objects/ab/82eeca75fd7d98b56e7b85adecfbd626cc0bdb b/.git_copy/objects/ab/82eeca75fd7d98b56e7b85adecfbd626cc0bdb Binary files differnew file mode 100644 index 0000000..1724cb7 --- /dev/null +++ b/.git_copy/objects/ab/82eeca75fd7d98b56e7b85adecfbd626cc0bdb diff --git a/.git_copy/objects/ab/bd94236712544407e1c83dc2371fea8273cc3e b/.git_copy/objects/ab/bd94236712544407e1c83dc2371fea8273cc3e Binary files differnew file mode 100644 index 0000000..aaca4c6 --- /dev/null +++ b/.git_copy/objects/ab/bd94236712544407e1c83dc2371fea8273cc3e diff --git a/.git_copy/objects/ad/c802fa8c5b961d154f6c1817f35d6f3b72bef2 b/.git_copy/objects/ad/c802fa8c5b961d154f6c1817f35d6f3b72bef2 Binary files differnew file mode 100644 index 0000000..b2f1afd --- /dev/null +++ b/.git_copy/objects/ad/c802fa8c5b961d154f6c1817f35d6f3b72bef2 diff --git a/.git_copy/objects/ad/e4ff68152fa2da953db4197dfaa7a3f98c672d b/.git_copy/objects/ad/e4ff68152fa2da953db4197dfaa7a3f98c672d Binary files differnew file mode 100644 index 0000000..cce2d02 --- /dev/null +++ b/.git_copy/objects/ad/e4ff68152fa2da953db4197dfaa7a3f98c672d diff --git a/.git_copy/objects/af/d5a630900a26ad5db7be6d29d3a235824f024e b/.git_copy/objects/af/d5a630900a26ad5db7be6d29d3a235824f024e Binary files differnew file mode 100644 index 0000000..a699ee3 --- /dev/null +++ b/.git_copy/objects/af/d5a630900a26ad5db7be6d29d3a235824f024e diff --git a/.git_copy/objects/b3/1628f29e9090ae84e32db0bb6e5213e17aca71 b/.git_copy/objects/b3/1628f29e9090ae84e32db0bb6e5213e17aca71 Binary files differnew file mode 100644 index 0000000..d294c48 --- /dev/null +++ b/.git_copy/objects/b3/1628f29e9090ae84e32db0bb6e5213e17aca71 diff --git a/.git_copy/objects/b5/1dae08b278b90dde65201e6c0e84db47462c02 b/.git_copy/objects/b5/1dae08b278b90dde65201e6c0e84db47462c02 Binary files differnew file mode 100644 index 0000000..eef025b --- /dev/null +++ b/.git_copy/objects/b5/1dae08b278b90dde65201e6c0e84db47462c02 diff --git a/.git_copy/objects/b5/47668529750b5187d264ed74b0452a6b049d50 b/.git_copy/objects/b5/47668529750b5187d264ed74b0452a6b049d50 Binary files differnew file mode 100644 index 0000000..8720240 --- /dev/null +++ b/.git_copy/objects/b5/47668529750b5187d264ed74b0452a6b049d50 diff --git a/.git_copy/objects/b5/942ca42bdc0d5e781795911b3327f5e4d1f391 b/.git_copy/objects/b5/942ca42bdc0d5e781795911b3327f5e4d1f391 Binary files differnew file mode 100644 index 0000000..d9c94c4 --- /dev/null +++ b/.git_copy/objects/b5/942ca42bdc0d5e781795911b3327f5e4d1f391 diff --git a/.git_copy/objects/b5/a1cfb68834e24cc5fab5afc1823ce187ca9e51 b/.git_copy/objects/b5/a1cfb68834e24cc5fab5afc1823ce187ca9e51 Binary files differnew file mode 100644 index 0000000..4fa7dc6 --- /dev/null +++ b/.git_copy/objects/b5/a1cfb68834e24cc5fab5afc1823ce187ca9e51 diff --git a/.git_copy/objects/b5/cfe718f4e36e193c5a34badafd5ea2c57a9753 b/.git_copy/objects/b5/cfe718f4e36e193c5a34badafd5ea2c57a9753 Binary files differnew file mode 100644 index 0000000..0ecfd44 --- /dev/null +++ b/.git_copy/objects/b5/cfe718f4e36e193c5a34badafd5ea2c57a9753 diff --git a/.git_copy/objects/b8/e83d19bcadbe6a5232163c393a9f6c76f21f64 b/.git_copy/objects/b8/e83d19bcadbe6a5232163c393a9f6c76f21f64 Binary files differnew file mode 100644 index 0000000..cc91adb --- /dev/null +++ b/.git_copy/objects/b8/e83d19bcadbe6a5232163c393a9f6c76f21f64 diff --git a/.git_copy/objects/ba/36be48b6904f5ddd4f58e9b085504bf60b911d b/.git_copy/objects/ba/36be48b6904f5ddd4f58e9b085504bf60b911d Binary files differnew file mode 100644 index 0000000..ec119c3 --- /dev/null +++ b/.git_copy/objects/ba/36be48b6904f5ddd4f58e9b085504bf60b911d diff --git a/.git_copy/objects/bc/013e5d812661e045f8e6ed2bc940d53d306098 b/.git_copy/objects/bc/013e5d812661e045f8e6ed2bc940d53d306098 Binary files differnew file mode 100644 index 0000000..0183229 --- /dev/null +++ b/.git_copy/objects/bc/013e5d812661e045f8e6ed2bc940d53d306098 diff --git a/.git_copy/objects/bc/185989f279fb01957b4dad3f7992b7d49f2f0e b/.git_copy/objects/bc/185989f279fb01957b4dad3f7992b7d49f2f0e Binary files differnew file mode 100644 index 0000000..81ccdc5 --- /dev/null +++ b/.git_copy/objects/bc/185989f279fb01957b4dad3f7992b7d49f2f0e diff --git a/.git_copy/objects/c1/05a0c530b04bba0b2d6770a03700a4230c4ecc b/.git_copy/objects/c1/05a0c530b04bba0b2d6770a03700a4230c4ecc new file mode 100644 index 0000000..4a7ade7 --- /dev/null +++ b/.git_copy/objects/c1/05a0c530b04bba0b2d6770a03700a4230c4ecc @@ -0,0 +1,2 @@ +xm!a?o@Y.HQ +v
!)ΗzE@m$(-ʑ
h)Ǽ.
nZ{n
6vSPrN¨p]%>Eb;}TV蔃tˬ(r镡6Ӎڕ ~HdR3w:<W
\ No newline at end of file diff --git a/.git_copy/objects/c1/ee56ad6440f1e42b01230a1f5cf56a3b54cf41 b/.git_copy/objects/c1/ee56ad6440f1e42b01230a1f5cf56a3b54cf41 new file mode 100644 index 0000000..41771f0 --- /dev/null +++ b/.git_copy/objects/c1/ee56ad6440f1e42b01230a1f5cf56a3b54cf41 @@ -0,0 +1,2 @@ +x+)JMU045a040031Q(,L.JM+I`|TŹv<e1k?ǩUW\YPWT\3ާ
TXW:SZ_֫>]2\N+@6 +[k *WTE=B
\ No newline at end of file diff --git a/.git_copy/objects/c3/4124ebefaaa08a7fcf5c4a6ffe295b2762327f b/.git_copy/objects/c3/4124ebefaaa08a7fcf5c4a6ffe295b2762327f Binary files differnew file mode 100644 index 0000000..42f3e44 --- /dev/null +++ b/.git_copy/objects/c3/4124ebefaaa08a7fcf5c4a6ffe295b2762327f diff --git a/.git_copy/objects/c3/c05fa35caf8904cd0f41b81da33f8a3a4633c2 b/.git_copy/objects/c3/c05fa35caf8904cd0f41b81da33f8a3a4633c2 Binary files differnew file mode 100644 index 0000000..c15e38f --- /dev/null +++ b/.git_copy/objects/c3/c05fa35caf8904cd0f41b81da33f8a3a4633c2 diff --git a/.git_copy/objects/c6/10e8fec60aee6136152cd1cd272ee663a2ad37 b/.git_copy/objects/c6/10e8fec60aee6136152cd1cd272ee663a2ad37 Binary files differnew file mode 100644 index 0000000..da67a45 --- /dev/null +++ b/.git_copy/objects/c6/10e8fec60aee6136152cd1cd272ee663a2ad37 diff --git a/.git_copy/objects/c7/946908039ba8dd96a462926dc945f8835a09b3 b/.git_copy/objects/c7/946908039ba8dd96a462926dc945f8835a09b3 Binary files differnew file mode 100644 index 0000000..e56dc74 --- /dev/null +++ b/.git_copy/objects/c7/946908039ba8dd96a462926dc945f8835a09b3 diff --git a/.git_copy/objects/c7/b62e3ca1faa063dd66c54b5825b5679d97eb4b b/.git_copy/objects/c7/b62e3ca1faa063dd66c54b5825b5679d97eb4b Binary files differnew file mode 100644 index 0000000..358b72d --- /dev/null +++ b/.git_copy/objects/c7/b62e3ca1faa063dd66c54b5825b5679d97eb4b diff --git a/.git_copy/objects/cb/f5e0158a69ac74e3b1896af3fc44832997a549 b/.git_copy/objects/cb/f5e0158a69ac74e3b1896af3fc44832997a549 Binary files differnew file mode 100644 index 0000000..e5cc449 --- /dev/null +++ b/.git_copy/objects/cb/f5e0158a69ac74e3b1896af3fc44832997a549 diff --git a/.git_copy/objects/cc/34e974d783f0c0ba17d01e0cead2f73bc27fed b/.git_copy/objects/cc/34e974d783f0c0ba17d01e0cead2f73bc27fed Binary files differnew file mode 100644 index 0000000..08bf4c7 --- /dev/null +++ b/.git_copy/objects/cc/34e974d783f0c0ba17d01e0cead2f73bc27fed diff --git a/.git_copy/objects/ce/102066f17cf28554fdd3371aadad2953c078fe b/.git_copy/objects/ce/102066f17cf28554fdd3371aadad2953c078fe Binary files differnew file mode 100644 index 0000000..13a6bda --- /dev/null +++ b/.git_copy/objects/ce/102066f17cf28554fdd3371aadad2953c078fe diff --git a/.git_copy/objects/cf/d731cd23c65f851f9b6eebf4da9dd5eda1e21f b/.git_copy/objects/cf/d731cd23c65f851f9b6eebf4da9dd5eda1e21f Binary files differnew file mode 100644 index 0000000..99a1bfa --- /dev/null +++ b/.git_copy/objects/cf/d731cd23c65f851f9b6eebf4da9dd5eda1e21f diff --git a/.git_copy/objects/cf/fa1a876a701bbb0c18c4ebdffe24231b48f82d b/.git_copy/objects/cf/fa1a876a701bbb0c18c4ebdffe24231b48f82d Binary files differnew file mode 100644 index 0000000..d53d491 --- /dev/null +++ b/.git_copy/objects/cf/fa1a876a701bbb0c18c4ebdffe24231b48f82d diff --git a/.git_copy/objects/cf/fa780482b8ccf1678446900980979c2293e102 b/.git_copy/objects/cf/fa780482b8ccf1678446900980979c2293e102 Binary files differnew file mode 100644 index 0000000..221fa05 --- /dev/null +++ b/.git_copy/objects/cf/fa780482b8ccf1678446900980979c2293e102 diff --git a/.git_copy/objects/d0/53e141acfa2acd950b2c79bbfe37778a3f1c24 b/.git_copy/objects/d0/53e141acfa2acd950b2c79bbfe37778a3f1c24 new file mode 100644 index 0000000..cc5ee75 --- /dev/null +++ b/.git_copy/objects/d0/53e141acfa2acd950b2c79bbfe37778a3f1c24 @@ -0,0 +1 @@ +xj DWԨ1JyunjsCۿoOrq5 zFyu$]qʩH1
۱Qa :k\}FbTvQNRxA8K68oa ^pӣw5 &<Ok#JB$Tr06&|&ޖ_p-ܷ!}w?kaj
\ No newline at end of file diff --git a/.git_copy/objects/d2/94b177f49a2240b73818ff08310b3e28d8f8c2 b/.git_copy/objects/d2/94b177f49a2240b73818ff08310b3e28d8f8c2 Binary files differnew file mode 100644 index 0000000..e6ae2e0 --- /dev/null +++ b/.git_copy/objects/d2/94b177f49a2240b73818ff08310b3e28d8f8c2 diff --git a/.git_copy/objects/d2/9720a2660489ad15e03f875d83d3c228fef411 b/.git_copy/objects/d2/9720a2660489ad15e03f875d83d3c228fef411 new file mode 100644 index 0000000..07e6254 --- /dev/null +++ b/.git_copy/objects/d2/9720a2660489ad15e03f875d83d3c228fef411 @@ -0,0 +1,2 @@ +xNJ0uV)io6 ƍG$7ӌI3VG9+9 +]]76xd4+d|'jtzpgZxDג [IlGs2{m hSY\LxF탞bj\OТT؍m/^jbWoC=l9Nq>9zh5z(Į/_i:f/Dl71p
\ No newline at end of file diff --git a/.git_copy/objects/d2/9db62612de7cfd638a1b70b2726f81734482ec b/.git_copy/objects/d2/9db62612de7cfd638a1b70b2726f81734482ec new file mode 100644 index 0000000..f167fce --- /dev/null +++ b/.git_copy/objects/d2/9db62612de7cfd638a1b70b2726f81734482ec @@ -0,0 +1,5 @@ +x}V}T~,"b2T*ȇF5VUbvgw6;̼BHR0)DBNEfDE/.$rzwfX<}~.d B$,
HHh%CJzN7oSS&^a96FL.T݅ʧYY|Q>r\&8ug!1ZgYā8of]ѭ-geM +%F34NaZ<K<hz\!KךE1b:N ͟hZV80%ޝӿv}CN|`&/;zݦg+}Q>H5!MF 5c$X2,}Kԭ7~MxwUkS380_U19gE|,Ip{^2;\s"xw7"0Erz{8f*oV{-O7=E %ABXlP70Zv_?KKRXoS6nİ$|wrWmC%_gI, +Göu=tEQqlz8ıH>?;!kYGLŭGS@aBNϜ.W0{e.GeI`xRJ`ĝ2Em;)Cp$Rx(eg6վe!wftG,&~ٴSΡ{ĚE9寏G3RTs1kys6sۺ(/I2ՔԨ%/'*GRTN6cxYԪ+zt]=lasx%0- ɬOie,wdA%H1>+iYƀKtLQvۣc7gjN+V)3ӓw\a(\`%Ͳ˗74i)\y=?l>9sy9)MTÞCK<WeZ=G-8D5.%)|
Oqg h(\Oi)LR:MW
;u-SD q7a\,/\NṈa+Oo%<I#`_8u+5<|䧬]^,&n2E897eP qKxA%cISF!*9*qǔԄJM +'e.m\s~/R.9ف9%+,{?UVg/U#i>>^<y_\oukR+6txww-',Pozj7.SniZ1bz8Ձ)l5Pov_*tdͳ,䝧״ʏ⟿(#yW깑(۴
r_悘7XǻK+$F4plʄx8ZgA@N__(Uƙ+.-V;IxML/N)r8Fl#;d!( @3LP1ak,ocg➨$Fo#iJƥ̞\|pKQq3+FK##Q/5Wen56~Is4?8pkV + AWAÖ:}ƉҸ9`{D%O^-CmỤ̂^UUÿ
\ No newline at end of file diff --git a/.git_copy/objects/d2/f03c1979174e8e86fa626af65b970c01e184e1 b/.git_copy/objects/d2/f03c1979174e8e86fa626af65b970c01e184e1 Binary files differnew file mode 100644 index 0000000..aaea695 --- /dev/null +++ b/.git_copy/objects/d2/f03c1979174e8e86fa626af65b970c01e184e1 diff --git a/.git_copy/objects/d3/6a5d4aaea1973b63c56ed35bc60a7e20c5e42c b/.git_copy/objects/d3/6a5d4aaea1973b63c56ed35bc60a7e20c5e42c Binary files differnew file mode 100644 index 0000000..4372a66 --- /dev/null +++ b/.git_copy/objects/d3/6a5d4aaea1973b63c56ed35bc60a7e20c5e42c diff --git a/.git_copy/objects/d3/9fe005fdc6c73105568880c1dc7b4721737139 b/.git_copy/objects/d3/9fe005fdc6c73105568880c1dc7b4721737139 Binary files differnew file mode 100644 index 0000000..2619b32 --- /dev/null +++ b/.git_copy/objects/d3/9fe005fdc6c73105568880c1dc7b4721737139 diff --git a/.git_copy/objects/d3/dcdfe48fef650efdecc1352a4e40f9b862b864 b/.git_copy/objects/d3/dcdfe48fef650efdecc1352a4e40f9b862b864 Binary files differnew file mode 100644 index 0000000..63d7758 --- /dev/null +++ b/.git_copy/objects/d3/dcdfe48fef650efdecc1352a4e40f9b862b864 diff --git a/.git_copy/objects/d4/14f2c5880ea4565376cfd4b26577086f765043 b/.git_copy/objects/d4/14f2c5880ea4565376cfd4b26577086f765043 Binary files differnew file mode 100644 index 0000000..c382b06 --- /dev/null +++ b/.git_copy/objects/d4/14f2c5880ea4565376cfd4b26577086f765043 diff --git a/.git_copy/objects/d4/8224df6b9e1733d2472eaabf5a8e8cdab212f9 b/.git_copy/objects/d4/8224df6b9e1733d2472eaabf5a8e8cdab212f9 Binary files differnew file mode 100644 index 0000000..6523922 --- /dev/null +++ b/.git_copy/objects/d4/8224df6b9e1733d2472eaabf5a8e8cdab212f9 diff --git a/.git_copy/objects/d6/475ded6bc9eb6e836491e42b26c6150f47d3b5 b/.git_copy/objects/d6/475ded6bc9eb6e836491e42b26c6150f47d3b5 Binary files differnew file mode 100644 index 0000000..91ee4e6 --- /dev/null +++ b/.git_copy/objects/d6/475ded6bc9eb6e836491e42b26c6150f47d3b5 diff --git a/.git_copy/objects/da/9d68d8906090a35fa80cd853fde30109acde1c b/.git_copy/objects/da/9d68d8906090a35fa80cd853fde30109acde1c Binary files differnew file mode 100644 index 0000000..b4cf856 --- /dev/null +++ b/.git_copy/objects/da/9d68d8906090a35fa80cd853fde30109acde1c diff --git a/.git_copy/objects/dc/6ccd672b91d215a0abb675022aa434af68c546 b/.git_copy/objects/dc/6ccd672b91d215a0abb675022aa434af68c546 Binary files differnew file mode 100644 index 0000000..141821d --- /dev/null +++ b/.git_copy/objects/dc/6ccd672b91d215a0abb675022aa434af68c546 diff --git a/.git_copy/objects/dd/576a12f213390dee0c717d835a843d0ac026a9 b/.git_copy/objects/dd/576a12f213390dee0c717d835a843d0ac026a9 Binary files differnew file mode 100644 index 0000000..f5c1b3a --- /dev/null +++ b/.git_copy/objects/dd/576a12f213390dee0c717d835a843d0ac026a9 diff --git a/.git_copy/objects/df/8a7f7afcb4b3a4b62af4ccc03c034b22f796f3 b/.git_copy/objects/df/8a7f7afcb4b3a4b62af4ccc03c034b22f796f3 new file mode 100644 index 0000000..e242922 --- /dev/null +++ b/.git_copy/objects/df/8a7f7afcb4b3a4b62af4ccc03c034b22f796f3 @@ -0,0 +1 @@ +x+)JMU045a040031Q(,L.JM+I`xҺiO㺷EheM̂I|ץ.GI0U9)zEN)g2W_]IcJTU ٮ6R)ԽNyu@
\ No newline at end of file diff --git a/.git_copy/objects/e4/ff4999c9632bdf460e4d05398a52720d0ea82a b/.git_copy/objects/e4/ff4999c9632bdf460e4d05398a52720d0ea82a new file mode 100644 index 0000000..21832da --- /dev/null +++ b/.git_copy/objects/e4/ff4999c9632bdf460e4d05398a52720d0ea82a @@ -0,0 +1,2 @@ +xj0E)fbG)RdbC)}>B.9< xJ8';zPk'G1(=ZaWRf
reZ3[)xexV3Garg7xA +9YӜ,f)Nz[cqF@2lĜ\/߉OKϯp_/_)b
\ No newline at end of file diff --git a/.git_copy/objects/e6/01a9ea557932f731cd5719c54e7422eba86ca6 b/.git_copy/objects/e6/01a9ea557932f731cd5719c54e7422eba86ca6 Binary files differnew file mode 100644 index 0000000..b42dd6e --- /dev/null +++ b/.git_copy/objects/e6/01a9ea557932f731cd5719c54e7422eba86ca6 diff --git a/.git_copy/objects/e6/0b6875ad720bd23cd2a1debca775d2bf7a96d3 b/.git_copy/objects/e6/0b6875ad720bd23cd2a1debca775d2bf7a96d3 Binary files differnew file mode 100644 index 0000000..c98716f --- /dev/null +++ b/.git_copy/objects/e6/0b6875ad720bd23cd2a1debca775d2bf7a96d3 diff --git a/.git_copy/objects/e6/ae7ecbb317c42898a8a26fe631491552f1bd9c b/.git_copy/objects/e6/ae7ecbb317c42898a8a26fe631491552f1bd9c Binary files differnew file mode 100644 index 0000000..6fc857e --- /dev/null +++ b/.git_copy/objects/e6/ae7ecbb317c42898a8a26fe631491552f1bd9c diff --git a/.git_copy/objects/e8/998372ce7a757c3da71bfa1e0cd92e525627d6 b/.git_copy/objects/e8/998372ce7a757c3da71bfa1e0cd92e525627d6 Binary files differnew file mode 100644 index 0000000..b3ef92a --- /dev/null +++ b/.git_copy/objects/e8/998372ce7a757c3da71bfa1e0cd92e525627d6 diff --git a/.git_copy/objects/eb/5b78b92ce54416ff8c0bfb54080deb9c44be0a b/.git_copy/objects/eb/5b78b92ce54416ff8c0bfb54080deb9c44be0a Binary files differnew file mode 100644 index 0000000..eaccc19 --- /dev/null +++ b/.git_copy/objects/eb/5b78b92ce54416ff8c0bfb54080deb9c44be0a diff --git a/.git_copy/objects/ec/cab7fa8f0f7a73611ccf671ba748faebf36ddf b/.git_copy/objects/ec/cab7fa8f0f7a73611ccf671ba748faebf36ddf Binary files differnew file mode 100644 index 0000000..8f4d63b --- /dev/null +++ b/.git_copy/objects/ec/cab7fa8f0f7a73611ccf671ba748faebf36ddf diff --git a/.git_copy/objects/ed/db5a40a6d0da7cefbdce7cfafb1457615c994b b/.git_copy/objects/ed/db5a40a6d0da7cefbdce7cfafb1457615c994b Binary files differnew file mode 100644 index 0000000..61cd025 --- /dev/null +++ b/.git_copy/objects/ed/db5a40a6d0da7cefbdce7cfafb1457615c994b diff --git a/.git_copy/objects/f0/74593a3a89edfeb382cd36198b076a982d1e7c b/.git_copy/objects/f0/74593a3a89edfeb382cd36198b076a982d1e7c Binary files differnew file mode 100644 index 0000000..a496793 --- /dev/null +++ b/.git_copy/objects/f0/74593a3a89edfeb382cd36198b076a982d1e7c diff --git a/.git_copy/objects/f1/a6b9365d9501a18b506675676076d26a6346e0 b/.git_copy/objects/f1/a6b9365d9501a18b506675676076d26a6346e0 Binary files differnew file mode 100644 index 0000000..92438a1 --- /dev/null +++ b/.git_copy/objects/f1/a6b9365d9501a18b506675676076d26a6346e0 diff --git a/.git_copy/objects/f3/22f686c555001a7c7241c00291dafce40cd125 b/.git_copy/objects/f3/22f686c555001a7c7241c00291dafce40cd125 new file mode 100644 index 0000000..482bc51 --- /dev/null +++ b/.git_copy/objects/f3/22f686c555001a7c7241c00291dafce40cd125 @@ -0,0 +1,6 @@ +x}VmTU"b(v@+S4*DC HؔEX%awvwjvflY&)$"BQČOcD2QD6Pݙcy>{%7`ofX%.,x%Qj+6T\䫋c"}Xu+\9/З+Ǒ,0F,9nZSxmcf\TS!顆+gԦ6|WWr.R?JLiM +?6wc7ug,'Ali~h/z?-ʧ8ġ^<ctC@dQ[L4~иǺW6W<CS>3\!5aJR$O.yV_jw#a6(XC1@w{^Nփ"ZM@hrŏI'fP7Rk8F{")dkimϱ[5Z+EbX`3lᷱ7 +Ǣ۰aE
9tҸ}?'rqOntҳu>S/wrq0!'+?ɼQm-\Ӻ$q/qDֹsˎ~ϩc8\M`4y<[A23m,2dQ795v,9Wo(}u,^P_}o)Mu-ZyTS)E"E8 4<LLm4x??,Oph15wfV/(S}q1^QAKqT$G37Sή<Z٫i7Mbpu8W +S3`x;o?:.[~bMat=4ma4IrGG4)\y=g6wttΘ>_UI>80gKv=u`j7r'?s(A6nY24~%f;a&K(yp#8-ACz +fpNaΦ<qw]tkG(n´X^8dv_b֕#B]U\$uȃu1p~Yp/.{'R2PCV`tqm|6cIS@!*i:c?}R7fUULkXm}a[[\3x2(K~~s_,o[9YڂYƢe=PVWfY+i>{KMcqYcW%e>{xoژwk;fly!<)Ԯ9yk/%ue(QaX5Ħ^5\q
fl1ՎwVͽtǣ=v#P:OcO"HAAdY
r^܆|ӵWfY;s$:48ϑn_m1 +A"NIj5p8~̯w`cPwh
ϣ ‾!vG^J6/?Kң`:)>:=~8lnSv1`$
[4҃32$CMuQ"<x8 +W 1w)np6,jI`+k.Y? \mOkR4hҏEtvO)XRyUZi3G?QD4
\ No newline at end of file diff --git a/.git_copy/objects/f8/3fd773e37380a88061ccec26158eab2d7824a6 b/.git_copy/objects/f8/3fd773e37380a88061ccec26158eab2d7824a6 Binary files differnew file mode 100644 index 0000000..ac17cfe --- /dev/null +++ b/.git_copy/objects/f8/3fd773e37380a88061ccec26158eab2d7824a6 diff --git a/.git_copy/objects/f9/54186a89d75882c65635f5ba741b1197e19e1c b/.git_copy/objects/f9/54186a89d75882c65635f5ba741b1197e19e1c Binary files differnew file mode 100644 index 0000000..aabc250 --- /dev/null +++ b/.git_copy/objects/f9/54186a89d75882c65635f5ba741b1197e19e1c diff --git a/.git_copy/objects/f9/be7b974c03217525e006b2897704ad03952146 b/.git_copy/objects/f9/be7b974c03217525e006b2897704ad03952146 Binary files differnew file mode 100644 index 0000000..7eb5a8b --- /dev/null +++ b/.git_copy/objects/f9/be7b974c03217525e006b2897704ad03952146 diff --git a/.git_copy/objects/fa/ef2a7122b696586b0dc799a7eacb00d53b5beb b/.git_copy/objects/fa/ef2a7122b696586b0dc799a7eacb00d53b5beb Binary files differnew file mode 100644 index 0000000..b9c20a4 --- /dev/null +++ b/.git_copy/objects/fa/ef2a7122b696586b0dc799a7eacb00d53b5beb diff --git a/.git_copy/objects/fb/9d51def16f93aaca347077d1cb834e3d2af545 b/.git_copy/objects/fb/9d51def16f93aaca347077d1cb834e3d2af545 Binary files differnew file mode 100644 index 0000000..2ad6a5d --- /dev/null +++ b/.git_copy/objects/fb/9d51def16f93aaca347077d1cb834e3d2af545 diff --git a/.git_copy/objects/fe/b9a95e070b8a64403138dd5200aea6800d818b b/.git_copy/objects/fe/b9a95e070b8a64403138dd5200aea6800d818b new file mode 100644 index 0000000..08ccbd4 --- /dev/null +++ b/.git_copy/objects/fe/b9a95e070b8a64403138dd5200aea6800d818b @@ -0,0 +1,8 @@ +x}VT},"$FВDQJEV,qvYAh N1VIuQňlר"rvf9}4`Y X駣c9[VR|\ˮ7bt2*1zeT\x?rjQ>NYr@$5 +BFG I!!@vygݦ+~N,9Z-ϱ$CS$xJFs,/ +˯hQЋlj$GKX]
,˞;y:۞s|ɓF !LG{¿ng"ɧZdĞHVKpF'C_j8M1qֵK<
ǎuc}ݬͫ0$i +/
^+TpedkȾs%eHz{$ad8hONg@Q03Hh'E#xlHZ08֘v?<+f#g6Xk}h"ǃ҈Iz +n[|u?$b"+Xac.zSU7;' WFE樟pjrAq?qZv]r!
'((F)Ao+{w}Z4 :`9DqܟµWoS>55[ɡwu⼊L45>ep$:&yxvR@=m7=:|iITu`"8?`Բ_fy\?j`EBD)"FLGԌ˛rT8}ypXVd8RkN"yKrLU~k]ԝSf,qFf&N6PҽJVo Y(08R{16{5{^:ォr[GWLQuǖw!x +v<=R2pZB +(S4Cess6ۼ-tӕ NwxWIBMʋWS,as\UgDžw4KA{/N'܍2|CGO˼Cz'M +XaNQ+eɏG~.Ígh
o=a8
oUųqZ3.4s]ʿߖ/n{Gr/oQ~RwbNvxn5C֫jsW7ʚbL=X勺ţ
[~D_ks1
!=%Vwk<}[ocxN$:06ϸa7ZQ*m˥ڐ̴O*6DzhAͳ܆@A˗e{Su(yi86іfxk#(6Rc\(O<F=3*s!X\i4A.͕K-8xOݯN-q8XŎU'
hgN)m.+OW( h14[߸L1FJSW_X{$F">t PVoH=3Xؽg+͝r$ol+6ްUk8QF^`4Z:ǿ?ݓ<@
Oq|:uG;GoT|MjFRFP
\ No newline at end of file diff --git a/.git_copy/objects/pack/pack-a15a9d903ffe109297a5bd9dfa927e5491b00352.idx b/.git_copy/objects/pack/pack-a15a9d903ffe109297a5bd9dfa927e5491b00352.idx Binary files differnew file mode 100644 index 0000000..b0efdb1 --- /dev/null +++ b/.git_copy/objects/pack/pack-a15a9d903ffe109297a5bd9dfa927e5491b00352.idx diff --git a/.git_copy/objects/pack/pack-a15a9d903ffe109297a5bd9dfa927e5491b00352.pack b/.git_copy/objects/pack/pack-a15a9d903ffe109297a5bd9dfa927e5491b00352.pack Binary files differnew file mode 100644 index 0000000..59127b6 --- /dev/null +++ b/.git_copy/objects/pack/pack-a15a9d903ffe109297a5bd9dfa927e5491b00352.pack diff --git a/.git_copy/packed-refs b/.git_copy/packed-refs new file mode 100644 index 0000000..8482a8e --- /dev/null +++ b/.git_copy/packed-refs @@ -0,0 +1,2 @@ +# pack-refs with: peeled +546ca05dc2dbe66e776aaa00035b7936e720931c refs/remotes/origin/master diff --git a/.git_copy/refs/heads/master b/.git_copy/refs/heads/master new file mode 100644 index 0000000..57cd38a --- /dev/null +++ b/.git_copy/refs/heads/master @@ -0,0 +1 @@ +96ef551c38234ab234e47b78936f184b9e4e42e3 diff --git a/.git_copy/refs/remotes/origin/HEAD b/.git_copy/refs/remotes/origin/HEAD new file mode 100644 index 0000000..6efe28f --- /dev/null +++ b/.git_copy/refs/remotes/origin/HEAD @@ -0,0 +1 @@ +ref: refs/remotes/origin/master diff --git a/.git_copy/refs/remotes/origin/master b/.git_copy/refs/remotes/origin/master new file mode 100644 index 0000000..f2b9f72 --- /dev/null +++ b/.git_copy/refs/remotes/origin/master @@ -0,0 +1 @@ +1020097fa446ad8c6bdff784d5d0da9e98a55892 |